1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* TransformerPass |
4
|
|
|
*/ |
5
|
|
|
|
6
|
|
|
namespace Graviton\ProxyBundle\DependencyInjection\Compiler; |
7
|
|
|
|
8
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder; |
9
|
|
|
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; |
10
|
|
|
use Symfony\Component\DependencyInjection\Definition; |
11
|
|
|
use Symfony\Component\DependencyInjection\Reference; |
12
|
|
|
|
13
|
|
|
/** |
14
|
|
|
* Class TransformerPass |
15
|
|
|
* |
16
|
|
|
* @package Graviton\ProxyBundle\Definition\Loader |
17
|
|
|
* |
18
|
|
|
* @author List of contributors <https://github.com/libgraviton/graviton/graphs/contributors> |
19
|
|
|
* @license https://opensource.org/licenses/MIT MIT License |
20
|
|
|
* @link http://swisscom.ch |
21
|
|
|
*/ |
22
|
|
|
class TransformerPass implements CompilerPassInterface |
23
|
|
|
{ |
24
|
|
|
/** |
25
|
|
|
* {@inheritDoc} |
26
|
|
|
* |
27
|
|
|
* @param ContainerBuilder $container Symfony Service container |
28
|
|
|
* |
29
|
|
|
* @return void |
30
|
|
|
*/ |
31
|
2 |
|
public function process(ContainerBuilder $container) |
32
|
|
|
{ |
33
|
|
|
// always first check if the primary service is defined |
34
|
2 |
|
if (!$container->has('graviton.proxy.service.transformationhandler')) { |
35
|
|
|
return; |
36
|
|
|
} |
37
|
|
|
|
38
|
2 |
|
$definition = $container->findDefinition( |
39
|
1 |
|
'graviton.proxy.service.transformationhandler' |
40
|
1 |
|
); |
41
|
2 |
|
$this->registerTaggedTransformation( |
42
|
2 |
|
$container, |
43
|
2 |
|
$definition, |
44
|
2 |
|
'graviton.proxy.transformer.request', |
45
|
1 |
|
'addRequestTransformation' |
46
|
1 |
|
); |
47
|
2 |
|
$this->registerTaggedTransformation( |
48
|
2 |
|
$container, |
49
|
2 |
|
$definition, |
50
|
2 |
|
'graviton.proxy.transformer.response', |
51
|
1 |
|
'addResponseTransformation' |
52
|
1 |
|
); |
53
|
2 |
|
$this->registerTaggedTransformation( |
54
|
2 |
|
$container, |
55
|
2 |
|
$definition, |
56
|
2 |
|
'graviton.proxy.transformer.schema', |
57
|
1 |
|
'addSchemaTransformation' |
58
|
1 |
|
); |
59
|
2 |
|
} |
60
|
|
|
|
61
|
|
|
/** |
62
|
|
|
* Adds the found services to the TransformationHandler |
63
|
|
|
* |
64
|
|
|
* @param ContainerBuilder $container Symfony Service Container |
65
|
|
|
* @param Definition $definition Service the services shall be add to. |
66
|
|
|
* @param string $tag Tag identifying the service to be added |
67
|
|
|
* @param string $callable Name of the method to call to add the tagged service. |
68
|
|
|
* |
69
|
|
|
* @return void |
70
|
|
|
*/ |
71
|
2 |
|
private function registerTaggedTransformation(ContainerBuilder $container, Definition $definition, $tag, $callable) |
72
|
|
|
{ |
73
|
2 |
|
$taggedServices = $container->findTaggedServiceIds($tag); |
74
|
|
|
|
75
|
2 |
View Code Duplication |
foreach ($taggedServices as $id => $tags) { |
76
|
|
|
foreach ($tags as $attributes) { |
77
|
|
|
$definition->addMethodCall( |
78
|
|
|
$callable, |
79
|
|
|
array( |
80
|
|
|
$attributes["alias"], |
81
|
|
|
$attributes["endpoint"], |
82
|
|
|
new Reference($id) |
83
|
|
|
) |
84
|
|
|
); |
85
|
|
|
} |
86
|
1 |
|
} |
87
|
2 |
|
} |
88
|
|
|
} |
89
|
|
|
|