Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
93.18% covered (success)
93.18%
41 / 44
85.71% covered (warning)
85.71%
6 / 7
CRAP
0.00% covered (danger)
0.00%
0 / 1
TranslationUniqueIdSetter
93.18% covered (success)
93.18%
41 / 44
85.71% covered (warning)
85.71%
6 / 7
14.06
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 addQtiIdentifierSetter
40.00% covered (danger)
40.00%
2 / 5
0.00% covered (danger)
0.00%
0 / 1
2.86
 __invoke
100.00% covered (success)
100.00%
13 / 13
100.00% covered (success)
100.00%
1 / 1
3
 getOriginalResource
100.00% covered (success)
100.00%
10 / 10
100.00% covered (success)
100.00%
1 / 1
2
 getUniqueId
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
2
 getQtiIdentifierSetter
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
2
 getProperty
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 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) 2024 (original work) Open Assessment Technologies SA.
19 */
20
21declare(strict_types=1);
22
23namespace oat\tao\model\Translation\Service;
24
25use core_kernel_classes_Property;
26use core_kernel_classes_Resource;
27use InvalidArgumentException;
28use oat\generis\model\data\Ontology;
29use oat\tao\model\featureFlag\FeatureFlagCheckerInterface;
30use oat\tao\model\TaoOntology;
31
32class TranslationUniqueIdSetter
33{
34    private FeatureFlagCheckerInterface $featureFlagChecker;
35    private Ontology $ontology;
36
37    /** @var AbstractQtiIdentifierSetter[] */
38    private array $qtiIdentifierSetters = [];
39
40    /** @var core_kernel_classes_Property[] */
41    private array $properties = [];
42
43    public function __construct(FeatureFlagCheckerInterface $featureFlagChecker, Ontology $ontology)
44    {
45        $this->featureFlagChecker = $featureFlagChecker;
46        $this->ontology = $ontology;
47    }
48
49    public function addQtiIdentifierSetter(AbstractQtiIdentifierSetter $qtiIdentifierSetter, string $resourceType): void
50    {
51        if (isset($this->qtiIdentifierSetters[$resourceType])) {
52            throw new InvalidArgumentException(
53                'QTI Identifier setter already exists for resource type ' . $resourceType
54            );
55        }
56
57        $this->qtiIdentifierSetters[$resourceType] = $qtiIdentifierSetter;
58    }
59
60    public function __invoke(core_kernel_classes_Resource $resource): void
61    {
62        if (
63            !$this->featureFlagChecker->isEnabled('FEATURE_FLAG_UNIQUE_NUMERIC_QTI_IDENTIFIER')
64            || !$this->featureFlagChecker->isEnabled('FEATURE_FLAG_TRANSLATION_ENABLED')
65        ) {
66            return;
67        }
68
69        $originalResource = $this->getOriginalResource($resource);
70        $uniqueIdentifier = $this->getUniqueId($originalResource);
71
72        $resource->editPropertyValues(
73            $this->getProperty(TaoOntology::PROPERTY_UNIQUE_IDENTIFIER),
74            $uniqueIdentifier
75        );
76        $this->getQtiIdentifierSetter($resource)->set([
77            AbstractQtiIdentifierSetter::OPTION_RESOURCE => $resource,
78            AbstractQtiIdentifierSetter::OPTION_IDENTIFIER => $uniqueIdentifier,
79        ]);
80    }
81
82    private function getOriginalResource(core_kernel_classes_Resource $resource): core_kernel_classes_Resource
83    {
84        $property = $this->getProperty(TaoOntology::PROPERTY_TRANSLATION_ORIGINAL_RESOURCE_URI);
85        $originalResourceUri = $resource->getOnePropertyValue($property);
86
87        if (empty($originalResourceUri)) {
88            throw new InvalidArgumentException(
89                sprintf(
90                    'Resource %s is not a translation - original resource URI is empty',
91                    $resource->getUri()
92                )
93            );
94        }
95
96        return $this->ontology->getResource($originalResourceUri);
97    }
98
99    private function getUniqueId(core_kernel_classes_Resource $resource): string
100    {
101        $property = $this->getProperty(TaoOntology::PROPERTY_UNIQUE_IDENTIFIER);
102        $uniqueId = $resource->getOnePropertyValue($property);
103
104        if (empty($uniqueId)) {
105            throw new InvalidArgumentException('Unique ID must exists for resource URI ' . $resource->getUri());
106        }
107
108        return $uniqueId->literal;
109    }
110
111    private function getQtiIdentifierSetter(core_kernel_classes_Resource $resource): AbstractQtiIdentifierSetter
112    {
113        $resourceType = $resource->getRootId();
114
115        if (!isset($this->qtiIdentifierSetters[$resourceType])) {
116            throw new InvalidArgumentException(
117                'QTI Identifier setter does not exist for resource type ' . $resourceType
118            );
119        }
120
121        return $this->qtiIdentifierSetters[$resourceType];
122    }
123
124    private function getProperty(string $uri): core_kernel_classes_Property
125    {
126        if (!isset($this->properties[$uri])) {
127            $this->properties[$uri] = $this->ontology->getProperty($uri);
128        }
129
130        return $this->properties[$uri];
131    }
132}