upload.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. <?php
  2. /**
  3. * @name Upload Module
  4. * @author Philipp Maurer
  5. * @author Tobias Reich
  6. * @copyright 2014 by Philipp Maurer, Tobias Reich
  7. */
  8. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  9. function upload($files, $albumID, $description = '', $tags = '') {
  10. global $database, $settings;
  11. switch($albumID) {
  12. // s for public (share)
  13. case 's':
  14. $public = 1;
  15. $star = 0;
  16. $albumID = 0;
  17. break;
  18. // f for starred (fav)
  19. case 'f':
  20. $star = 1;
  21. $public = 0;
  22. $albumID = 0;
  23. break;
  24. default:
  25. $star = 0;
  26. $public = 0;
  27. }
  28. foreach ($files as $file) {
  29. if ($file['type']!=='image/jpeg'&&
  30. $file['type']!=='image/png'&&
  31. $file['type']!=='image/gif')
  32. return false;
  33. $id = str_replace('.', '', microtime(true));
  34. while(strlen($id)<14) $id .= 0;
  35. $tmp_name = $file['tmp_name'];
  36. $extension = array_reverse(explode('.', $file['name']));
  37. $extension = $extension[0];
  38. $photo_name = md5($id) . ".$extension";
  39. // Import if not uploaded via web
  40. if (!is_uploaded_file($tmp_name)) {
  41. if (copy($tmp_name, __DIR__ . '/../../uploads/big/' . $photo_name)) {
  42. @unlink($tmp_name);
  43. $import_name = $tmp_name;
  44. }
  45. } else {
  46. move_uploaded_file($tmp_name, __DIR__ . '/../../uploads/big/' . $photo_name);
  47. $import_name = '';
  48. }
  49. // Read infos
  50. $info = getInfo($photo_name);
  51. // Use title of file if IPTC title missing
  52. if ($info['title']==='') $info['title'] = mysqli_real_escape_string($database, substr(basename($file['name'], ".$extension"), 0, 30));
  53. // Use description parameter if set
  54. if ($description==='') $description = $info['description'];
  55. // Set orientation based on EXIF data
  56. if ($file['type'] === 'image/jpeg' && isset($info['orientation']) && isset($info['width']) && isset($info['height'])) {
  57. if(extension_loaded('imagick')) {
  58. $rotateImage = 0;
  59. switch ($info['orientation']) {
  60. case 3:
  61. $rotateImage = 180;
  62. $imageOrientation = 1;
  63. break;
  64. case 6:
  65. $rotateImage = 90;
  66. $imageOrientation = 1;
  67. break;
  68. case 8:
  69. $rotateImage = 270;
  70. $imageOrientation = 1;
  71. break;
  72. }
  73. if ($rotateImage) {
  74. $image = new Imagick();
  75. $image->readImage(__DIR__ . '/../../uploads/big/' . $photo_name);
  76. $image->rotateImage(new ImagickPixel(), $rotateImage);
  77. $image->setImageOrientation($imageOrientation);
  78. $image->writeImage(__DIR__ . '/../../uploads/big/' . $photo_name);
  79. $image->clear();
  80. $image->destroy();
  81. }
  82. } else {
  83. $newWidth = $info['width'];
  84. $newHeight = $info['height'];
  85. $sourceImg = imagecreatefromjpeg(__DIR__ . "/../../uploads/big/$photo_name");
  86. switch ($info['orientation']) {
  87. case 2:
  88. // mirror
  89. // not yet implemented
  90. break;
  91. case 3:
  92. $sourceImg = imagerotate($sourceImg, -180, 0);
  93. break;
  94. case 4:
  95. // rotate 180 and mirror
  96. // not yet implemented
  97. break;
  98. case 5:
  99. // rotate 90 and mirror
  100. // not yet implemented
  101. break;
  102. case 6:
  103. $sourceImg = imagerotate($sourceImg, -90, 0);
  104. $newWidth = $info['height'];
  105. $newHeight = $info['width'];
  106. break;
  107. case 7:
  108. // rotate -90 and mirror
  109. // not yet implemented
  110. break;
  111. case 8:
  112. $sourceImg = imagerotate($sourceImg, 90, 0);
  113. $newWidth = $info['height'];
  114. $newHeight = $info['width'];
  115. break;
  116. }
  117. $newSourceImg = imagecreatetruecolor($newWidth, $newHeight);
  118. imagecopyresampled($newSourceImg, $sourceImg, 0, 0, 0, 0, $newWidth, $newHeight, $newWidth, $newHeight);
  119. imagejpeg($newSourceImg, __DIR__ . '/../../uploads/big/' . $photo_name, 100);
  120. }
  121. }
  122. // Create Thumb
  123. if (!createThumb($photo_name)) return false;
  124. // Save to DB
  125. $query = "INSERT INTO lychee_photos (id, title, url, description, tags, type, width, height, size, sysdate, systime, iso, aperture, make, model, shutter, focal, takedate, taketime, thumbUrl, album, public, star, import_name)
  126. VALUES (
  127. '" . $id . "',
  128. '" . $info['title'] . "',
  129. '" . $photo_name . "',
  130. '" . $description . "',
  131. '" . $tags . "',
  132. '" . $info['type'] . "',
  133. '" . $info['width'] . "',
  134. '" . $info['height'] . "',
  135. '" . $info['size'] . "',
  136. '" . $info['date'] . "',
  137. '" . $info['time'] . "',
  138. '" . $info['iso'] . "',
  139. '" . $info['aperture'] . "',
  140. '" . $info['make'] . "',
  141. '" . $info['model'] . "',
  142. '" . $info['shutter'] . "',
  143. '" . $info['focal'] . "',
  144. '" . $info['takeDate'] . "',
  145. '" . $info['takeTime'] . "',
  146. '" . md5($id) . ".jpeg',
  147. '" . $albumID . "',
  148. '" . $public . "',
  149. '" . $star . "',
  150. '" . $import_name . "');";
  151. $result = $database->query($query);
  152. if (!$result) return false;
  153. }
  154. return true;
  155. }
  156. function getInfo($filename) {
  157. global $database;
  158. $url = __DIR__ . '/../../uploads/big/' . $filename;
  159. $iptcArray = array();
  160. $info = getimagesize($url, $iptcArray);
  161. // General information
  162. $return['type'] = $info['mime'];
  163. $return['width'] = $info[0];
  164. $return['height'] = $info[1];
  165. $return['date'] = date('d.m.Y', filectime($url));
  166. $return['time'] = date('H:i:s', filectime($url));
  167. // Size
  168. $size = filesize($url)/1024;
  169. if ($size>=1024) $return['size'] = round($size/1024, 1) . ' MB';
  170. else $return['size'] = round($size, 1) . ' KB';
  171. // IPTC Metadata Fallback
  172. $return['title'] = '';
  173. $return['description'] = '';
  174. // IPTC Metadata
  175. if(isset($iptcArray['APP13'])) {
  176. $iptcInfo = iptcparse($iptcArray['APP13']);
  177. if (is_array($iptcInfo)) {
  178. $temp = @$iptcInfo['2#105'][0];
  179. if (isset($temp)&&strlen($temp)>0) $return['title'] = $temp;
  180. $temp = @$iptcInfo['2#120'][0];
  181. if (isset($temp)&&strlen($temp)>0) $return['description'] = $temp;
  182. }
  183. }
  184. // EXIF Metadata Fallback
  185. $return['orientation'] = '';
  186. $return['iso'] = '';
  187. $return['aperture'] = '';
  188. $return['make'] = '';
  189. $return['model'] = '';
  190. $return['shutter'] = '';
  191. $return['focal'] = '';
  192. $return['takeDate'] = '';
  193. $return['takeTime'] = '';
  194. // Read EXIF
  195. if ($info['mime']=='image/jpeg') $exif = @exif_read_data($url, 'EXIF', 0);
  196. else $exif = false;
  197. // EXIF Metadata
  198. if ($exif!==false) {
  199. if (isset($exif['Orientation'])) $return['orientation'] = $exif['Orientation'];
  200. else if (isset($exif['IFD0']['Orientation'])) $return['orientation'] = $exif['IFD0']['Orientation'];
  201. $temp = @$exif['ISOSpeedRatings'];
  202. if (isset($temp)) $return['iso'] = $temp;
  203. $temp = @$exif['COMPUTED']['ApertureFNumber'];
  204. if (isset($temp)) $return['aperture'] = $temp;
  205. $temp = @$exif['Make'];
  206. if (isset($temp)) $return['make'] = $exif['Make'];
  207. $temp = @$exif['Model'];
  208. if (isset($temp)) $return['model'] = $temp;
  209. $temp = @$exif['ExposureTime'];
  210. if (isset($temp)) $return['shutter'] = $exif['ExposureTime'] . ' Sec.';
  211. $temp = @$exif['FocalLength'];
  212. if (isset($temp)) $return['focal'] = ($temp/1) . ' mm';
  213. $temp = @$exif['DateTimeOriginal'];
  214. if (isset($temp)) {
  215. $exifDate = explode(' ', $temp);
  216. $date = explode(':', $exifDate[0]);
  217. $return['takeDate'] = $date[2].'.'.$date[1].'.'.$date[0];
  218. $return['takeTime'] = $exifDate[1];
  219. }
  220. }
  221. // Security
  222. foreach(array_keys($return) as $key) $return[$key] = mysqli_real_escape_string($database, $return[$key]);
  223. return $return;
  224. }
  225. function createThumb($filename, $width = 200, $height = 200) {
  226. global $settings;
  227. $url = __DIR__ . '/../../uploads/big/' . $filename;
  228. $info = getimagesize($url);
  229. $photoName = explode(".", $filename);
  230. $newUrl = __DIR__ . '/../../uploads/thumb/' . $photoName[0] . '.jpeg';
  231. $newUrl2x = __DIR__ . '/../../uploads/thumb/' . $photoName[0] . '@2x.jpeg';
  232. // create thumbnails with Imagick
  233. if(extension_loaded('imagick')) {
  234. // read image
  235. $thumb = new Imagick();
  236. $thumb->readImage($url);
  237. $thumb->setImageCompressionQuality($settings['thumbQuality']);
  238. $thumb->setImageFormat('jpeg');
  239. // copy image for 2nd thumb version
  240. $thumb2x = clone $thumb;
  241. // creat 1st version
  242. $thumb->cropThumbnailImage($width, $height);
  243. $thumb->writeImage($newUrl);
  244. // creat 2nd version
  245. $thumb2x->cropThumbnailImage($width*2, $height*2);
  246. $thumb2x->writeImage($newUrl2x);
  247. // close thumb
  248. $thumb->clear();
  249. $thumb->destroy();
  250. // close thumb2
  251. $thumb2x->clear();
  252. $thumb2x->destroy();
  253. } else {
  254. // Set position and size
  255. $thumb = imagecreatetruecolor($width, $height);
  256. $thumb2x = imagecreatetruecolor($width*2, $height*2);
  257. if ($info[0]<$info[1]) {
  258. $newSize = $info[0];
  259. $startWidth = 0;
  260. $startHeight = $info[1]/2 - $info[0]/2;
  261. } else {
  262. $newSize = $info[1];
  263. $startWidth = $info[0]/2 - $info[1]/2;
  264. $startHeight = 0;
  265. }
  266. // Fallback for older version
  267. if ($info['mime']==='image/webp'&&floatval(phpversion())<5.5) return false;
  268. // Create new image
  269. switch($info['mime']) {
  270. case 'image/jpeg': $sourceImg = imagecreatefromjpeg($url); break;
  271. case 'image/png': $sourceImg = imagecreatefrompng($url); break;
  272. case 'image/gif': $sourceImg = imagecreatefromgif($url); break;
  273. case 'image/webp': $sourceImg = imagecreatefromwebp($url); break;
  274. default: return false;
  275. }
  276. imagecopyresampled($thumb,$sourceImg,0,0,$startWidth,$startHeight,$width,$height,$newSize,$newSize);
  277. imagecopyresampled($thumb2x,$sourceImg,0,0,$startWidth,$startHeight,$width*2,$height*2,$newSize,$newSize);
  278. imagejpeg($thumb,$newUrl,$settings['thumbQuality']);
  279. imagejpeg($thumb2x,$newUrl2x,$settings['thumbQuality']);
  280. }
  281. return true;
  282. }
  283. function importPhoto($path, $albumID = 0, $description = '', $tags = '') {
  284. $info = getimagesize($path);
  285. $size = filesize($path);
  286. $nameFile = array(array());
  287. $nameFile[0]['name'] = $path;
  288. $nameFile[0]['type'] = $info['mime'];
  289. $nameFile[0]['tmp_name'] = $path;
  290. $nameFile[0]['error'] = 0;
  291. $nameFile[0]['size'] = $size;
  292. return upload($nameFile, $albumID, $description, $tags);
  293. }
  294. function importUrl($url, $albumID = 0) {
  295. if (strpos($url, ',')!==false) {
  296. // Multiple photos
  297. $url = explode(',', $url);
  298. foreach ($url as &$key) {
  299. $key = str_replace(' ', '%20', $key);
  300. if (@getimagesize($key)) {
  301. $pathinfo = pathinfo($key);
  302. $filename = $pathinfo['filename'].".".$pathinfo['extension'];
  303. $tmp_name = __DIR__ . '/../../uploads/import/' . $filename;
  304. copy($key, $tmp_name);
  305. }
  306. }
  307. return importServer($albumID);
  308. } else {
  309. // One photo
  310. $url = str_replace(' ', '%20', $url);
  311. if (@getimagesize($url)) {
  312. $pathinfo = pathinfo($url);
  313. $filename = $pathinfo['filename'].".".$pathinfo['extension'];
  314. $tmp_name = __DIR__ . "/../../uploads/import/$filename";
  315. copy($url, $tmp_name);
  316. return importPhoto($tmp_name, $albumID);
  317. }
  318. }
  319. return false;
  320. }
  321. function importServer($albumID = 0, $path) {
  322. if (!isset($path)) $path = __DIR__ . '/../../uploads/import/';
  323. global $database;
  324. $files = glob($path . '*');
  325. $contains['photos'] = false;
  326. $contains['albums'] = false;
  327. foreach ($files as $file) {
  328. if (@getimagesize($file)) {
  329. // Photo
  330. if (!importPhoto($file, $albumID)) return false;
  331. $contains['photos'] = true;
  332. } else if (is_dir($file)) {
  333. $name = mysqli_real_escape_string($database, basename($file));
  334. $newAlbumID = addAlbum('[Import] ' . $name);
  335. if ($newAlbumID!==false) importServer($newAlbumID, $file . '/');
  336. $contains['albums'] = true;
  337. }
  338. }
  339. if ($contains['photos']===false&&$contains['albums']===false) return "Warning: Folder empty!";
  340. if ($contains['photos']===false&&$contains['albums']===true) return "Notice: Import only contains albums!";
  341. return true;
  342. }
  343. ?>