Album.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562
  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 extends Module {
  9. private $database = null;
  10. private $settings = null;
  11. private $albumIDs = null;
  12. public function __construct($database, $plugins, $settings, $albumIDs) {
  13. # Init vars
  14. $this->database = $database;
  15. $this->plugins = $plugins;
  16. $this->settings = $settings;
  17. $this->albumIDs = $albumIDs;
  18. return true;
  19. }
  20. public function add($title = 'Untitled', $public = 0, $visible = 1) {
  21. # Check dependencies
  22. self::dependencies(isset($this->database));
  23. # Call plugins
  24. $this->plugins(__METHOD__, 0, func_get_args());
  25. # Parse
  26. if (strlen($title)>50) $title = substr($title, 0, 50);
  27. # Database
  28. $sysstamp = time();
  29. $result = $this->database->query("INSERT INTO lychee_albums (title, sysstamp, public, visible) VALUES ('$title', '$sysstamp', '$public', '$visible');");
  30. # Call plugins
  31. $this->plugins(__METHOD__, 1, func_get_args());
  32. if (!$result) {
  33. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  34. return false;
  35. }
  36. return $this->database->insert_id;
  37. }
  38. public function get() {
  39. # Check dependencies
  40. self::dependencies(isset($this->database, $this->settings, $this->albumIDs));
  41. # Call plugins
  42. $this->plugins(__METHOD__, 0, func_get_args());
  43. # Get album information
  44. switch ($this->albumIDs) {
  45. case 'f': $return['public'] = false;
  46. $query = "SELECT id, title, tags, public, star, album, thumbUrl, takestamp FROM lychee_photos WHERE star = 1 " . $this->settings['sorting'];
  47. break;
  48. case 's': $return['public'] = false;
  49. $query = "SELECT id, title, tags, public, star, album, thumbUrl, takestamp FROM lychee_photos WHERE public = 1 " . $this->settings['sorting'];
  50. break;
  51. case '0': $return['public'] = false;
  52. $query = "SELECT id, title, tags, public, star, album, thumbUrl, takestamp FROM lychee_photos WHERE album = 0 " . $this->settings['sorting'];
  53. break;
  54. default: $albums = $this->database->query("SELECT * FROM lychee_albums WHERE id = '$this->albumIDs' LIMIT 1;");
  55. $return = $albums->fetch_assoc();
  56. $return['sysdate'] = date('d M. Y', $return['sysstamp']);
  57. $return['password'] = ($return['password']=='' ? false : true);
  58. $query = "SELECT id, title, tags, public, star, album, thumbUrl, takestamp FROM lychee_photos WHERE album = '$this->albumIDs' " . $this->settings['sorting'];
  59. break;
  60. }
  61. # Get photos
  62. $photos = $this->database->query($query);
  63. $previousPhotoID = '';
  64. while ($photo = $photos->fetch_assoc()) {
  65. # Parse
  66. $photo['sysdate'] = date('d F Y', substr($photo['id'], 0, -4));
  67. $photo['previousPhoto'] = $previousPhotoID;
  68. $photo['nextPhoto'] = '';
  69. if ($photo['takestamp']!=='0') {
  70. $photo['cameraDate'] = 1;
  71. $photo['sysdate'] = date('d F Y', $photo['takestamp']);
  72. }
  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. # Check dependencies
  100. self::dependencies(isset($this->database, $this->settings, $public));
  101. # Call plugins
  102. $this->plugins(__METHOD__, 0, func_get_args());
  103. # Get SmartAlbums
  104. if ($public===false) $return = $this->getSmartInfo();
  105. # Albums query
  106. $query = 'SELECT id, title, public, sysstamp, password FROM lychee_albums WHERE public = 1 AND visible <> 0';
  107. if ($public===false) $query = 'SELECT id, title, public, sysstamp, password FROM lychee_albums';
  108. # Execute query
  109. $albums = $this->database->query($query) OR exit('Error: ' . $this->database->error);
  110. # For each album
  111. while ($album = $albums->fetch_assoc()) {
  112. # Parse info
  113. $album['sysdate'] = date('F Y', $album['sysstamp']);
  114. $album['password'] = ($album['password'] != '');
  115. # Thumbs
  116. if (($public===true&&$album['password']===false)||($public===false)) {
  117. # Execute query
  118. $thumbs = $this->database->query("SELECT thumbUrl FROM lychee_photos WHERE album = '" . $album['id'] . "' ORDER BY star DESC, " . substr($this->settings['sorting'], 9) . " LIMIT 3");
  119. # For each thumb
  120. $k = 0;
  121. while ($thumb = $thumbs->fetch_object()) {
  122. $album["thumb$k"] = $thumb->thumbUrl;
  123. $k++;
  124. }
  125. }
  126. # Add to return
  127. $return['content'][$album['id']] = $album;
  128. }
  129. # Num of albums
  130. $return['num'] = $albums->num_rows;
  131. # Call plugins
  132. $this->plugins(__METHOD__, 1, func_get_args());
  133. return $return;
  134. }
  135. private function getSmartInfo() {
  136. # Check dependencies
  137. self::dependencies(isset($this->database, $this->settings));
  138. # Unsorted
  139. $unsorted = $this->database->query("SELECT thumbUrl FROM lychee_photos WHERE album = 0 " . $this->settings['sorting']);
  140. $i = 0;
  141. while($row = $unsorted->fetch_object()) {
  142. if ($i<3) {
  143. $return["unsortedThumb$i"] = $row->thumbUrl;
  144. $i++;
  145. } else break;
  146. }
  147. $return['unsortedNum'] = $unsorted->num_rows;
  148. # Public
  149. $public = $this->database->query("SELECT thumbUrl FROM lychee_photos WHERE public = 1 " . $this->settings['sorting']);
  150. $i = 0;
  151. while($row2 = $public->fetch_object()) {
  152. if ($i<3) {
  153. $return["publicThumb$i"] = $row2->thumbUrl;
  154. $i++;
  155. } else break;
  156. }
  157. $return['publicNum'] = $public->num_rows;
  158. # Starred
  159. $starred = $this->database->query("SELECT thumbUrl FROM lychee_photos WHERE star = 1 " . $this->settings['sorting']);
  160. $i = 0;
  161. while($row3 = $starred->fetch_object()) {
  162. if ($i<3) {
  163. $return["starredThumb$i"] = $row3->thumbUrl;
  164. $i++;
  165. } else break;
  166. }
  167. $return['starredNum'] = $starred->num_rows;
  168. return $return;
  169. }
  170. public function getArchive() {
  171. # Check dependencies
  172. self::dependencies(isset($this->database, $this->albumIDs));
  173. # Call plugins
  174. $this->plugins(__METHOD__, 0, func_get_args());
  175. # Illicit chars
  176. $badChars = array_merge(
  177. array_map('chr', range(0,31)),
  178. array("<", ">", ":", '"', "/", "\\", "|", "?", "*")
  179. );
  180. # Photos query
  181. switch($this->albumIDs) {
  182. case 's':
  183. $photos = "SELECT title, url FROM lychee_photos WHERE public = '1';";
  184. $zipTitle = 'Public';
  185. break;
  186. case 'f':
  187. $photos = "SELECT title, url FROM lychee_photos WHERE star = '1';";
  188. $zipTitle = 'Starred';
  189. break;
  190. default:
  191. $photos = "SELECT title, url FROM lychee_photos WHERE album = '$this->albumIDs';";
  192. $zipTitle = 'Unsorted';
  193. }
  194. # Set title
  195. $album = $this->database->query("SELECT title FROM lychee_albums WHERE id = '$this->albumIDs' LIMIT 1;");
  196. if ($this->albumIDs!=0&&is_numeric($this->albumIDs)) $zipTitle = $album->fetch_object()->title;
  197. # Parse title
  198. $zipTitle = str_replace($badChars, '', $zipTitle);
  199. $filename = LYCHEE_DATA . $zipTitle . '.zip';
  200. # Create zip
  201. $zip = new ZipArchive();
  202. if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) {
  203. Log::error($this->database, __METHOD__, __LINE__, 'Could not create ZipArchive');
  204. return false;
  205. }
  206. # Execute query
  207. $photos = $this->database->query($photos);
  208. # Check if album empty
  209. if ($photos->num_rows==0) {
  210. Log::error($this->database, __METHOD__, __LINE__, 'Could not create ZipArchive without images');
  211. return false;
  212. }
  213. # Parse each path
  214. $files = array();
  215. while ($photo = $photos->fetch_object()) {
  216. # Parse url
  217. $photo->url = LYCHEE_UPLOADS_BIG . $photo->url;
  218. # Parse title
  219. $photo->title = str_replace($badChars, '', $photo->title);
  220. if (!isset($photo->title)||$photo->title==='') $photo->title = 'Untitled';
  221. # Check if readable
  222. if (!@is_readable($photo->url)) continue;
  223. # Get extension of image
  224. $extension = getExtension($photo->url);
  225. # Set title for photo
  226. $zipFileName = $zipTitle . '/' . $photo->title . $extension;
  227. # Check for duplicates
  228. if (!empty($files)) {
  229. $i = 1;
  230. while (in_array($zipFileName, $files)) {
  231. # Set new title for photo
  232. $zipFileName = $zipTitle . '/' . $photo->title . '-' . $i . $extension;
  233. $i++;
  234. }
  235. }
  236. # Add to array
  237. $files[] = $zipFileName;
  238. # Add photo to zip
  239. $zip->addFile($photo->url, $zipFileName);
  240. }
  241. # Finish zip
  242. $zip->close();
  243. # Send zip
  244. header("Content-Type: application/zip");
  245. header("Content-Disposition: attachment; filename=\"$zipTitle.zip\"");
  246. header("Content-Length: " . filesize($filename));
  247. readfile($filename);
  248. # Delete zip
  249. unlink($filename);
  250. # Call plugins
  251. $this->plugins(__METHOD__, 1, func_get_args());
  252. return true;
  253. }
  254. public function setTitle($title = 'Untitled') {
  255. # Check dependencies
  256. self::dependencies(isset($this->database, $this->albumIDs));
  257. # Call plugins
  258. $this->plugins(__METHOD__, 0, func_get_args());
  259. # Parse
  260. if (strlen($title)>50) $title = substr($title, 0, 50);
  261. # Execute query
  262. $result = $this->database->query("UPDATE lychee_albums SET title = '$title' WHERE id IN ($this->albumIDs);");
  263. # Call plugins
  264. $this->plugins(__METHOD__, 1, func_get_args());
  265. if (!$result) {
  266. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  267. return false;
  268. }
  269. return true;
  270. }
  271. public function setDescription($description = '') {
  272. # Check dependencies
  273. self::dependencies(isset($this->database, $this->albumIDs));
  274. # Call plugins
  275. $this->plugins(__METHOD__, 0, func_get_args());
  276. # Parse
  277. $description = htmlentities($description);
  278. if (strlen($description)>1000) $description = substr($description, 0, 1000);
  279. # Execute query
  280. $result = $this->database->query("UPDATE lychee_albums SET description = '$description' WHERE id IN ($this->albumIDs);");
  281. # Call plugins
  282. $this->plugins(__METHOD__, 1, func_get_args());
  283. if (!$result) {
  284. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  285. return false;
  286. }
  287. return true;
  288. }
  289. public function getPublic() {
  290. # Check dependencies
  291. self::dependencies(isset($this->database, $this->albumIDs));
  292. # Call plugins
  293. $this->plugins(__METHOD__, 0, func_get_args());
  294. if ($this->albumIDs==='0'||$this->albumIDs==='s'||$this->albumIDs==='f') return false;
  295. # Execute query
  296. $albums = $this->database->query("SELECT public FROM lychee_albums WHERE id = '$this->albumIDs' LIMIT 1;");
  297. $album = $albums->fetch_object();
  298. # Call plugins
  299. $this->plugins(__METHOD__, 1, func_get_args());
  300. if ($album->public==1) return true;
  301. return false;
  302. }
  303. public function setPublic($password) {
  304. # Check dependencies
  305. self::dependencies(isset($this->database, $this->albumIDs));
  306. # Call plugins
  307. $this->plugins(__METHOD__, 0, func_get_args());
  308. # Get public
  309. $albums = $this->database->query("SELECT id, public FROM lychee_albums WHERE id IN ('$this->albumIDs');");
  310. while ($album = $albums->fetch_object()) {
  311. # Invert public
  312. $public = ($album->public=='0' ? 1 : 0);
  313. # Set public
  314. $result = $this->database->query("UPDATE lychee_albums SET public = '$public', visible = 1, password = NULL WHERE id = '$album->id';");
  315. if (!$result) {
  316. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  317. return false;
  318. }
  319. # Reset permissions for photos
  320. if ($public===1) {
  321. $result = $this->database->query("UPDATE lychee_photos SET public = 0 WHERE album = '$album->id';");
  322. if (!$result) {
  323. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  324. return false;
  325. }
  326. }
  327. }
  328. # Call plugins
  329. $this->plugins(__METHOD__, 1, func_get_args());
  330. # Set password
  331. if (isset($password)&&strlen($password)>0) return $this->setPassword($password);
  332. return true;
  333. }
  334. public function setPassword($password) {
  335. # Check dependencies
  336. self::dependencies(isset($this->database, $this->albumIDs));
  337. # Call plugins
  338. $this->plugins(__METHOD__, 0, func_get_args());
  339. if (strlen($password)>0) {
  340. # Get hashed password
  341. $password = get_hashed_password($password);
  342. # Set hashed password
  343. $result = $this->database->query("UPDATE lychee_albums SET visible = 0, password = '$password' WHERE id IN ('$this->albumIDs');");
  344. } else {
  345. # Unset password
  346. $result = $this->database->query("UPDATE lychee_albums SET visible = 1, password = NULL WHERE id IN ('$this->albumIDs');");
  347. }
  348. # Call plugins
  349. $this->plugins(__METHOD__, 1, func_get_args());
  350. if (!$result) {
  351. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  352. return false;
  353. }
  354. return true;
  355. }
  356. public function checkPassword($password) {
  357. # Check dependencies
  358. self::dependencies(isset($this->database, $this->albumIDs));
  359. # Call plugins
  360. $this->plugins(__METHOD__, 0, func_get_args());
  361. # Execute query
  362. $albums = $this->database->query("SELECT password FROM lychee_albums WHERE id = '$this->albumIDs' LIMIT 1;");
  363. $album = $albums->fetch_object();
  364. # Call plugins
  365. $this->plugins(__METHOD__, 1, func_get_args());
  366. if ($album->password=='') return true;
  367. else if ($album->password===$password||$album->password===crypt($password, $album->password)) return true;
  368. return false;
  369. }
  370. public function delete($albumIDs) {
  371. # Check dependencies
  372. self::dependencies(isset($this->database, $this->albumIDs));
  373. # Call plugins
  374. $this->plugins(__METHOD__, 0, func_get_args());
  375. # Init vars
  376. $error = false;
  377. # Execute query
  378. $photos = $this->database->query("SELECT id FROM lychee_photos WHERE album IN ($albumIDs);");
  379. # For each album delete photo
  380. while ($row = $photos->fetch_object()) {
  381. $photo = new Photo($this->database, $this->plugins, null, $row->id);
  382. if (!$photo->delete($row->id)) $error = true;
  383. }
  384. # Delete albums
  385. $result = $this->database->query("DELETE FROM lychee_albums WHERE id IN ($albumIDs);");
  386. # Call plugins
  387. $this->plugins(__METHOD__, 1, func_get_args());
  388. if ($error) return false;
  389. if (!$result) {
  390. Log::error($this->database, __METHOD__, __LINE__, $this->database->error);
  391. return false;
  392. }
  393. return true;
  394. }
  395. }
  396. ?>