1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Bdf\SerializerBundle\DependencyInjection; |
4
|
|
|
|
5
|
|
|
use Symfony\Component\Cache\Psr16Cache; |
6
|
|
|
use Symfony\Component\Config\FileLocator; |
7
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder; |
8
|
|
|
use Symfony\Component\DependencyInjection\Extension\Extension; |
9
|
|
|
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader; |
10
|
|
|
use Symfony\Component\DependencyInjection\Reference; |
11
|
|
|
|
12
|
|
|
/** |
13
|
|
|
* SerializerExtension |
14
|
|
|
*/ |
15
|
|
|
class BdfSerializerExtension extends Extension |
16
|
|
|
{ |
17
|
|
|
/** |
18
|
|
|
* {@inheritDoc} |
19
|
|
|
*/ |
20
|
5 |
|
public function load(array $configs, ContainerBuilder $container) |
21
|
|
|
{ |
22
|
5 |
|
$configuration = $this->getConfiguration($configs, $container); |
23
|
5 |
|
$config = $this->processConfiguration($configuration, $configs); |
24
|
|
|
|
25
|
5 |
|
$loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
26
|
5 |
|
$loader->load('serializer.yaml'); |
27
|
|
|
|
28
|
5 |
|
$this->configureCache($config, $container); |
29
|
5 |
|
} |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* @param array $config |
33
|
|
|
* @param ContainerBuilder $container |
34
|
|
|
*/ |
35
|
5 |
|
public function configureCache(array $config, ContainerBuilder $container) |
36
|
|
|
{ |
37
|
5 |
|
if (isset($config['cache'])) { |
38
|
2 |
|
$ref = $this->createCacheReference('bdf_serializer.cache', $config['cache'], $container); |
39
|
|
|
|
40
|
2 |
|
if ($ref !== null) { |
41
|
2 |
|
$serializerDefinition = $container->getDefinition('bdf_serializer.metadata_factory'); |
42
|
2 |
|
$serializerDefinition->replaceArgument(1, $ref); |
43
|
|
|
} |
44
|
|
|
} |
45
|
5 |
|
} |
46
|
|
|
|
47
|
|
|
/** |
48
|
|
|
* @param string $namespace |
49
|
|
|
* @param array $config |
50
|
|
|
* @param ContainerBuilder $container |
51
|
|
|
* |
52
|
|
|
* @return null|Reference |
53
|
|
|
*/ |
54
|
2 |
|
private function createCacheReference(string $namespace, array $config, ContainerBuilder $container): ?Reference |
55
|
|
|
{ |
56
|
2 |
|
if (isset($config['service'])) { |
57
|
1 |
|
return new Reference($config['service']); |
58
|
|
|
} |
59
|
|
|
|
60
|
1 |
|
if (isset($config['pool'])) { |
61
|
1 |
|
$definition = $container->register($namespace, Psr16Cache::class); |
62
|
1 |
|
$definition->addArgument(new Reference($config['pool'])); |
63
|
1 |
|
$definition->setPrivate(true); |
|
|
|
|
64
|
|
|
|
65
|
1 |
|
return new Reference($namespace); |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
return null; |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
/** |
72
|
|
|
* {@inheritDoc} |
73
|
|
|
*/ |
74
|
5 |
|
public function getConfiguration(array $config, ContainerBuilder $container) |
75
|
|
|
{ |
76
|
5 |
|
return new Configuration(); |
77
|
|
|
} |
78
|
|
|
} |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.