api.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. ###
  3. # @name API
  4. # @copyright 2015 by Tobias Reich
  5. ###
  6. if (!empty($_POST['function'])||!empty($_GET['function'])) {
  7. session_start();
  8. date_default_timezone_set('UTC');
  9. # Load required files
  10. require(__DIR__ . '/define.php');
  11. require(__DIR__ . '/autoload.php');
  12. require(__DIR__ . '/modules/misc.php');
  13. if (file_exists(LYCHEE_CONFIG_FILE)) require(LYCHEE_CONFIG_FILE);
  14. else {
  15. ###
  16. # Installation Access
  17. # Limited access to configure Lychee. Only available when the config.php file is missing.
  18. ###
  19. define('LYCHEE_ACCESS_INSTALLATION', true);
  20. $installation = new Installation(null, null, null);
  21. $installation->check($_POST['function']);
  22. exit();
  23. }
  24. # Define the table prefix
  25. defineTablePrefix(@$dbTablePrefix);
  26. # Connect to database
  27. $database = Database::connect($dbHost, $dbUser, $dbPassword, $dbName);
  28. # Load settings
  29. $settings = new Settings($database);
  30. $settings = $settings->get();
  31. # Init plugins
  32. $plugins = explode(';', $settings['plugins']);
  33. $plugins = new Plugins($plugins, $database, $settings);
  34. # Validate parameters
  35. if (isset($_POST['albumIDs'])&&preg_match('/^[0-9\,]{1,}$/', $_POST['albumIDs'])!==1) exit('Error: Wrong parameter type for albumIDs!');
  36. if (isset($_POST['photoIDs'])&&preg_match('/^[0-9\,]{1,}$/', $_POST['photoIDs'])!==1) exit('Error: Wrong parameter type for photoIDs!');
  37. if (isset($_POST['albumID'])&&preg_match('/^[0-9sfr]{1,}$/', $_POST['albumID'])!==1) exit('Error: Wrong parameter type for albumID!');
  38. if (isset($_POST['photoID'])&&preg_match('/^[0-9]{14}$/', $_POST['photoID'])!==1) exit('Error: Wrong parameter type for photoID!');
  39. # Function for switch statement
  40. if (isset($_POST['function'])) $fn = $_POST['function'];
  41. else $fn = $_GET['function'];
  42. if ((isset($_SESSION['login'])&&$_SESSION['login']===true)&&
  43. (isset($_SESSION['identifier'])&&$_SESSION['identifier']===$settings['identifier'])) {
  44. ###
  45. # Admin Access
  46. # Full access to Lychee. Only with correct password/session.
  47. ###
  48. define('LYCHEE_ACCESS_ADMIN', true);
  49. $admin = new Admin($database, $plugins, $settings);
  50. $admin->check($fn);
  51. } else {
  52. ###
  53. # Guest Access
  54. # Access to view all public folders and photos in Lychee.
  55. ###
  56. define('LYCHEE_ACCESS_GUEST', true);
  57. $guest = new Guest($database, $plugins, $settings);
  58. $guest->check($fn);
  59. }
  60. } else {
  61. exit('Error: Called function not found!');
  62. }
  63. ?>