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\Compiler; |
13
|
|
|
|
14
|
|
|
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; |
15
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder; |
16
|
|
|
use Symfony\Component\DependencyInjection\Reference; |
17
|
|
|
use YahooJapan\ConfigCacheBundle\ConfigCache\Locale\ConfigCache; |
18
|
|
|
|
19
|
|
|
/** |
20
|
|
|
* Adds tagged config.locale services to config_cache.listener |
21
|
|
|
*/ |
22
|
|
|
class LocalePass implements CompilerPassInterface |
23
|
|
|
{ |
24
|
|
|
protected $loaderParameter = 'yahoo_japan_config_cache.loader'; |
25
|
|
|
protected $localesParameter = 'yahoo_japan_config_cache.locales'; |
26
|
|
|
protected $listenerId = 'yahoo_japan_config_cache.locale.listener'; |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* {@inheritdoc} |
30
|
|
|
* |
31
|
|
|
* @SuppressWarnings(PHPMD.UnusedLocalVariable) |
32
|
|
|
*/ |
33
|
15 |
|
public function process(ContainerBuilder $container) |
34
|
|
|
{ |
35
|
15 |
|
if (!$container->hasParameter($this->localesParameter)) { |
36
|
11 |
|
return; |
37
|
|
|
} |
38
|
|
|
|
39
|
4 |
|
foreach ($container->findTaggedServiceIds(ConfigCache::TAG_LOCALE) as $configId => $attributes) { |
40
|
4 |
|
$cacheDefinition = $container->getDefinition($configId); |
41
|
4 |
|
$locales = $container->getParameter($this->localesParameter); |
42
|
4 |
|
$cacheDefinition->addMethodCall('setReferableLocales', array($locales)); |
43
|
|
|
|
44
|
4 |
|
if ($container->hasDefinition($this->listenerId)) { |
45
|
3 |
|
$listenerDefinition = $container->getDefinition($this->listenerId); |
46
|
3 |
|
$listenerDefinition->addMethodCall('addConfig', array(new Reference($configId))); |
47
|
3 |
|
if ($container->hasParameter($this->loaderParameter) |
48
|
3 |
|
&& $container->hasDefinition($loaderId = $container->getParameter($this->loaderParameter)) |
49
|
3 |
|
) { |
50
|
|
|
$cacheDefinition |
51
|
1 |
|
->removeMethodCall('setLoader') |
52
|
1 |
|
->addMethodCall('setLoader', array(new Reference($loaderId))) |
53
|
|
|
; |
54
|
1 |
|
} |
55
|
3 |
|
} |
56
|
4 |
|
} |
57
|
4 |
|
} |
58
|
|
|
} |
59
|
|
|
|