HummingBirdAnimeClient/app/bootstrap.php

200 lines
6.1 KiB
PHP
Raw Permalink Normal View History

2016-10-20 22:09:36 -04:00
<?php declare(strict_types=1);
2016-08-30 10:01:18 -04:00
/**
2017-02-15 16:13:32 -05:00
* Hummingbird Anime List Client
2016-08-30 10:01:18 -04:00
*
2018-08-22 13:48:27 -04:00
* An API client for Kitsu to manage anime and manga watch lists
2016-08-30 10:01:18 -04:00
*
2023-07-13 11:08:05 -04:00
* PHP version 8.1
2016-08-30 10:01:18 -04:00
*
2023-07-13 11:08:05 -04:00
* @copyright 2015 - 2023 Timothy J. Warren <tim@timshome.page>
2016-08-30 10:01:18 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
2023-07-13 11:08:05 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient;
2015-06-29 09:46:49 -04:00
use Aura\Html\HelperLocatorFactory;
use Aura\Router\RouterContainer;
2015-10-09 14:34:55 -04:00
use Aura\Session\SessionFactory;
2020-08-06 09:39:12 -04:00
use Aviat\AnimeClient\API\{Anilist, Kitsu};
2022-03-03 18:19:02 -05:00
use Aviat\AnimeClient\{Component, Model};
2020-05-08 19:15:21 -04:00
use Aviat\Banker\Teller;
use Aviat\Ion\Config;
2022-03-03 18:19:02 -05:00
use Aviat\Ion\Di\{Container, ContainerInterface};
2020-07-31 16:22:32 -04:00
use Laminas\Diactoros\ServerRequestFactory;
use Monolog\Formatter\JsonFormatter;
2016-12-20 12:58:37 -05:00
use Monolog\Handler\RotatingFileHandler;
use Monolog\Logger;
use Psr\SimpleCache\CacheInterface;
2021-02-03 09:45:18 -05:00
use function Aviat\Ion\_dir;
2021-02-23 15:38:29 -05:00
if ( ! defined('HB_APP_DIR'))
2020-08-21 13:07:00 -04:00
{
2021-02-23 15:38:29 -05:00
define('HB_APP_DIR', __DIR__);
define('ROOT_DIR', dirname(HB_APP_DIR));
2022-03-03 18:19:02 -05:00
define('TEMPLATE_DIR', _dir(HB_APP_DIR, 'templates'));
2020-08-21 13:07:00 -04:00
}
// -----------------------------------------------------------------------------
// Setup DI container
// -----------------------------------------------------------------------------
2020-04-10 20:01:46 -04:00
return static function (array $configArray = []): Container {
2015-09-17 23:11:18 -04:00
$container = new Container();
2015-11-13 16:31:01 -05:00
// -------------------------------------------------------------------------
// Logging
// -------------------------------------------------------------------------
2021-02-23 15:38:29 -05:00
$LOG_DIR = _dir(HB_APP_DIR, 'logs');
2015-11-13 16:31:01 -05:00
2017-03-03 11:33:32 -05:00
$appLogger = new Logger('animeclient');
2021-02-03 09:45:18 -05:00
$appLogger->pushHandler(new RotatingFileHandler(_dir($LOG_DIR, 'app.log'), 2, Logger::WARNING));
$container->setLogger($appLogger);
2019-12-09 13:13:31 -05:00
foreach (['anilist-request', 'kitsu-request', 'kitsu-graphql'] as $channel)
{
$logger = new Logger($channel);
2021-02-03 09:45:18 -05:00
$handler = new RotatingFileHandler(_dir($LOG_DIR, "{$channel}.log"), 2, Logger::WARNING);
$handler->setFormatter(new JsonFormatter());
$logger->pushHandler($handler);
2019-12-09 13:13:31 -05:00
$container->setLogger($logger, $channel);
}
2015-11-13 16:31:01 -05:00
2015-09-17 23:11:18 -04:00
// -------------------------------------------------------------------------
// Injected Objects
// -------------------------------------------------------------------------
// Create Config Object
2020-12-11 14:26:54 -05:00
$container->set('config', static fn () => new Config($configArray));
2015-09-17 23:11:18 -04:00
// Create Cache Object
2022-03-03 18:19:02 -05:00
$container->set('cache', static function (ContainerInterface $container): CacheInterface {
$logger = $container->getLogger();
$config = $container->get('config')->get('cache');
2022-03-03 18:19:02 -05:00
2020-05-08 19:15:21 -04:00
return new Teller($config, $logger);
});
2015-09-17 23:11:18 -04:00
// Create Aura Router Object
2022-03-03 18:19:02 -05:00
$container->set('aura-router', static fn () => new RouterContainer());
2015-09-17 23:11:18 -04:00
// Create Html helpers
2022-03-03 18:19:02 -05:00
$container->set('html-helper', static function (ContainerInterface $container) {
$htmlHelper = (new HelperLocatorFactory())->newInstance();
$helpers = [
'menu' => Helper\Menu::class,
'field' => Helper\Form::class,
'picture' => Helper\Picture::class,
];
foreach ($helpers as $name => $class)
{
2022-03-03 18:19:02 -05:00
$htmlHelper->set($name, static function () use ($class, $container) {
$helper = new $class();
$helper->setContainer($container);
2022-03-03 18:19:02 -05:00
return $helper;
});
}
2017-03-03 11:33:32 -05:00
return $htmlHelper;
});
// Create Component helpers
2020-08-26 17:26:42 -04:00
$container->set('component-helper', static function (ContainerInterface $container) {
2022-03-03 18:19:02 -05:00
$helper = (new HelperLocatorFactory())->newInstance();
$components = [
2020-08-26 17:26:42 -04:00
'animeCover' => Component\AnimeCover::class,
'mangaCover' => Component\MangaCover::class,
'character' => Component\Character::class,
'media' => Component\Media::class,
'tabs' => Component\Tabs::class,
'verticalTabs' => Component\VerticalTabs::class,
];
foreach ($components as $name => $componentClass)
{
2020-08-26 17:26:42 -04:00
$helper->set($name, static function () use ($container, $componentClass) {
2022-03-03 18:19:02 -05:00
$helper = new $componentClass();
2020-08-26 17:26:42 -04:00
$helper->setContainer($container);
2022-03-03 18:19:02 -05:00
2020-08-26 17:26:42 -04:00
return $helper;
});
}
return $helper;
});
2020-07-31 16:22:32 -04:00
// Create Request Object
2020-12-11 14:26:54 -05:00
$container->set('request', static fn () => ServerRequestFactory::fromGlobals(
$GLOBALS['_SERVER'],
2020-04-10 20:01:46 -04:00
$_GET,
$_POST,
$_COOKIE,
$_FILES
));
2015-09-17 23:11:18 -04:00
// Create session Object
2020-12-11 14:26:54 -05:00
$container->set('session', static fn () => (new SessionFactory())->newInstance($_COOKIE));
2015-09-17 23:11:18 -04:00
2015-12-08 16:39:49 -05:00
// Models
2022-03-03 18:19:02 -05:00
$container->set('kitsu-model', static function (ContainerInterface $container): Kitsu\Model {
2020-08-06 09:39:12 -04:00
$requestBuilder = new Kitsu\RequestBuilder($container);
$requestBuilder->setLogger($container->getLogger('kitsu-request'));
$listItem = new Kitsu\ListItem();
$listItem->setContainer($container);
$listItem->setRequestBuilder($requestBuilder);
$model = new Kitsu\Model($listItem);
$model->setContainer($container);
$model->setRequestBuilder($requestBuilder);
$cache = $container->get('cache');
$model->setCache($cache);
2022-03-03 18:19:02 -05:00
return $model;
});
2022-03-03 18:19:02 -05:00
$container->set('anilist-model', static function (ContainerInterface $container): Anilist\Model {
2020-08-06 09:39:12 -04:00
$requestBuilder = new Anilist\RequestBuilder($container);
2018-08-15 08:51:37 -04:00
$requestBuilder->setLogger($container->getLogger('anilist-request'));
$listItem = new Anilist\ListItem();
$listItem->setContainer($container);
$listItem->setRequestBuilder($requestBuilder);
$model = new Anilist\Model($listItem);
$model->setContainer($container);
$model->setRequestBuilder($requestBuilder);
return $model;
});
2022-03-03 18:19:02 -05:00
$container->set('settings-model', static function ($container) {
2020-04-10 20:01:46 -04:00
$model = new Model\Settings($container->get('config'));
$model->setContainer($container);
2022-03-03 18:19:02 -05:00
return $model;
});
2015-12-08 16:39:49 -05:00
$container->setSimple('anime-model', Model\Anime::class);
$container->setSimple('manga-model', Model\Manga::class);
$container->setSimple('anime-collection-model', Model\AnimeCollection::class);
2016-04-08 18:05:52 -04:00
// Miscellaneous Classes
$container->setSimple('util', Util::class);
$container->setSimple('auth', Kitsu\Auth::class);
$container->setSimple('url-generator', UrlGenerator::class);
$container->setSimple('render-helper', RenderHelper::class);
2015-12-08 16:39:49 -05:00
2015-09-17 23:11:18 -04:00
// -------------------------------------------------------------------------
2015-10-09 14:34:55 -04:00
// Dispatcher
2015-09-17 23:11:18 -04:00
// -------------------------------------------------------------------------
$container->setSimple('dispatcher', Dispatcher::class);
2015-09-17 23:11:18 -04:00
return $container;
};
2022-03-03 18:19:02 -05:00
// End of bootstrap.php