Album.php 15 KB

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