Photo.php 21 KB

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