Album.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  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 {
  9. private $database = null;
  10. private $plugins = null;
  11. private $settings = null;
  12. private $albumIDs = null;
  13. public function __construct($database, $plugins, $settings, $albumIDs) {
  14. # Init vars
  15. $this->database = $database;
  16. $this->plugins = $plugins;
  17. $this->settings = $settings;
  18. $this->albumIDs = $albumIDs;
  19. return true;
  20. }
  21. private function plugins($action, $args) {
  22. if (!isset($this->plugins, $action, $args)) return false;
  23. # Call plugins
  24. $this->plugins->activate("Albums:$action", $args);
  25. return true;
  26. }
  27. public function add($title = 'Untitled', $public = 0, $visible = 1) {
  28. if (!isset($this->database)) return false;
  29. # Call plugins
  30. $this->plugins('add:before', func_get_args());
  31. # Parse
  32. if (strlen($title)>50) $title = substr($title, 0, 50);
  33. # Database
  34. $sysdate = date('d.m.Y');
  35. $result = $this->database->query("INSERT INTO lychee_albums (title, sysdate, public, visible) VALUES ('$title', '$sysdate', '$public', '$visible');");
  36. # Call plugins
  37. $this->plugins('add:after', func_get_args());
  38. if (!$result) return false;
  39. return $this->database->insert_id;
  40. }
  41. public function getAll($public) {
  42. if (!isset($this->database, $this->settings, $public)) return false;
  43. # Call plugins
  44. $this->plugins('getAll:before', func_get_args());
  45. # Get SmartAlbums
  46. if ($public===false) $return = getSmartInfo();
  47. # Albums query
  48. $query = 'SELECT id, title, public, sysdate, password FROM lychee_albums WHERE public = 1 AND visible <> 0';
  49. if ($public===false) $query = 'SELECT id, title, public, sysdate, password FROM lychee_albums';
  50. # Execute query
  51. $albums = $this->database->query($query) OR exit('Error: ' . $this->database->error);
  52. # For each album
  53. while ($album = $albums->fetch_assoc()) {
  54. # Parse info
  55. $album['sysdate'] = date('F Y', strtotime($album['sysdate']));
  56. $album['password'] = ($album['password'] != '');
  57. # Thumbs
  58. if (($public===true&&$album['password']===false)||($public===false)) {
  59. # Execute query
  60. $thumbs = $this->database->query("SELECT thumbUrl FROM lychee_photos WHERE album = '" . $album['id'] . "' ORDER BY star DESC, " . substr($this->settings['sorting'], 9) . " LIMIT 0, 3");
  61. # For each thumb
  62. $k = 0;
  63. while ($thumb = $thumbs->fetch_object()) {
  64. $album["thumb$k"] = $thumb->thumbUrl;
  65. $k++;
  66. }
  67. }
  68. # Add to return
  69. $return['content'][$album['id']] = $album;
  70. }
  71. # Num of albums
  72. $return['num'] = $albums->num_rows;
  73. # Call plugins
  74. $this->plugins('getAll:after', func_get_args());
  75. return $return;
  76. }
  77. public function setTitle($title = 'Untitled') {
  78. if (!isset($this->database, $this->albumIDs)) return false;
  79. # Call plugins
  80. $this->plugins('setTitle:before', func_get_args());
  81. # Parse
  82. if (strlen($title)>50) $title = substr($title, 0, 50);
  83. # Execute query
  84. $result = $this->database->query("UPDATE lychee_albums SET title = '$title' WHERE id IN ($this->albumIDs);");
  85. # Call plugins
  86. $this->plugins('setTitle:after', func_get_args());
  87. if (!$result) return false;
  88. return true;
  89. }
  90. public function setDescription($description = '') {
  91. if (!isset($this->database, $this->albumIDs)) return false;
  92. # Call plugins
  93. $this->plugins('setDescription:before', func_get_args());
  94. # Parse
  95. $description = htmlentities($description);
  96. if (strlen($description)>1000) return false;
  97. # Execute query
  98. $result = $this->database->query("UPDATE lychee_albums SET description = '$description' WHERE id IN ($this->albumIDs);");
  99. # Call plugins
  100. $this->plugins('setDescription:after', func_get_args());
  101. if (!$result) return false;
  102. return true;
  103. }
  104. public function delete($albumIDs) {
  105. if (!isset($this->database, $this->albumIDs)) return false;
  106. # Call plugins
  107. $this->plugins('delete:before', func_get_args());
  108. # Init vars
  109. $error = false;
  110. # Execute query
  111. $result = $this->database->query("SELECT id FROM lychee_photos WHERE album IN ($albumIDs);");
  112. # For each album delete photo
  113. while ($row = $result->fetch_object())
  114. if (!deletePhoto($row->id)) $error = true;
  115. # Delete albums
  116. $result = $this->database->query("DELETE FROM lychee_albums WHERE id IN ($albumIDs);");
  117. # Call plugins
  118. $this->plugins('delete:after', func_get_args());
  119. if ($error||!$result) return false;
  120. return true;
  121. }
  122. }