Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 64 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
ImportServiceProvider | |
0.00% |
0 / 64 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__invoke | |
0.00% |
0 / 64 |
|
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) 2023 (original work) Open Assessment Technologies SA. |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\taoResultServer\models\Import; |
24 | |
25 | use oat\generis\model\data\Ontology; |
26 | use oat\generis\model\DependencyInjection\ContainerServiceProviderInterface; |
27 | use oat\oatbox\event\EventManager; |
28 | use oat\tao\model\taskQueue\QueueDispatcher; |
29 | use oat\taoDelivery\model\execution\DeliveryExecutionService; |
30 | use oat\taoDeliveryRdf\model\DeliveryContainerService; |
31 | use oat\taoQtiTest\models\runner\QtiRunnerService; |
32 | use oat\taoResultServer\models\classes\ResultServerService; |
33 | use oat\taoResultServer\models\Import\Factory\ImportResultInputFactory; |
34 | use oat\taoResultServer\models\Import\Factory\QtiResultXmlFactory; |
35 | use oat\taoResultServer\models\Import\Service\QtiResultXmlImporter; |
36 | use oat\taoResultServer\models\Import\Service\DeliveredTestOutcomeDeclarationsService; |
37 | use oat\taoResultServer\models\Import\Service\ResultImporter; |
38 | use oat\taoResultServer\models\Import\Service\SendCalculatedResultService; |
39 | use oat\taoResultServer\models\Import\Task\ResultImportScheduler; |
40 | use oat\taoResultServer\models\Parser\QtiResultParser; |
41 | use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; |
42 | use taoQtiTest_models_classes_QtiTestService; |
43 | |
44 | use function Symfony\Component\DependencyInjection\Loader\Configurator\service; |
45 | |
46 | class ImportServiceProvider implements ContainerServiceProviderInterface |
47 | { |
48 | public function __invoke(ContainerConfigurator $configurator): void |
49 | { |
50 | $services = $configurator->services(); |
51 | |
52 | $services->set(QtiResultXmlFactory::class, QtiResultXmlFactory::class) |
53 | ->public() |
54 | ->args( |
55 | [ |
56 | service(Ontology::SERVICE_ID), |
57 | service(ResultServerService::SERVICE_ID) |
58 | ] |
59 | ); |
60 | |
61 | $services->set(QtiResultXmlImporter::class, QtiResultXmlImporter::class) |
62 | ->public() |
63 | ->args( |
64 | [ |
65 | service(Ontology::SERVICE_ID), |
66 | service(ResultServerService::SERVICE_ID), |
67 | service(QtiResultXmlFactory::class), |
68 | service(QtiResultParser::class), |
69 | service(taoQtiTest_models_classes_QtiTestService::class), |
70 | service(DeliveryExecutionService::SERVICE_ID), |
71 | ] |
72 | ); |
73 | |
74 | $services->set(ResultImporter::class, ResultImporter::class) |
75 | ->public() |
76 | ->args( |
77 | [ |
78 | service(Ontology::SERVICE_ID), |
79 | service(ResultServerService::SERVICE_ID), |
80 | service(DeliveryExecutionService::SERVICE_ID), |
81 | ] |
82 | ); |
83 | |
84 | $services->set(ResultImportScheduler::class, ResultImportScheduler::class) |
85 | ->public() |
86 | ->args( |
87 | [ |
88 | service(QueueDispatcher::SERVICE_ID), |
89 | service(ImportResultInputFactory::class), |
90 | ] |
91 | ); |
92 | |
93 | |
94 | $services->set(DeliveredTestOutcomeDeclarationsService::class, DeliveredTestOutcomeDeclarationsService::class) |
95 | ->public() |
96 | ->args( |
97 | [ |
98 | |
99 | service(QtiRunnerService::SERVICE_ID), |
100 | service(DeliveryExecutionService::SERVICE_ID), |
101 | service(DeliveryContainerService::SERVICE_ID), |
102 | ] |
103 | ); |
104 | |
105 | $services->set(SendCalculatedResultService::class, SendCalculatedResultService::class) |
106 | ->public() |
107 | ->args( |
108 | [ |
109 | service(ResultServerService::SERVICE_ID), |
110 | service(EventManager::SERVICE_ID), |
111 | service(DeliveryExecutionService::SERVICE_ID), |
112 | service(DeliveredTestOutcomeDeclarationsService::class), |
113 | ] |
114 | ); |
115 | |
116 | |
117 | $services->set(ImportResultInputFactory::class, ImportResultInputFactory::class) |
118 | ->public() |
119 | ->args( |
120 | [ |
121 | service(DeliveryExecutionService::SERVICE_ID), |
122 | ] |
123 | ); |
124 | } |
125 | } |