Photo.php 23 KB

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