guest.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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 Albums($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'])) {
  71. // Album Download
  72. if (isAlbumPublic($_GET['albumID'])) {
  73. // Album Public
  74. if (checkAlbumPassword($_GET['albumID'], $_GET['password']))
  75. getAlbumArchive($_GET['albumID']);
  76. else
  77. exit('Warning: Wrong password!');
  78. } else {
  79. // Album Private
  80. exit('Warning: Album private or not downloadable!');
  81. }
  82. }
  83. break;
  84. case 'getPhotoArchive': if (isset($_GET['photoID'], $_GET['password'])) {
  85. // Photo Download
  86. if (isPhotoPublic($_GET['photoID'], $_GET['password']))
  87. // Photo Public
  88. getPhotoArchive($_GET['photoID']);
  89. else
  90. // Photo Private
  91. exit('Warning: Photo private or not downloadable!');
  92. }
  93. break;
  94. default: exit('Error: Function not found! Please check the spelling of the called function.');
  95. break;
  96. }
  97. break;
  98. }
  99. ?>