Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
83.78% covered (warning)
83.78%
31 / 37
50.00% covered (danger)
50.00%
1 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
TranslationUpdateService
83.78% covered (warning)
83.78%
31 / 37
50.00% covered (danger)
50.00%
1 / 2
5.11
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
1
 update
82.35% covered (warning)
82.35%
28 / 34
0.00% covered (danger)
0.00%
0 / 1
4.09
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_Resource;
26use oat\generis\model\data\Ontology;
27use oat\tao\model\TaoOntology;
28use oat\tao\model\Translation\Command\UpdateTranslationCommand;
29use oat\tao\model\Translation\Exception\ResourceTranslationException;
30use Psr\Log\LoggerInterface;
31use Throwable;
32
33class TranslationUpdateService
34{
35    private Ontology $ontology;
36    private LoggerInterface $logger;
37    private TranslatedIntoLanguagesSynchronizer $translatedIntoLanguagesSynchronizer;
38
39    public function __construct(
40        Ontology $ontology,
41        LoggerInterface $logger,
42        TranslatedIntoLanguagesSynchronizer $translatedIntoLanguagesSynchronizer
43    ) {
44        $this->ontology = $ontology;
45        $this->logger = $logger;
46        $this->translatedIntoLanguagesSynchronizer = $translatedIntoLanguagesSynchronizer;
47    }
48
49    public function update(UpdateTranslationCommand $command): core_kernel_classes_Resource
50    {
51        try {
52            $instance = $this->ontology->getResource($command->getResourceUri());
53
54            if (!$instance->exists()) {
55                throw new ResourceTranslationException(
56                    sprintf(
57                        'Resource %s does not exist',
58                        $command->getResourceUri()
59                    )
60                );
61            }
62
63            $translationType = $instance->getOnePropertyValue(
64                $this->ontology->getProperty(TaoOntology::PROPERTY_TRANSLATION_TYPE)
65            );
66
67            if ($translationType->getUri() !== TaoOntology::PROPERTY_VALUE_TRANSLATION_TYPE_TRANSLATION) {
68                throw new ResourceTranslationException(
69                    sprintf(
70                        'Resource %s is not a translation',
71                        $command->getResourceUri()
72                    )
73                );
74            }
75
76            $instance->editPropertyValues(
77                $this->ontology->getProperty(TaoOntology::PROPERTY_TRANSLATION_PROGRESS),
78                $command->getProgressUri()
79            );
80
81            $this->translatedIntoLanguagesSynchronizer->sync($instance);
82
83            return $instance;
84        } catch (Throwable $exception) {
85            $this->logger->error(
86                sprintf(
87                    'Could not update translation status of [resourceUri=%s] (%s): %s',
88                    $command->getResourceUri(),
89                    get_class($exception),
90                    $exception->getMessage()
91                )
92            );
93
94            throw $exception;
95        }
96    }
97}