Completed
Pull Request — 1.0 (#642)
by
unknown
02:52
created

ONGRElasticsearchExtension::load()   A

Complexity

Conditions 2
Paths 1

Size

Total Lines 22
Code Lines 15

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 22
rs 9.2
cc 2
eloc 15
nc 1
nop 2
1
<?php
2
3
/*
4
 * This file is part of the ONGR package.
5
 *
6
 * (c) NFQ Technologies UAB <[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 ONGR\ElasticsearchBundle\DependencyInjection;
13
14
use Symfony\Component\Config\FileLocator;
15
use Symfony\Component\DependencyInjection\ContainerBuilder;
16
use Symfony\Component\DependencyInjection\Loader;
17
use Symfony\Component\DependencyInjection\Definition;
18
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
19
use Symfony\Component\DependencyInjection\Reference;
20
21
/**
22
 * This is the class that loads and manages bundle configuration.
23
 */
24
class ONGRElasticsearchExtension extends Extension
25
{
26
    /**
27
     * {@inheritdoc}
28
     */
29
    public function load(array $configs, ContainerBuilder $container)
30
    {
31
        $configuration = new Configuration();
32
        $config = $this->processConfiguration($configuration, $configs);
33
34
        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
35
        $loader->load('services.yml');
36
37
        $container->setParameter('es.cache', $config['cache']);
38
        $container->setParameter('es.analysis', $config['analysis']);
39
        $container->setParameter('es.connections', $config['connections']);
40
        $container->setParameter('es.managers', $config['managers']);
41
        $definition = new Definition(
42
            'ONGR\ElasticsearchBundle\Service\ManagerFactory',
43
            [
44
                new Reference('es.metadata_collector'),
45
                new Reference('es.result_converter'),
46
                $container->getParameter('kernel.debug') ? new Reference('es.tracer') : null,
47
            ]
48
        );
49
        $container->setDefinition('es.manager_factory', $definition);
50
    }
51
}
52