photo.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <?php
  2. /**
  3. * @name Photo Module
  4. * @author Philipp Maurer
  5. * @author Tobias Reich
  6. * @copyright 2014 by Philipp Maurer, Tobias Reich
  7. */
  8. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  9. function getPhoto($photoID, $albumID) {
  10. global $database;
  11. $query = "SELECT * FROM lychee_photos WHERE id = '$photoID' LIMIT 1;";
  12. $result = $database->query($query);
  13. $return = $result->fetch_array();
  14. if ($albumID!='false') {
  15. if ($return['album']!=0) {
  16. $result = $database->query("SELECT public FROM lychee_albums WHERE id = '" . $return['album'] . "';");
  17. $return_album = $result->fetch_array();
  18. if ($return_album['public']=="1") $return['public'] = "2";
  19. }
  20. $return['original_album'] = $return['album'];
  21. $return['album'] = $albumID;
  22. $return['sysdate'] = date('d M. Y', strtotime($return['sysdate']));
  23. if (strlen($return['takedate'])>0) $return['takedate'] = date('d M. Y', strtotime($return['takedate']));
  24. }
  25. unset($return['album_public']);
  26. // Remove unused items
  27. foreach ($return as $key => $value) {
  28. if (is_int($key)) unset($return[$key]);
  29. }
  30. return $return;
  31. }
  32. function setPhotoPublic($photoID, $url) {
  33. global $database;
  34. $result = $database->query("SELECT public FROM lychee_photos WHERE id = '$photoID';");
  35. $row = $result->fetch_object();
  36. $public = ($row->public==0 ? 1 : 0);
  37. $result = $database->query("UPDATE lychee_photos SET public = '$public' WHERE id = '$photoID';");
  38. if (!$result) return false;
  39. return true;
  40. }
  41. function setPhotoStar($photoIDs) {
  42. global $database;
  43. $error = false;
  44. $result = $database->query("SELECT id, star FROM lychee_photos WHERE id IN ($photoIDs);");
  45. while ($row = $result->fetch_object()) {
  46. $star = ($row->star==0 ? 1 : 0);
  47. $star = $database->query("UPDATE lychee_photos SET star = '$star' WHERE id = '$row->id';");
  48. if (!$star) $error = true;
  49. }
  50. if ($error) return false;
  51. return true;
  52. }
  53. function setPhotoAlbum($photoIDs, $albumID) {
  54. global $database;
  55. $result = $database->query("UPDATE lychee_photos SET album = '$albumID' WHERE id IN ($photoIDs);");
  56. if (!$result) return false;
  57. return true;
  58. }
  59. function setPhotoTitle($photoIDs, $title) {
  60. global $database;
  61. if (strlen($title)>50) return false;
  62. $result = $database->query("UPDATE lychee_photos SET title = '$title' WHERE id IN ($photoIDs);");
  63. if (!$result) return false;
  64. return true;
  65. }
  66. function setPhotoDescription($photoID, $description) {
  67. global $database;
  68. $description = htmlentities($description);
  69. if (strlen($description)>1000) return false;
  70. $result = $database->query("UPDATE lychee_photos SET description = '$description' WHERE id = '$photoID';");
  71. if (!$result) return false;
  72. return true;
  73. }
  74. function setPhotoTags($photoIDs, $tags) {
  75. global $database;
  76. // Parse tags
  77. $tags = preg_replace('/(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/', ',', $tags);
  78. $tags = preg_replace('/,$|^,/', ',', $tags);
  79. if (strlen($tags)>1000) return false;
  80. $result = $database->query("UPDATE lychee_photos SET tags = '$tags' WHERE id IN ($photoIDs);");
  81. if (!$result) return false;
  82. return true;
  83. }
  84. function deletePhoto($photoIDs) {
  85. global $database;
  86. $result = $database->query("SELECT id, url, thumbUrl FROM lychee_photos WHERE id IN ($photoIDs);");
  87. while ($row = $result->fetch_object()) {
  88. // Get retina thumb url
  89. $thumbUrl2x = explode(".", $row->thumbUrl);
  90. $thumbUrl2x = $thumbUrl2x[0] . '@2x.' . $thumbUrl2x[1];
  91. // Delete files
  92. if (!unlink('../uploads/big/' . $row->url)) return false;
  93. if (!unlink('../uploads/thumb/' . $row->thumbUrl)) return false;
  94. if (!unlink('../uploads/thumb/' . $thumbUrl2x)) return false;
  95. // Delete db entry
  96. $delete = $database->query("DELETE FROM lychee_photos WHERE id = $row->id;");
  97. if (!$delete) return false;
  98. }
  99. if (!$result) return false;
  100. return true;
  101. }
  102. function isPhotoPublic($photoID, $password) {
  103. global $database;
  104. $query = "SELECT public, album FROM lychee_photos WHERE id = '$photoID';";
  105. $result = $database->query($query);
  106. $row = $result->fetch_object();
  107. if ($row->public==1) return true;
  108. else {
  109. $cAP = checkAlbumPassword($row->album, $password);
  110. $iAP = isAlbumPublic($row->album);
  111. if ($iAP&&$cAP) return true;
  112. return false;
  113. }
  114. }
  115. function getPhotoArchive($photoID) {
  116. global $database;
  117. $result = $database->query("SELECT title, url FROM lychee_photos WHERE id = '$photoID';");
  118. $row = $result->fetch_object();
  119. $extension = array_reverse(explode('.', $row->url));
  120. if ($row->title=='') $row->title = 'Untitled';
  121. header("Content-Type: application/octet-stream");
  122. header("Content-Disposition: attachment; filename=\"$row->title.$extension[0]\"");
  123. header("Content-Length: " . filesize("../uploads/big/$row->url"));
  124. readfile("../uploads/big/$row->url");
  125. return true;
  126. }
  127. ?>