mirror of
https://github.com/HaschekSolutions/pictshare.git
synced 2025-11-15 20:48:00 +00:00
46 lines
1.4 KiB
PHP
46 lines
1.4 KiB
PHP
<?php
|
|
// basic path definitions
|
|
define('DS', DIRECTORY_SEPARATOR);
|
|
define('ROOT', dirname(__FILE__).DS.'..');
|
|
|
|
ini_set('error_log', ROOT.DS.'logs'.DS.'error.log');
|
|
|
|
//loading default settings if exist
|
|
if(!file_exists(ROOT.DS.'src'.DS.'inc'.DS.'config.inc.php'))
|
|
exit('Rename /src/inc/example.config.inc.php to /src/inc/config.inc.php first!');
|
|
require_once(ROOT.DS.'src'.DS.'inc'.DS.'config.inc.php');
|
|
|
|
//loading core and controllers
|
|
require_once(ROOT.DS.'src'.DS.'inc'.DS.'core.php');
|
|
require_once(ROOT.DS.'src'.DS.'inc'.DS.'api.class.php');
|
|
loadAllContentControllers();
|
|
|
|
//load external things if existing
|
|
if(file_exists(ROOT.'/src/lib/vendor/autoload.php'))
|
|
require_once(ROOT.'/src/lib/vendor/autoload.php');
|
|
|
|
// redis
|
|
if(!defined('REDIS_CACHING') || REDIS_CACHING == true)
|
|
{
|
|
$GLOBALS['redis'] = new Redis();
|
|
$GLOBALS['redis']->connect((!defined('REDIS_SERVER'))?'localhost':REDIS_SERVER, (!defined('REDIS_PORT'))?6379:REDIS_PORT);
|
|
}
|
|
|
|
|
|
//parse the URL to an array and filter it
|
|
$url = array_filter(explode('/',ltrim(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH),'/')));
|
|
|
|
if($url[0] == 'api')
|
|
{
|
|
array_shift($url); //remove "api" form the URL
|
|
$a = new API($url);
|
|
$return = $a->act();
|
|
header('Content-Type: application/json');
|
|
echo json_encode($return, JSON_PRETTY_PRINT).PHP_EOL;
|
|
exit();
|
|
}
|
|
|
|
//not an API call, so let the architect do its magic
|
|
$routercall = architect($url);
|
|
|
|
echo $routercall.PHP_EOL; |