2020-03-11 04:04:22 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
2020-03-16 06:21:11 +09:00
|
|
|
use App\DependencyInjection\Compiler\SchemaDefCompilerPass;
|
|
|
|
use const PHP_VERSION_ID;
|
2020-03-11 04:04:22 +09:00
|
|
|
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;
|
2020-03-16 06:21:11 +09:00
|
|
|
|
2020-03-11 04:04:22 +09:00
|
|
|
use Symfony\Component\Routing\RouteCollectionBuilder;
|
|
|
|
|
|
|
|
class Kernel extends BaseKernel
|
|
|
|
{
|
|
|
|
use MicroKernelTrait;
|
|
|
|
|
|
|
|
private const CONFIG_EXTS = '.{php,xml,yaml,yml}';
|
|
|
|
|
|
|
|
public function registerBundles(): iterable
|
|
|
|
{
|
2020-03-16 06:21:11 +09:00
|
|
|
$contents = require $this->getProjectDir() . '/config/bundles.php';
|
2020-03-11 04:04:22 +09:00
|
|
|
foreach ($contents as $class => $envs) {
|
|
|
|
if ($envs[$this->environment] ?? $envs['all'] ?? false) {
|
|
|
|
yield new $class();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getProjectDir(): string
|
|
|
|
{
|
2020-03-12 05:29:08 +09:00
|
|
|
return dirname(__DIR__);
|
2020-03-11 04:04:22 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader): void
|
|
|
|
{
|
2020-03-16 06:21:11 +09:00
|
|
|
$container->addResource(new FileResource($this->getProjectDir() . '/config/bundles.php'));
|
2020-03-12 05:29:08 +09:00
|
|
|
$container->setParameter('container.dumper.inline_class_loader', PHP_VERSION_ID < 70400 || $this->debug);
|
2020-03-11 04:04:22 +09:00
|
|
|
$container->setParameter('container.dumper.inline_factories', true);
|
2020-03-16 06:21:11 +09:00
|
|
|
$confDir = $this->getProjectDir() . '/config';
|
2020-03-11 04:04:22 +09:00
|
|
|
|
2020-03-16 06:21:11 +09:00
|
|
|
$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');
|
2020-03-11 04:04:22 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function configureRoutes(RouteCollectionBuilder $routes): void
|
|
|
|
{
|
2020-03-16 06:21:11 +09:00
|
|
|
$confDir = $this->getProjectDir() . '/config';
|
|
|
|
|
|
|
|
$routes->import($confDir . '/{routes}/' . $this->environment . '/*' . self::CONFIG_EXTS, '/', 'glob');
|
|
|
|
$routes->import($confDir . '/{routes}/*' . self::CONFIG_EXTS, '/', 'glob');
|
|
|
|
$routes->import($confDir . '/{routes}' . self::CONFIG_EXTS, '/', 'glob');
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function build(ContainerBuilder $container): void
|
|
|
|
{
|
|
|
|
parent::build($container);
|
2020-03-11 04:04:22 +09:00
|
|
|
|
2020-03-16 06:21:11 +09:00
|
|
|
$container->addCompilerPass(new SchemaDefCompilerPass($container));
|
2020-03-11 04:04:22 +09:00
|
|
|
}
|
|
|
|
}
|