Album.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. <?php
  2. ###
  3. # @name Album 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 Album {
  9. private $database = null;
  10. private $plugins = null;
  11. private $settings = null;
  12. private $albumIDs = null;
  13. public function __construct($database, $plugins, $settings, $albumIDs) {
  14. # Init vars
  15. $this->database = $database;
  16. $this->plugins = $plugins;
  17. $this->settings = $settings;
  18. $this->albumIDs = $albumIDs;
  19. return true;
  20. }
  21. private function plugins($action, $args) {
  22. if (!isset($this->plugins, $action, $args)) return false;
  23. # Call plugins
  24. $this->plugins->activate("Album:$action", $args);
  25. return true;
  26. }
  27. public function add($title = 'Untitled', $public = 0, $visible = 1) {
  28. if (!isset($this->database)) return false;
  29. # Call plugins
  30. $this->plugins('add:before', func_get_args());
  31. # Parse
  32. if (strlen($title)>50) $title = substr($title, 0, 50);
  33. # Database
  34. $sysdate = date('d.m.Y');
  35. $result = $this->database->query("INSERT INTO lychee_albums (title, sysdate, public, visible) VALUES ('$title', '$sysdate', '$public', '$visible');");
  36. # Call plugins
  37. $this->plugins('add:after', func_get_args());
  38. if (!$result) return false;
  39. return $this->database->insert_id;
  40. }
  41. public function getAll($public) {
  42. if (!isset($this->database, $this->settings, $public)) return false;
  43. # Call plugins
  44. $this->plugins('getAll:before', func_get_args());
  45. # Get SmartAlbums
  46. if ($public===false) $return = getSmartInfo();
  47. # Albums query
  48. $query = 'SELECT id, title, public, sysdate, password FROM lychee_albums WHERE public = 1 AND visible <> 0';
  49. if ($public===false) $query = 'SELECT id, title, public, sysdate, password FROM lychee_albums';
  50. # Execute query
  51. $albums = $this->database->query($query) OR exit('Error: ' . $this->database->error);
  52. # For each album
  53. while ($album = $albums->fetch_assoc()) {
  54. # Parse info
  55. $album['sysdate'] = date('F Y', strtotime($album['sysdate']));
  56. $album['password'] = ($album['password'] != '');
  57. # Thumbs
  58. if (($public===true&&$album['password']===false)||($public===false)) {
  59. # Execute query
  60. $thumbs = $this->database->query("SELECT thumbUrl FROM lychee_photos WHERE album = '" . $album['id'] . "' ORDER BY star DESC, " . substr($this->settings['sorting'], 9) . " LIMIT 0, 3");
  61. # For each thumb
  62. $k = 0;
  63. while ($thumb = $thumbs->fetch_object()) {
  64. $album["thumb$k"] = $thumb->thumbUrl;
  65. $k++;
  66. }
  67. }
  68. # Add to return
  69. $return['content'][$album['id']] = $album;
  70. }
  71. # Num of albums
  72. $return['num'] = $albums->num_rows;
  73. # Call plugins
  74. $this->plugins('getAll:after', func_get_args());
  75. return $return;
  76. }
  77. public function setTitle($title = 'Untitled') {
  78. if (!isset($this->database, $this->albumIDs)) return false;
  79. # Call plugins
  80. $this->plugins('setTitle:before', func_get_args());
  81. # Parse
  82. if (strlen($title)>50) $title = substr($title, 0, 50);
  83. # Execute query
  84. $result = $this->database->query("UPDATE lychee_albums SET title = '$title' WHERE id IN ($this->albumIDs);");
  85. # Call plugins
  86. $this->plugins('setTitle:after', func_get_args());
  87. if (!$result) return false;
  88. return true;
  89. }
  90. public function setDescription($description = '') {
  91. if (!isset($this->database, $this->albumIDs)) return false;
  92. # Call plugins
  93. $this->plugins('setDescription:before', func_get_args());
  94. # Parse
  95. $description = htmlentities($description);
  96. if (strlen($description)>1000) return false;
  97. # Execute query
  98. $result = $this->database->query("UPDATE lychee_albums SET description = '$description' WHERE id IN ($this->albumIDs);");
  99. # Call plugins
  100. $this->plugins('setDescription:after', func_get_args());
  101. if (!$result) return false;
  102. return true;
  103. }
  104. public function setPublic($password) {
  105. if (!isset($this->database, $this->albumIDs)) return false;
  106. # Call plugins
  107. $this->plugins('setPublic:before', func_get_args());
  108. # Get public
  109. $albums = $this->database->query("SELECT id, public FROM lychee_albums WHERE id IN ('$this->albumIDs');");
  110. while ($album = $albums->fetch_object()) {
  111. # Invert public
  112. $public = ($album->public=='0' ? 1 : 0);
  113. # Set public
  114. $result = $this->database->query("UPDATE lychee_albums SET public = '$public', password = NULL WHERE id = '$album->id';");
  115. if (!$result) return false;
  116. # Reset permissions for photos
  117. if ($public===1) {
  118. $result = $this->database->query("UPDATE lychee_photos SET public = 0 WHERE album = '$album->id';");
  119. if (!$result) return false;
  120. }
  121. }
  122. # Call plugins
  123. $this->plugins('setPublic:after', func_get_args());
  124. # Set password
  125. if (isset($password)&&strlen($password)>0) return $this->setPassword($password);
  126. return true;
  127. }
  128. public function setPassword($password) {
  129. if (!isset($this->database, $this->albumIDs)) return false;
  130. # Call plugins
  131. $this->plugins('setPassword:before', func_get_args());
  132. # Execute query
  133. $result = $this->database->query("UPDATE lychee_albums SET password = '$password' WHERE id IN ('$this->albumIDs');");
  134. # Call plugins
  135. $this->plugins('setPassword:after', func_get_args());
  136. if (!$result) return false;
  137. return true;
  138. }
  139. public function delete($albumIDs) {
  140. if (!isset($this->database, $this->albumIDs)) return false;
  141. # Call plugins
  142. $this->plugins('delete:before', func_get_args());
  143. # Init vars
  144. $error = false;
  145. # Execute query
  146. $result = $this->database->query("SELECT id FROM lychee_photos WHERE album IN ($albumIDs);");
  147. # For each album delete photo
  148. while ($row = $result->fetch_object())
  149. if (!deletePhoto($row->id)) $error = true;
  150. # Delete albums
  151. $result = $this->database->query("DELETE FROM lychee_albums WHERE id IN ($albumIDs);");
  152. # Call plugins
  153. $this->plugins('delete:after', func_get_args());
  154. if ($error||!$result) return false;
  155. return true;
  156. }
  157. public function getArchive() {
  158. if (!isset($this->database, $this->albumIDs)) return false;
  159. # Call plugins
  160. $this->plugins('getArchive:before', func_get_args());
  161. # Photos query
  162. switch($this->albumIDs) {
  163. case 's':
  164. $photos = "SELECT url FROM lychee_photos WHERE public = '1';";
  165. $zipTitle = 'Public';
  166. break;
  167. case 'f':
  168. $photos = "SELECT url FROM lychee_photos WHERE star = '1';";
  169. $zipTitle = 'Starred';
  170. break;
  171. default:
  172. $photos = "SELECT url FROM lychee_photos WHERE album = '$this->albumIDs';";
  173. $zipTitle = 'Unsorted';
  174. }
  175. # Execute query
  176. $photos = $this->database->query($photos);
  177. # Init vars
  178. $zip = new ZipArchive();
  179. $files = array();
  180. $i = 0;
  181. # Parse each url
  182. while ($photo = $photos->fetch_object()) {
  183. $files[$i] = '../uploads/big/' . $photo->url;
  184. $i++;
  185. }
  186. # Set title
  187. $album = $this->database->query("SELECT title FROM lychee_albums WHERE id = '$this->albumIDs' LIMIT 1;");
  188. if ($this->albumIDs!=0&&is_numeric($this->albumIDs)) $zipTitle = $album->fetch_object()->title;
  189. # Create zip
  190. $filename = "../data/$zipTitle.zip";
  191. if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) return false;
  192. # Add each photo
  193. foreach ($files AS $file) {
  194. $newFile = explode('/', $file);
  195. $newFile = array_reverse($newFile);
  196. $zip->addFile($file, $zipTitle . '/' . $newFile[0]);
  197. }
  198. # Finish zip
  199. $zip->close();
  200. # Send zip
  201. header("Content-Type: application/zip");
  202. header("Content-Disposition: attachment; filename=\"$zipTitle.zip\"");
  203. header("Content-Length: ".filesize($filename));
  204. readfile($filename);
  205. # Delete zip
  206. unlink($filename);
  207. # Call plugins
  208. $this->plugins('getArchive:after', func_get_args());
  209. return true;
  210. }
  211. }