admin.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?php
  2. /**
  3. * @name Admin Access
  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_ADMIN')) 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(false));
  13. break;
  14. case 'getAlbum': if (isset($_POST['albumID']))
  15. echo json_encode(getAlbum($_POST['albumID']));
  16. break;
  17. case 'addAlbum': $album = new Album($database, $plugins, $settings, null);
  18. echo $album->add($_POST['title']);
  19. break;
  20. case 'setAlbumTitle': if (!isset($_POST['albumIDs'])) exit();
  21. $album = new Album($database, $plugins, $settings, $_POST['albumIDs']);
  22. echo $album->setTitle($_POST['title']);
  23. break;
  24. case 'setAlbumDescription': if (!isset($_POST['albumID'])) exit();
  25. $album = new Album($database, $plugins, $settings, $_POST['albumID']);
  26. echo $album->setDescription($_POST['description']);
  27. break;
  28. case 'setAlbumPublic': if (isset($_POST['albumID']))
  29. if (!isset($_POST['password'])) $_POST['password'] = '';
  30. echo setAlbumPublic($_POST['albumID'], $_POST['password']);
  31. break;
  32. case 'setAlbumPassword': if (isset($_POST['albumID'], $_POST['password']))
  33. echo setAlbumPassword($_POST['albumID'], $_POST['password']);
  34. break;
  35. case 'deleteAlbum': if (!isset($_POST['albumIDs'])) exit();
  36. $album = new Album($database, $plugins, $settings, $_POST['albumIDs']);
  37. echo $album->delete($_POST['albumIDs']);
  38. break;
  39. // Photo Functions
  40. case 'getPhoto': if (isset($_POST['photoID'], $_POST['albumID']))
  41. echo json_encode(getPhoto($_POST['photoID'], $_POST['albumID']));
  42. break;
  43. case 'deletePhoto': if (isset($_POST['photoIDs']))
  44. echo deletePhoto($_POST['photoIDs']);
  45. break;
  46. case 'setPhotoAlbum': if (isset($_POST['photoIDs'], $_POST['albumID']))
  47. echo setPhotoAlbum($_POST['photoIDs'], $_POST['albumID']);
  48. break;
  49. case 'setPhotoTitle': if (isset($_POST['photoIDs'], $_POST['title']))
  50. echo setPhotoTitle($_POST['photoIDs'], $_POST['title']);
  51. break;
  52. case 'setPhotoStar': if (isset($_POST['photoIDs']))
  53. echo setPhotoStar($_POST['photoIDs']);
  54. break;
  55. case 'setPhotoPublic': if (isset($_POST['photoID'], $_POST['url']))
  56. echo setPhotoPublic($_POST['photoID'], $_POST['url']);
  57. break;
  58. case 'setPhotoDescription': if (isset($_POST['photoID'], $_POST['description']))
  59. echo setPhotoDescription($_POST['photoID'], $_POST['description']);
  60. break;
  61. case 'setPhotoTags': if (isset($_POST['photoIDs'], $_POST['tags']))
  62. echo setPhotoTags($_POST['photoIDs'], $_POST['tags']);
  63. break;
  64. // Add Functions
  65. case 'upload': if (isset($_FILES, $_POST['albumID']))
  66. echo upload($_FILES, $_POST['albumID']);
  67. break;
  68. case 'importUrl': if (isset($_POST['url'], $_POST['albumID']))
  69. echo importUrl($_POST['url'], $_POST['albumID']);
  70. break;
  71. case 'importServer': if (isset($_POST['albumID']))
  72. echo importServer($_POST['albumID']);
  73. break;
  74. // Search Function
  75. case 'search': if (isset($_POST['term']))
  76. echo json_encode(search($_POST['term']));
  77. break;
  78. // Session Function
  79. case 'init': echo json_encode(init('admin', $_POST['version']));
  80. break;
  81. case 'login': if (isset($_POST['user'], $_POST['password']))
  82. echo login($_POST['user'], $_POST['password']);
  83. break;
  84. case 'logout': logout();
  85. break;
  86. // Settings
  87. case 'setLogin': if (isset($_POST['username'], $_POST['password']))
  88. if (!isset($_POST['oldPassword'])) $_POST['oldPassword'] = '';
  89. echo setLogin($_POST['oldPassword'], $_POST['username'], $_POST['password']);
  90. break;
  91. case 'setSorting': if (isset($_POST['type'], $_POST['order']))
  92. echo setSorting($_POST['type'], $_POST['order']);
  93. break;
  94. case 'setDropboxKey': if (isset($_POST['key']))
  95. echo setDropboxKey($_POST['key']);
  96. break;
  97. // Miscellaneous
  98. default: switch ($_GET['function']) {
  99. case 'getFeed': if (isset($_GET['albumID']))
  100. echo getFeed($_GET['albumID']);
  101. break;
  102. case 'getAlbumArchive': if (isset($_GET['albumID']))
  103. getAlbumArchive($_GET['albumID']);
  104. break;
  105. case 'getPhotoArchive': if (isset($_GET['photoID']))
  106. getPhotoArchive($_GET['photoID']);
  107. break;
  108. case 'update': echo update();
  109. break;
  110. default: exit('Error: Function not found! Please check the spelling of the called function.');
  111. break;
  112. }
  113. break;
  114. }
  115. ?>