check($_POST['function']); exit(); } # Define the table prefix if (!isset($dbTablePrefix)) $dbTablePrefix = ''; defineTablePrefix($dbTablePrefix); # Connect to database $database = Database::connect($dbHost, $dbUser, $dbPassword, $dbName); # Load settings $settings = new Settings($database); $settings = $settings->get(); # Init plugins $plugins = explode(';', $settings['plugins']); $plugins = new Plugins($plugins, $database, $settings); # Escape foreach(array_keys($_POST) as $key) $_POST[$key] = mysqli_real_escape_string($database, urldecode($_POST[$key])); foreach(array_keys($_GET) as $key) $_GET[$key] = mysqli_real_escape_string($database, urldecode($_GET[$key])); # 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!'); # Function for switch statement if (isset($_POST['function'])) $fn = $_POST['function']; else $fn = $_GET['function']; if (isset($_SESSION['login'])&&$_SESSION['login']==true) { ### # Admin Access # Full access to Lychee. Only with correct password/session. ### define('LYCHEE_ACCESS_ADMIN', true); $admin = new Admin($database, $plugins, $settings); $admin->check($fn); } else { ### # Guest Access # Access to view all public folders and photos in Lychee. ### define('LYCHEE_ACCESS_GUEST', true); $guest = new Guest($database, $plugins, $settings); $guest->check($fn); } } else { exit('Error: Called function not found!'); } ?>