forked from mautic/mautic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppKernel.php
557 lines (481 loc) · 18 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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
<?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 Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Config\EnvParametersResource;
use Symfony\Component\HttpKernel\DependencyInjection;
use Symfony\Component\HttpKernel\HttpKernelInterface;
use Symfony\Component\HttpKernel\Kernel;
/**
* Mautic Application Kernel.
*/
class AppKernel extends Kernel
{
/**
* Major version number.
*
* @const integer
*/
const MAJOR_VERSION = 2;
/**
* Minor version number.
*
* @const integer
*/
const MINOR_VERSION = 8;
/**
* Patch version number.
*
* @const integer
*/
const PATCH_VERSION = 2;
/**
* Extra version identifier.
*
* This constant is used to define additional version segments such as development
* or beta status.
*
* @const string
*/
const EXTRA_VERSION = '-dev';
/**
* @var array
*/
private $pluginBundles = [];
/**
* Constructor.
*
* @param string $environment The environment
* @param bool $debug Whether to enable debugging or not
*
* @api
*/
public function __construct($environment, $debug)
{
defined('MAUTIC_ENV') or define('MAUTIC_ENV', $environment);
defined('MAUTIC_VERSION') or define(
'MAUTIC_VERSION',
self::MAJOR_VERSION.'.'.self::MINOR_VERSION.'.'.self::PATCH_VERSION.self::EXTRA_VERSION
);
parent::__construct($environment, $debug);
}
/**
* {@inheritdoc}
*/
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
{
if (strpos($request->getRequestUri(), 'installer') !== false || !$this->isInstalled()) {
define('MAUTIC_INSTALLER', 1);
}
if (defined('MAUTIC_INSTALLER')) {
$uri = $request->getRequestUri();
if (strpos($uri, 'installer') === false) {
$base = $request->getBaseUrl();
//check to see if the .htaccess file exists or if not running under apache
if ((strpos(strtolower($_SERVER['SERVER_SOFTWARE']), 'apache') === false
|| !file_exists(__DIR__.'../.htaccess')
&& strpos(
$base,
'index'
) === false)
) {
$base .= '/index.php';
}
return new RedirectResponse($base.'/installer');
}
}
if (false === $this->booted) {
$this->boot();
}
// 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);
}
/**
* {@inheritdoc}
*/
public function registerBundles()
{
$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(),
// 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\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 LightSaml\SymfonyBridgeBundle\LightSamlSymfonyBridgeBundle(),
new LightSaml\SpBundle\LightSamlSpBundle(),
new Ivory\OrderedFormBundle\IvoryOrderedFormBundle(),
];
//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 Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
$bundles[] = new Webfactory\Bundle\ExceptionsBundle\WebfactoryExceptionsBundle();
}
if (in_array($this->getEnvironment(), ['test'])) {
$bundles[] = new Liip\FunctionalTestBundle\LiipFunctionalTestBundle();
}
// 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()
{
if (true === $this->booted) {
return;
}
if (!defined('MAUTIC_TABLE_PREFIX')) {
//set the table prefix before boot
$localParams = $this->getLocalParams();
$prefix = isset($localParams['db_table_prefix']) ? $localParams['db_table_prefix'] : '';
define('MAUTIC_TABLE_PREFIX', $prefix);
}
if ($this->loadClassCache) {
$this->doLoadClassCache($this->loadClassCache[0], $this->loadClassCache[1]);
}
// init bundles
$this->initializeBundles();
// init container
$this->initializeContainer();
// If in console, set the table prefix since handle() is not executed
if (defined('IN_MAUTIC_CONSOLE') && !defined('MAUTIC_TABLE_PREFIX')) {
$localParams = $this->getLocalParams();
$prefix = isset($localParams['db_table_prefix']) ? $localParams['db_table_prefix'] : '';
define('MAUTIC_TABLE_PREFIX', $prefix);
}
$registeredPluginBundles = $this->container->getParameter('mautic.plugin.bundles');
foreach ($this->getBundles() as $name => $bundle) {
$bundle->setContainer($this->container);
$bundle->boot();
}
$this->pluginBundles = $registeredPluginBundles;
$this->booted = true;
}
/**
* Returns a list of addon bundles that are enabled.
*
* @return array
*/
public function getPluginBundles()
{
return $this->pluginBundles;
}
/**
* {@inheritdoc}
*/
public function registerContainerConfiguration(LoaderInterface $loader)
{
$loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.php');
}
/**
* Retrieves the application's version number.
*
* @return string
*/
public function getVersion()
{
return MAUTIC_VERSION;
}
/**
* Checks if the application has been installed.
*
* @return bool
*/
private function isInstalled()
{
static $isInstalled = null;
if ($isInstalled === null) {
$params = $this->getLocalParams();
$isInstalled = (is_array($params) && !empty($params['db_driver']) && !empty($params['mailer_from_name']));
}
return $isInstalled;
}
/**
* @param array $params
*
* @return \Doctrine\DBAL\Connection
*
* @throws Exception
* @throws \Doctrine\DBAL\DBALException
*/
public function getDatabaseConnection($params = [])
{
if (empty($params)) {
$params = $this->getLocalParams();
}
if (!empty($params) && !empty($params['db_driver'])) {
$testParams = ['driver', 'host', 'port', 'name', 'user', 'password', 'path'];
$dbParams = [];
foreach ($testParams as &$p) {
$param = (isset($params["db_{$p}"])) ? $params["db_{$p}"] : '';
if ($p == 'port') {
$param = (int) $param;
}
$name = ($p == 'name') ? 'dbname' : $p;
$dbParams[$name] = $param;
}
// Test a database connection and existence of a user
$db = \Doctrine\DBAL\DriverManager::getConnection($dbParams);
$db->connect();
return $db;
} else {
throw new \Exception('not configured');
}
}
/**
* {@inheritdoc}
*
* @api
*/
public function getCacheDir()
{
$parameters = $this->getLocalParams();
if (isset($parameters['cache_path'])) {
$envFolder = (strpos($parameters['cache_path'], -1) != '/') ? '/'.$this->environment : $this->environment;
return str_replace('%kernel.root_dir%', $this->getRootDir(), $parameters['cache_path'].$envFolder);
} else {
return parent::getCacheDir();
}
}
/**
* {@inheritdoc}
*
* @api
*/
public function getLogDir()
{
$parameters = $this->getLocalParams();
if (isset($parameters['log_path'])) {
return str_replace('%kernel.root_dir%', $this->getRootDir(), $parameters['log_path']);
} else {
return parent::getLogDir();
}
}
/**
* Get Mautic's local configuration file.
*
* @return array
*/
public function getLocalParams()
{
static $localParameters;
if (!is_array($localParameters)) {
/** @var $paths */
$root = $this->getRootDir();
include $root.'/config/paths.php';
if ($configFile = $this->getLocalConfigFile()) {
/** @var $parameters */
include $configFile;
$localParameters = (isset($parameters) && is_array($parameters)) ? $parameters : [];
} else {
$localParameters = [];
}
//check for parameter overrides
if (file_exists($root.'/config/parameters_local.php')) {
/** @var $parameters */
include $root.'/config/parameters_local.php';
$localParameters = array_merge($localParameters, $parameters);
}
foreach ($localParameters as $k => &$v) {
if (!empty($v) && is_string($v) && preg_match('/getenv\((.*?)\)/', $v, $match)) {
$v = (string) getenv($match[1]);
}
}
}
return $localParameters;
}
/**
* Get local config file.
*
* @param bool $checkExists If true, then return false if the file doesn't exist
*
* @return bool
*/
public function getLocalConfigFile($checkExists = true)
{
/** @var $paths */
$root = $this->getRootDir();
include $root.'/config/paths.php';
if (isset($paths['local_config'])) {
$paths['local_config'] = str_replace('%kernel.root_dir%', $root, $paths['local_config']);
if (!$checkExists || file_exists($paths['local_config'])) {
return $paths['local_config'];
}
}
return false;
}
/**
* Get the container file name or path.
*
* @param bool|true $fullPath
*
* @return string
*/
public function getContainerFile($fullPath = true)
{
$fileName = $this->getContainerClass().'.php';
if ($fullPath) {
// Override the container class for the local instance
$params = $this->getLocalParams();
$containerPath = (isset($params['container_path'])) ? $params['container_path'] : $this->getCacheDir();
if (!file_exists($containerPath)) {
@mkdir($containerPath, 0755, true);
}
$containerPath = (isset($params['container_path'])) ? $params['container_path'] : $this->getCacheDir();
$fileName = $containerPath.'/'.$fileName;
}
return $fileName;
}
/**
* Initializes the service container.
*
* The cached version of the service container is used when fresh, otherwise the
* container is built.
*/
protected function initializeContainer()
{
$class = $this->getContainerClass();
$cache = new \Symfony\Component\Config\ConfigCache($this->getContainerFile(true), $this->debug);
$fresh = file_exists($this->getCacheDir().'/classes.php');
if (!$cache->isFresh()) {
$container = $this->buildContainer();
$container->compile();
$this->dumpContainer($cache, $container, $class, $this->getContainerBaseClass());
if ($this->debug) {
$fresh = false;
}
}
require_once $cache->getPath();
$this->container = new $class();
$this->container->set('kernel', $this);
// Warm up the cache if classes.php is missing or in dev mode
if (!$fresh && $this->container->has('cache_warmer')) {
$this->container->get('cache_warmer')->warmUp($this->container->getParameter('kernel.cache_dir'));
}
}
/**
* Builds the service container.
*
* @return \Symfony\Component\DependencyInjection\ContainerBuilder The compiled service container
*
* @throws \RuntimeException
*/
protected function buildContainer()
{
foreach (['cache' => $this->getCacheDir(), 'logs' => $this->getLogDir()] as $name => $dir) {
if (!is_dir($dir)) {
if (false === @mkdir($dir, 0777, true) && !is_dir($dir)) {
throw new \RuntimeException(sprintf("Unable to create the %s directory (%s)\n", $name, $dir));
}
} elseif (!is_writable($dir)) {
throw new \RuntimeException(sprintf("Unable to write in the %s directory (%s)\n", $name, $dir));
}
}
$container = $this->getContainerBuilder();
$container->addObjectResource($this);
$this->prepareContainer($container);
if (null !== $cont = $this->registerContainerConfiguration($this->getContainerLoader($container))) {
$container->merge($cont);
}
// Only rebuild the classes if it doesn't exist or if the kernel is booted through the console meaning likely cache:clear is used
if (defined('IN_MAUTIC_CONSOLE') || !file_exists($this->getCacheDir().'/classes.php')) {
$container->addCompilerPass(new DependencyInjection\AddClassesToCachePass($this));
}
// Environmentally set parameters
$container->addResource(new EnvParametersResource('SYMFONY__'));
$container->addResource(new EnvParametersResource('MAUTIC__'));
return $container;
}
}