Photo.php 33 KB

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