admin.php 5.1 KB

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