Photo.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676
  1. <?php
  2. ###
  3. # @name Photo Module
  4. # @author Tobias Reich
  5. # @copyright 2014 by Tobias Reich
  6. ###
  7. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  8. class Photo extends Module {
  9. private $database = null;
  10. private $settings = null;
  11. private $photoIDs = null;
  12. public function __construct($database, $plugins, $settings, $photoIDs) {
  13. # Init vars
  14. $this->database = $database;
  15. $this->plugins = $plugins;
  16. $this->settings = $settings;
  17. $this->photoIDs = $photoIDs;
  18. return true;
  19. }
  20. public function add($files, $albumID, $description = '', $tags = '') {
  21. if (!isset($this->database)) return false;
  22. # Call plugins
  23. $this->plugins(__METHOD__, 0, func_get_args());
  24. switch($albumID) {
  25. case 's':
  26. # s for public (share)
  27. $public = 1;
  28. $star = 0;
  29. $albumID = 0;
  30. break;
  31. case 'f':
  32. # f for starred (fav)
  33. $star = 1;
  34. $public = 0;
  35. $albumID = 0;
  36. break;
  37. default:
  38. $star = 0;
  39. $public = 0;
  40. break;
  41. }
  42. foreach ($files as $file) {
  43. if ($file['type']!=='image/jpeg'&&
  44. $file['type']!=='image/png'&&
  45. $file['type']!=='image/gif')
  46. return false;
  47. $id = str_replace('.', '', microtime(true));
  48. while(strlen($id)<14) $id .= 0;
  49. $tmp_name = $file['tmp_name'];
  50. $extension = array_reverse(explode('.', $file['name']));
  51. $extension = $extension[0];
  52. $photo_name = md5($id) . ".$extension";
  53. $path = __DIR__ . '/../../uploads/big/' . $photo_name;
  54. # Import if not uploaded via web
  55. if (!is_uploaded_file($tmp_name)) {
  56. if (copy($tmp_name, $path)) { @unlink($tmp_name); }
  57. } else {
  58. move_uploaded_file($tmp_name, $path);
  59. }
  60. # Read infos
  61. $info = $this->getInfo($path);
  62. # Use title of file if IPTC title missing
  63. if ($info['title']==='') $info['title'] = mysqli_real_escape_string($this->database, substr(basename($file['name'], ".$extension"), 0, 30));
  64. # Use description parameter if set
  65. if ($description==='') $description = $info['description'];
  66. # Set orientation based on EXIF data
  67. if ($file['type']==='image/jpeg'&&isset($info['orientation'])&&$info['orientation']!==''&&isset($info['width'])&&isset($info['height'])) {
  68. if(extension_loaded('imagick')) {
  69. $rotateImage = 0;
  70. switch ($info['orientation']) {
  71. case 3:
  72. $rotateImage = 180;
  73. $imageOrientation = 1;
  74. break;
  75. case 6:
  76. $rotateImage = 90;
  77. $imageOrientation = 1;
  78. break;
  79. case 8:
  80. $rotateImage = 270;
  81. $imageOrientation = 1;
  82. break;
  83. }
  84. if ($rotateImage) {
  85. $image = new Imagick();
  86. $image->readImage(__DIR__ . '/../../uploads/big/' . $photo_name);
  87. $image->rotateImage(new ImagickPixel(), $rotateImage);
  88. $image->setImageOrientation($imageOrientation);
  89. $image->writeImage(__DIR__ . '/../../uploads/big/' . $photo_name);
  90. $image->clear();
  91. $image->destroy();
  92. }
  93. } else {
  94. $newWidth = $info['width'];
  95. $newHeight = $info['height'];
  96. $sourceImg = imagecreatefromjpeg(__DIR__ . "/../../uploads/big/$photo_name");
  97. switch ($info['orientation']) {
  98. case 2:
  99. # mirror
  100. # not yet implemented
  101. break;
  102. case 3:
  103. $sourceImg = imagerotate($sourceImg, -180, 0);
  104. break;
  105. case 4:
  106. # rotate 180 and mirror
  107. # not yet implemented
  108. break;
  109. case 5:
  110. # rotate 90 and mirror
  111. # not yet implemented
  112. break;
  113. case 6:
  114. $sourceImg = imagerotate($sourceImg, -90, 0);
  115. $newWidth = $info['height'];
  116. $newHeight = $info['width'];
  117. break;
  118. case 7:
  119. # rotate -90 and mirror
  120. # not yet implemented
  121. break;
  122. case 8:
  123. $sourceImg = imagerotate($sourceImg, 90, 0);
  124. $newWidth = $info['height'];
  125. $newHeight = $info['width'];
  126. break;
  127. }
  128. $newSourceImg = imagecreatetruecolor($newWidth, $newHeight);
  129. imagecopyresampled($newSourceImg, $sourceImg, 0, 0, 0, 0, $newWidth, $newHeight, $newWidth, $newHeight);
  130. imagejpeg($newSourceImg, __DIR__ . '/../../uploads/big/' . $photo_name, 100);
  131. }
  132. }
  133. # Create Thumb
  134. if (!$this->createThumb($path, $photo_name)) return false;
  135. # Save to DB
  136. $query = "INSERT INTO lychee_photos (id, title, url, description, tags, type, width, height, size, iso, aperture, make, model, shutter, focal, takestamp, thumbUrl, album, public, star)
  137. VALUES (
  138. '" . $id . "',
  139. '" . $info['title'] . "',
  140. '" . $photo_name . "',
  141. '" . $description . "',
  142. '" . $tags . "',
  143. '" . $info['type'] . "',
  144. '" . $info['width'] . "',
  145. '" . $info['height'] . "',
  146. '" . $info['size'] . "',
  147. '" . $info['iso'] . "',
  148. '" . $info['aperture'] . "',
  149. '" . $info['make'] . "',
  150. '" . $info['model'] . "',
  151. '" . $info['shutter'] . "',
  152. '" . $info['focal'] . "',
  153. '" . $info['takestamp'] . "',
  154. '" . md5($id) . ".jpeg',
  155. '" . $albumID . "',
  156. '" . $public . "',
  157. '" . $star . "');";
  158. $result = $this->database->query($query);
  159. if (!$result) return false;
  160. }
  161. # Call plugins
  162. $this->plugins(__METHOD__, 1, func_get_args());
  163. return true;
  164. }
  165. private function createThumb($url, $filename, $width = 200, $height = 200) {
  166. if (!isset($this->settings)) return false;
  167. # Call plugins
  168. $this->plugins(__METHOD__, 0, func_get_args());
  169. $info = getimagesize($url);
  170. $photoName = explode(".", $filename);
  171. $newUrl = __DIR__ . '/../../uploads/thumb/' . $photoName[0] . '.jpeg';
  172. $newUrl2x = __DIR__ . '/../../uploads/thumb/' . $photoName[0] . '@2x.jpeg';
  173. # create thumbnails with Imagick
  174. if(extension_loaded('imagick')) {
  175. # Read image
  176. $thumb = new Imagick();
  177. $thumb->readImage($url);
  178. $thumb->setImageCompressionQuality($this->settings['thumbQuality']);
  179. $thumb->setImageFormat('jpeg');
  180. # Copy image for 2nd thumb version
  181. $thumb2x = clone $thumb;
  182. # Create 1st version
  183. $thumb->cropThumbnailImage($width, $height);
  184. $thumb->writeImage($newUrl);
  185. # Create 2nd version
  186. $thumb2x->cropThumbnailImage($width*2, $height*2);
  187. $thumb2x->writeImage($newUrl2x);
  188. # Close thumb
  189. $thumb->clear();
  190. $thumb->destroy();
  191. # Close thumb2
  192. $thumb2x->clear();
  193. $thumb2x->destroy();
  194. } else {
  195. # Set position and size
  196. $thumb = imagecreatetruecolor($width, $height);
  197. $thumb2x = imagecreatetruecolor($width*2, $height*2);
  198. if ($info[0]<$info[1]) {
  199. $newSize = $info[0];
  200. $startWidth = 0;
  201. $startHeight = $info[1]/2 - $info[0]/2;
  202. } else {
  203. $newSize = $info[1];
  204. $startWidth = $info[0]/2 - $info[1]/2;
  205. $startHeight = 0;
  206. }
  207. # Fallback for older version
  208. if ($info['mime']==='image/webp'&&floatval(phpversion())<5.5) return false;
  209. # Create new image
  210. switch($info['mime']) {
  211. case 'image/jpeg': $sourceImg = imagecreatefromjpeg($url); break;
  212. case 'image/png': $sourceImg = imagecreatefrompng($url); break;
  213. case 'image/gif': $sourceImg = imagecreatefromgif($url); break;
  214. case 'image/webp': $sourceImg = imagecreatefromwebp($url); break;
  215. default: return false;
  216. }
  217. imagecopyresampled($thumb, $sourceImg, 0, 0, $startWidth, $startHeight, $width, $height, $newSize, $newSize);
  218. imagecopyresampled($thumb2x, $sourceImg, 0, 0, $startWidth, $startHeight, $width*2, $height*2, $newSize, $newSize);
  219. imagejpeg($thumb, $newUrl, $this->settings['thumbQuality']);
  220. imagejpeg($thumb2x, $newUrl2x, $this->settings['thumbQuality']);
  221. }
  222. # Call plugins
  223. $this->plugins(__METHOD__, 1, func_get_args());
  224. return true;
  225. }
  226. public function get($albumID) {
  227. if (!isset($this->database, $this->photoIDs)) return false;
  228. # Call plugins
  229. $this->plugins(__METHOD__, 0, func_get_args());
  230. # Get photo
  231. $photos = $this->database->query("SELECT * FROM lychee_photos WHERE id = '$this->photoIDs' LIMIT 1;");
  232. $photo = $photos->fetch_assoc();
  233. # Parse photo
  234. $photo['sysdate'] = date('d M. Y', substr($photo['id'], 0, -4));
  235. if (strlen($photo['takestamp'])>0) $photo['takedate'] = date('d M. Y', $photo['takestamp']);
  236. if ($albumID!='false') {
  237. if ($photo['album']!=0) {
  238. # Get album
  239. $albums = $this->database->query("SELECT public FROM lychee_albums WHERE id = '" . $photo['album'] . " LIMIT 1';");
  240. $album = $albums->fetch_assoc();
  241. # Parse album
  242. $photo['public'] = ($album['public']=='1' ? '2' : $photo['public']);
  243. }
  244. $photo['original_album'] = $photo['album'];
  245. $photo['album'] = $albumID;
  246. }
  247. # Call plugins
  248. $this->plugins(__METHOD__, 1, func_get_args());
  249. return $photo;
  250. }
  251. private function getInfo($url) {
  252. if (!isset($this->database, $url)) return false;
  253. # Call plugins
  254. $this->plugins(__METHOD__, 0, func_get_args());
  255. $iptcArray = array();
  256. $info = getimagesize($url, $iptcArray);
  257. # General information
  258. $return['type'] = $info['mime'];
  259. $return['width'] = $info[0];
  260. $return['height'] = $info[1];
  261. # Size
  262. $size = filesize($url)/1024;
  263. if ($size>=1024) $return['size'] = round($size/1024, 1) . ' MB';
  264. else $return['size'] = round($size, 1) . ' KB';
  265. # IPTC Metadata Fallback
  266. $return['title'] = '';
  267. $return['description'] = '';
  268. # IPTC Metadata
  269. if(isset($iptcArray['APP13'])) {
  270. $iptcInfo = iptcparse($iptcArray['APP13']);
  271. if (is_array($iptcInfo)) {
  272. $temp = @$iptcInfo['2#105'][0];
  273. if (isset($temp)&&strlen($temp)>0) $return['title'] = $temp;
  274. $temp = @$iptcInfo['2#120'][0];
  275. if (isset($temp)&&strlen($temp)>0) $return['description'] = $temp;
  276. }
  277. }
  278. # EXIF Metadata Fallback
  279. $return['orientation'] = '';
  280. $return['iso'] = '';
  281. $return['aperture'] = '';
  282. $return['make'] = '';
  283. $return['model'] = '';
  284. $return['shutter'] = '';
  285. $return['focal'] = '';
  286. $return['takestamp'] = '';
  287. # Read EXIF
  288. if ($info['mime']=='image/jpeg') $exif = @exif_read_data($url, 'EXIF', 0);
  289. else $exif = false;
  290. # EXIF Metadata
  291. if ($exif!==false) {
  292. if (isset($exif['Orientation'])) $return['orientation'] = $exif['Orientation'];
  293. else if (isset($exif['IFD0']['Orientation'])) $return['orientation'] = $exif['IFD0']['Orientation'];
  294. $temp = @$exif['ISOSpeedRatings'];
  295. if (isset($temp)) $return['iso'] = $temp;
  296. $temp = @$exif['COMPUTED']['ApertureFNumber'];
  297. if (isset($temp)) $return['aperture'] = $temp;
  298. $temp = @$exif['Make'];
  299. if (isset($temp)) $return['make'] = $exif['Make'];
  300. $temp = @$exif['Model'];
  301. if (isset($temp)) $return['model'] = $temp;
  302. $temp = @$exif['ExposureTime'];
  303. if (isset($temp)) $return['shutter'] = $exif['ExposureTime'] . ' Sec.';
  304. $temp = @$exif['FocalLength'];
  305. if (isset($temp)) $return['focal'] = ($temp/1) . ' mm';
  306. $temp = @$exif['DateTimeOriginal'];
  307. if (isset($temp)) $return['takestamp'] = strtotime($temp);
  308. }
  309. # Security
  310. foreach(array_keys($return) as $key) $return[$key] = mysqli_real_escape_string($this->database, $return[$key]);
  311. # Call plugins
  312. $this->plugins(__METHOD__, 1, func_get_args());
  313. return $return;
  314. }
  315. public function getArchive() {
  316. if (!isset($this->database, $this->photoIDs)) return false;
  317. # Call plugins
  318. $this->plugins(__METHOD__, 0, func_get_args());
  319. # Get photo
  320. $photos = $this->database->query("SELECT title, url FROM lychee_photos WHERE id = '$this->photoIDs' LIMIT 1;");
  321. $photo = $photos->fetch_object();
  322. # Get extension
  323. $extension = array_reverse(explode('.', $photo->url));
  324. # Parse title
  325. if ($photo->title=='') $photo->title = 'Untitled';
  326. # Set headers
  327. header("Content-Type: application/octet-stream");
  328. header("Content-Disposition: attachment; filename=\"$photo->title.$extension[0]\"");
  329. header("Content-Length: " . filesize(__DIR__ . '/../../uploads/big/' . $photo->url));
  330. # Send file
  331. readfile(__DIR__ . '/../../uploads/big/' . $photo->url);
  332. # Call plugins
  333. $this->plugins(__METHOD__, 1, func_get_args());
  334. return true;
  335. }
  336. function setTitle($title) {
  337. if (!isset($this->database, $this->photoIDs)) return false;
  338. # Call plugins
  339. $this->plugins(__METHOD__, 0, func_get_args());
  340. # Parse
  341. if (strlen($title)>50) $title = substr($title, 0, 50);
  342. # Set title
  343. $result = $this->database->query("UPDATE lychee_photos SET title = '$title' WHERE id IN ($this->photoIDs);");
  344. # Call plugins
  345. $this->plugins(__METHOD__, 1, func_get_args());
  346. if (!$result) return false;
  347. return true;
  348. }
  349. function setDescription($description) {
  350. if (!isset($this->database, $this->photoIDs)) return false;
  351. # Call plugins
  352. $this->plugins(__METHOD__, 0, func_get_args());
  353. # Parse
  354. $description = htmlentities($description);
  355. if (strlen($description)>1000) $description = substr($description, 0, 1000);
  356. # Set description
  357. $result = $this->database->query("UPDATE lychee_photos SET description = '$description' WHERE id IN ('$this->photoIDs');");
  358. # Call plugins
  359. $this->plugins(__METHOD__, 1, func_get_args());
  360. if (!$result) return false;
  361. return true;
  362. }
  363. public function setStar() {
  364. if (!isset($this->database, $this->photoIDs)) return false;
  365. # Call plugins
  366. $this->plugins(__METHOD__, 0, func_get_args());
  367. # Init vars
  368. $error = false;
  369. # Get photos
  370. $photos = $this->database->query("SELECT id, star FROM lychee_photos WHERE id IN ($this->photoIDs);");
  371. # For each photo
  372. while ($photo = $photos->fetch_object()) {
  373. # Invert star
  374. $star = ($photo->star==0 ? 1 : 0);
  375. # Set star
  376. $star = $this->database->query("UPDATE lychee_photos SET star = '$star' WHERE id = '$photo->id';");
  377. if (!$star) $error = true;
  378. }
  379. # Call plugins
  380. $this->plugins(__METHOD__, 1, func_get_args());
  381. if ($error) return false;
  382. return true;
  383. }
  384. function getPublic($password) {
  385. if (!isset($this->database, $this->photoIDs)) return false;
  386. # Call plugins
  387. $this->plugins(__METHOD__, 0, func_get_args());
  388. # Get photo
  389. $photos = $this->database->query("SELECT public, album FROM lychee_photos WHERE id = '$this->photoIDs' LIMIT 1;");
  390. $photo = $photos->fetch_object();
  391. # Check if public
  392. if ($photo->public==1) return true;
  393. else {
  394. $album = new Album($this->database, null, null, $photo->album);
  395. $acP = $album->checkPassword($password);
  396. $agP = $album->getPublic();
  397. if ($acP===true&&$agP===true) return true;
  398. }
  399. # Call plugins
  400. $this->plugins(__METHOD__, 1, func_get_args());
  401. return false;
  402. }
  403. public function setPublic() {
  404. if (!isset($this->database, $this->photoIDs)) return false;
  405. # Call plugins
  406. $this->plugins(__METHOD__, 0, func_get_args());
  407. # Get public
  408. $photos = $this->database->query("SELECT public FROM lychee_photos WHERE id = '$this->photoIDs' LIMIT 1;");
  409. $photo = $photos->fetch_object();
  410. # Invert public
  411. $public = ($photo->public==0 ? 1 : 0);
  412. # Set public
  413. $result = $this->database->query("UPDATE lychee_photos SET public = '$public' WHERE id = '$this->photoIDs';");
  414. # Call plugins
  415. $this->plugins(__METHOD__, 1, func_get_args());
  416. if (!$result) return false;
  417. return true;
  418. }
  419. function setAlbum($albumID) {
  420. if (!isset($this->database, $this->photoIDs)) return false;
  421. # Call plugins
  422. $this->plugins(__METHOD__, 0, func_get_args());
  423. # Set album
  424. $result = $this->database->query("UPDATE lychee_photos SET album = '$albumID' WHERE id IN ($this->photoIDs);");
  425. # Call plugins
  426. $this->plugins(__METHOD__, 1, func_get_args());
  427. if (!$result) return false;
  428. return true;
  429. }
  430. public function setTags($tags) {
  431. if (!isset($this->database, $this->photoIDs)) return false;
  432. # Call plugins
  433. $this->plugins(__METHOD__, 0, func_get_args());
  434. # Parse tags
  435. $tags = preg_replace('/(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/', ',', $tags);
  436. $tags = preg_replace('/,$|^,/', ',', $tags);
  437. if (strlen($tags)>1000) return false;
  438. # Set tags
  439. $result = $this->database->query("UPDATE lychee_photos SET tags = '$tags' WHERE id IN ($this->photoIDs);");
  440. # Call plugins
  441. $this->plugins(__METHOD__, 1, func_get_args());
  442. if (!$result) return false;
  443. return true;
  444. }
  445. public function delete() {
  446. if (!isset($this->database, $this->photoIDs)) return false;
  447. # Call plugins
  448. $this->plugins(__METHOD__, 0, func_get_args());
  449. # Get photos
  450. $photos = $this->database->query("SELECT id, url, thumbUrl FROM lychee_photos WHERE id IN ($this->photoIDs);");
  451. # For each photo
  452. while ($photo = $photos->fetch_object()) {
  453. # Get retina thumb url
  454. $thumbUrl2x = explode(".", $photo->thumbUrl);
  455. $thumbUrl2x = $thumbUrl2x[0] . '@2x.' . $thumbUrl2x[1];
  456. # Delete files
  457. if (!unlink(__DIR__ . '/../../uploads/big/' . $photo->url)) return false;
  458. if (!unlink(__DIR__ . '/../../uploads/thumb/' . $photo->thumbUrl)) return false;
  459. if (!unlink(__DIR__ . '/../../uploads/thumb/' . $thumbUrl2x)) return false;
  460. # Delete db entry
  461. $delete = $this->database->query("DELETE FROM lychee_photos WHERE id = '$photo->id';");
  462. if (!$delete) return false;
  463. }
  464. # Call plugins
  465. $this->plugins(__METHOD__, 1, func_get_args());
  466. if (!$photos) return false;
  467. return true;
  468. }
  469. }
  470. ?>