2014-01-22 10:12:51 +00:00
|
|
|
<?php
|
|
|
|
|
2014-04-12 12:10:08 +00:00
|
|
|
###
|
2014-04-27 13:24:51 +00:00
|
|
|
# @name API
|
2016-01-26 14:31:53 +00:00
|
|
|
# @author Tobias Reich
|
2015-02-01 21:08:37 +00:00
|
|
|
# @copyright 2015 by Tobias Reich
|
2014-04-12 12:10:08 +00:00
|
|
|
###
|
2014-01-22 10:12:51 +00:00
|
|
|
|
2016-01-26 14:31:53 +00:00
|
|
|
namespace Lychee;
|
|
|
|
|
|
|
|
use Lychee\Modules\Config;
|
|
|
|
use Lychee\Modules\Settings;
|
|
|
|
|
|
|
|
use Lychee\Access\Installation;
|
|
|
|
use Lychee\Access\Admin;
|
|
|
|
use Lychee\Access\Guest;
|
|
|
|
|
|
|
|
require(__DIR__ . '/define.php');
|
|
|
|
require(__DIR__ . '/autoload.php');
|
|
|
|
|
|
|
|
require(__DIR__ . '/helpers/fastImageCopyResampled.php');
|
|
|
|
require(__DIR__ . '/helpers/getExtension.php');
|
|
|
|
require(__DIR__ . '/helpers/getGraphHeader.php');
|
|
|
|
require(__DIR__ . '/helpers/getHashedString.php');
|
|
|
|
require(__DIR__ . '/helpers/hasPermissions.php');
|
|
|
|
require(__DIR__ . '/helpers/search.php');
|
|
|
|
|
2016-01-19 15:09:06 +00:00
|
|
|
# Define the called function
|
|
|
|
if (isset($_POST['function'])) $fn = $_POST['function'];
|
|
|
|
else if (isset($_GET['function'])) $fn = $_GET['function'];
|
|
|
|
else $fn = null;
|
2014-01-22 10:12:51 +00:00
|
|
|
|
2016-01-19 15:09:06 +00:00
|
|
|
# Check if a function has been specified
|
|
|
|
if (!empty($fn)) {
|
|
|
|
|
|
|
|
# Start the session and set the default timezone
|
2014-01-22 10:12:51 +00:00
|
|
|
session_start();
|
2014-02-09 18:21:55 +00:00
|
|
|
date_default_timezone_set('UTC');
|
2014-01-22 10:12:51 +00:00
|
|
|
|
2016-01-19 15:09:06 +00:00
|
|
|
# Validate parameters
|
|
|
|
if (isset($_POST['albumIDs'])&&preg_match('/^[0-9\,]{1,}$/', $_POST['albumIDs'])!==1) exit('Error: Wrong parameter type for albumIDs!');
|
|
|
|
if (isset($_POST['photoIDs'])&&preg_match('/^[0-9\,]{1,}$/', $_POST['photoIDs'])!==1) exit('Error: Wrong parameter type for photoIDs!');
|
|
|
|
if (isset($_POST['albumID'])&&preg_match('/^[0-9sfr]{1,}$/', $_POST['albumID'])!==1) exit('Error: Wrong parameter type for albumID!');
|
|
|
|
if (isset($_POST['photoID'])&&preg_match('/^[0-9]{14}$/', $_POST['photoID'])!==1) exit('Error: Wrong parameter type for photoID!');
|
|
|
|
|
|
|
|
# Check if a configuration exists
|
2016-01-24 21:14:20 +00:00
|
|
|
if (Config::exists()===false) {
|
2014-01-22 10:12:51 +00:00
|
|
|
|
2014-04-27 13:24:51 +00:00
|
|
|
###
|
|
|
|
# Installation Access
|
|
|
|
# Limited access to configure Lychee. Only available when the config.php file is missing.
|
|
|
|
###
|
2014-01-22 10:12:51 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
$installation = new Installation();
|
|
|
|
$installation->check($fn);
|
2014-04-30 09:10:31 +00:00
|
|
|
|
2014-01-22 10:12:51 +00:00
|
|
|
exit();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-01-19 15:09:06 +00:00
|
|
|
# Check if user is logged
|
2015-05-14 19:07:42 +00:00
|
|
|
if ((isset($_SESSION['login'])&&$_SESSION['login']===true)&&
|
2016-01-24 21:14:20 +00:00
|
|
|
(isset($_SESSION['identifier'])&&$_SESSION['identifier']===Settings::get()['identifier'])) {
|
2014-01-22 10:12:51 +00:00
|
|
|
|
2014-04-27 13:24:51 +00:00
|
|
|
###
|
|
|
|
# Admin Access
|
|
|
|
# Full access to Lychee. Only with correct password/session.
|
|
|
|
###
|
2014-02-17 16:01:46 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
$admin = new Admin();
|
2014-04-30 08:56:04 +00:00
|
|
|
$admin->check($fn);
|
2014-01-22 10:12:51 +00:00
|
|
|
|
2016-01-24 21:30:57 +00:00
|
|
|
exit();
|
2014-01-22 10:12:51 +00:00
|
|
|
|
2016-01-24 21:30:57 +00:00
|
|
|
}
|
2014-01-22 10:12:51 +00:00
|
|
|
|
2016-01-24 21:30:57 +00:00
|
|
|
###
|
|
|
|
# Guest Access
|
|
|
|
# Access to view all public folders and photos in Lychee.
|
|
|
|
###
|
2014-01-22 10:12:51 +00:00
|
|
|
|
2016-01-24 21:30:57 +00:00
|
|
|
$guest = new Guest();
|
|
|
|
$guest->check($fn);
|
2014-01-22 10:12:51 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2016-01-19 15:09:06 +00:00
|
|
|
exit('Error: No API function specified!');
|
2014-01-22 10:12:51 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-01-19 15:09:06 +00:00
|
|
|
?>
|