Photo.php 20 KB

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