api.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. ###
  3. # @name API
  4. # @author Tobias Reich
  5. # @copyright 2014 by Tobias Reich
  6. ###
  7. @ini_set('max_execution_time', '200');
  8. @ini_set('post_max_size', '200M');
  9. @ini_set('upload_max_size', '200M');
  10. @ini_set('upload_max_filesize', '20M');
  11. @ini_set('max_file_uploads', '100');
  12. if (!empty($_POST['function'])||!empty($_GET['function'])) {
  13. session_start();
  14. define('LYCHEE', true);
  15. date_default_timezone_set('UTC');
  16. # Load autoload
  17. require(__DIR__ . '/autoload.php');
  18. # Load modules
  19. require(__DIR__ . '/modules/misc.php');
  20. if (file_exists(__DIR__ . '/../data/config.php')) require(__DIR__ . '/../data/config.php');
  21. else {
  22. /**
  23. * Installation Access
  24. * Limited access to configure Lychee. Only available when the config.php file is missing.
  25. */
  26. define('LYCHEE_ACCESS_INSTALLATION', true);
  27. require(__DIR__ . '/access/installation.php');
  28. exit();
  29. }
  30. # Connect to database
  31. $database = Database::connect($dbHost, $dbUser, $dbPassword, $dbName);
  32. # Load settings
  33. $settings = new Settings($database);
  34. $settings = $settings->get();
  35. # Init plugins
  36. $plugins = explode(';', $settings['plugins']);
  37. $plugins = new Plugins($plugins, $database);
  38. # Escape
  39. foreach(array_keys($_POST) as $key) $_POST[$key] = mysqli_real_escape_string($database, urldecode($_POST[$key]));
  40. foreach(array_keys($_GET) as $key) $_GET[$key] = mysqli_real_escape_string($database, urldecode($_GET[$key]));
  41. # Validate parameters
  42. if (isset($_POST['albumIDs'])&&preg_match('/^[0-9\,]{1,}$/', $_POST['albumIDs'])!==1) exit('Error: Wrong parameter type for albumIDs!');
  43. if (isset($_POST['photoIDs'])&&preg_match('/^[0-9\,]{1,}$/', $_POST['photoIDs'])!==1) exit('Error: Wrong parameter type for photoIDs!');
  44. if (isset($_POST['albumID'])&&preg_match('/^[0-9sf]{1,}$/', $_POST['albumID'])!==1) exit('Error: Wrong parameter type for albumID!');
  45. if (isset($_POST['photoID'])&&preg_match('/^[0-9]{14}$/', $_POST['photoID'])!==1) exit('Error: Wrong parameter type for photoID!');
  46. # Fallback for switch statement
  47. if (!isset($_POST['function'])) $_POST['function'] = '';
  48. if (!isset($_GET['function'])) $_GET['function'] = '';
  49. if (isset($_SESSION['login'])&&$_SESSION['login']==true) {
  50. /**
  51. * Admin Access
  52. * Full access to Lychee. Only with correct password/session.
  53. */
  54. define('LYCHEE_ACCESS_ADMIN', true);
  55. require(__DIR__ . '/access/admin.php');
  56. } else {
  57. /**
  58. * Guest Access
  59. * Access to view all public folders and photos in Lychee.
  60. */
  61. define('LYCHEE_ACCESS_GUEST', true);
  62. require(__DIR__ . '/access/guest.php');
  63. }
  64. } else {
  65. exit('Error: No permission!');
  66. }
  67. ?>