Photo.php 20 KB

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