api.php 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. <?php
  2. /**
  3. * @name API
  4. * @author Philipp Maurer
  5. * @author Tobias Reich
  6. * @copyright 2014 by Philipp Maurer, Tobias Reich
  7. */
  8. @ini_set('max_execution_time', '200');
  9. @ini_set('post_max_size', '200M');
  10. @ini_set('upload_max_size', '200M');
  11. @ini_set('upload_max_filesize', '20M');
  12. @ini_set('max_file_uploads', '100');
  13. if (!empty($_POST['function'])||!empty($_GET['function'])) {
  14. session_start();
  15. define('LYCHEE', true);
  16. require('modules/db.php');
  17. require('modules/session.php');
  18. require('modules/settings.php');
  19. require('modules/upload.php');
  20. require('modules/album.php');
  21. require('modules/photo.php');
  22. require('modules/misc.php');
  23. if (file_exists('config.php')) require('config.php');
  24. else {
  25. /**
  26. * Installation Mode
  27. * Limited access to configure Lychee. Only available when the config.php file is missing.
  28. */
  29. switch ($_POST['function']) {
  30. case 'createConfig': if (isset($_POST['dbHost'])&&isset($_POST['dbUser'])&&isset($_POST['dbPassword'])&&isset($_POST['dbName']))
  31. echo createConfig($_POST['dbHost'], $_POST['dbUser'], $_POST['dbPassword'], $_POST['dbName']);
  32. break;
  33. default: echo 'Warning: No configuration!';
  34. break;
  35. }
  36. exit();
  37. }
  38. // Connect to DB
  39. $database = dbConnect();
  40. // Get Settings
  41. $settings = getSettings();
  42. // Security
  43. if (isset($_POST['albumID'])&&($_POST['albumID']==''||$_POST['albumID']<0||$_POST['albumID']>10000)) exit('Error: Wrong parameter type for albumID!');
  44. if (isset($_POST['photoID'])&&$_POST['photoID']=='') exit('Error: Wrong parameter type for photoID!');
  45. foreach(array_keys($_POST) as $key) $_POST[$key] = mysqli_real_escape_string($database, urldecode($_POST[$key]));
  46. foreach(array_keys($_GET) as $key) $_GET[$key] = mysqli_real_escape_string($database, urldecode($_GET[$key]));
  47. if (isset($_SESSION['login'])&&$_SESSION['login']==true) {
  48. /**
  49. * Admin Mode
  50. * Full access to Lychee. Only with correct password/session.
  51. */
  52. switch ($_POST['function']) {
  53. // Album Functions
  54. case 'getAlbums': echo json_encode(getAlbums(false));
  55. break;
  56. case 'getAlbum': if (isset($_POST['albumID']))
  57. echo json_encode(getAlbum($_POST['albumID']));
  58. break;
  59. case 'addAlbum': if (isset($_POST['title']))
  60. echo addAlbum($_POST['title']);
  61. break;
  62. case 'setAlbumTitle': if (isset($_POST['albumID'])&&isset($_POST['title']))
  63. echo setAlbumTitle($_POST['albumID'], $_POST['title']);
  64. break;
  65. case 'setAlbumDescription': if (isset($_POST['albumID'])&&isset($_POST['description']))
  66. echo setAlbumDescription($_POST['albumID'], $_POST['description']);
  67. break;
  68. case 'setAlbumPublic': if (isset($_POST['albumID']))
  69. echo setAlbumPublic($_POST['albumID'], $_POST['password']);
  70. break;
  71. case 'setAlbumPassword':if (isset($_POST['albumID'])&&isset($_POST['password']))
  72. echo setAlbumPassword($_POST['albumID'], $_POST['password']);
  73. break;
  74. case 'deleteAlbum': if (isset($_POST['albumID']))
  75. echo deleteAlbum($_POST['albumID']);
  76. break;
  77. // Photo Functions
  78. case 'getPhoto': if (isset($_POST['photoID'])&&isset($_POST['albumID']))
  79. echo json_encode(getPhoto($_POST['photoID'], $_POST['albumID']));
  80. break;
  81. case 'deletePhoto': if (isset($_POST['photoID']))
  82. echo deletePhoto($_POST['photoID']);
  83. break;
  84. case 'setAlbum': if (isset($_POST['photoID'])&&isset($_POST['albumID']))
  85. echo setAlbum($_POST['photoID'], $_POST['albumID']);
  86. break;
  87. case 'setPhotoTitle': if (isset($_POST['photoID'])&&isset($_POST['title']))
  88. echo setPhotoTitle($_POST['photoID'], $_POST['title']);
  89. break;
  90. case 'setPhotoStar': if (isset($_POST['photoID']))
  91. echo setPhotoStar($_POST['photoID']);
  92. break;
  93. case 'setPhotoPublic': if (isset($_POST['photoID'])&&isset($_POST['url']))
  94. echo setPhotoPublic($_POST['photoID'], $_POST['url']);
  95. break;
  96. case 'setPhotoDescription': if (isset($_POST['photoID'])&&isset($_POST['description']))
  97. echo setPhotoDescription($_POST['photoID'], $_POST['description']);
  98. break;
  99. // Add Functions
  100. case 'upload': if (isset($_FILES)&&isset($_POST['albumID']))
  101. echo upload($_FILES, $_POST['albumID']);
  102. break;
  103. case 'importUrl': if (isset($_POST['url'])&&isset($_POST['albumID']))
  104. echo importUrl($_POST['url'], $_POST['albumID']);
  105. break;
  106. case 'importServer': if (isset($_POST['albumID']))
  107. echo importServer($_POST['albumID']);
  108. break;
  109. // Search Function
  110. case 'search': if (isset($_POST['term']))
  111. echo json_encode(search($_POST['term']));
  112. break;
  113. // Session Function
  114. case 'init': echo json_encode(init('admin'));
  115. break;
  116. case 'login': if (isset($_POST['user'])&&isset($_POST['password']))
  117. echo login($_POST['user'], $_POST['password']);
  118. break;
  119. case 'logout': logout();
  120. break;
  121. // Settings
  122. case 'setLogin': if (isset($_POST['username'])&&isset($_POST['password']))
  123. echo setLogin($_POST['oldPassword'], $_POST['username'], $_POST['password']);
  124. break;
  125. case 'setSorting': if (isset($_POST['type'])&&isset($_POST['order']))
  126. echo setSorting($_POST['type'], $_POST['order']);
  127. break;
  128. // Miscellaneous
  129. case 'update': echo update();
  130. default: if (isset($_GET['function'])&&$_GET['function']=='getAlbumArchive'&&isset($_GET['albumID']))
  131. // Album Download
  132. getAlbumArchive($_GET['albumID']);
  133. else if (isset($_GET['function'])&&$_GET['function']=='getPhotoArchive'&&isset($_GET['photoID']))
  134. // Photo Download
  135. getPhotoArchive($_GET['photoID']);
  136. else if (isset($_GET['function'])&&$_GET['function']=='update')
  137. // Update Lychee
  138. echo update();
  139. else
  140. // Function unknown
  141. exit('Error: Function not found! Please check the spelling of the called function.');
  142. break;
  143. }
  144. } else {
  145. /**
  146. * Public Mode
  147. * Access to view all public folders and photos in Lychee.
  148. */
  149. switch ($_POST['function']) {
  150. // Album Functions
  151. case 'getAlbums': echo json_encode(getAlbums(true));
  152. break;
  153. case 'getAlbum': if (isset($_POST['albumID'])&&isset($_POST['password'])) {
  154. if (isAlbumPublic($_POST['albumID'])) {
  155. // Album Public
  156. if (checkAlbumPassword($_POST['albumID'], $_POST['password']))
  157. echo json_encode(getAlbum($_POST['albumID']));
  158. else
  159. echo 'Warning: Wrong password!';
  160. } else {
  161. // Album Private
  162. echo 'Warning: Album private!';
  163. }
  164. }
  165. break;
  166. case 'checkAlbumAccess':if (isset($_POST['albumID'])&&isset($_POST['password'])) {
  167. if (isAlbumPublic($_POST['albumID'])) {
  168. // Album Public
  169. if (checkAlbumPassword($_POST['albumID'], $_POST['password']))
  170. echo true;
  171. else
  172. echo false;
  173. } else {
  174. // Album Private
  175. echo false;
  176. }
  177. }
  178. break;
  179. // Photo Functions
  180. case 'getPhoto': if (isset($_POST['photoID'])&&isset($_POST['albumID'])&&isset($_POST['password'])) {
  181. if (isPhotoPublic($_POST['photoID'], $_POST['password']))
  182. echo json_encode(getPhoto($_POST['photoID'], $_POST['albumID']));
  183. else
  184. echo 'Warning: Wrong password!';
  185. }
  186. break;
  187. // Session Functions
  188. case 'init': echo json_encode(init('public'));
  189. break;
  190. case 'login': if (isset($_POST['user'])&&isset($_POST['password']))
  191. echo login($_POST['user'], $_POST['password']);
  192. break;
  193. // Miscellaneous
  194. default: if (isset($_GET['function'])&&$_GET['function']=='getAlbumArchive'&&isset($_GET['albumID'])&&isset($_GET['password'])) {
  195. // Album Download
  196. if (isAlbumPublic($_GET['albumID'])) {
  197. // Album Public
  198. if (checkAlbumPassword($_GET['albumID'], $_GET['password']))
  199. getAlbumArchive($_GET['albumID']);
  200. else
  201. exit('Warning: Wrong password!');
  202. } else {
  203. // Album Private
  204. exit('Warning: Album private or not downloadable!');
  205. }
  206. } else if (isset($_GET['function'])&&$_GET['function']=='getPhotoArchive'&&isset($_GET['photoID'])&&isset($_GET['password'])) {
  207. // Photo Download
  208. if (isPhotoPublic($_GET['photoID'], $_GET['password']))
  209. // Photo Public
  210. getPhotoArchive($_GET['photoID']);
  211. else
  212. // Photo Private
  213. exit('Warning: Photo private or not downloadable!');
  214. } else {
  215. // Function unknown
  216. exit('Error: Function not found! Please check the spelling of the called function.');
  217. }
  218. break;
  219. }
  220. }
  221. } else {
  222. exit('Error: No permission!');
  223. }
  224. ?>