Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 41
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
ListServiceProvider
0.00% covered (danger)
0.00%
0 / 41
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 / 41
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\lists;
24
25use oat\tao\model\Lists\Business\Service\ValueCollectionService;
26use oat\taoBackOffice\model\lists\Service\ListDeleter;
27use oat\generis\model\resource\Repository\ClassRepository;
28use oat\taoBackOffice\model\ListElement\Service\ListElementsDeleter;
29use oat\generis\model\DependencyInjection\ContainerServiceProviderInterface;
30use oat\tao\model\Lists\Business\Specification\RemoteListClassSpecification;
31use oat\tao\model\Lists\DataAccess\Repository\ParentPropertyListCachedRepository;
32use oat\taoBackOffice\model\lists\Service\ListUpdater;
33use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
34
35use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
36use function Symfony\Component\DependencyInjection\Loader\Configurator\service;
37
38class ListServiceProvider implements ContainerServiceProviderInterface
39{
40    public function __invoke(ContainerConfigurator $configurator): void
41    {
42        $services = $configurator->services();
43        $parameters = $configurator->parameters();
44
45        $parameters->set('LOCAL_LIST_MAX_ITEMS', 1000);
46
47        $services
48            ->set(ListService::class, ListService::class)
49            ->public()
50            ->factory(ListService::class . '::singleton')
51            ->call('setMaxItems', [
52                env('LOCAL_LIST_MAX_ITEMS')
53                    ->default('LOCAL_LIST_MAX_ITEMS')
54                    ->int()
55            ]);
56
57        $services
58            ->set(ListCreator::class, ListCreator::class)
59            ->public()
60            ->args(
61                [
62                    service(ListService::class),
63                    service(RemoteListClassSpecification::class),
64                ]
65            );
66
67        $services
68            ->set(ListDeleter::class, ListDeleter::class)
69            ->public()
70            ->args(
71                [
72                    service(ListElementsDeleter::class),
73                    service(RemoteListClassSpecification::class),
74                    service(ParentPropertyListCachedRepository::class),
75                    service(ClassRepository::class),
76                ]
77            );
78
79        $services
80            ->set(ListUpdater::class, ListUpdater::class)
81            ->public()
82            ->args(
83                [
84                    service(ValueCollectionService::class),
85                    service(ListService::class),
86                ]
87            );
88    }
89}