Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
93.55% |
29 / 31 |
|
66.67% |
4 / 6 |
CRAP | |
0.00% |
0 / 1 |
ResourceTranslatableStatusRetriever | |
93.55% |
29 / 31 |
|
66.67% |
4 / 6 |
11.03 | |
0.00% |
0 / 1 |
__construct | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
addCallable | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
retrieveByRequest | |
100.00% |
7 / 7 |
|
100.00% |
1 / 1 |
3 | |||
retrieveByResource | |
100.00% |
11 / 11 |
|
100.00% |
1 / 1 |
2 | |||
isReadyForTranslation | |
80.00% |
4 / 5 |
|
0.00% |
0 / 1 |
2.03 | |||
getLanguageUri | |
80.00% |
4 / 5 |
|
0.00% |
0 / 1 |
2.03 |
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\tao\model\Translation\Service; |
24 | |
25 | use core_kernel_classes_Resource; |
26 | use oat\generis\model\data\Ontology; |
27 | use oat\tao\model\TaoOntology; |
28 | use oat\tao\model\Translation\Entity\ResourceTranslatableStatus; |
29 | use oat\tao\model\Translation\Exception\ResourceTranslationException; |
30 | use Psr\Http\Message\ServerRequestInterface; |
31 | use Psr\Log\LoggerInterface; |
32 | use Throwable; |
33 | |
34 | class ResourceTranslatableStatusRetriever |
35 | { |
36 | private Ontology $ontology; |
37 | private LoggerInterface $logger; |
38 | private array $callables; |
39 | |
40 | public function __construct(Ontology $ontology, LoggerInterface $logger) |
41 | { |
42 | $this->ontology = $ontology; |
43 | $this->logger = $logger; |
44 | } |
45 | |
46 | public function addCallable(string $resourceType, callable $callable): void |
47 | { |
48 | $this->callables[$resourceType][] = $callable; |
49 | } |
50 | |
51 | public function retrieveByRequest(ServerRequestInterface $request): ResourceTranslatableStatus |
52 | { |
53 | $resourceUri = $request->getQueryParams()['id'] ?? null; |
54 | |
55 | if (!$resourceUri) { |
56 | throw new ResourceTranslationException('Resource id is required'); |
57 | } |
58 | |
59 | $resource = $this->ontology->getResource($resourceUri); |
60 | |
61 | if (!$resource->exists()) { |
62 | throw new ResourceTranslationException(sprintf('Translatable resource %s does not exist', $resourceUri)); |
63 | } |
64 | |
65 | return $this->retrieveByResource($resource); |
66 | } |
67 | |
68 | public function retrieveByResource(core_kernel_classes_Resource $resource): ResourceTranslatableStatus |
69 | { |
70 | $rootUri = $resource->getRootId(); |
71 | $status = new ResourceTranslatableStatus( |
72 | $resource->getUri(), |
73 | $rootUri, |
74 | $this->getLanguageUri($resource), |
75 | $this->isReadyForTranslation($resource), |
76 | true |
77 | ); |
78 | |
79 | foreach (($this->callables[$resource->getRootId()] ?? []) as $callable) { |
80 | $callable($status); |
81 | } |
82 | |
83 | return $status; |
84 | } |
85 | |
86 | private function isReadyForTranslation(core_kernel_classes_Resource $resource): bool |
87 | { |
88 | $translationStatusProperty = $this->ontology->getProperty(TaoOntology::PROPERTY_TRANSLATION_STATUS); |
89 | $translationStatusPropertyValue = $resource->getOnePropertyValue($translationStatusProperty); |
90 | |
91 | if (!$translationStatusPropertyValue instanceof core_kernel_classes_Resource) { |
92 | return false; |
93 | } |
94 | |
95 | return $translationStatusPropertyValue->getUri() === TaoOntology::PROPERTY_VALUE_TRANSLATION_STATUS_READY; |
96 | } |
97 | |
98 | private function getLanguageUri(core_kernel_classes_Resource $resource): ?string |
99 | { |
100 | $languageProperty = $this->ontology->getProperty(TaoOntology::PROPERTY_LANGUAGE); |
101 | $languagePropertyValue = $resource->getOnePropertyValue($languageProperty); |
102 | |
103 | if (!$languagePropertyValue instanceof core_kernel_classes_Resource) { |
104 | return null; |
105 | } |
106 | |
107 | return $languagePropertyValue->getUri(); |
108 | } |
109 | } |