Album.php 17 KB

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