Photo.php 33 KB

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