guest.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?php
  2. /**
  3. * @name Guest Access (Public Mode)
  4. * @author Tobias Reich
  5. * @copyright 2014 by Tobias Reich
  6. */
  7. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  8. if (!defined('LYCHEE_ACCESS_GUEST')) exit('Error: You are not allowed to access this area!');
  9. switch ($_POST['function']) {
  10. // Album Functions
  11. case 'getAlbums': $album = new Album($database, $plugins, $settings, null);
  12. echo json_encode($album->getAll(true));
  13. break;
  14. case 'getAlbum': if (isset($_POST['albumID'], $_POST['password'])) {
  15. if (isAlbumPublic($_POST['albumID'])) {
  16. // Album Public
  17. if (checkAlbumPassword($_POST['albumID'], $_POST['password']))
  18. echo json_encode(getAlbum($_POST['albumID']));
  19. else
  20. echo 'Warning: Wrong password!';
  21. } else {
  22. // Album Private
  23. echo 'Warning: Album private!';
  24. }
  25. }
  26. break;
  27. case 'checkAlbumAccess':if (isset($_POST['albumID'], $_POST['password'])) {
  28. if (isAlbumPublic($_POST['albumID'])) {
  29. // Album Public
  30. if (checkAlbumPassword($_POST['albumID'], $_POST['password']))
  31. echo true;
  32. else
  33. echo false;
  34. } else {
  35. // Album Private
  36. echo false;
  37. }
  38. }
  39. break;
  40. // Photo Functions
  41. case 'getPhoto': if (isset($_POST['photoID'], $_POST['albumID'], $_POST['password'])) {
  42. if (isPhotoPublic($_POST['photoID'], $_POST['password']))
  43. echo json_encode(getPhoto($_POST['photoID'], $_POST['albumID']));
  44. else
  45. echo 'Warning: Wrong password!';
  46. }
  47. break;
  48. // Session Functions
  49. case 'init': echo json_encode(init('public', $_POST['version']));
  50. break;
  51. case 'login': if (isset($_POST['user'], $_POST['password']))
  52. echo login($_POST['user'], $_POST['password']);
  53. break;
  54. // Miscellaneous
  55. default: switch ($_GET['function']) {
  56. case 'getFeed': if (isset($_GET['albumID'], $_GET['password'])) {
  57. // Album Feed
  58. if (isAlbumPublic($_GET['albumID'])) {
  59. // Album Public
  60. if (checkAlbumPassword($_GET['albumID'], $_GET['password']))
  61. echo getFeed($_GET['albumID']);
  62. else
  63. exit('Warning: Wrong password!');
  64. } else {
  65. // Album Private
  66. exit('Warning: Album private!');
  67. }
  68. }
  69. break;
  70. case 'getAlbumArchive': if (!isset($_GET['albumID'], $_GET['password'])) exit();
  71. // Album Download
  72. if (isAlbumPublic($_GET['albumID'])) {
  73. // Album Public
  74. if (checkAlbumPassword($_GET['albumID'], $_GET['password'])) {
  75. $album = new Album($database, $plugins, $settings, $_GET['albumID']);
  76. $album->getArchive();
  77. } else {
  78. exit('Warning: Wrong password!');
  79. }
  80. } else {
  81. // Album Private
  82. exit('Warning: Album private or not downloadable!');
  83. }
  84. break;
  85. case 'getPhotoArchive': if (isset($_GET['photoID'], $_GET['password'])) {
  86. // Photo Download
  87. if (isPhotoPublic($_GET['photoID'], $_GET['password']))
  88. // Photo Public
  89. getPhotoArchive($_GET['photoID']);
  90. else
  91. // Photo Private
  92. exit('Warning: Photo private or not downloadable!');
  93. }
  94. break;
  95. default: exit('Error: Function not found! Please check the spelling of the called function.');
  96. break;
  97. }
  98. break;
  99. }
  100. ?>