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
|
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
|
|
|
|
|
|
|
@ini_set('max_execution_time', '200');
|
|
|
|
@ini_set('post_max_size', '200M');
|
|
|
|
@ini_set('upload_max_size', '200M');
|
|
|
|
@ini_set('upload_max_filesize', '20M');
|
|
|
|
@ini_set('max_file_uploads', '100');
|
|
|
|
|
|
|
|
if (!empty($_POST['function'])||!empty($_GET['function'])) {
|
|
|
|
|
|
|
|
session_start();
|
2014-02-09 18:21:55 +00:00
|
|
|
date_default_timezone_set('UTC');
|
2014-01-22 10:12:51 +00:00
|
|
|
|
2014-08-29 14:36:38 +00:00
|
|
|
# Load required files
|
2014-04-13 12:08:18 +00:00
|
|
|
require(__DIR__ . '/define.php');
|
2014-04-09 18:07:25 +00:00
|
|
|
require(__DIR__ . '/autoload.php');
|
|
|
|
require(__DIR__ . '/modules/misc.php');
|
2014-02-17 16:01:46 +00:00
|
|
|
|
2014-04-13 12:08:18 +00:00
|
|
|
if (file_exists(LYCHEE_CONFIG_FILE)) require(LYCHEE_CONFIG_FILE);
|
2014-01-22 10:12:51 +00:00
|
|
|
else {
|
|
|
|
|
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
|
|
|
|
2014-02-09 18:21:55 +00:00
|
|
|
define('LYCHEE_ACCESS_INSTALLATION', true);
|
2014-04-30 09:10:31 +00:00
|
|
|
|
|
|
|
$installation = new Installation(null, null, null);
|
|
|
|
$installation->check($_POST['function']);
|
|
|
|
|
2014-01-22 10:12:51 +00:00
|
|
|
exit();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-08-29 21:07:54 +00:00
|
|
|
# Define the table prefix
|
2014-08-30 17:53:41 +00:00
|
|
|
if (!isset($dbTablePrefix)) $dbTablePrefix = '';
|
2014-08-29 21:07:54 +00:00
|
|
|
defineTablePrefix($dbTablePrefix);
|
|
|
|
|
2014-04-12 12:10:08 +00:00
|
|
|
# Connect to database
|
2014-04-04 19:59:39 +00:00
|
|
|
$database = Database::connect($dbHost, $dbUser, $dbPassword, $dbName);
|
2014-04-04 21:17:54 +00:00
|
|
|
|
2014-04-12 12:10:08 +00:00
|
|
|
# Load settings
|
2014-04-04 21:17:54 +00:00
|
|
|
$settings = new Settings($database);
|
|
|
|
$settings = $settings->get();
|
2014-02-07 23:08:18 +00:00
|
|
|
|
2014-04-12 12:10:08 +00:00
|
|
|
# Init plugins
|
2014-04-02 17:30:58 +00:00
|
|
|
$plugins = explode(';', $settings['plugins']);
|
2014-04-19 14:55:17 +00:00
|
|
|
$plugins = new Plugins($plugins, $database, $settings);
|
2014-04-02 17:30:58 +00:00
|
|
|
|
2014-04-12 12:10:08 +00:00
|
|
|
# Validate parameters
|
2014-02-09 18:21:55 +00:00
|
|
|
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!');
|
2015-01-23 20:19:21 +00:00
|
|
|
if (isset($_POST['albumID'])&&preg_match('/^[0-9sfr]{1,}$/', $_POST['albumID'])!==1) exit('Error: Wrong parameter type for albumID!');
|
2014-02-09 18:21:55 +00:00
|
|
|
if (isset($_POST['photoID'])&&preg_match('/^[0-9]{14}$/', $_POST['photoID'])!==1) exit('Error: Wrong parameter type for photoID!');
|
2014-02-17 16:01:46 +00:00
|
|
|
|
2014-05-01 13:42:11 +00:00
|
|
|
# Function for switch statement
|
2015-01-23 20:19:21 +00:00
|
|
|
if (isset($_POST['function'])) $fn = $_POST['function'];
|
|
|
|
else $fn = $_GET['function'];
|
2014-02-23 21:42:15 +00:00
|
|
|
|
2015-05-14 19:07:42 +00:00
|
|
|
if ((isset($_SESSION['login'])&&$_SESSION['login']===true)&&
|
|
|
|
(isset($_SESSION['identifier'])&&$_SESSION['identifier']===$settings['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
|
|
|
|
2014-02-09 18:21:55 +00:00
|
|
|
define('LYCHEE_ACCESS_ADMIN', true);
|
2014-04-28 09:24:00 +00:00
|
|
|
|
|
|
|
$admin = new Admin($database, $plugins, $settings);
|
2014-04-30 08:56:04 +00:00
|
|
|
$admin->check($fn);
|
2014-01-22 10:12:51 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2014-04-27 13:24:51 +00:00
|
|
|
###
|
|
|
|
# Guest Access
|
|
|
|
# Access to view all public folders and photos in Lychee.
|
|
|
|
###
|
2014-01-22 10:12:51 +00:00
|
|
|
|
2014-02-09 18:21:55 +00:00
|
|
|
define('LYCHEE_ACCESS_GUEST', true);
|
2014-04-30 08:56:04 +00:00
|
|
|
|
|
|
|
$guest = new Guest($database, $plugins, $settings);
|
|
|
|
$guest->check($fn);
|
2014-01-22 10:12:51 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2014-04-26 15:00:31 +00:00
|
|
|
exit('Error: Called function not found!');
|
2014-01-22 10:12:51 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-10-02 15:48:08 +00:00
|
|
|
?>
|