Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 34
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
ListElementServiceProvider
0.00% covered (danger)
0.00%
0 / 34
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 __invoke
0.00% covered (danger)
0.00%
0 / 34
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2021 (original work) Open Assessment Technologies SA;
19 */
20
21declare(strict_types=1);
22
23namespace oat\taoBackOffice\model\ListElement;
24
25use oat\tao\model\Lists\Business\Service\ValueCollectionService;
26use oat\taoBackOffice\model\ListElement\Service\ListElementsFinder;
27use oat\taoBackOffice\model\ListElement\Service\ListElementsDeleter;
28use oat\tao\model\Lists\DataAccess\Repository\RdfValueCollectionRepository;
29use oat\tao\model\Lists\DataAccess\Repository\RdsValueCollectionRepository;
30use oat\generis\model\DependencyInjection\ContainerServiceProviderInterface;
31use oat\tao\model\Lists\Business\Specification\RemoteListClassSpecification;
32use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
33
34use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
35use function Symfony\Component\DependencyInjection\Loader\Configurator\service;
36
37class ListElementServiceProvider implements ContainerServiceProviderInterface
38{
39    public function __invoke(ContainerConfigurator $configurator): void
40    {
41        $services = $configurator->services();
42        $parameters = $configurator->parameters();
43
44        $parameters->set('LOCAL_LIST_PAGE_SIZE', 20);
45        $parameters->set('REMOTE_LIST_PAGE_SIZE', 20);
46
47        $services
48            ->set(ListElementsFinder::class, ListElementsFinder::class)
49            ->public()
50            ->args(
51                [
52                    service(RemoteListClassSpecification::class),
53                    service(ValueCollectionService::class),
54                    env('LOCAL_LIST_PAGE_SIZE')
55                        ->default('LOCAL_LIST_PAGE_SIZE')
56                        ->int(),
57                    env('REMOTE_LIST_PAGE_SIZE')
58                        ->default('REMOTE_LIST_PAGE_SIZE')
59                        ->int(),
60                ]
61            );
62
63        $services
64            ->set(ListElementsDeleter::class, ListElementsDeleter::class)
65            ->public()
66            ->call(
67                'addRepository',
68                [
69                    service(RdfValueCollectionRepository::SERVICE_ID),
70                ]
71            )
72            ->call(
73                'addRepository',
74                [
75                    service(RdsValueCollectionRepository::SERVICE_ID),
76                ]
77            );
78    }
79}