Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 100
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
ListsServiceProvider
0.00% covered (danger)
0.00%
0 / 100
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 / 100
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-2024 (original work) Open Assessment Technologies SA.
19 */
20
21declare(strict_types=1);
22
23namespace oat\tao\model\Lists\ServiceProvider;
24
25use oat\generis\model\data\Ontology;
26use oat\generis\persistence\PersistenceManager;
27use oat\tao\model\featureFlag\FeatureFlagChecker;
28use oat\tao\model\Lists\Business\Validation\PropertyListValidator;
29use oat\tao\model\Lists\Business\Validation\PropertyTypeValidator;
30use oat\tao\model\Lists\DataAccess\Repository\DependencyRepository;
31use oat\tao\model\Lists\Business\Specification\ListClassSpecification;
32use oat\tao\model\Lists\Business\Validation\DependsOnPropertyValidator;
33use oat\tao\model\Lists\DataAccess\Repository\DependsOnPropertyRepository;
34use oat\tao\model\Lists\Business\Specification\LocalListClassSpecification;
35use oat\generis\model\DependencyInjection\ContainerServiceProviderInterface;
36use oat\tao\model\Lists\Business\Specification\PrimaryPropertySpecification;
37use oat\tao\model\Lists\Business\Specification\RemoteListClassSpecification;
38use oat\tao\model\Lists\DataAccess\Repository\DependentPropertiesRepository;
39use oat\tao\model\Lists\Business\Specification\DependentPropertySpecification;
40use oat\tao\model\Lists\Business\Specification\EditableListClassSpecification;
41use oat\tao\model\Lists\Business\Specification\SecondaryPropertySpecification;
42use oat\tao\model\Lists\Business\Specification\RemoteListPropertySpecification;
43use oat\tao\model\Lists\DataAccess\Repository\ParentPropertyListCachedRepository;
44use oat\tao\model\Lists\Presentation\Web\Factory\DependsOnPropertyFormFieldFactory;
45use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
46
47use function Symfony\Component\DependencyInjection\Loader\Configurator\service;
48
49class ListsServiceProvider implements ContainerServiceProviderInterface
50{
51    public function __invoke(ContainerConfigurator $configurator): void
52    {
53        $services = $configurator->services();
54
55        $services
56            ->set(DependentPropertySpecification::class, DependentPropertySpecification::class)
57            ->public();
58
59        $services
60            ->set(DependencyRepository::class, DependencyRepository::class)
61            ->public()
62            ->args(
63                [
64                    service(PersistenceManager::SERVICE_ID),
65                ]
66            );
67
68        $services
69            ->set(DependsOnPropertyRepository::class, DependsOnPropertyRepository::class)
70            ->public()
71            ->args(
72                [
73                    service(FeatureFlagChecker::class),
74                    service(PrimaryPropertySpecification::class),
75                    service(RemoteListPropertySpecification::class),
76                    service(DependentPropertySpecification::class),
77                    service(ParentPropertyListCachedRepository::class),
78                ]
79            );
80
81        $services
82            ->set(DependsOnPropertyValidator::class, DependsOnPropertyValidator::class)
83            ->public()
84            ->args(
85                [
86                    service(DependencyRepository::class),
87                    service(Ontology::SERVICE_ID),
88                ]
89            );
90
91        $services
92            ->set(PropertyTypeValidator::class, PropertyTypeValidator::class)
93            ->public()
94            ->args(
95                [
96                    service(Ontology::SERVICE_ID),
97                    service(PrimaryPropertySpecification::class),
98                    service(SecondaryPropertySpecification::class),
99                    service(FeatureFlagChecker::class),
100                ]
101            );
102
103        $services
104            ->set(PropertyListValidator::class, PropertyListValidator::class)
105            ->public()
106            ->args(
107                [
108                    service(Ontology::SERVICE_ID),
109                    service(PrimaryPropertySpecification::class),
110                    service(SecondaryPropertySpecification::class),
111                    service(RemoteListClassSpecification::class),
112                    service(FeatureFlagChecker::class),
113                ]
114            );
115
116        $services
117            ->set(PrimaryPropertySpecification::class, PrimaryPropertySpecification::class)
118            ->public()
119            ->args(
120                [
121                    service(DependentPropertiesRepository::class),
122                ]
123            );
124
125        $services
126            ->set(SecondaryPropertySpecification::class, SecondaryPropertySpecification::class)
127            ->public()
128            ->args(
129                [
130                    service(DependentPropertySpecification::class),
131                ]
132            );
133
134        $services
135            ->set(LocalListClassSpecification::class, LocalListClassSpecification::class)
136            ->public()
137            ->args(
138                [
139                    service(ListClassSpecification::class),
140                ]
141            );
142
143        $services
144            ->set(DependsOnPropertyFormFieldFactory::class, DependsOnPropertyFormFieldFactory::class)
145            ->public()
146            ->args(
147                [
148                    service(FeatureFlagChecker::class),
149                    service(DependsOnPropertyRepository::class),
150                ]
151            );
152
153        $services
154            ->set(ListClassSpecification::class, ListClassSpecification::class)
155            ->public();
156
157        $services
158            ->set(EditableListClassSpecification::class, EditableListClassSpecification::class)
159            ->public()
160            ->args(
161                [
162                    service(ListClassSpecification::class),
163                ]
164            );
165    }
166}