1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the ConfigCacheBundle package. |
5
|
|
|
* |
6
|
|
|
* Copyright (c) 2015-2016 Yahoo Japan Corporation |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace YahooJapan\ConfigCacheBundle\DependencyInjection; |
13
|
|
|
|
14
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder; |
15
|
|
|
use Symfony\Component\Config\FileLocator; |
16
|
|
|
use Symfony\Component\HttpKernel\DependencyInjection\Extension; |
17
|
|
|
use Symfony\Component\DependencyInjection\Loader; |
18
|
|
|
|
19
|
|
|
/** |
20
|
|
|
* This is the class that loads and manages your bundle configuration |
21
|
|
|
* |
22
|
|
|
* To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html} |
23
|
|
|
*/ |
24
|
|
|
class YahooJapanConfigCacheExtension extends Extension |
25
|
|
|
{ |
26
|
|
|
/** |
27
|
|
|
* {@inheritdoc} |
28
|
|
|
*/ |
29
|
25 |
|
public function load(array $configs, ContainerBuilder $container) |
30
|
|
|
{ |
31
|
25 |
|
$configuration = new Configuration(); |
32
|
25 |
|
$config = $this->processConfiguration($configuration, $configs); |
33
|
|
|
|
34
|
22 |
|
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
35
|
22 |
|
$loader->load('services.yml'); |
36
|
|
|
|
37
|
22 |
|
$this |
38
|
22 |
|
->removeCacheWarmup($config, $container) |
39
|
22 |
|
->removeCacheRestorer($config, $container) |
40
|
22 |
|
->registerLocale($config, $container) |
41
|
|
|
; |
42
|
22 |
|
} |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* Removes cache warmup definition if unnecessary. |
46
|
|
|
* |
47
|
|
|
* @param array $config |
48
|
|
|
* @param ContainerBuilder $container |
49
|
|
|
*/ |
50
|
22 |
|
protected function removeCacheWarmup(array $config, ContainerBuilder $container) |
51
|
|
|
{ |
52
|
22 |
|
if (!$config['cache_warmup']) { |
53
|
1 |
|
$container->removeDefinition('yahoo_japan_config_cache.cache_warmer'); |
54
|
1 |
|
} |
55
|
|
|
|
56
|
22 |
|
return $this; |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* Removes cache restore definition if unnecessary. |
61
|
|
|
* |
62
|
|
|
* @param array $config |
63
|
|
|
* @param ContainerBuilder $container |
64
|
|
|
*/ |
65
|
22 |
|
protected function removeCacheRestorer(array $config, ContainerBuilder $container) |
66
|
|
|
{ |
67
|
22 |
|
if (!$config['cache_restore']) { |
68
|
11 |
|
$container->removeDefinition('yahoo_japan_config_cache.cache_saver'); |
69
|
11 |
|
$container->removeDefinition('yahoo_japan_config_cache.cache_restorer'); |
70
|
11 |
|
$container->removeDefinition('yahoo_japan_config_cache.cache_cleanup'); |
71
|
11 |
|
} |
72
|
|
|
|
73
|
22 |
|
return $this; |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
/** |
77
|
|
|
* Registers locale definitions. |
78
|
|
|
* |
79
|
|
|
* @param array $config |
80
|
|
|
* @param ContainerBuilder $container |
81
|
|
|
*/ |
82
|
22 |
|
protected function registerLocale(array $config, ContainerBuilder $container) |
83
|
|
|
{ |
84
|
22 |
|
if (isset($config['locale']) && $this->isConfigEnabled($container, $config['locale'])) { |
85
|
3 |
|
$container->setParameter('yahoo_japan_config_cache.locales', $config['locale']['locales']); |
86
|
3 |
|
$container->setParameter('yahoo_japan_config_cache.listener_priority', $config['locale']['listener_priority']); |
87
|
3 |
|
$container->setParameter('yahoo_japan_config_cache.loader', $config['locale']['loader']); |
88
|
3 |
|
} else { |
89
|
19 |
|
$container->removeDefinition('yahoo_japan_config_cache.locale.listener'); |
90
|
|
|
} |
91
|
|
|
|
92
|
22 |
|
return $this; |
93
|
|
|
} |
94
|
|
|
} |
95
|
|
|
|