HummingBirdAnimeClient/index.php

69 lines
2.0 KiB
PHP
Raw Normal View History

2017-03-30 16:49:48 -04:00
<?php declare(strict_types=1);
/**
2017-03-30 16:49:48 -04:00
* Hummingbird Anime List Client
2015-11-16 11:40:01 -05:00
*
2018-08-22 13:48:27 -04:00
* An API client for Kitsu to manage anime and manga watch lists
2015-11-16 11:40:01 -05:00
*
2018-10-01 11:35:51 -04:00
* PHP version 7.1
2016-08-30 10:57:41 -04:00
*
2015-11-16 11:40:01 -05:00
* @package HummingbirdAnimeClient
2016-08-30 10:57:41 -04:00
* @author Timothy J. Warren <tim@timshomepage.net>
2018-01-15 14:43:15 -05:00
* @copyright 2015 - 2018 Timothy J. Warren
2016-08-30 10:57:41 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2018-10-01 11:35:51 -04:00
* @version 4.1
2017-03-30 16:49:48 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
2017-03-30 16:49:48 -04:00
2016-12-20 12:58:37 -05:00
namespace Aviat\AnimeClient;
2018-08-24 14:37:53 -04:00
use Aviat\AnimeClient\Types\Config as ConfigType;
2017-03-30 16:57:58 -04:00
use function Aviat\Ion\_dir;
2015-10-09 14:34:55 -04:00
// Work around the silly timezone error
$timezone = ini_get('date.timezone');
if ($timezone === '' || $timezone === FALSE)
{
ini_set('date.timezone', 'GMT');
}
2017-02-22 15:08:29 -05:00
// Load composer autoloader
2017-12-06 14:40:13 -05:00
require_once __DIR__ . '/vendor/autoload.php';
2018-08-08 13:05:38 -04:00
// if (array_key_exists('ENV', $_ENV) && $_ENV['ENV'] === 'development')
{
$whoops = new \Whoops\Run;
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
$whoops->register();
}
// Define base directories
$APP_DIR = _dir(__DIR__, 'app');
$APPCONF_DIR = _dir($APP_DIR, 'appConf');
$CONF_DIR = _dir($APP_DIR, 'config');
2015-10-09 14:34:55 -04:00
// -----------------------------------------------------------------------------
// Dependency Injection setup
// -----------------------------------------------------------------------------
2018-08-24 14:37:53 -04:00
$baseConfig = require $APPCONF_DIR . '/base_config.php';
$di = require $APP_DIR . '/bootstrap.php';
$config = loadToml($CONF_DIR);
$overrideFile = $CONF_DIR . '/admin-override.toml';
$overrideConfig = file_exists($overrideFile)
? loadTomlFile($overrideFile)
: [];
2018-10-08 16:38:08 -04:00
$configArray = array_replace_recursive($baseConfig, $config, $overrideConfig);
2018-08-24 14:37:53 -04:00
$checkedConfig = (new ConfigType($configArray))->toArray();
$container = $di($checkedConfig);
// Unset 'constants'
2018-08-24 14:37:53 -04:00
unset($APP_DIR, $CONF_DIR, $APPCONF_DIR);
2015-10-09 14:34:55 -04:00
// -----------------------------------------------------------------------------
// Dispatch to the current route
// -----------------------------------------------------------------------------
2017-12-06 14:40:13 -05:00
$container->get('dispatcher')();