Completed
Push — master ( 8b30ba...c06433 )
by Karel
04:39
created

TemplateContainerSource::getTypes()   A

Complexity

Conditions 3
Paths 2

Size

Total Lines 16

Duplication

Lines 16
Ratio 100 %

Code Coverage

Tests 9
CRAP Score 3

Importance

Changes 0
Metric Value
dl 16
loc 16
ccs 9
cts 9
cp 1
rs 9.7333
c 0
b 0
f 0
cc 3
nc 2
nop 1
crap 3
1
<?php
2
3
/**
4
 * This file is part of the FOSElasticaBundle project.
5
 *
6
 * (c) Tim Nagel <[email protected]>
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 FOS\ElasticaBundle\Configuration\Source;
13
14
use FOS\ElasticaBundle\Configuration\IndexTemplateConfig;
15
use FOS\ElasticaBundle\Configuration\TypeConfig;
16
17
/**
18
 * Returns index and type configuration from the container.
19
 */
20 View Code Duplication
class TemplateContainerSource implements SourceInterface
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in 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...
21
{
22
    /**
23
     * The internal container representation of information.
24
     *
25
     * @var array
26
     */
27
    private $configArray;
28
29 7
    public function __construct(array $configArray)
30
    {
31 7
        $this->configArray = $configArray;
32 7
    }
33
34
    /**
35
     * Should return all configuration available from the data source.
36
     *
37
     * @return IndexTemplateConfig[]
38
     */
39 7
    public function getConfiguration()
40
    {
41 7
        $indexes = array();
42 7
        foreach ($this->configArray as $config) {
43 6
            $types = $this->getTypes($config);
44 6
            $index = new IndexTemplateConfig($config['name'], $types, array(
45 6
                'elasticSearchName' => $config['elasticsearch_name'],
46 6
                'settings' => $config['settings'],
47 6
                'template' => $config['template'],
48
            ));
49
50 6
            $indexes[$config['name']] = $index;
51
        }
52
53 7
        return $indexes;
54
    }
55
56
    /**
57
     * Builds TypeConfig objects for each type.
58
     *
59
     * @param array $config
60
     *
61
     * @return array
62
     */
63 6
    protected function getTypes($config)
64
    {
65 6
        $types = array();
66
67 6
        if (isset($config['types'])) {
68 6
            foreach ($config['types'] as $typeConfig) {
69 6
                $types[$typeConfig['name']] = new TypeConfig(
70 6
                    $typeConfig['name'],
71 6
                    $typeConfig['mapping'],
72 6
                    $typeConfig['config']
73
                );
74
            }
75
        }
76
77 6
        return $types;
78
    }
79
}
80