Failed Conditions
Push — master ( 2c044d...7f3b43 )
by Florent
02:21
created

CheckerCollectorCompilerPass::process()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 16
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 16
rs 9.4285
c 0
b 0
f 0
cc 3
eloc 9
nc 3
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * The MIT License (MIT)
7
 *
8
 * Copyright (c) 2014-2017 Spomky-Labs
9
 *
10
 * This software may be modified and distributed under the terms
11
 * of the MIT license.  See the LICENSE file for details.
12
 */
13
14
namespace Jose\Bundle\JoseFramework\DependencyInjection\Compiler;
15
16
use Jose\Bundle\JoseFramework\DataCollector\CheckerCollector;
17
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
18
use Symfony\Component\DependencyInjection\ContainerBuilder;
19
use Symfony\Component\DependencyInjection\Definition;
20
use Symfony\Component\DependencyInjection\Reference;
21
22
/**
23
 * Class CheckerCollectorCompilerPass.
24
 */
25
final class CheckerCollectorCompilerPass implements CompilerPassInterface
26
{
27
    /**
28
     * {@inheritdoc}
29
     */
30
    public function process(ContainerBuilder $container)
31
    {
32
        if (!$container->hasDefinition(CheckerCollector::class)) {
33
            return;
34
        }
35
36
        $definition = $container->getDefinition(CheckerCollector::class);
37
38
        $services = [
39
            'addHeaderCheckerManager' => 'jose.header_checker_manager',
40
            'addClaimCheckerManager' => 'jose.claim_checker_manager',
41
        ];
42
        foreach ($services as $method => $tag) {
43
            $this->collectServices($method, $tag, $definition, $container);
44
        }
45
    }
46
47
    /**
48
     * @param string           $method
49
     * @param string           $tag
50
     * @param Definition       $definition
51
     * @param ContainerBuilder $container
52
     */
53
    private function collectServices(string $method, string $tag, Definition $definition, ContainerBuilder $container)
54
    {
55
        $taggedCheckerServices = $container->findTaggedServiceIds($tag);
56
        foreach ($taggedCheckerServices as $id => $tags) {
57
            $definition->addMethodCall($method, [$id, new Reference($id)]);
58
        }
59
    }
60
}
61