Photo.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723
  1. <?php
  2. ###
  3. # @name Photo Module
  4. # @author Tobias Reich
  5. # @copyright 2014 by Tobias Reich
  6. ###
  7. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  8. class Photo extends Module {
  9. private $database = null;
  10. private $settings = null;
  11. private $photoIDs = null;
  12. public function __construct($database, $plugins, $settings, $photoIDs) {
  13. # Init vars
  14. $this->database = $database;
  15. $this->plugins = $plugins;
  16. $this->settings = $settings;
  17. $this->photoIDs = $photoIDs;
  18. return true;
  19. }
  20. public function add($files, $albumID, $description = '', $tags = '') {
  21. # Check dependencies
  22. $this->dependencies(isset($this->database));
  23. # Call plugins
  24. $this->plugins(__METHOD__, 0, func_get_args());
  25. switch($albumID) {
  26. case 's':
  27. # s for public (share)
  28. $public = 1;
  29. $star = 0;
  30. $albumID = 0;
  31. break;
  32. case 'f':
  33. # f for starred (fav)
  34. $star = 1;
  35. $public = 0;
  36. $albumID = 0;
  37. break;
  38. default:
  39. $star = 0;
  40. $public = 0;
  41. break;
  42. }
  43. foreach ($files as $file) {
  44. if ($file['type']!=='image/jpeg'&&
  45. $file['type']!=='image/png'&&
  46. $file['type']!=='image/gif')
  47. continue;
  48. $id = str_replace('.', '', microtime(true));
  49. while(strlen($id)<14) $id .= 0;
  50. $tmp_name = $file['tmp_name'];
  51. $extension = array_reverse(explode('.', $file['name']));
  52. $extension = $extension[0];
  53. $photo_name = md5($id) . ".$extension";
  54. $path = LYCHEE_UPLOADS_BIG . $photo_name;
  55. # Import if not uploaded via web
  56. if (!is_uploaded_file($tmp_name)) {
  57. if (!@copy($tmp_name, $path)) exit('Error: Could not copy photo to uploads!');
  58. else @unlink($tmp_name);
  59. } else {
  60. if (!@move_uploaded_file($tmp_name, $path)) exit('Error: Could not move photo to uploads!');
  61. }
  62. # Read infos
  63. $info = $this->getInfo($path);
  64. # Use title of file if IPTC title missing
  65. if ($info['title']==='') $info['title'] = mysqli_real_escape_string($this->database, substr(basename($file['name'], ".$extension"), 0, 30));
  66. # Use description parameter if set
  67. if ($description==='') $description = $info['description'];
  68. # Set orientation based on EXIF data
  69. if ($file['type']==='image/jpeg'&&isset($info['orientation'])&&$info['orientation']!==''&&isset($info['width'])&&isset($info['height'])) {
  70. if (!$this->adjustFile($path, $info)) exit('Error: Could not adjust photo!');
  71. }
  72. # Set original date
  73. if ($info['takestamp']!=='') @touch($path, $info['takestamp']);
  74. # Create Thumb
  75. if (!$this->createThumb($path, $photo_name)) exit('Error: Could not create thumbnail for photo!');
  76. # Save to DB
  77. $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)
  78. VALUES (
  79. '" . $id . "',
  80. '" . $info['title'] . "',
  81. '" . $photo_name . "',
  82. '" . $description . "',
  83. '" . $tags . "',
  84. '" . $info['type'] . "',
  85. '" . $info['width'] . "',
  86. '" . $info['height'] . "',
  87. '" . $info['size'] . "',
  88. '" . $info['iso'] . "',
  89. '" . $info['aperture'] . "',
  90. '" . $info['make'] . "',
  91. '" . $info['model'] . "',
  92. '" . $info['shutter'] . "',
  93. '" . $info['focal'] . "',
  94. '" . $info['takestamp'] . "',
  95. '" . md5($id) . ".jpeg',
  96. '" . $albumID . "',
  97. '" . $public . "',
  98. '" . $star . "');";
  99. $result = $this->database->query($query);
  100. if (!$result) exit('Error: Could not save photo in database!');
  101. }
  102. # Call plugins
  103. $this->plugins(__METHOD__, 1, func_get_args());
  104. return true;
  105. }
  106. private function createThumb($url, $filename, $width = 200, $height = 200) {
  107. # Check dependencies
  108. $this->dependencies(isset($this->settings, $url, $filename));
  109. # Call plugins
  110. $this->plugins(__METHOD__, 0, func_get_args());
  111. $info = getimagesize($url);
  112. $photoName = explode(".", $filename);
  113. $newUrl = LYCHEE_UPLOADS_THUMB . $photoName[0] . '.jpeg';
  114. $newUrl2x = LYCHEE_UPLOADS_THUMB . $photoName[0] . '@2x.jpeg';
  115. # create thumbnails with Imagick
  116. if(extension_loaded('imagick')) {
  117. # Read image
  118. $thumb = new Imagick();
  119. $thumb->readImage($url);
  120. $thumb->setImageCompressionQuality($this->settings['thumbQuality']);
  121. $thumb->setImageFormat('jpeg');
  122. # Copy image for 2nd thumb version
  123. $thumb2x = clone $thumb;
  124. # Create 1st version
  125. $thumb->cropThumbnailImage($width, $height);
  126. $thumb->writeImage($newUrl);
  127. $thumb->clear();
  128. $thumb->destroy();
  129. # Create 2nd version
  130. $thumb2x->cropThumbnailImage($width*2, $height*2);
  131. $thumb2x->writeImage($newUrl2x);
  132. $thumb2x->clear();
  133. $thumb2x->destroy();
  134. } else {
  135. # Set position and size
  136. $thumb = imagecreatetruecolor($width, $height);
  137. $thumb2x = imagecreatetruecolor($width*2, $height*2);
  138. if ($info[0]<$info[1]) {
  139. $newSize = $info[0];
  140. $startWidth = 0;
  141. $startHeight = $info[1]/2 - $info[0]/2;
  142. } else {
  143. $newSize = $info[1];
  144. $startWidth = $info[0]/2 - $info[1]/2;
  145. $startHeight = 0;
  146. }
  147. # Fallback for older version
  148. if ($info['mime']==='image/webp'&&floatval(phpversion())<5.5) return false;
  149. # Create new image
  150. switch($info['mime']) {
  151. case 'image/jpeg': $sourceImg = imagecreatefromjpeg($url); break;
  152. case 'image/png': $sourceImg = imagecreatefrompng($url); break;
  153. case 'image/gif': $sourceImg = imagecreatefromgif($url); break;
  154. case 'image/webp': $sourceImg = imagecreatefromwebp($url); break;
  155. default: return false; break;
  156. }
  157. # Create thumb
  158. imagecopyresampled($thumb, $sourceImg, 0, 0, $startWidth, $startHeight, $width, $height, $newSize, $newSize);
  159. imagejpeg($thumb, $newUrl, $this->settings['thumbQuality']);
  160. imagedestroy($thumb);
  161. # Create retina thumb
  162. imagecopyresampled($thumb2x, $sourceImg, 0, 0, $startWidth, $startHeight, $width*2, $height*2, $newSize, $newSize);
  163. imagejpeg($thumb2x, $newUrl2x, $this->settings['thumbQuality']);
  164. imagedestroy($thumb2x);
  165. # Free memory
  166. imagedestroy($sourceImg);
  167. }
  168. # Call plugins
  169. $this->plugins(__METHOD__, 1, func_get_args());
  170. return true;
  171. }
  172. private function adjustFile($path, $info) {
  173. # Check dependencies
  174. $this->dependencies(isset($path, $info));
  175. # Call plugins
  176. $this->plugins(__METHOD__, 0, func_get_args());
  177. if (extension_loaded('imagick')) {
  178. $rotateImage = 0;
  179. switch ($info['orientation']) {
  180. case 3:
  181. $rotateImage = 180;
  182. $imageOrientation = 1;
  183. break;
  184. case 6:
  185. $rotateImage = 90;
  186. $imageOrientation = 1;
  187. break;
  188. case 8:
  189. $rotateImage = 270;
  190. $imageOrientation = 1;
  191. break;
  192. }
  193. if ($rotateImage!==0) {
  194. $image = new Imagick();
  195. $image->readImage($path);
  196. $image->rotateImage(new ImagickPixel(), $rotateImage);
  197. $image->setImageOrientation($imageOrientation);
  198. $image->writeImage($path);
  199. $image->clear();
  200. $image->destroy();
  201. }
  202. } else {
  203. $newWidth = $info['width'];
  204. $newHeight = $info['height'];
  205. $process = false;
  206. $sourceImg = imagecreatefromjpeg($path);
  207. switch ($info['orientation']) {
  208. case 2:
  209. # mirror
  210. # not yet implemented
  211. break;
  212. case 3:
  213. $process = true;
  214. $sourceImg = imagerotate($sourceImg, -180, 0);
  215. break;
  216. case 4:
  217. # rotate 180 and mirror
  218. # not yet implemented
  219. break;
  220. case 5:
  221. # rotate 90 and mirror
  222. # not yet implemented
  223. break;
  224. case 6:
  225. $process = true;
  226. $sourceImg = imagerotate($sourceImg, -90, 0);
  227. $newWidth = $info['height'];
  228. $newHeight = $info['width'];
  229. break;
  230. case 7:
  231. # rotate -90 and mirror
  232. # not yet implemented
  233. break;
  234. case 8:
  235. $process = true;
  236. $sourceImg = imagerotate($sourceImg, 90, 0);
  237. $newWidth = $info['height'];
  238. $newHeight = $info['width'];
  239. break;
  240. }
  241. # Need to adjust photo?
  242. if ($process===true) {
  243. # Recreate photo
  244. $newSourceImg = imagecreatetruecolor($newWidth, $newHeight);
  245. imagecopyresampled($newSourceImg, $sourceImg, 0, 0, 0, 0, $newWidth, $newHeight, $newWidth, $newHeight);
  246. imagejpeg($newSourceImg, $path, 100);
  247. # Free memory
  248. imagedestroy($sourceImg);
  249. imagedestroy($newSourceImg);
  250. }
  251. }
  252. # Call plugins
  253. $this->plugins(__METHOD__, 1, func_get_args());
  254. return true;
  255. }
  256. public function get($albumID) {
  257. # Check dependencies
  258. $this->dependencies(isset($this->database, $this->photoIDs));
  259. # Call plugins
  260. $this->plugins(__METHOD__, 0, func_get_args());
  261. # Get photo
  262. $photos = $this->database->query("SELECT * FROM lychee_photos WHERE id = '$this->photoIDs' LIMIT 1;");
  263. $photo = $photos->fetch_assoc();
  264. # Parse photo
  265. $photo['sysdate'] = date('d M. Y', substr($photo['id'], 0, -4));
  266. if (strlen($photo['takestamp'])>1) $photo['takedate'] = date('d M. Y', $photo['takestamp']);
  267. if ($albumID!='false') {
  268. if ($photo['album']!=0) {
  269. # Get album
  270. $albums = $this->database->query("SELECT public FROM lychee_albums WHERE id = '" . $photo['album'] . " LIMIT 1';");
  271. $album = $albums->fetch_assoc();
  272. # Parse album
  273. $photo['public'] = ($album['public']=='1' ? '2' : $photo['public']);
  274. }
  275. $photo['original_album'] = $photo['album'];
  276. $photo['album'] = $albumID;
  277. }
  278. # Call plugins
  279. $this->plugins(__METHOD__, 1, func_get_args());
  280. return $photo;
  281. }
  282. private function getInfo($url) {
  283. # Check dependencies
  284. $this->dependencies(isset($this->database, $url));
  285. # Call plugins
  286. $this->plugins(__METHOD__, 0, func_get_args());
  287. $iptcArray = array();
  288. $info = getimagesize($url, $iptcArray);
  289. # General information
  290. $return['type'] = $info['mime'];
  291. $return['width'] = $info[0];
  292. $return['height'] = $info[1];
  293. # Size
  294. $size = filesize($url)/1024;
  295. if ($size>=1024) $return['size'] = round($size/1024, 1) . ' MB';
  296. else $return['size'] = round($size, 1) . ' KB';
  297. # IPTC Metadata Fallback
  298. $return['title'] = '';
  299. $return['description'] = '';
  300. # IPTC Metadata
  301. if(isset($iptcArray['APP13'])) {
  302. $iptcInfo = iptcparse($iptcArray['APP13']);
  303. if (is_array($iptcInfo)) {
  304. $temp = @$iptcInfo['2#105'][0];
  305. if (isset($temp)&&strlen($temp)>0) $return['title'] = $temp;
  306. $temp = @$iptcInfo['2#120'][0];
  307. if (isset($temp)&&strlen($temp)>0) $return['description'] = $temp;
  308. }
  309. }
  310. # EXIF Metadata Fallback
  311. $return['orientation'] = '';
  312. $return['iso'] = '';
  313. $return['aperture'] = '';
  314. $return['make'] = '';
  315. $return['model'] = '';
  316. $return['shutter'] = '';
  317. $return['focal'] = '';
  318. $return['takestamp'] = '';
  319. # Read EXIF
  320. if ($info['mime']=='image/jpeg') $exif = @exif_read_data($url, 'EXIF', 0);
  321. else $exif = false;
  322. # EXIF Metadata
  323. if ($exif!==false) {
  324. if (isset($exif['Orientation'])) $return['orientation'] = $exif['Orientation'];
  325. else if (isset($exif['IFD0']['Orientation'])) $return['orientation'] = $exif['IFD0']['Orientation'];
  326. $temp = @$exif['ISOSpeedRatings'];
  327. if (isset($temp)) $return['iso'] = $temp;
  328. $temp = @$exif['COMPUTED']['ApertureFNumber'];
  329. if (isset($temp)) $return['aperture'] = $temp;
  330. $temp = @$exif['Make'];
  331. if (isset($temp)) $return['make'] = $exif['Make'];
  332. $temp = @$exif['Model'];
  333. if (isset($temp)) $return['model'] = $temp;
  334. $temp = @$exif['ExposureTime'];
  335. if (isset($temp)) $return['shutter'] = $exif['ExposureTime'] . ' Sec.';
  336. $temp = @$exif['FocalLength'];
  337. if (isset($temp)) $return['focal'] = ($temp/1) . ' mm';
  338. $temp = @$exif['DateTimeOriginal'];
  339. if (isset($temp)) $return['takestamp'] = strtotime($temp);
  340. }
  341. # Security
  342. foreach(array_keys($return) as $key) $return[$key] = mysqli_real_escape_string($this->database, $return[$key]);
  343. # Call plugins
  344. $this->plugins(__METHOD__, 1, func_get_args());
  345. return $return;
  346. }
  347. public function getArchive() {
  348. # Check dependencies
  349. $this->dependencies(isset($this->database, $this->photoIDs));
  350. # Call plugins
  351. $this->plugins(__METHOD__, 0, func_get_args());
  352. # Get photo
  353. $photos = $this->database->query("SELECT title, url FROM lychee_photos WHERE id = '$this->photoIDs' LIMIT 1;");
  354. $photo = $photos->fetch_object();
  355. # Get extension
  356. $extension = array_reverse(explode('.', $photo->url));
  357. # Parse title
  358. if ($photo->title=='') $photo->title = 'Untitled';
  359. # Set headers
  360. header("Content-Type: application/octet-stream");
  361. header("Content-Disposition: attachment; filename=\"$photo->title.$extension[0]\"");
  362. header("Content-Length: " . filesize(LYCHEE_UPLOADS_BIG . $photo->url));
  363. # Send file
  364. readfile(LYCHEE_UPLOADS_BIG . $photo->url);
  365. # Call plugins
  366. $this->plugins(__METHOD__, 1, func_get_args());
  367. return true;
  368. }
  369. function setTitle($title) {
  370. # Check dependencies
  371. $this->dependencies(isset($this->database, $this->photoIDs));
  372. # Call plugins
  373. $this->plugins(__METHOD__, 0, func_get_args());
  374. # Parse
  375. if (strlen($title)>50) $title = substr($title, 0, 50);
  376. # Set title
  377. $result = $this->database->query("UPDATE lychee_photos SET title = '$title' WHERE id IN ($this->photoIDs);");
  378. # Call plugins
  379. $this->plugins(__METHOD__, 1, func_get_args());
  380. if (!$result) return false;
  381. return true;
  382. }
  383. function setDescription($description) {
  384. # Check dependencies
  385. $this->dependencies(isset($this->database, $this->photoIDs));
  386. # Call plugins
  387. $this->plugins(__METHOD__, 0, func_get_args());
  388. # Parse
  389. $description = htmlentities($description);
  390. if (strlen($description)>1000) $description = substr($description, 0, 1000);
  391. # Set description
  392. $result = $this->database->query("UPDATE lychee_photos SET description = '$description' WHERE id IN ('$this->photoIDs');");
  393. # Call plugins
  394. $this->plugins(__METHOD__, 1, func_get_args());
  395. if (!$result) return false;
  396. return true;
  397. }
  398. public function setStar() {
  399. # Check dependencies
  400. $this->dependencies(isset($this->database, $this->photoIDs));
  401. # Call plugins
  402. $this->plugins(__METHOD__, 0, func_get_args());
  403. # Init vars
  404. $error = false;
  405. # Get photos
  406. $photos = $this->database->query("SELECT id, star FROM lychee_photos WHERE id IN ($this->photoIDs);");
  407. # For each photo
  408. while ($photo = $photos->fetch_object()) {
  409. # Invert star
  410. $star = ($photo->star==0 ? 1 : 0);
  411. # Set star
  412. $star = $this->database->query("UPDATE lychee_photos SET star = '$star' WHERE id = '$photo->id';");
  413. if (!$star) $error = true;
  414. }
  415. # Call plugins
  416. $this->plugins(__METHOD__, 1, func_get_args());
  417. if ($error) return false;
  418. return true;
  419. }
  420. function getPublic($password) {
  421. # Check dependencies
  422. $this->dependencies(isset($this->database, $this->photoIDs));
  423. # Call plugins
  424. $this->plugins(__METHOD__, 0, func_get_args());
  425. # Get photo
  426. $photos = $this->database->query("SELECT public, album FROM lychee_photos WHERE id = '$this->photoIDs' LIMIT 1;");
  427. $photo = $photos->fetch_object();
  428. # Check if public
  429. if ($photo->public==1) return true;
  430. else {
  431. $album = new Album($this->database, null, null, $photo->album);
  432. $acP = $album->checkPassword($password);
  433. $agP = $album->getPublic();
  434. if ($acP===true&&$agP===true) return true;
  435. }
  436. # Call plugins
  437. $this->plugins(__METHOD__, 1, func_get_args());
  438. return false;
  439. }
  440. public function setPublic() {
  441. # Check dependencies
  442. $this->dependencies(isset($this->database, $this->photoIDs));
  443. # Call plugins
  444. $this->plugins(__METHOD__, 0, func_get_args());
  445. # Get public
  446. $photos = $this->database->query("SELECT public FROM lychee_photos WHERE id = '$this->photoIDs' LIMIT 1;");
  447. $photo = $photos->fetch_object();
  448. # Invert public
  449. $public = ($photo->public==0 ? 1 : 0);
  450. # Set public
  451. $result = $this->database->query("UPDATE lychee_photos SET public = '$public' WHERE id = '$this->photoIDs';");
  452. # Call plugins
  453. $this->plugins(__METHOD__, 1, func_get_args());
  454. if (!$result) return false;
  455. return true;
  456. }
  457. function setAlbum($albumID) {
  458. # Check dependencies
  459. $this->dependencies(isset($this->database, $this->photoIDs));
  460. # Call plugins
  461. $this->plugins(__METHOD__, 0, func_get_args());
  462. # Set album
  463. $result = $this->database->query("UPDATE lychee_photos SET album = '$albumID' WHERE id IN ($this->photoIDs);");
  464. # Call plugins
  465. $this->plugins(__METHOD__, 1, func_get_args());
  466. if (!$result) return false;
  467. return true;
  468. }
  469. public function setTags($tags) {
  470. # Check dependencies
  471. $this->dependencies(isset($this->database, $this->photoIDs));
  472. # Call plugins
  473. $this->plugins(__METHOD__, 0, func_get_args());
  474. # Parse tags
  475. $tags = preg_replace('/(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/', ',', $tags);
  476. $tags = preg_replace('/,$|^,|(\ ){0,}$/', '', $tags);
  477. if (strlen($tags)>1000) return false;
  478. # Set tags
  479. $result = $this->database->query("UPDATE lychee_photos SET tags = '$tags' WHERE id IN ($this->photoIDs);");
  480. # Call plugins
  481. $this->plugins(__METHOD__, 1, func_get_args());
  482. if (!$result) return false;
  483. return true;
  484. }
  485. public function delete() {
  486. # Check dependencies
  487. $this->dependencies(isset($this->database, $this->photoIDs));
  488. # Call plugins
  489. $this->plugins(__METHOD__, 0, func_get_args());
  490. # Get photos
  491. $photos = $this->database->query("SELECT id, url, thumbUrl FROM lychee_photos WHERE id IN ($this->photoIDs);");
  492. # For each photo
  493. while ($photo = $photos->fetch_object()) {
  494. # Get retina thumb url
  495. $thumbUrl2x = explode(".", $photo->thumbUrl);
  496. $thumbUrl2x = $thumbUrl2x[0] . '@2x.' . $thumbUrl2x[1];
  497. # Delete files
  498. if (file_exists(LYCHEE_UPLOADS_BIG . $photo->url)&&!unlink(LYCHEE_UPLOADS_BIG . $photo->url)) return false;
  499. if (file_exists(LYCHEE_UPLOADS_THUMB . $photo->thumbUrl)&&!unlink(LYCHEE_UPLOADS_THUMB . $photo->thumbUrl)) return false;
  500. if (file_exists(LYCHEE_UPLOADS_THUMB . $thumbUrl2x)&&!unlink(LYCHEE_UPLOADS_THUMB . $thumbUrl2x)) return false;
  501. # Delete db entry
  502. $delete = $this->database->query("DELETE FROM lychee_photos WHERE id = '$photo->id';");
  503. if (!$delete) return false;
  504. }
  505. # Call plugins
  506. $this->plugins(__METHOD__, 1, func_get_args());
  507. if (!$photos) return false;
  508. return true;
  509. }
  510. }
  511. ?>