Album.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  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($name, $location, $args) {
  22. if (!isset($this->plugins, $name, $location, $args)) return false;
  23. # Parse
  24. $location = ($location===0 ? 'before' : 'after');
  25. # Call plugins
  26. $this->plugins->activate($name . ":" . $location, $args);
  27. return true;
  28. }
  29. public function add($title = 'Untitled', $public = 0, $visible = 1) {
  30. if (!isset($this->database)) return false;
  31. # Call plugins
  32. $this->plugins(__METHOD__, 0, func_get_args());
  33. # Parse
  34. if (strlen($title)>50) $title = substr($title, 0, 50);
  35. # Database
  36. $sysdate = date('d.m.Y');
  37. $result = $this->database->query("INSERT INTO lychee_albums (title, sysdate, public, visible) VALUES ('$title', '$sysdate', '$public', '$visible');");
  38. # Call plugins
  39. $this->plugins(__METHOD__, 1, func_get_args());
  40. if (!$result) return false;
  41. return $this->database->insert_id;
  42. }
  43. public function get() {
  44. if (!isset($this->database, $this->settings, $this->albumIDs)) return false;
  45. # Call plugins
  46. $this->plugins(__METHOD__, 0, func_get_args());
  47. # Get album information
  48. switch($this->albumIDs) {
  49. case 'f': $return['public'] = false;
  50. $query = "SELECT id, title, tags, sysdate, public, star, album, thumbUrl FROM lychee_photos WHERE star = 1 " . $this->settings['sorting'];
  51. break;
  52. case 's': $return['public'] = false;
  53. $query = "SELECT id, title, tags, sysdate, public, star, album, thumbUrl FROM lychee_photos WHERE public = 1 " . $this->settings['sorting'];
  54. break;
  55. case '0': $return['public'] = false;
  56. $query = "SELECT id, title, tags, sysdate, public, star, album, thumbUrl FROM lychee_photos WHERE album = 0 " . $this->settings['sorting'];
  57. break;
  58. default: $albums = $this->database->query("SELECT * FROM lychee_albums WHERE id = '$this->albumIDs' LIMIT 1;");
  59. $return = $albums->fetch_assoc();
  60. $return['sysdate'] = date('d M. Y', strtotime($return['sysdate']));
  61. $return['password'] = ($return['password']=='' ? false : true);
  62. $query = "SELECT id, title, tags, sysdate, public, star, album, thumbUrl FROM lychee_photos WHERE album = '$this->albumIDs' " . $this->settings['sorting'];
  63. break;
  64. }
  65. # Get photos
  66. $photos = $this->database->query($query);
  67. $previousPhotoID = '';
  68. while($photo = $photos->fetch_assoc()) {
  69. # Parse
  70. $photo['sysdate'] = date('d F Y', strtotime($photo['sysdate']));
  71. $photo['previousPhoto'] = $previousPhotoID;
  72. $photo['nextPhoto'] = '';
  73. if ($previousPhotoID!=='') $return['content'][$previousPhotoID]['nextPhoto'] = $photo['id'];
  74. $previousPhotoID = $photo['id'];
  75. # Add to return
  76. $return['content'][$photo['id']] = $photo;
  77. }
  78. if ($photos->num_rows===0) {
  79. # Album empty
  80. $return['content'] = false;
  81. } else {
  82. # Enable next and previous for the first and last photo
  83. $lastElement = end($return['content']);
  84. $lastElementId = $lastElement['id'];
  85. $firstElement = reset($return['content']);
  86. $firstElementId = $firstElement['id'];
  87. if ($lastElementId!==$firstElementId) {
  88. $return['content'][$lastElementId]['nextPhoto'] = $firstElementId;
  89. $return['content'][$firstElementId]['previousPhoto'] = $lastElementId;
  90. }
  91. }
  92. $return['id'] = $this->albumIDs;
  93. $return['num'] = $photos->num_rows;
  94. # Call plugins
  95. $this->plugins(__METHOD__, 1, func_get_args());
  96. return $return;
  97. }
  98. public function getAll($public) {
  99. if (!isset($this->database, $this->settings, $public)) return false;
  100. # Call plugins
  101. $this->plugins(__METHOD__, 0, func_get_args());
  102. # Get SmartAlbums
  103. if ($public===false) $return = $this->getSmartInfo();
  104. # Albums query
  105. $query = 'SELECT id, title, public, sysdate, password FROM lychee_albums WHERE public = 1 AND visible <> 0';
  106. if ($public===false) $query = 'SELECT id, title, public, sysdate, password FROM lychee_albums';
  107. # Execute query
  108. $albums = $this->database->query($query) OR exit('Error: ' . $this->database->error);
  109. # For each album
  110. while ($album = $albums->fetch_assoc()) {
  111. # Parse info
  112. $album['sysdate'] = date('F Y', strtotime($album['sysdate']));
  113. $album['password'] = ($album['password'] != '');
  114. # Thumbs
  115. if (($public===true&&$album['password']===false)||($public===false)) {
  116. # Execute query
  117. $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");
  118. # For each thumb
  119. $k = 0;
  120. while ($thumb = $thumbs->fetch_object()) {
  121. $album["thumb$k"] = $thumb->thumbUrl;
  122. $k++;
  123. }
  124. }
  125. # Add to return
  126. $return['content'][$album['id']] = $album;
  127. }
  128. # Num of albums
  129. $return['num'] = $albums->num_rows;
  130. # Call plugins
  131. $this->plugins(__METHOD__, 1, func_get_args());
  132. return $return;
  133. }
  134. private function getSmartInfo() {
  135. if (!isset($this->database, $this->settings)) return false;
  136. # Unsorted
  137. $unsorted = $this->database->query("SELECT thumbUrl FROM lychee_photos WHERE album = 0 " . $this->settings['sorting']);
  138. $i = 0;
  139. while($row = $unsorted->fetch_object()) {
  140. if ($i<3) {
  141. $return["unsortedThumb$i"] = $row->thumbUrl;
  142. $i++;
  143. } else break;
  144. }
  145. $return['unsortedNum'] = $unsorted->num_rows;
  146. # Public
  147. $public = $this->database->query("SELECT thumbUrl FROM lychee_photos WHERE public = 1 " . $this->settings['sorting']);
  148. $i = 0;
  149. while($row2 = $public->fetch_object()) {
  150. if ($i<3) {
  151. $return["publicThumb$i"] = $row2->thumbUrl;
  152. $i++;
  153. } else break;
  154. }
  155. $return['publicNum'] = $public->num_rows;
  156. # Starred
  157. $starred = $this->database->query("SELECT thumbUrl FROM lychee_photos WHERE star = 1 " . $this->settings['sorting']);
  158. $i = 0;
  159. while($row3 = $starred->fetch_object()) {
  160. if ($i<3) {
  161. $return["starredThumb$i"] = $row3->thumbUrl;
  162. $i++;
  163. } else break;
  164. }
  165. $return['starredNum'] = $starred->num_rows;
  166. return $return;
  167. }
  168. public function getArchive() {
  169. if (!isset($this->database, $this->albumIDs)) return false;
  170. # Call plugins
  171. $this->plugins(__METHOD__, 0, func_get_args());
  172. # Photos query
  173. switch($this->albumIDs) {
  174. case 's':
  175. $photos = "SELECT url FROM lychee_photos WHERE public = '1';";
  176. $zipTitle = 'Public';
  177. break;
  178. case 'f':
  179. $photos = "SELECT url FROM lychee_photos WHERE star = '1';";
  180. $zipTitle = 'Starred';
  181. break;
  182. default:
  183. $photos = "SELECT url FROM lychee_photos WHERE album = '$this->albumIDs';";
  184. $zipTitle = 'Unsorted';
  185. }
  186. # Execute query
  187. $photos = $this->database->query($photos);
  188. # Init vars
  189. $zip = new ZipArchive();
  190. $files = array();
  191. $i = 0;
  192. # Parse each url
  193. while ($photo = $photos->fetch_object()) {
  194. $files[$i] = '../uploads/big/' . $photo->url;
  195. $i++;
  196. }
  197. # Set title
  198. $album = $this->database->query("SELECT title FROM lychee_albums WHERE id = '$this->albumIDs' LIMIT 1;");
  199. if ($this->albumIDs!=0&&is_numeric($this->albumIDs)) $zipTitle = $album->fetch_object()->title;
  200. # Create zip
  201. $filename = "../data/$zipTitle.zip";
  202. if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) return false;
  203. # Add each photo
  204. foreach ($files AS $file) {
  205. $newFile = explode('/', $file);
  206. $newFile = array_reverse($newFile);
  207. $zip->addFile($file, $zipTitle . '/' . $newFile[0]);
  208. }
  209. # Finish zip
  210. $zip->close();
  211. # Send zip
  212. header("Content-Type: application/zip");
  213. header("Content-Disposition: attachment; filename=\"$zipTitle.zip\"");
  214. header("Content-Length: ".filesize($filename));
  215. readfile($filename);
  216. # Delete zip
  217. unlink($filename);
  218. # Call plugins
  219. $this->plugins(__METHOD__, 1, func_get_args());
  220. return true;
  221. }
  222. public function setTitle($title = 'Untitled') {
  223. if (!isset($this->database, $this->albumIDs)) return false;
  224. # Call plugins
  225. $this->plugins(__METHOD__, 0, func_get_args());
  226. # Parse
  227. if (strlen($title)>50) $title = substr($title, 0, 50);
  228. # Execute query
  229. $result = $this->database->query("UPDATE lychee_albums SET title = '$title' WHERE id IN ($this->albumIDs);");
  230. # Call plugins
  231. $this->plugins(__METHOD__, 1, func_get_args());
  232. if (!$result) return false;
  233. return true;
  234. }
  235. public function setDescription($description = '') {
  236. if (!isset($this->database, $this->albumIDs)) return false;
  237. # Call plugins
  238. $this->plugins(__METHOD__, 0, func_get_args());
  239. # Parse
  240. $description = htmlentities($description);
  241. if (strlen($description)>1000) return false;
  242. # Execute query
  243. $result = $this->database->query("UPDATE lychee_albums SET description = '$description' WHERE id IN ($this->albumIDs);");
  244. # Call plugins
  245. $this->plugins(__METHOD__, 1, func_get_args());
  246. if (!$result) return false;
  247. return true;
  248. }
  249. public function setPublic($password) {
  250. if (!isset($this->database, $this->albumIDs)) return false;
  251. # Call plugins
  252. $this->plugins(__METHOD__, 0, func_get_args());
  253. # Get public
  254. $albums = $this->database->query("SELECT id, public FROM lychee_albums WHERE id IN ('$this->albumIDs');");
  255. while ($album = $albums->fetch_object()) {
  256. # Invert public
  257. $public = ($album->public=='0' ? 1 : 0);
  258. # Set public
  259. $result = $this->database->query("UPDATE lychee_albums SET public = '$public', password = NULL WHERE id = '$album->id';");
  260. if (!$result) return false;
  261. # Reset permissions for photos
  262. if ($public===1) {
  263. $result = $this->database->query("UPDATE lychee_photos SET public = 0 WHERE album = '$album->id';");
  264. if (!$result) return false;
  265. }
  266. }
  267. # Call plugins
  268. $this->plugins(__METHOD__, 1, func_get_args());
  269. # Set password
  270. if (isset($password)&&strlen($password)>0) return $this->setPassword($password);
  271. return true;
  272. }
  273. public function getPublic() {
  274. if (!isset($this->database, $this->albumIDs)) return false;
  275. # Call plugins
  276. $this->plugins(__METHOD__, 0, func_get_args());
  277. if ($this->albumIDs==='0'||$this->albumIDs==='s'||$this->albumIDs==='f') return false;
  278. # Execute query
  279. $albums = $this->database->query("SELECT public FROM lychee_albums WHERE id = '$this->albumIDs' LIMIT 1;");
  280. $album = $albums->fetch_object();
  281. # Call plugins
  282. $this->plugins(__METHOD__, 1, func_get_args());
  283. if ($album->public==1) return true;
  284. return false;
  285. }
  286. public function setPassword($password) {
  287. if (!isset($this->database, $this->albumIDs)) return false;
  288. # Call plugins
  289. $this->plugins('setPassword:before', func_get_args());
  290. # Execute query
  291. $result = $this->database->query("UPDATE lychee_albums SET password = '$password' WHERE id IN ('$this->albumIDs');");
  292. # Call plugins
  293. $this->plugins('setPassword:after', func_get_args());
  294. if (!$result) return false;
  295. return true;
  296. }
  297. public function checkPassword($password) {
  298. if (!isset($this->database, $this->albumIDs)) return false;
  299. # Call plugins
  300. $this->plugins(__METHOD__, 0, func_get_args());
  301. # Execute query
  302. $albums = $this->database->query("SELECT password FROM lychee_albums WHERE id = '$this->albumIDs' LIMIT 1;");
  303. $album = $albums->fetch_object();
  304. # Call plugins
  305. $this->plugins(__METHOD__, 1, func_get_args());
  306. if ($album->password=='') return true;
  307. else if ($album->password===$password) return true;
  308. return false;
  309. }
  310. public function delete($albumIDs) {
  311. if (!isset($this->database, $this->albumIDs)) return false;
  312. # Call plugins
  313. $this->plugins(__METHOD__, 0, func_get_args());
  314. # Init vars
  315. $error = false;
  316. # Execute query
  317. $result = $this->database->query("SELECT id FROM lychee_photos WHERE album IN ($albumIDs);");
  318. # For each album delete photo
  319. while ($row = $result->fetch_object())
  320. if (!deletePhoto($row->id)) $error = true;
  321. # Delete albums
  322. $result = $this->database->query("DELETE FROM lychee_albums WHERE id IN ($albumIDs);");
  323. # Call plugins
  324. $this->plugins(__METHOD__, 1, func_get_args());
  325. if ($error||!$result) return false;
  326. return true;
  327. }
  328. }