safeLoad(); // set all configuration details $config->addSchema('site', SiteInformationSchema::getSchema()); $config->addSchema('database', DatabaseConnectionSchema::getSchema()); $config->addSchema('session', SessionSchema::getSchema()); $config->merge([ 'site' => [ 'name' => "Slovocast", 'description' => "A no-bullshit podcast hosting platform.", 'tags' => [ 'podcast', 'hosting', 'indie', 'independent', 'easy' ] ], 'session' => [ 'name' => 'slovocast' ], 'database' => [ 'host' => $_ENV['DB_HOST'], 'database' => $_ENV['DB_SCHEMA'], 'username' => $_ENV['DB_USER'], 'password' => $_ENV['DB_PASSWORD'], 'port' => (int) $_ENV['DB_PORT'], ] ]); return $config; } /** * Set up the Container with all of its definitions, as well as initialization of configuration. * * @return Container * @throws Exception */ protected static function initContainer(): Container { $containerBuilder = new ContainerBuilder(); $config = self::initConfig(); $containerBuilder->addDefinitions([ 'config' => $config, LoggerInterface::class => function() { $logger = new Logger(); $logger->pushHandler(new StreamHandler(APP_LOGS_DIR, Level::Warning)); return $logger; }, /** * Session and Flash classes here */ SessionManagerInterface::class => function (ContainerInterface $container) { return $container->get(SessionInterface::class); }, SessionInterface::class => function (ContainerInterface $container) { $options = $container->get('config')->get('session'); return new PhpSession($options); }, 'flash' => function (ContainerInterface $container) { return $container->get(SessionInterface::class)->getFlash(); }, /** * Application DI */ ResponseFactoryInterface::class => function (ContainerInterface $container) { return new ResponseFactory(); }, /** * Database Connections */ MysqlClient::class => function (ContainerInterface $container) { $config = $container->get('config')->get('database'); $connectionString = sprintf( "%s:%s@%s/%s", rawurlencode($config['username']), rawurlencode($config['password']), $config['host'], $config['database'] ); return new MysqlClient($connectionString); }, /** * Utility classes */ UserAuthorizationInterface::class => function(ContainerInterface $container) { return new BasicUserAuthorization(); }, /** * Add the Domain Repositories Here */ UserRepositoryInterface::class => function (ContainerInterface $container) { return new UserRepository( $container->get(MysqlClient::class), $container->get(UserAuthorizationInterface::class) ); } ]); return $containerBuilder->build(); } /** * Tasking the instantiated Application, sets up all the routes for the * application. * * @param App $app * @return void */ protected static function establishRoutes(App $app): void { Routes::setup($app); } /** * Taking an instantiated application, sets up all the middleware required for the application to run. This appends * Middleware in a Global sense not per-route. Per-route middleware will be set in the `establishRoutes` method. * * @param App $app * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface * @throws LoaderError */ protected static function establishMiddleware(App $app): void { Middlewares::setup($app); } /** * Instantiates the application. * * @return App * @throws ContainerExceptionInterface * @throws LoaderError * @throws NotFoundExceptionInterface * @throws Exception */ public static function init(): App { $container = self::initContainer(); $app = AppFactory::createFromContainer($container); self::establishMiddleware($app); self::establishRoutes($app); return $app; } }