-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathKernel.php
185 lines (153 loc) · 7.32 KB
/
Kernel.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<?php
declare(strict_types=1);
namespace Bolt;
use Bolt\Configuration\Parser\ContentTypesParser;
use Bolt\Configuration\Parser\TaxonomyParser;
use Bolt\Extension\ExtensionCompilerPass;
use Bolt\Extension\ExtensionInterface;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\Config\Exception\LoaderLoadException;
use Symfony\Component\Config\FileLocator;
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;
use Symfony\Component\Yaml\Yaml;
use Tightenco\Collect\Support\Collection;
class Kernel extends BaseKernel
{
use MicroKernelTrait;
private const CONFIG_EXTS = '.{php,xml,yaml,yml}';
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 boot(): void
{
parent::boot();
}
public function build(ContainerBuilder $container): void
{
$container
->registerForAutoconfiguration(ExtensionInterface::class)
->addTag(ExtensionInterface::CONTAINER_TAG);
// Process our CompilerPass, build `config/services_bolt.yaml`
$container->addCompilerPass(new ExtensionCompilerPass());
}
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 || ! ini_get('opcache.preload'));
$container->setParameter('container.dumper.inline_factories', true);
$confDir = $this->getProjectDir() . '/config';
// Load auto-generated extension services first. Any overrides after take precedence.
try {
$loader->load($confDir . '/{services}_bolt' . self::CONFIG_EXTS, 'glob');
} catch (LoaderLoadException $e) {
// Ignore LoaderLoadExceptions. This is a race-condition that will occur when extensions
// get added or deleted, before Bolt has a chance to update `services_bolt.yaml`.
// The file will be updated on next `cache:clear` or when the container gets refreshed.
// @see https://github.com/bolt/core/issues/2622
}
$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');
$this->setBoltParameters($container, $confDir);
$this->setContentTypeRequirements($container);
$this->setTaxonomyRequirements($container);
}
protected function configureRoutes(RoutingConfigurator $routes): void
{
$confDir = $this->getProjectDir() . '/config';
$routes->import($confDir . '/{routes}/*' . self::CONFIG_EXTS);
$routes->import($confDir . '/{routes}/' . $this->environment . '/**/*' . self::CONFIG_EXTS);
$routes->import($confDir . '/{routes}' . self::CONFIG_EXTS);
}
private function setBoltParameters(ContainerBuilder $container, string $confDir): void
{
$container->setParameter('bolt.public_folder', $this->getPublicFolder());
$locales = explode('|', $container->getParameter('app_locales'));
$container->setParameter('locales_array', $locales);
$fileLocator = new FileLocator([$confDir . '/bolt']);
$fileName = $fileLocator->locate('config.yaml', null, true);
$yaml = Yaml::parseFile($fileName);
unset($yaml['__nodes']);
foreach ($this->flattenKeys($yaml) as $key => $value) {
$container->setParameter('bolt.' . $key, $value);
}
}
private function flattenKeys(array $array, string $prefix = ''): array
{
$result = [];
foreach ($array as $key => $value) {
if (is_int($key)) {
$result[trim($prefix, '.')][] = $value;
} elseif (is_array($value)) {
$result += $this->flattenKeys($value, $prefix . $key . '.');
} else {
$result[$prefix . $key] = $value;
}
}
return $result;
}
/**
* Set the ContentType requirements that are used in Routing.
* Note: this functionality is partially duplicated in \Bolt\Configuration\Config.
*
* @throws \Exception
*/
private function setContentTypeRequirements(ContainerBuilder $container): void
{
/** @var string $defaultLocale */
$defaultLocale = $container->getParameter('locale');
$ContentTypesParser = new ContentTypesParser($this->getProjectDir(), new Collection(), $defaultLocale);
$contentTypes = $ContentTypesParser->parse();
$pluralslugs = $contentTypes->pluck('slug')->implode('|');
$slugs = $contentTypes->pluck('slug')->concat($contentTypes->pluck('singular_slug'))->unique()->implode('|');
$container->setParameter('bolt.requirement.pluralcontenttypes', $pluralslugs);
$container->setParameter('bolt.requirement.contenttypes', $slugs);
}
/**
* Set the Taxonomy requirements that are used in Routing.
* Note: this functionality is partially duplicated in \Bolt\Configuration\Config.
*
* @throws \Exception
*/
private function setTaxonomyRequirements(ContainerBuilder $container): void
{
$taxonomyParser = new TaxonomyParser($this->getProjectDir());
$taxonomies = $taxonomyParser->parse();
$pluralslugs = $taxonomies->pluck('slug')->implode('|');
$slugs = $taxonomies->pluck('slug')->concat($taxonomies->pluck('singular_slug'))->unique()->implode('|');
$container->setParameter('bolt.requirement.pluraltaxonomies', $pluralslugs);
$container->setParameter('bolt.requirement.taxonomies', $slugs);
}
/**
* Return the public folder of this project. This implementation locates the public folder
* for this project by checking for the following candidates in the project dir: 'public',
* 'public_html', 'www', 'web', 'httpdocs', 'wwwroot', 'htdocs', 'http_public', 'private_html'
* and picking the first that is a directory.
*
* @return string path to the public folder for this project
*
* @throws \Exception
*/
protected function getPublicFolder(): string
{
$projectDir = $this->getProjectDir();
$candidates = ['public', 'public_html', 'www', 'web', 'httpdocs', 'wwwroot', 'htdocs', 'http_public', 'private_html'];
foreach ($candidates as $candidate) {
if (is_dir($projectDir . '/' . $candidate)) {
return $candidate;
}
}
throw new \Exception('The Public Folder could not be determined. Expected folder `public`, `public_html`, `www`, `web`, `httpdocs`, `wwwroot`, `htdocs`, `http_public` or `private_html` to exist.');
}
}