Photo.php 20 KB

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