Photo.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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 $photoIDs = null;
  11. public function __construct($database, $plugins, $photoIDs) {
  12. # Init vars
  13. $this->database = $database;
  14. $this->plugins = $plugins;
  15. $this->photoIDs = $photoIDs;
  16. return true;
  17. }
  18. public function get($albumID) {
  19. if (!isset($this->database, $this->photoIDs)) return false;
  20. # Get photo
  21. $photos = $this->database->query("SELECT * FROM lychee_photos WHERE id = '$this->photoIDs' LIMIT 1;");
  22. $photo = $photos->fetch_assoc();
  23. # Parse photo
  24. $photo['sysdate'] = date('d M. Y', strtotime($photo['sysdate']));
  25. if (strlen($photo['takedate'])>0) $photo['takedate'] = date('d M. Y', strtotime($photo['takedate']));
  26. if ($albumID!='false') {
  27. if ($photo['album']!=0) {
  28. # Get album
  29. $albums = $this->database->query("SELECT public FROM lychee_albums WHERE id = '" . $photo['album'] . " LIMIT 1';");
  30. $album = $albums->fetch_assoc();
  31. # Parse album
  32. $photo['public'] = ($album['public']=='1' ? '2' : $photo['public']);
  33. }
  34. $photo['original_album'] = $photo['album'];
  35. $photo['album'] = $albumID;
  36. }
  37. return $photo;
  38. }
  39. public function getArchive() {
  40. if (!isset($this->database, $this->photoIDs)) return false;
  41. # Get photo
  42. $photos = $this->database->query("SELECT title, url FROM lychee_photos WHERE id = '$this->photoIDs' LIMIT 1;");
  43. $photo = $photos->fetch_object();
  44. # Get extension
  45. $extension = array_reverse(explode('.', $photo->url));
  46. # Parse title
  47. if ($photo->title=='') $photo->title = 'Untitled';
  48. # Set headers
  49. header("Content-Type: application/octet-stream");
  50. header("Content-Disposition: attachment; filename=\"$photo->title.$extension[0]\"");
  51. header("Content-Length: " . filesize("../uploads/big/$photo->url"));
  52. # Send file
  53. readfile("../uploads/big/$photo->url");
  54. return true;
  55. }
  56. function setTitle($title) {
  57. if (!isset($this->database, $this->photoIDs)) return false;
  58. # Parse
  59. if (strlen($title)>50) $title = substr($title, 0, 50);
  60. # Set title
  61. $result = $this->database->query("UPDATE lychee_photos SET title = '$title' WHERE id IN ($this->photoIDs);");
  62. if (!$result) return false;
  63. return true;
  64. }
  65. function setDescription($description) {
  66. if (!isset($this->database, $this->photoIDs)) return false;
  67. # Parse
  68. $description = htmlentities($description);
  69. if (strlen($description)>1000) $description = substr($description, 0, 1000);
  70. # Set description
  71. $result = $this->database->query("UPDATE lychee_photos SET description = '$description' WHERE id IN ('$this->photoIDs');");
  72. if (!$result) return false;
  73. return true;
  74. }
  75. public function setStar() {
  76. if (!isset($this->database, $this->photoIDs)) return false;
  77. # Init vars
  78. $error = false;
  79. # Get photos
  80. $photos = $this->database->query("SELECT id, star FROM lychee_photos WHERE id IN ($this->photoIDs);");
  81. # For each photo
  82. while ($photo = $photos->fetch_object()) {
  83. # Invert star
  84. $star = ($photo->star==0 ? 1 : 0);
  85. # Set star
  86. $star = $this->database->query("UPDATE lychee_photos SET star = '$star' WHERE id = '$photo->id';");
  87. if (!$star) $error = true;
  88. }
  89. if ($error) return false;
  90. return true;
  91. }
  92. function getPublic($password) {
  93. if (!isset($this->database, $this->photoIDs)) return false;
  94. # Get photo
  95. $photos = $this->database->query("SELECT public, album FROM lychee_photos WHERE id = '$this->photoIDs' LIMIT 1;");
  96. $photo = $photos->fetch_object();
  97. # Check if public
  98. if ($photo->public==1) return true;
  99. else {
  100. $album = new Album($this->database, null, null, $photo->album);
  101. $acP = $album->checkPassword($password);
  102. $agP = $album->getPublic();
  103. if ($acP===true&&$agP===true) return true;
  104. }
  105. return false;
  106. }
  107. public function setPublic() {
  108. if (!isset($this->database, $this->photoIDs)) return false;
  109. # Get public
  110. $photos = $this->database->query("SELECT public FROM lychee_photos WHERE id = '$this->photoIDs' LIMIT 1;");
  111. $photo = $photos->fetch_object();
  112. # Invert public
  113. $public = ($photo->public==0 ? 1 : 0);
  114. # Set public
  115. $result = $this->database->query("UPDATE lychee_photos SET public = '$public' WHERE id = '$this->photoIDs';");
  116. if (!$result) return false;
  117. return true;
  118. }
  119. function setAlbum($albumID) {
  120. if (!isset($this->database, $this->photoIDs)) return false;
  121. # Set album
  122. $result = $this->database->query("UPDATE lychee_photos SET album = '$albumID' WHERE id IN ($this->photoIDs);");
  123. if (!$result) return false;
  124. return true;
  125. }
  126. public function setTags($tags) {
  127. if (!isset($this->database, $this->photoIDs)) return false;
  128. # Parse tags
  129. $tags = preg_replace('/(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/', ',', $tags);
  130. $tags = preg_replace('/,$|^,/', ',', $tags);
  131. if (strlen($tags)>1000) return false;
  132. # Set tags
  133. $result = $this->database->query("UPDATE lychee_photos SET tags = '$tags' WHERE id IN ($this->photoIDs);");
  134. if (!$result) return false;
  135. return true;
  136. }
  137. public function delete() {
  138. if (!isset($this->database, $this->photoIDs)) return false;
  139. # Get photos
  140. $photos = $this->database->query("SELECT id, url, thumbUrl FROM lychee_photos WHERE id IN ($this->photoIDs);");
  141. # For each photo
  142. while ($photo = $photos->fetch_object()) {
  143. # Get retina thumb url
  144. $thumbUrl2x = explode(".", $photo->thumbUrl);
  145. $thumbUrl2x = $thumbUrl2x[0] . '@2x.' . $thumbUrl2x[1];
  146. # Delete files
  147. if (!unlink('../uploads/big/' . $photo->url)) return false;
  148. if (!unlink('../uploads/thumb/' . $photo->thumbUrl)) return false;
  149. if (!unlink('../uploads/thumb/' . $thumbUrl2x)) return false;
  150. # Delete db entry
  151. $delete = $this->database->query("DELETE FROM lychee_photos WHERE id = '$photo->id';");
  152. if (!$delete) return false;
  153. }
  154. if (!$photos) return false;
  155. return true;
  156. }
  157. }
  158. ?>