Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
66.67% |
30 / 45 |
|
75.00% |
3 / 4 |
CRAP | |
0.00% |
0 / 1 |
MappedMetadataInjector | |
66.67% |
30 / 45 |
|
75.00% |
3 / 4 |
45.33 | |
0.00% |
0 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
inject | |
54.55% |
18 / 33 |
|
0.00% |
0 / 1 |
40.04 | |||
isInjectableProperty | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
2 | |||
setListValue | |
100.00% |
10 / 10 |
|
100.00% |
1 / 1 |
5 |
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) 2024 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\taoQtiItem\model\qti\metadata\ontology; |
24 | |
25 | use core_kernel_classes_Property as Property; |
26 | use core_kernel_classes_Resource as Resource; |
27 | use oat\generis\model\OntologyAwareTrait; |
28 | use oat\taoBackOffice\model\lists\ListService; |
29 | use oat\taoQtiItem\model\qti\metadata\simple\SimpleMetadataValue; |
30 | use tao_helpers_form_elements_Readonly as ReadOnlyWidget; |
31 | |
32 | class MappedMetadataInjector |
33 | { |
34 | use OntologyAwareTrait; |
35 | |
36 | private ListService $listService; |
37 | |
38 | public function __construct(ListService $listService) |
39 | { |
40 | $this->listService = $listService; |
41 | } |
42 | |
43 | public function inject(array $mappedProperties, array $metadataValues, Resource $resource): void |
44 | { |
45 | $removedProperties = []; |
46 | |
47 | /** @var SimpleMetadataValue $metadataValue */ |
48 | foreach ($metadataValues as $metadataValue) { |
49 | foreach ($metadataValue->getPath() as $mappedPath) { |
50 | if ($this->isInjectableProperty($mappedProperties, $mappedPath) === false) { |
51 | continue; |
52 | } |
53 | $currentValue = $resource->getPropertyValues($mappedProperties[$mappedPath]); |
54 | if (is_array($currentValue) && count($currentValue) > 0) { |
55 | $currentValue = reset($currentValue); |
56 | } |
57 | if ($currentValue && $currentValue === $metadataValue->getValue()) { |
58 | continue; |
59 | } |
60 | if ( |
61 | $mappedProperties[$mappedPath]->getWidget() |
62 | && $mappedProperties[$mappedPath]->getWidget()->getUri() === ReadOnlyWidget::WIDGET_ID |
63 | ) { |
64 | continue; |
65 | } |
66 | if ( |
67 | $mappedProperties[$mappedPath]->getRange() |
68 | && $mappedProperties[$mappedPath]->getRange()->getUri() === RDFS_LITERAL |
69 | ) { |
70 | // If resource already has property value, remove it. |
71 | if ($resource->getPropertyValuesCollection($mappedProperties[$mappedPath])->count() > 0) { |
72 | $propertyValue = $resource->getUniquePropertyValue($mappedProperties[$mappedPath]); |
73 | $resource->removePropertyValue($mappedProperties[$mappedPath], $propertyValue); |
74 | } |
75 | |
76 | $resource->setPropertyValue($mappedProperties[$mappedPath], $metadataValue->getValue()); |
77 | break; |
78 | } |
79 | |
80 | if ($mappedProperties[$mappedPath]->getRange() !== null) { |
81 | $propertyUri = $mappedProperties[$mappedPath]->getUri(); |
82 | |
83 | if (!in_array($propertyUri, $removedProperties, true)) { |
84 | $resource->removePropertyValues($mappedProperties[$mappedPath]); |
85 | $removedProperties[] = $propertyUri; |
86 | } |
87 | |
88 | $this->setListValue($mappedProperties[$mappedPath], $resource, $metadataValue); |
89 | break; |
90 | } |
91 | |
92 | if ($mappedProperties[$mappedPath]->getRange() === null) { |
93 | $resource->setPropertyValue( |
94 | $mappedProperties[$mappedPath], |
95 | $this->getResource($metadataValue->getValue()) |
96 | ); |
97 | break; |
98 | } |
99 | } |
100 | } |
101 | } |
102 | |
103 | private function isInjectableProperty(array $mappedProperties, string $mappedPath): bool |
104 | { |
105 | return isset($mappedProperties[$mappedPath]) && $mappedProperties[$mappedPath] instanceof Property; |
106 | } |
107 | |
108 | private function setListValue(Property $property, Resource $resource, SimpleMetadataValue $metadataValue): void |
109 | { |
110 | $list = $this->listService->getListElements($property->getRange()); |
111 | |
112 | foreach ($list as $listElement) { |
113 | if ( |
114 | $listElement->getLabel() === $metadataValue->getValue() |
115 | || $listElement->getOriginalUri() === $metadataValue->getValue() |
116 | ) { |
117 | $resource->setPropertyValue( |
118 | $property, |
119 | $this->getResource($listElement->getUri()) |
120 | ); |
121 | |
122 | if ($property->isMultiple() === false) { |
123 | break; |
124 | } |
125 | } |
126 | } |
127 | } |
128 | } |