Album.php 18 KB

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