Album.php 17 KB

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