Photo.php 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053
  1. <?php
  2. ###
  3. # @name Photo Module
  4. # @copyright 2014 by Tobias Reich
  5. ###
  6. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  7. class Photo extends Module {
  8. private $database = null;
  9. private $settings = null;
  10. private $photoIDs = null;
  11. public static $validTypes = array(
  12. IMAGETYPE_JPEG,
  13. IMAGETYPE_GIF,
  14. IMAGETYPE_PNG
  15. );
  16. public static $validExtensions = array(
  17. '.jpg',
  18. '.jpeg',
  19. '.png',
  20. '.gif'
  21. );
  22. public function __construct($database, $plugins, $settings, $photoIDs) {
  23. # Init vars
  24. $this->database = $database;
  25. $this->plugins = $plugins;
  26. $this->settings = $settings;
  27. $this->photoIDs = $photoIDs;
  28. return true;
  29. }
  30. public function add($files, $albumID, $description = '', $tags = '') {
  31. # Check dependencies
  32. self::dependencies(isset($this->database));
  33. # Check permissions
  34. if (hasPermissions(LYCHEE_UPLOADS)===false||
  35. hasPermissions(LYCHEE_UPLOADS_BIG)===false||
  36. hasPermissions(LYCHEE_UPLOADS_THUMB)===false) {
  37. Log::error($this->database, __METHOD__, __LINE__, 'An upload-folder is missing or not readable and writable');
  38. exit('Error: An upload-folder is missing or not readable and writable!');
  39. }
  40. # Call plugins
  41. $this->plugins(__METHOD__, 0, func_get_args());
  42. switch($albumID) {
  43. case 's':
  44. # s for public (share)
  45. $public = 1;
  46. $star = 0;
  47. $albumID = 0;
  48. break;
  49. case 'f':
  50. # f for starred (fav)
  51. $star = 1;
  52. $public = 0;
  53. $albumID = 0;
  54. break;
  55. case 'r':
  56. # r for recent
  57. $public = 0;
  58. $star = 0;
  59. $albumID = 0;
  60. break;
  61. default:
  62. $star = 0;
  63. $public = 0;
  64. break;
  65. }
  66. foreach ($files as $file) {
  67. # Verify extension
  68. $extension = getExtension($file['name']);
  69. if (!in_array(strtolower($extension), Photo::$validExtensions, true)) {
  70. Log::error($this->database, __METHOD__, __LINE__, 'Photo format not supported');
  71. exit('Error: Photo format not supported!');
  72. }
  73. # Verify image
  74. $type = @exif_imagetype($file['tmp_name']);
  75. if (!in_array($type, Photo::$validTypes, true)) {
  76. Log::error($this->database, __METHOD__, __LINE__, 'Photo type not supported');
  77. exit('Error: Photo type not supported!');
  78. }
  79. # Generate id
  80. $id = str_replace('.', '', microtime(true));
  81. while(strlen($id)<14) $id .= 0;
  82. # Set paths
  83. $tmp_name = $file['tmp_name'];
  84. $photo_name = md5($id) . $extension;
  85. $path = LYCHEE_UPLOADS_BIG . $photo_name;
  86. # Calculate checksum
  87. $checksum = sha1_file($tmp_name);
  88. if ($checksum===false) {
  89. Log::error($this->database, __METHOD__, __LINE__, 'Could not calculate checksum for photo');
  90. exit('Error: Could not calculate checksum for photo!');
  91. }
  92. # Check if image exists based on checksum
  93. if ($checksum===false) {
  94. $checksum = '';
  95. $exists = false;
  96. } else {
  97. $exists = $this->exists($checksum);
  98. if ($exists!==false) {
  99. $photo_name = $exists['photo_name'];
  100. $path = $exists['path'];
  101. $path_thumb = $exists['path_thumb'];
  102. $medium = ($exists['medium']==='1' ? 1 : 0);
  103. $exists = true;
  104. }
  105. }
  106. if ($exists===false) {
  107. # Import if not uploaded via web
  108. if (!is_uploaded_file($tmp_name)) {
  109. if (!@copy($tmp_name, $path)) {
  110. Log::error($this->database, __METHOD__, __LINE__, 'Could not copy photo to uploads');
  111. exit('Error: Could not copy photo to uploads!');
  112. } else @unlink($tmp_name);
  113. } else {
  114. if (!@move_uploaded_file($tmp_name, $path)) {
  115. Log::error($this->database, __METHOD__, __LINE__, 'Could not move photo to uploads');
  116. exit('Error: Could not move photo to uploads!');
  117. }
  118. }
  119. }
  120. # Read infos
  121. $info = $this->getInfo($path);
  122. # Use title of file if IPTC title missing
  123. if ($info['title']==='') $info['title'] = substr(basename($file['name'], $extension), 0, 30);
  124. # Use description parameter if set
  125. if ($description==='') $description = $info['description'];
  126. if ($exists===false) {
  127. # Set orientation based on EXIF data
  128. if ($file['type']==='image/jpeg'&&isset($info['orientation'])&&$info['orientation']!=='') {
  129. $adjustFile = $this->adjustFile($path, $info);
  130. if ($adjustFile!==false) $info = $adjustFile;
  131. else Log::notice($this->database, __METHOD__, __LINE__, 'Skipped adjustment of photo (' . $info['title'] . ')');
  132. }
  133. # Set original date
  134. if ($info['takestamp']!==''&&$info['takestamp']!==0) @touch($path, $info['takestamp']);
  135. # Create Thumb
  136. if (!$this->createThumb($path, $photo_name, $info['type'], $info['width'], $info['height'])) {
  137. Log::error($this->database, __METHOD__, __LINE__, 'Could not create thumbnail for photo');
  138. exit('Error: Could not create thumbnail for photo!');
  139. }
  140. # Create Medium
  141. if ($this->createMedium($path, $photo_name, $info['width'], $info['height'])) $medium = 1;
  142. else $medium = 0;
  143. # Set thumb url
  144. $path_thumb = md5($id) . '.jpeg';
  145. }
  146. # Save to DB
  147. $values = array(LYCHEE_TABLE_PHOTOS, $id, $info['title'], $photo_name, $description, $tags, $info['type'], $info['width'], $info['height'], $info['size'], $info['iso'], $info['aperture'], $info['make'], $info['model'], $info['shutter'], $info['focal'], $info['takestamp'], $path_thumb, $albumID, $public, $star, $checksum, $medium);
  148. $query = Database::prepare($this->database, "INSERT INTO ? (id, title, url, description, tags, type, width, height, size, iso, aperture, make, model, shutter, focal, takestamp, thumbUrl, album, public, star, checksum, medium) VALUES ('?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?')", $values);
  149. $result = $this->database->query($query);
  150. if (!$result) {
  151. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  152. exit('Error: Could not save photo in database!');
  153. }
  154. }
  155. # Call plugins
  156. $this->plugins(__METHOD__, 1, func_get_args());
  157. return true;
  158. }
  159. private function exists($checksum, $photoID = null) {
  160. # Check dependencies
  161. self::dependencies(isset($this->database, $checksum));
  162. # Exclude $photoID from select when $photoID is set
  163. if (isset($photoID)) $query = Database::prepare($this->database, "SELECT id, url, thumbUrl, medium FROM ? WHERE checksum = '?' AND id <> '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $checksum, $photoID));
  164. else $query = Database::prepare($this->database, "SELECT id, url, thumbUrl, medium FROM ? WHERE checksum = '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $checksum));
  165. $result = $this->database->query($query);
  166. if (!$result) {
  167. Log::error($this->database, __METHOD__, __LINE__, 'Could not check for existing photos with the same checksum');
  168. return false;
  169. }
  170. if ($result->num_rows===1) {
  171. $result = $result->fetch_object();
  172. $return = array(
  173. 'photo_name' => $result->url,
  174. 'path' => LYCHEE_UPLOADS_BIG . $result->url,
  175. 'path_thumb' => $result->thumbUrl,
  176. 'medium' => $result->medium
  177. );
  178. return $return;
  179. }
  180. return false;
  181. }
  182. private function createThumb($url, $filename, $type, $width, $height) {
  183. # Check dependencies
  184. self::dependencies(isset($this->database, $this->settings, $url, $filename, $type, $width, $height));
  185. # Call plugins
  186. $this->plugins(__METHOD__, 0, func_get_args());
  187. # Size of the thumbnail
  188. $newWidth = 200;
  189. $newHeight = 200;
  190. $photoName = explode('.', $filename);
  191. $newUrl = LYCHEE_UPLOADS_THUMB . $photoName[0] . '.jpeg';
  192. $newUrl2x = LYCHEE_UPLOADS_THUMB . $photoName[0] . '@2x.jpeg';
  193. # Create thumbnails with Imagick
  194. if(extension_loaded('imagick')&&$this->settings['imagick']==='1') {
  195. # Read image
  196. $thumb = new Imagick();
  197. $thumb->readImage($url);
  198. $thumb->setImageCompressionQuality($this->settings['thumbQuality']);
  199. $thumb->setImageFormat('jpeg');
  200. # Copy image for 2nd thumb version
  201. $thumb2x = clone $thumb;
  202. # Create 1st version
  203. $thumb->cropThumbnailImage($newWidth, $newHeight);
  204. $thumb->writeImage($newUrl);
  205. $thumb->clear();
  206. $thumb->destroy();
  207. # Create 2nd version
  208. $thumb2x->cropThumbnailImage($newWidth*2, $newHeight*2);
  209. $thumb2x->writeImage($newUrl2x);
  210. $thumb2x->clear();
  211. $thumb2x->destroy();
  212. } else {
  213. # Create image
  214. $thumb = imagecreatetruecolor($newWidth, $newHeight);
  215. $thumb2x = imagecreatetruecolor($newWidth*2, $newHeight*2);
  216. # Set position
  217. if ($width<$height) {
  218. $newSize = $width;
  219. $startWidth = 0;
  220. $startHeight = $height/2 - $width/2;
  221. } else {
  222. $newSize = $height;
  223. $startWidth = $width/2 - $height/2;
  224. $startHeight = 0;
  225. }
  226. # Create new image
  227. switch($type) {
  228. case 'image/jpeg': $sourceImg = imagecreatefromjpeg($url); break;
  229. case 'image/png': $sourceImg = imagecreatefrompng($url); break;
  230. case 'image/gif': $sourceImg = imagecreatefromgif($url); break;
  231. default: Log::error($this->database, __METHOD__, __LINE__, 'Type of photo is not supported');
  232. return false;
  233. break;
  234. }
  235. # Create thumb
  236. fastimagecopyresampled($thumb, $sourceImg, 0, 0, $startWidth, $startHeight, $newWidth, $newHeight, $newSize, $newSize);
  237. imagejpeg($thumb, $newUrl, $this->settings['thumbQuality']);
  238. imagedestroy($thumb);
  239. # Create retina thumb
  240. fastimagecopyresampled($thumb2x, $sourceImg, 0, 0, $startWidth, $startHeight, $newWidth*2, $newHeight*2, $newSize, $newSize);
  241. imagejpeg($thumb2x, $newUrl2x, $this->settings['thumbQuality']);
  242. imagedestroy($thumb2x);
  243. # Free memory
  244. imagedestroy($sourceImg);
  245. }
  246. # Call plugins
  247. $this->plugins(__METHOD__, 1, func_get_args());
  248. return true;
  249. }
  250. private function createMedium($url, $filename, $width, $height) {
  251. # Check dependencies
  252. self::dependencies(isset($this->database, $this->settings, $url, $filename, $width, $height));
  253. # Call plugins
  254. $this->plugins(__METHOD__, 0, func_get_args());
  255. # Set to true when creation of medium-photo failed
  256. $error = false;
  257. # Size of the medium-photo
  258. # When changing these values,
  259. # also change the size detection in the front-end
  260. $newWidth = 1920;
  261. $newHeight = 1080;
  262. # Check permissions
  263. if (hasPermissions(LYCHEE_UPLOADS_MEDIUM)===false) {
  264. # Permissions are missing
  265. Log::notice($this->database, __METHOD__, __LINE__, 'Skipped creation of medium-photo, because uploads/medium/ is missing or not readable and writable.');
  266. $error = true;
  267. }
  268. # Is photo big enough?
  269. # Is medium activated?
  270. # Is Imagick installed and activated?
  271. if (($error===false)&&
  272. ($width>$newWidth||$height>$newHeight)&&
  273. ($this->settings['medium']==='1')&&
  274. (extension_loaded('imagick')&&$this->settings['imagick']==='1')) {
  275. $newUrl = LYCHEE_UPLOADS_MEDIUM . $filename;
  276. # Read image
  277. $medium = new Imagick();
  278. $medium->readImage($url);
  279. # Adjust image
  280. $medium->scaleImage($newWidth, $newHeight, true);
  281. # Save image
  282. try { $medium->writeImage($newUrl); }
  283. catch (ImagickException $err) {
  284. Log::notice($this->database, __METHOD__, __LINE__, 'Could not save medium-photo: ' . $err->getMessage());
  285. $error = true;
  286. }
  287. $medium->clear();
  288. $medium->destroy();
  289. } else {
  290. # Photo too small or
  291. # Medium is deactivated or
  292. # Imagick not installed
  293. $error = true;
  294. }
  295. # Call plugins
  296. $this->plugins(__METHOD__, 1, func_get_args());
  297. if ($error===true) return false;
  298. return true;
  299. }
  300. public function adjustFile($path, $info) {
  301. # Check dependencies
  302. self::dependencies(isset($path, $info));
  303. # Call plugins
  304. $this->plugins(__METHOD__, 0, func_get_args());
  305. $swapSize = false;
  306. if (extension_loaded('imagick')&&$this->settings['imagick']==='1') {
  307. $rotateImage = 0;
  308. switch ($info['orientation']) {
  309. case 3:
  310. $rotateImage = 180;
  311. break;
  312. case 6:
  313. $rotateImage = 90;
  314. $swapSize = true;
  315. break;
  316. case 8:
  317. $rotateImage = 270;
  318. $swapSize = true;
  319. break;
  320. default:
  321. return false;
  322. break;
  323. }
  324. if ($rotateImage!==0) {
  325. $image = new Imagick();
  326. $image->readImage($path);
  327. $image->rotateImage(new ImagickPixel(), $rotateImage);
  328. $image->setImageOrientation(1);
  329. $image->writeImage($path);
  330. $image->clear();
  331. $image->destroy();
  332. }
  333. } else {
  334. $newWidth = $info['width'];
  335. $newHeight = $info['height'];
  336. $sourceImg = imagecreatefromjpeg($path);
  337. switch ($info['orientation']) {
  338. case 2:
  339. # mirror
  340. # not yet implemented
  341. return false;
  342. break;
  343. case 3:
  344. $process = true;
  345. $sourceImg = imagerotate($sourceImg, -180, 0);
  346. break;
  347. case 4:
  348. # rotate 180 and mirror
  349. # not yet implemented
  350. return false;
  351. break;
  352. case 5:
  353. # rotate 90 and mirror
  354. # not yet implemented
  355. return false;
  356. break;
  357. case 6:
  358. $process = true;
  359. $sourceImg = imagerotate($sourceImg, -90, 0);
  360. $newWidth = $info['height'];
  361. $newHeight = $info['width'];
  362. $swapSize = true;
  363. break;
  364. case 7:
  365. # rotate -90 and mirror
  366. # not yet implemented
  367. return false;
  368. break;
  369. case 8:
  370. $process = true;
  371. $sourceImg = imagerotate($sourceImg, 90, 0);
  372. $newWidth = $info['height'];
  373. $newHeight = $info['width'];
  374. $swapSize = true;
  375. break;
  376. default:
  377. return false;
  378. break;
  379. }
  380. # Recreate photo
  381. $newSourceImg = imagecreatetruecolor($newWidth, $newHeight);
  382. imagecopyresampled($newSourceImg, $sourceImg, 0, 0, 0, 0, $newWidth, $newHeight, $newWidth, $newHeight);
  383. imagejpeg($newSourceImg, $path, 100);
  384. # Free memory
  385. imagedestroy($sourceImg);
  386. imagedestroy($newSourceImg);
  387. }
  388. # Call plugins
  389. $this->plugins(__METHOD__, 1, func_get_args());
  390. # SwapSize should be true when the image has been rotated
  391. # Return new dimensions in this case
  392. if ($swapSize===true) {
  393. $swapSize = $info['width'];
  394. $info['width'] = $info['height'];
  395. $info['height'] = $swapSize;
  396. }
  397. return $info;
  398. }
  399. public function get($albumID) {
  400. # Check dependencies
  401. self::dependencies(isset($this->database, $this->photoIDs));
  402. # Call plugins
  403. $this->plugins(__METHOD__, 0, func_get_args());
  404. # Get photo
  405. $query = Database::prepare($this->database, "SELECT * FROM ? WHERE id = '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));
  406. $photos = $this->database->query($query);
  407. $photo = $photos->fetch_assoc();
  408. # Parse photo
  409. $photo['sysdate'] = date('d M. Y', substr($photo['id'], 0, -4));
  410. if (strlen($photo['takestamp'])>1) $photo['takedate'] = date('d M. Y', $photo['takestamp']);
  411. # Parse medium
  412. if ($photo['medium']==='1') $photo['medium'] = LYCHEE_URL_UPLOADS_MEDIUM . $photo['url'];
  413. else $photo['medium'] = '';
  414. # Parse paths
  415. $photo['url'] = LYCHEE_URL_UPLOADS_BIG . $photo['url'];
  416. $photo['thumbUrl'] = LYCHEE_URL_UPLOADS_THUMB . $photo['thumbUrl'];
  417. if ($albumID!='false') {
  418. # Show photo as public when parent album is public
  419. # Check if parent album is available and not photo not unsorted
  420. if ($photo['album']!=0) {
  421. # Get album
  422. $query = Database::prepare($this->database, "SELECT public FROM ? WHERE id = '?' LIMIT 1", array(LYCHEE_TABLE_ALBUMS, $photo['album']));
  423. $albums = $this->database->query($query);
  424. $album = $albums->fetch_assoc();
  425. # Parse album
  426. $photo['public'] = ($album['public']=='1' ? '2' : $photo['public']);
  427. }
  428. $photo['original_album'] = $photo['album'];
  429. $photo['album'] = $albumID;
  430. }
  431. # Call plugins
  432. $this->plugins(__METHOD__, 1, func_get_args());
  433. return $photo;
  434. }
  435. public function getInfo($url) {
  436. # Check dependencies
  437. self::dependencies(isset($this->database, $url));
  438. # Call plugins
  439. $this->plugins(__METHOD__, 0, func_get_args());
  440. $iptcArray = array();
  441. $info = getimagesize($url, $iptcArray);
  442. # General information
  443. $return['type'] = $info['mime'];
  444. $return['width'] = $info[0];
  445. $return['height'] = $info[1];
  446. # Size
  447. $size = filesize($url)/1024;
  448. if ($size>=1024) $return['size'] = round($size/1024, 1) . ' MB';
  449. else $return['size'] = round($size, 1) . ' KB';
  450. # IPTC Metadata Fallback
  451. $return['title'] = '';
  452. $return['description'] = '';
  453. # IPTC Metadata
  454. if(isset($iptcArray['APP13'])) {
  455. $iptcInfo = iptcparse($iptcArray['APP13']);
  456. if (is_array($iptcInfo)) {
  457. $temp = @$iptcInfo['2#105'][0];
  458. if (isset($temp)&&strlen($temp)>0) $return['title'] = $temp;
  459. $temp = @$iptcInfo['2#120'][0];
  460. if (isset($temp)&&strlen($temp)>0) $return['description'] = $temp;
  461. $temp = @$iptcInfo['2#005'][0];
  462. if (isset($temp)&&strlen($temp)>0&&$return['title']==='') $return['title'] = $temp;
  463. }
  464. }
  465. # EXIF Metadata Fallback
  466. $return['orientation'] = '';
  467. $return['iso'] = '';
  468. $return['aperture'] = '';
  469. $return['make'] = '';
  470. $return['model'] = '';
  471. $return['shutter'] = '';
  472. $return['focal'] = '';
  473. $return['takestamp'] = 0;
  474. # Read EXIF
  475. if ($info['mime']=='image/jpeg') $exif = @exif_read_data($url, 'EXIF', 0);
  476. else $exif = false;
  477. # EXIF Metadata
  478. if ($exif!==false) {
  479. if (isset($exif['Orientation'])) $return['orientation'] = $exif['Orientation'];
  480. else if (isset($exif['IFD0']['Orientation'])) $return['orientation'] = $exif['IFD0']['Orientation'];
  481. $temp = @$exif['ISOSpeedRatings'];
  482. if (isset($temp)) $return['iso'] = $temp;
  483. $temp = @$exif['COMPUTED']['ApertureFNumber'];
  484. if (isset($temp)) $return['aperture'] = $temp;
  485. $temp = @$exif['Make'];
  486. if (isset($temp)) $return['make'] = trim($temp);
  487. $temp = @$exif['Model'];
  488. if (isset($temp)) $return['model'] = trim($temp);
  489. $temp = @$exif['ExposureTime'];
  490. if (isset($temp)) $return['shutter'] = $exif['ExposureTime'] . ' s';
  491. $temp = @$exif['FocalLength'];
  492. if (isset($temp)) {
  493. if (strpos($temp, '/')!==FALSE) {
  494. $temp = explode('/', $temp, 2);
  495. $temp = $temp[0] / $temp[1];
  496. $temp = round($temp, 1);
  497. $return['focal'] = $temp . ' mm';
  498. }
  499. $return['focal'] = $temp . ' mm';
  500. }
  501. $temp = @$exif['DateTimeOriginal'];
  502. if (isset($temp)) $return['takestamp'] = strtotime($temp);
  503. }
  504. # Call plugins
  505. $this->plugins(__METHOD__, 1, func_get_args());
  506. return $return;
  507. }
  508. public function getArchive() {
  509. # Check dependencies
  510. self::dependencies(isset($this->database, $this->photoIDs));
  511. # Call plugins
  512. $this->plugins(__METHOD__, 0, func_get_args());
  513. # Get photo
  514. $query = Database::prepare($this->database, "SELECT title, url FROM ? WHERE id = '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));
  515. $photos = $this->database->query($query);
  516. $photo = $photos->fetch_object();
  517. # Get extension
  518. $extension = getExtension($photo->url);
  519. if ($extension===false) {
  520. Log::error($this->database, __METHOD__, __LINE__, 'Invalid photo extension');
  521. return false;
  522. }
  523. # Illicit chars
  524. $badChars = array_merge(
  525. array_map('chr', range(0,31)),
  526. array("<", ">", ":", '"', "/", "\\", "|", "?", "*")
  527. );
  528. # Parse title
  529. if ($photo->title=='') $photo->title = 'Untitled';
  530. # Escape title
  531. $photo->title = str_replace($badChars, '', $photo->title);
  532. # Set headers
  533. header("Content-Type: application/octet-stream");
  534. header("Content-Disposition: attachment; filename=\"" . $photo->title . $extension . "\"");
  535. header("Content-Length: " . filesize(LYCHEE_UPLOADS_BIG . $photo->url));
  536. # Send file
  537. readfile(LYCHEE_UPLOADS_BIG . $photo->url);
  538. # Call plugins
  539. $this->plugins(__METHOD__, 1, func_get_args());
  540. return true;
  541. }
  542. public function setTitle($title) {
  543. # Check dependencies
  544. self::dependencies(isset($this->database, $this->photoIDs));
  545. # Call plugins
  546. $this->plugins(__METHOD__, 0, func_get_args());
  547. # Parse
  548. if (strlen($title)>50) $title = substr($title, 0, 50);
  549. # Set title
  550. $query = Database::prepare($this->database, "UPDATE ? SET title = '?' WHERE id IN (?)", array(LYCHEE_TABLE_PHOTOS, $title, $this->photoIDs));
  551. $result = $this->database->query($query);
  552. # Call plugins
  553. $this->plugins(__METHOD__, 1, func_get_args());
  554. if (!$result) {
  555. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  556. return false;
  557. }
  558. return true;
  559. }
  560. public function setDescription($description) {
  561. # Check dependencies
  562. self::dependencies(isset($this->database, $this->photoIDs));
  563. # Call plugins
  564. $this->plugins(__METHOD__, 0, func_get_args());
  565. # Parse
  566. $description = htmlentities($description, ENT_COMPAT | ENT_HTML401, 'UTF-8');
  567. if (strlen($description)>1000) $description = substr($description, 0, 1000);
  568. # Set description
  569. $query = Database::prepare($this->database, "UPDATE ? SET description = '?' WHERE id IN ('?')", array(LYCHEE_TABLE_PHOTOS, $description, $this->photoIDs));
  570. $result = $this->database->query($query);
  571. # Call plugins
  572. $this->plugins(__METHOD__, 1, func_get_args());
  573. if (!$result) {
  574. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  575. return false;
  576. }
  577. return true;
  578. }
  579. public function setStar() {
  580. # Check dependencies
  581. self::dependencies(isset($this->database, $this->photoIDs));
  582. # Call plugins
  583. $this->plugins(__METHOD__, 0, func_get_args());
  584. # Init vars
  585. $error = false;
  586. # Get photos
  587. $query = Database::prepare($this->database, "SELECT id, star FROM ? WHERE id IN (?)", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));
  588. $photos = $this->database->query($query);
  589. # For each photo
  590. while ($photo = $photos->fetch_object()) {
  591. # Invert star
  592. $star = ($photo->star==0 ? 1 : 0);
  593. # Set star
  594. $query = Database::prepare($this->database, "UPDATE ? SET star = '?' WHERE id = '?'", array(LYCHEE_TABLE_PHOTOS, $star, $photo->id));
  595. $star = $this->database->query($query);
  596. if (!$star) $error = true;
  597. }
  598. # Call plugins
  599. $this->plugins(__METHOD__, 1, func_get_args());
  600. if ($error===true) {
  601. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  602. return false;
  603. }
  604. return true;
  605. }
  606. public function getPublic($password) {
  607. # Check dependencies
  608. self::dependencies(isset($this->database, $this->photoIDs));
  609. # Call plugins
  610. $this->plugins(__METHOD__, 0, func_get_args());
  611. # Get photo
  612. $query = Database::prepare($this->database, "SELECT public, album FROM ? WHERE id = '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));
  613. $photos = $this->database->query($query);
  614. $photo = $photos->fetch_object();
  615. # Check if public
  616. if ($photo->public==1) return true;
  617. else {
  618. $album = new Album($this->database, null, null, $photo->album);
  619. $acP = $album->checkPassword($password);
  620. $agP = $album->getPublic();
  621. if ($acP===true&&$agP===true) return true;
  622. }
  623. # Call plugins
  624. $this->plugins(__METHOD__, 1, func_get_args());
  625. return false;
  626. }
  627. public function setPublic() {
  628. # Check dependencies
  629. self::dependencies(isset($this->database, $this->photoIDs));
  630. # Call plugins
  631. $this->plugins(__METHOD__, 0, func_get_args());
  632. # Get public
  633. $query = Database::prepare($this->database, "SELECT public FROM ? WHERE id = '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));
  634. $photos = $this->database->query($query);
  635. $photo = $photos->fetch_object();
  636. # Invert public
  637. $public = ($photo->public==0 ? 1 : 0);
  638. # Set public
  639. $query = Database::prepare($this->database, "UPDATE ? SET public = '?' WHERE id = '?'", array(LYCHEE_TABLE_PHOTOS, $public, $this->photoIDs));
  640. $result = $this->database->query($query);
  641. # Call plugins
  642. $this->plugins(__METHOD__, 1, func_get_args());
  643. if (!$result) {
  644. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  645. return false;
  646. }
  647. return true;
  648. }
  649. function setAlbum($albumID) {
  650. # Check dependencies
  651. self::dependencies(isset($this->database, $this->photoIDs));
  652. # Call plugins
  653. $this->plugins(__METHOD__, 0, func_get_args());
  654. # Set album
  655. $query = Database::prepare($this->database, "UPDATE ? SET album = '?' WHERE id IN (?)", array(LYCHEE_TABLE_PHOTOS, $albumID, $this->photoIDs));
  656. $result = $this->database->query($query);
  657. # Call plugins
  658. $this->plugins(__METHOD__, 1, func_get_args());
  659. if (!$result) {
  660. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  661. return false;
  662. }
  663. return true;
  664. }
  665. public function setTags($tags) {
  666. # Check dependencies
  667. self::dependencies(isset($this->database, $this->photoIDs));
  668. # Call plugins
  669. $this->plugins(__METHOD__, 0, func_get_args());
  670. # Parse tags
  671. $tags = preg_replace('/(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/', ',', $tags);
  672. $tags = preg_replace('/,$|^,|(\ ){0,}$/', '', $tags);
  673. if (strlen($tags)>1000) {
  674. Log::notice($this->database, __METHOD__, __LINE__, 'Length of tags higher than 1000');
  675. return false;
  676. }
  677. # Set tags
  678. $query = Database::prepare($this->database, "UPDATE ? SET tags = '?' WHERE id IN (?)", array(LYCHEE_TABLE_PHOTOS, $tags, $this->photoIDs));
  679. $result = $this->database->query($query);
  680. # Call plugins
  681. $this->plugins(__METHOD__, 1, func_get_args());
  682. if (!$result) {
  683. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  684. return false;
  685. }
  686. return true;
  687. }
  688. public function duplicate() {
  689. # Check dependencies
  690. self::dependencies(isset($this->database, $this->photoIDs));
  691. # Call plugins
  692. $this->plugins(__METHOD__, 0, func_get_args());
  693. # Get photos
  694. $query = Database::prepare($this->database, "SELECT id, checksum FROM ? WHERE id IN (?)", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));
  695. $photos = $this->database->query($query);
  696. if (!$photos) {
  697. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  698. return false;
  699. }
  700. # For each photo
  701. while ($photo = $photos->fetch_object()) {
  702. # Generate id
  703. $id = str_replace('.', '', microtime(true));
  704. while(strlen($id)<14) $id .= 0;
  705. # Duplicate entry
  706. $values = array(LYCHEE_TABLE_PHOTOS, $id, LYCHEE_TABLE_PHOTOS, $photo->id);
  707. $query = Database::prepare($this->database, "INSERT INTO ? (id, title, url, description, tags, type, width, height, size, iso, aperture, make, model, shutter, focal, takestamp, thumbUrl, album, public, star, checksum) SELECT '?' AS id, title, url, description, tags, type, width, height, size, iso, aperture, make, model, shutter, focal, takestamp, thumbUrl, album, public, star, checksum FROM ? WHERE id = '?'", $values);
  708. $duplicate = $this->database->query($query);
  709. if (!$duplicate) {
  710. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  711. return false;
  712. }
  713. }
  714. return true;
  715. }
  716. public function delete() {
  717. # Check dependencies
  718. self::dependencies(isset($this->database, $this->photoIDs));
  719. # Call plugins
  720. $this->plugins(__METHOD__, 0, func_get_args());
  721. # Get photos
  722. $query = Database::prepare($this->database, "SELECT id, url, thumbUrl, checksum FROM ? WHERE id IN (?)", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));
  723. $photos = $this->database->query($query);
  724. if (!$photos) {
  725. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  726. return false;
  727. }
  728. # For each photo
  729. while ($photo = $photos->fetch_object()) {
  730. # Check if other photos are referring to this images
  731. # If so, only delete the db entry
  732. if ($this->exists($photo->checksum, $photo->id)===false) {
  733. # Get retina thumb url
  734. $thumbUrl2x = explode(".", $photo->thumbUrl);
  735. $thumbUrl2x = $thumbUrl2x[0] . '@2x.' . $thumbUrl2x[1];
  736. # Delete big
  737. if (file_exists(LYCHEE_UPLOADS_BIG . $photo->url)&&!unlink(LYCHEE_UPLOADS_BIG . $photo->url)) {
  738. Log::error($this->database, __METHOD__, __LINE__, 'Could not delete photo in uploads/big/');
  739. return false;
  740. }
  741. # Delete medium
  742. if (file_exists(LYCHEE_UPLOADS_MEDIUM . $photo->url)&&!unlink(LYCHEE_UPLOADS_MEDIUM . $photo->url)) {
  743. Log::error($this->database, __METHOD__, __LINE__, 'Could not delete photo in uploads/medium/');
  744. return false;
  745. }
  746. # Delete thumb
  747. if (file_exists(LYCHEE_UPLOADS_THUMB . $photo->thumbUrl)&&!unlink(LYCHEE_UPLOADS_THUMB . $photo->thumbUrl)) {
  748. Log::error($this->database, __METHOD__, __LINE__, 'Could not delete photo in uploads/thumb/');
  749. return false;
  750. }
  751. # Delete thumb@2x
  752. if (file_exists(LYCHEE_UPLOADS_THUMB . $thumbUrl2x)&&!unlink(LYCHEE_UPLOADS_THUMB . $thumbUrl2x)) {
  753. Log::error($this->database, __METHOD__, __LINE__, 'Could not delete high-res photo in uploads/thumb/');
  754. return false;
  755. }
  756. }
  757. # Delete db entry
  758. $query = Database::prepare($this->database, "DELETE FROM ? WHERE id = '?'", array(LYCHEE_TABLE_PHOTOS, $photo->id));
  759. $delete = $this->database->query($query);
  760. if (!$delete) {
  761. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  762. return false;
  763. }
  764. }
  765. # Call plugins
  766. $this->plugins(__METHOD__, 1, func_get_args());
  767. return true;
  768. }
  769. }
  770. ?>