Photo.php 21 KB

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