Albums.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 Albums {
  9. private $database = null;
  10. private $plugins = null;
  11. private $settings = array();
  12. private $albumIDs = array();
  13. public function __construct($database = null, $plugins = null, $settings = null, $albumIDs = array()) {
  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($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. }