forked from mautic/mautic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppKernel.php
344 lines (295 loc) · 12 KB
/
AppKernel.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
<?php
/*
* @copyright 2014 Mautic Contributors. All rights reserved
* @author Mautic
*
* @link http://mautic.org
*
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
use Mautic\CoreBundle\Loader\ParameterLoader;
use Mautic\CoreBundle\Release\ThisRelease;
use Mautic\QueueBundle\Queue\QueueProtocol;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\HttpKernelInterface;
use Symfony\Component\HttpKernel\Kernel;
/**
* Mautic Application Kernel.
*/
class AppKernel extends Kernel
{
/**
* @var bool|null
*/
private $installed;
/**
* @var ParameterLoader|null
*/
private $parameterLoader;
/**
* Constructor.
*
* @param string $environment The environment
* @param bool $debug Whether to enable debugging or not
*
* @api
*/
public function __construct($environment, $debug)
{
$metadata = ThisRelease::getMetadata();
defined('MAUTIC_ENV') or define('MAUTIC_ENV', $environment);
defined('MAUTIC_VERSION') or define('MAUTIC_VERSION', $metadata->getVersion());
parent::__construct($environment, $debug);
}
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true): Response
{
if (false !== strpos($request->getRequestUri(), 'installer') || !$this->isInstalled()) {
defined('MAUTIC_INSTALLER') or define('MAUTIC_INSTALLER', 1);
}
if (defined('MAUTIC_INSTALLER')) {
$uri = $request->getRequestUri();
if (false === strpos($uri, 'installer')) {
$base = $request->getBaseUrl();
$prefix = '';
//check to see if the .htaccess file exists or if not running under apache
if (false === stripos($request->server->get('SERVER_SOFTWARE', ''), 'apache')
|| !file_exists(__DIR__.'../.htaccess')
&& false === strpos(
$base,
'index'
)
) {
$prefix .= '/index.php';
}
return new RedirectResponse($request->getUriForPath($prefix.'/installer'));
}
}
if (false === $this->booted) {
$this->boot();
}
/*
* If we've already sent the response headers, and we have a session
* set in the request, set that as the session in the container.
*/
if (headers_sent() && $request->getSession()) {
$this->getContainer()->set('session', $request->getSession());
}
// Check for an an active db connection and die with error if unable to connect
if (!defined('MAUTIC_INSTALLER')) {
$db = $this->getContainer()->get('database_connection');
try {
$db->connect();
} catch (\Exception $e) {
error_log($e);
throw new \Mautic\CoreBundle\Exception\DatabaseConnectionException($this->getContainer()->get('translator')->trans('mautic.core.db.connection.error', ['%code%' => $e->getCode()]), 0, $e);
}
}
return parent::handle($request, $type, $catch);
}
public function registerBundles(): array
{
$bundles = [
// Symfony/Core Bundles
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\MonologBundle\MonologBundle(),
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle(),
new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(),
new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(),
new Knp\Bundle\MenuBundle\KnpMenuBundle(),
new FOS\OAuthServerBundle\FOSOAuthServerBundle(),
new Bazinga\OAuthServerBundle\BazingaOAuthServerBundle(),
new FOS\RestBundle\FOSRestBundle(),
new JMS\SerializerBundle\JMSSerializerBundle(),
new Oneup\UploaderBundle\OneupUploaderBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Debril\RssAtomBundle\DebrilRssAtomBundle(),
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
new LightSaml\SymfonyBridgeBundle\LightSamlSymfonyBridgeBundle(),
new LightSaml\SpBundle\LightSamlSpBundle(),
new Ivory\OrderedFormBundle\IvoryOrderedFormBundle(),
new Noxlogic\RateLimitBundle\NoxlogicRateLimitBundle(),
new FM\ElfinderBundle\FMElfinderBundle(),
// Mautic Bundles
new Mautic\ApiBundle\MauticApiBundle(),
new Mautic\AssetBundle\MauticAssetBundle(),
new Mautic\CalendarBundle\MauticCalendarBundle(),
new Mautic\CampaignBundle\MauticCampaignBundle(),
new Mautic\CategoryBundle\MauticCategoryBundle(),
new Mautic\ChannelBundle\MauticChannelBundle(),
new Mautic\ConfigBundle\MauticConfigBundle(),
new Mautic\CoreBundle\MauticCoreBundle(),
new Mautic\DashboardBundle\MauticDashboardBundle(),
new Mautic\DynamicContentBundle\MauticDynamicContentBundle(),
new Mautic\EmailBundle\MauticEmailBundle(),
new Mautic\FormBundle\MauticFormBundle(),
new Mautic\InstallBundle\MauticInstallBundle(),
new Mautic\IntegrationsBundle\IntegrationsBundle(),
new Mautic\LeadBundle\MauticLeadBundle(),
new Mautic\NotificationBundle\MauticNotificationBundle(),
new Mautic\PageBundle\MauticPageBundle(),
new Mautic\PluginBundle\MauticPluginBundle(),
new Mautic\PointBundle\MauticPointBundle(),
new Mautic\ReportBundle\MauticReportBundle(),
new Mautic\SmsBundle\MauticSmsBundle(),
new Mautic\StageBundle\MauticStageBundle(),
new Mautic\UserBundle\MauticUserBundle(),
new Mautic\WebhookBundle\MauticWebhookBundle(),
new Mautic\CacheBundle\MauticCacheBundle(),
];
$queueProtocol = $this->getParameterLoader()->getLocalParameterBag()->get('queue_protocol', '');
$bundles[] = new Mautic\QueueBundle\MauticQueueBundle($queueProtocol);
switch ($queueProtocol) {
case QueueProtocol::RABBITMQ:
$bundles[] = new OldSound\RabbitMqBundle\OldSoundRabbitMqBundle();
break;
case QueueProtocol::BEANSTALKD:
$bundles[] = new Leezy\PheanstalkBundle\LeezyPheanstalkBundle();
break;
}
// dynamically register Mautic Plugin Bundles
$searchPath = dirname(__DIR__).'/plugins';
$finder = new \Symfony\Component\Finder\Finder();
$finder->files()
->followLinks()
->depth('1')
->in($searchPath)
->name('*Bundle.php');
foreach ($finder as $file) {
$dirname = basename($file->getRelativePath());
$filename = substr($file->getFilename(), 0, -4);
$class = '\\MauticPlugin'.'\\'.$dirname.'\\'.$filename;
if (class_exists($class)) {
$plugin = new $class();
if ($plugin instanceof \Symfony\Component\HttpKernel\Bundle\Bundle) {
if (defined($class.'::MINIMUM_MAUTIC_VERSION')) {
// Check if this version supports the plugin before loading it
if (version_compare($this->getVersion(), constant($class.'::MINIMUM_MAUTIC_VERSION'), 'lt')) {
continue;
}
}
$bundles[] = $plugin;
}
unset($plugin);
}
}
if (in_array($this->getEnvironment(), ['dev', 'test'])) {
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
$bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
$bundles[] = new Webfactory\Bundle\ExceptionsBundle\WebfactoryExceptionsBundle();
// Removed temporarily for https://github.com/mautic/mautic/pull/9602, can be re-added in Mautic 4+
// $bundles[] = new Fidry\PsyshBundle\PsyshBundle();
}
if (in_array($this->getEnvironment(), ['test'])) {
$bundles[] = new Liip\FunctionalTestBundle\LiipFunctionalTestBundle();
$bundles[] = new Liip\TestFixturesBundle\LiipTestFixturesBundle();
}
// Check for local bundle inclusion
if (file_exists(__DIR__.'/config/bundles_local.php')) {
include __DIR__.'/config/bundles_local.php';
}
return $bundles;
}
/**
* {@inheritdoc}
*/
public function boot(): void
{
if (true === $this->booted) {
return;
}
// load parameters with defaults into the environment
$parameterLoader = $this->getParameterLoader();
$parameterLoader->loadIntoEnvironment();
if (!defined('MAUTIC_TABLE_PREFIX')) {
//set the table prefix before boot
define('MAUTIC_TABLE_PREFIX', $parameterLoader->getLocalParameterBag()->get('db_table_prefix', ''));
}
// init bundles
$this->initializeBundles();
// init container
$this->initializeContainer();
// boot bundles
foreach ($this->getBundles() as $name => $bundle) {
$bundle->setContainer($this->container);
$bundle->boot();
}
$this->booted = true;
}
/**
* {@inheritdoc}
*/
public function registerContainerConfiguration(LoaderInterface $loader): void
{
$loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.php');
}
/**
* Retrieves the application's version number.
*/
public function getVersion(): string
{
return MAUTIC_VERSION;
}
/**
* Checks if the application has been installed.
*/
protected function isInstalled(): bool
{
if (null === $this->installed) {
$localParameters = $this->getParameterLoader()->getLocalParameterBag();
$dbDriver = $localParameters->get('db_driver');
$mailerFromName = $localParameters->get('mailer_from_name');
$this->installed = !empty($dbDriver) && !empty($mailerFromName);
}
return $this->installed;
}
public function getRootDir(): string
{
return __DIR__;
}
public function getProjectDir(): string
{
return dirname(__DIR__);
}
/**
* {@inheritdoc}
*
* @api
*/
public function getCacheDir(): string
{
if ($cachePath = $this->getParameterLoader()->getLocalParameterBag()->get('cache_path')) {
$envFolder = ('/' != substr($cachePath, -1)) ? '/'.$this->environment : $this->environment;
return str_replace('%kernel.root_dir%', $this->getRootDir(), $cachePath.$envFolder);
}
return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
}
public function getLogDir(): string
{
if ($logPath = $this->getParameterLoader()->getLocalParameterBag()->get('log_path')) {
return str_replace('%kernel.root_dir%', $this->getRootDir(), $logPath);
}
return dirname(__DIR__).'/var/logs';
}
/**
* Get local config file.
*/
public function getLocalConfigFile(): string
{
/** @var $paths */
$root = $this->getRootDir();
return ParameterLoader::getLocalConfigFile($root);
}
private function getParameterLoader(): ParameterLoader
{
if ($this->parameterLoader) {
return $this->parameterLoader;
}
return $this->parameterLoader = new ParameterLoader();
}
}