Completed
Push — location_swap_spi_bug ( de9e5f...0d5b4c )
by André
13:56
created

LegacyStorageEnginePass::process()   C

Complexity

Conditions 12
Paths 23

Size

Total Lines 56
Code Lines 30

Duplication

Lines 28
Ratio 50 %

Importance

Changes 0
Metric Value
cc 12
eloc 30
nc 23
nop 1
dl 28
loc 56
rs 6.7092
c 0
b 0
f 0

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
/**
4
 * File containing the LegacyStorageEnginePass class.
5
 *
6
 * @copyright Copyright (C) eZ Systems AS. All rights reserved.
7
 * @license For full copyright and license information view LICENSE file distributed with this source code.
8
 */
9
namespace eZ\Bundle\EzPublishCoreBundle\DependencyInjection\Compiler;
10
11
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
12
use Symfony\Component\DependencyInjection\ContainerBuilder;
13
use Symfony\Component\DependencyInjection\Exception\LogicException;
14
use Symfony\Component\DependencyInjection\Reference;
15
16
/**
17
 * This compiler pass will register eZ Publish field types.
18
 */
19
class LegacyStorageEnginePass implements CompilerPassInterface
20
{
21
    /**
22
     * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container
23
     */
24
    public function process(ContainerBuilder $container)
25
    {
26
        if (!$container->hasDefinition('ezpublish.api.storage_engine.legacy.factory')) {
27
            return;
28
        }
29
30
        $legacyStorageEngineDef = $container->getDefinition('ezpublish.api.storage_engine.legacy.factory');
31
32
        // Field types.
33
        // Alias attribute is the field type string.
34
        foreach ($container->findTaggedServiceIds('ezpublish.fieldType') as $id => $attributes) {
35
            foreach ($attributes as $attribute) {
36
                if (!isset($attribute['alias'])) {
37
                    throw new \LogicException('ezpublish.fieldType service tag needs an "alias" attribute to identify the field type. None given.');
38
                }
39
40
                $legacyStorageEngineDef->addMethodCall(
41
                    'registerFieldType',
42
                    array(
43
                        // Only pass the service Id since field types will be lazy loaded via the service container
44
                        $id,
45
                        $attribute['alias'],
46
                    )
47
                );
48
            }
49
        }
50
51 View Code Duplication
        foreach ($container->findTaggedServiceIds('ezpublish.storageEngine.legacy.converter') as $id => $attributes) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
52
            foreach ($attributes as $attribute) {
53
                if (!isset($attribute['alias'])) {
54
                    throw new LogicException('ezpublish.storageEngine.legacy.converter service tag needs an "alias" attribute to identify the field type. None given.');
55
                }
56
57
                if (isset($attribute['lazy']) && $attribute['lazy'] === true) {
58
                    if (!isset($attribute['callback'])) {
59
                        throw new LogicException("Converter service '$id' is marked as lazy but no callback is provided! Please provide a callback.");
60
                    }
61
62
                    $converter = $attribute['callback'];
63
                    if (strpos($converter, '::') === 0) {
64
                        $converter = $container->getDefinition($id)->getClass() . $converter;
65
                    }
66
                } else {
67
                    $converter = new Reference($id);
68
                }
69
70
                $legacyStorageEngineDef->addMethodCall(
71
                    'registerFieldTypeConverter',
72
                    array(
73
                        $attribute['alias'],
74
                        $converter,
75
                    )
76
                );
77
            }
78
        }
79
    }
80
}
81