Album.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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 delete($albumIDs) {
  105. if (!isset($this->database, $this->albumIDs)) return false;
  106. # Call plugins
  107. $this->plugins('delete:before', func_get_args());
  108. # Init vars
  109. $error = false;
  110. # Execute query
  111. $result = $this->database->query("SELECT id FROM lychee_photos WHERE album IN ($albumIDs);");
  112. # For each album delete photo
  113. while ($row = $result->fetch_object())
  114. if (!deletePhoto($row->id)) $error = true;
  115. # Delete albums
  116. $result = $this->database->query("DELETE FROM lychee_albums WHERE id IN ($albumIDs);");
  117. # Call plugins
  118. $this->plugins('delete:after', func_get_args());
  119. if ($error||!$result) return false;
  120. return true;
  121. }
  122. public function getArchive() {
  123. if (!isset($this->database, $this->albumIDs)) return false;
  124. # Photos query
  125. switch($this->albumIDs) {
  126. case 's':
  127. $photos = "SELECT url FROM lychee_photos WHERE public = '1';";
  128. $zipTitle = 'Public';
  129. break;
  130. case 'f':
  131. $photos = "SELECT url FROM lychee_photos WHERE star = '1';";
  132. $zipTitle = 'Starred';
  133. break;
  134. default:
  135. $photos = "SELECT url FROM lychee_photos WHERE album = '$this->albumIDs';";
  136. $zipTitle = 'Unsorted';
  137. }
  138. # Execute query
  139. $photos = $this->database->query($photos);
  140. # Init vars
  141. $zip = new ZipArchive();
  142. $files = array();
  143. $i = 0;
  144. # Parse each url
  145. while ($photo = $photos->fetch_object()) {
  146. $files[$i] = '../uploads/big/' . $photo->url;
  147. $i++;
  148. }
  149. # Set title
  150. $album = $this->database->query("SELECT title FROM lychee_albums WHERE id = '$this->albumIDs' LIMIT 1;");
  151. if ($this->albumIDs!=0&&is_numeric($this->albumIDs)) $zipTitle = $album->fetch_object()->title;
  152. # Create zip
  153. $filename = "../data/$zipTitle.zip";
  154. if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) return false;
  155. # Add each photo
  156. foreach ($files AS $file) {
  157. $newFile = explode('/', $file);
  158. $newFile = array_reverse($newFile);
  159. $zip->addFile($file, $zipTitle . '/' . $newFile[0]);
  160. }
  161. # Finish zip
  162. $zip->close();
  163. # Send zip
  164. header("Content-Type: application/zip");
  165. header("Content-Disposition: attachment; filename=\"$zipTitle.zip\"");
  166. header("Content-Length: ".filesize($filename));
  167. readfile($filename);
  168. # Delete zip
  169. unlink($filename);
  170. return true;
  171. }
  172. }