Photo.php 33 KB

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