upload.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  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, iso, aperture, make, model, shutter, focal, takestamp, 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['iso'] . "',
  137. '" . $info['aperture'] . "',
  138. '" . $info['make'] . "',
  139. '" . $info['model'] . "',
  140. '" . $info['shutter'] . "',
  141. '" . $info['focal'] . "',
  142. '" . $info['takestamp'] . "',
  143. '" . md5($id) . ".jpeg',
  144. '" . $albumID . "',
  145. '" . $public . "',
  146. '" . $star . "',
  147. '" . $import_name . "');";
  148. $result = $database->query($query);
  149. if (!$result) return false;
  150. }
  151. return true;
  152. }
  153. function getInfo($filename) {
  154. global $database;
  155. $url = __DIR__ . '/../../uploads/big/' . $filename;
  156. $iptcArray = array();
  157. $info = getimagesize($url, $iptcArray);
  158. // General information
  159. $return['type'] = $info['mime'];
  160. $return['width'] = $info[0];
  161. $return['height'] = $info[1];
  162. // Size
  163. $size = filesize($url)/1024;
  164. if ($size>=1024) $return['size'] = round($size/1024, 1) . ' MB';
  165. else $return['size'] = round($size, 1) . ' KB';
  166. // IPTC Metadata Fallback
  167. $return['title'] = '';
  168. $return['description'] = '';
  169. // IPTC Metadata
  170. if(isset($iptcArray['APP13'])) {
  171. $iptcInfo = iptcparse($iptcArray['APP13']);
  172. if (is_array($iptcInfo)) {
  173. $temp = @$iptcInfo['2#105'][0];
  174. if (isset($temp)&&strlen($temp)>0) $return['title'] = $temp;
  175. $temp = @$iptcInfo['2#120'][0];
  176. if (isset($temp)&&strlen($temp)>0) $return['description'] = $temp;
  177. }
  178. }
  179. // EXIF Metadata Fallback
  180. $return['orientation'] = '';
  181. $return['iso'] = '';
  182. $return['aperture'] = '';
  183. $return['make'] = '';
  184. $return['model'] = '';
  185. $return['shutter'] = '';
  186. $return['focal'] = '';
  187. $return['takestamp'] = '';
  188. // Read EXIF
  189. if ($info['mime']=='image/jpeg') $exif = @exif_read_data($url, 'EXIF', 0);
  190. else $exif = false;
  191. // EXIF Metadata
  192. if ($exif!==false) {
  193. if (isset($exif['Orientation'])) $return['orientation'] = $exif['Orientation'];
  194. else if (isset($exif['IFD0']['Orientation'])) $return['orientation'] = $exif['IFD0']['Orientation'];
  195. $temp = @$exif['ISOSpeedRatings'];
  196. if (isset($temp)) $return['iso'] = $temp;
  197. $temp = @$exif['COMPUTED']['ApertureFNumber'];
  198. if (isset($temp)) $return['aperture'] = $temp;
  199. $temp = @$exif['Make'];
  200. if (isset($temp)) $return['make'] = $exif['Make'];
  201. $temp = @$exif['Model'];
  202. if (isset($temp)) $return['model'] = $temp;
  203. $temp = @$exif['ExposureTime'];
  204. if (isset($temp)) $return['shutter'] = $exif['ExposureTime'] . ' Sec.';
  205. $temp = @$exif['FocalLength'];
  206. if (isset($temp)) $return['focal'] = ($temp/1) . ' mm';
  207. $temp = @$exif['DateTimeOriginal'];
  208. if (isset($temp)) $return['takestamp'] = strtotime($temp);
  209. }
  210. // Security
  211. foreach(array_keys($return) as $key) $return[$key] = mysqli_real_escape_string($database, $return[$key]);
  212. return $return;
  213. }
  214. function createThumb($filename, $width = 200, $height = 200) {
  215. global $settings;
  216. $url = __DIR__ . '/../../uploads/big/' . $filename;
  217. $info = getimagesize($url);
  218. $photoName = explode(".", $filename);
  219. $newUrl = __DIR__ . '/../../uploads/thumb/' . $photoName[0] . '.jpeg';
  220. $newUrl2x = __DIR__ . '/../../uploads/thumb/' . $photoName[0] . '@2x.jpeg';
  221. // create thumbnails with Imagick
  222. if(extension_loaded('imagick')) {
  223. // read image
  224. $thumb = new Imagick();
  225. $thumb->readImage($url);
  226. $thumb->setImageCompressionQuality($settings['thumbQuality']);
  227. $thumb->setImageFormat('jpeg');
  228. // copy image for 2nd thumb version
  229. $thumb2x = clone $thumb;
  230. // creat 1st version
  231. $thumb->cropThumbnailImage($width, $height);
  232. $thumb->writeImage($newUrl);
  233. // creat 2nd version
  234. $thumb2x->cropThumbnailImage($width*2, $height*2);
  235. $thumb2x->writeImage($newUrl2x);
  236. // close thumb
  237. $thumb->clear();
  238. $thumb->destroy();
  239. // close thumb2
  240. $thumb2x->clear();
  241. $thumb2x->destroy();
  242. } else {
  243. // Set position and size
  244. $thumb = imagecreatetruecolor($width, $height);
  245. $thumb2x = imagecreatetruecolor($width*2, $height*2);
  246. if ($info[0]<$info[1]) {
  247. $newSize = $info[0];
  248. $startWidth = 0;
  249. $startHeight = $info[1]/2 - $info[0]/2;
  250. } else {
  251. $newSize = $info[1];
  252. $startWidth = $info[0]/2 - $info[1]/2;
  253. $startHeight = 0;
  254. }
  255. // Fallback for older version
  256. if ($info['mime']==='image/webp'&&floatval(phpversion())<5.5) return false;
  257. // Create new image
  258. switch($info['mime']) {
  259. case 'image/jpeg': $sourceImg = imagecreatefromjpeg($url); break;
  260. case 'image/png': $sourceImg = imagecreatefrompng($url); break;
  261. case 'image/gif': $sourceImg = imagecreatefromgif($url); break;
  262. case 'image/webp': $sourceImg = imagecreatefromwebp($url); break;
  263. default: return false;
  264. }
  265. imagecopyresampled($thumb,$sourceImg,0,0,$startWidth,$startHeight,$width,$height,$newSize,$newSize);
  266. imagecopyresampled($thumb2x,$sourceImg,0,0,$startWidth,$startHeight,$width*2,$height*2,$newSize,$newSize);
  267. imagejpeg($thumb,$newUrl,$settings['thumbQuality']);
  268. imagejpeg($thumb2x,$newUrl2x,$settings['thumbQuality']);
  269. }
  270. return true;
  271. }
  272. function importPhoto($path, $albumID = 0, $description = '', $tags = '') {
  273. $info = getimagesize($path);
  274. $size = filesize($path);
  275. $nameFile = array(array());
  276. $nameFile[0]['name'] = $path;
  277. $nameFile[0]['type'] = $info['mime'];
  278. $nameFile[0]['tmp_name'] = $path;
  279. $nameFile[0]['error'] = 0;
  280. $nameFile[0]['size'] = $size;
  281. return upload($nameFile, $albumID, $description, $tags);
  282. }
  283. function importUrl($url, $albumID = 0) {
  284. if (strpos($url, ',')!==false) {
  285. // Multiple photos
  286. $url = explode(',', $url);
  287. foreach ($url as &$key) {
  288. $key = str_replace(' ', '%20', $key);
  289. if (@getimagesize($key)) {
  290. $pathinfo = pathinfo($key);
  291. $filename = $pathinfo['filename'].".".$pathinfo['extension'];
  292. $tmp_name = __DIR__ . '/../../uploads/import/' . $filename;
  293. copy($key, $tmp_name);
  294. }
  295. }
  296. return importServer($albumID);
  297. } else {
  298. // One photo
  299. $url = str_replace(' ', '%20', $url);
  300. if (@getimagesize($url)) {
  301. $pathinfo = pathinfo($url);
  302. $filename = $pathinfo['filename'].".".$pathinfo['extension'];
  303. $tmp_name = __DIR__ . "/../../uploads/import/$filename";
  304. copy($url, $tmp_name);
  305. return importPhoto($tmp_name, $albumID);
  306. }
  307. }
  308. return false;
  309. }
  310. function importServer($albumID = 0, $path) {
  311. if (!isset($path)) $path = __DIR__ . '/../../uploads/import/';
  312. global $database;
  313. $files = glob($path . '*');
  314. $contains['photos'] = false;
  315. $contains['albums'] = false;
  316. foreach ($files as $file) {
  317. if (@getimagesize($file)) {
  318. // Photo
  319. if (!importPhoto($file, $albumID)) return false;
  320. $contains['photos'] = true;
  321. } else if (is_dir($file)) {
  322. $name = mysqli_real_escape_string($database, basename($file));
  323. $newAlbumID = addAlbum('[Import] ' . $name);
  324. if ($newAlbumID!==false) importServer($newAlbumID, $file . '/');
  325. $contains['albums'] = true;
  326. }
  327. }
  328. if ($contains['photos']===false&&$contains['albums']===false) return "Warning: Folder empty!";
  329. if ($contains['photos']===false&&$contains['albums']===true) return "Notice: Import only contains albums!";
  330. return true;
  331. }
  332. ?>