Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
40.00% |
6 / 15 |
|
50.00% |
1 / 2 |
CRAP | |
0.00% |
0 / 1 |
ResourceTranslatableStatusHandler | |
40.00% |
6 / 15 |
|
50.00% |
1 / 2 |
7.46 | |
0.00% |
0 / 1 |
__construct | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
1 | |||
__invoke | |
25.00% |
3 / 12 |
|
0.00% |
0 / 1 |
6.80 |
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\Translation\Service; |
24 | |
25 | use oat\generis\model\data\Ontology; |
26 | use oat\tao\model\Translation\Entity\ResourceTranslatableStatus; |
27 | use oat\taoQtiItem\model\qti\Item; |
28 | use oat\taoQtiItem\model\qti\Service; |
29 | use Psr\Log\LoggerInterface; |
30 | use Throwable; |
31 | |
32 | class ResourceTranslatableStatusHandler |
33 | { |
34 | private Service $qtiItemService; |
35 | private LoggerInterface $logger; |
36 | private Ontology $ontology; |
37 | |
38 | public function __construct(Service $qtiItemService, LoggerInterface $logger, Ontology $ontology) |
39 | { |
40 | $this->qtiItemService = $qtiItemService; |
41 | $this->logger = $logger; |
42 | $this->ontology = $ontology; |
43 | } |
44 | |
45 | public function __invoke(ResourceTranslatableStatus $status): void |
46 | { |
47 | try { |
48 | $item = $this->ontology->getResource($status->getUri()); |
49 | |
50 | $itemData = $this->qtiItemService->getDataItemByRdfItem($item); |
51 | |
52 | $status->setEmpty(!$itemData || $itemData->isEmpty()); |
53 | } catch (Throwable $exception) { |
54 | $this->logger->error( |
55 | sprintf( |
56 | 'An error occurred while retrieving item data: %s. Trace: %s', |
57 | $exception->getMessage(), |
58 | $exception->getTraceAsString() |
59 | ) |
60 | ); |
61 | |
62 | throw $exception; |
63 | } |
64 | } |
65 | } |