. // }}} /** * Symfony Kernel, which is responsible for configuring the whole application * * @package GNUsocial * @category Kernel * * @author Hugo Sales * @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ namespace App; use App\Core\GNUsocial; use App\DependencyInjection\Compiler\ModuleManagerPass; use App\DependencyInjection\Compiler\SchemaDefDriver; use const PHP_VERSION_ID; use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait; use Symfony\Component\Config\Loader\LoaderInterface; use Symfony\Component\Config\Resource\FileResource; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\HttpKernel\Kernel as BaseKernel; use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator; class Kernel extends BaseKernel { use MicroKernelTrait; public const CONFIG_EXTS = '.{php,xml,yaml,yml}'; /** * Symfony framework function override responsible for registering * bundles (similar to our modules) */ public function registerBundles(): iterable { $contents = require $this->getProjectDir() . '/config/bundles.php'; foreach ($contents as $class => $envs) { if ($envs[$this->environment] ?? $envs['all'] ?? false) { yield new $class(); } } } public function getProjectDir(): string { return dirname(__DIR__); } /** * Configure the container. A 'compile-time' step in the Symfony * framework that allows caching of the initialization of all * services and modules */ protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader): void { $container->addResource(new FileResource($this->getProjectDir() . '/config/bundles.php')); $container->setParameter('container.dumper.inline_class_loader', PHP_VERSION_ID < 70400 || $this->debug); $container->setParameter('container.dumper.inline_factories', true); $confDir = $this->getProjectDir() . '/config'; $loader->load($confDir . '/{packages}/*' . self::CONFIG_EXTS, 'glob'); $loader->load($confDir . '/{packages}/' . $this->environment . '/*' . self::CONFIG_EXTS, 'glob'); $loader->load($confDir . '/{services}' . self::CONFIG_EXTS, 'glob'); $loader->load($confDir . '/{services}_' . $this->environment . self::CONFIG_EXTS, 'glob'); GNUsocial::configureContainer($container, $loader); } /** * Configure HTTP(S) route to controller mapping */ protected function configureRoutes(RoutingConfigurator $routes): void { $config = \dirname(__DIR__) . '/config'; $routes->import($config . '/{routes}/' . $this->environment . '/*.yaml'); $routes->import($config . '/{routes}/*.yaml'); if (is_file($config . '/routes.yaml')) { $routes->import($config . '/{routes}.yaml'); } elseif (is_file($path = $config . '/routes.php')) { (require $path)($routes->withPath($path), $this); } } /** * 'Compile-time' step that builds the container, allowing us to * define compiler passes */ protected function build(ContainerBuilder $container): void { parent::build($container); $container->addCompilerPass(new ModuleManagerPass()); $container->addCompilerPass(new SchemaDefDriver(SRCDIR . '/Entity')); } }