Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 25 |
|
0.00% |
0 / 4 |
CRAP | |
0.00% |
0 / 1 |
ImportResultTask | |
0.00% |
0 / 25 |
|
0.00% |
0 / 4 |
56 | |
0.00% |
0 / 1 |
__invoke | |
0.00% |
0 / 22 |
|
0.00% |
0 / 1 |
20 | |||
jsonSerialize | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getResultImporter | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getSendCalculatedResultService | |
0.00% |
0 / 1 |
|
0.00% |
0 / 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) 2023 (original work) Open Assessment Technologies SA. |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\taoResultServer\models\Import\Task; |
24 | |
25 | use JsonSerializable; |
26 | use oat\oatbox\extension\AbstractAction; |
27 | use oat\oatbox\reporting\Report; |
28 | use oat\oatbox\service\ServiceManagerAwareTrait; |
29 | use oat\tao\model\taskQueue\Task\TaskAwareInterface; |
30 | use oat\tao\model\taskQueue\Task\TaskAwareTrait; |
31 | use oat\taoResultServer\models\Import\Input\ImportResultInput; |
32 | use oat\taoResultServer\models\Import\Service\ResultImporter; |
33 | use oat\taoResultServer\models\Import\Service\SendCalculatedResultService; |
34 | use Throwable; |
35 | |
36 | class ImportResultTask extends AbstractAction implements TaskAwareInterface, JsonSerializable |
37 | { |
38 | use ServiceManagerAwareTrait; |
39 | use TaskAwareTrait; |
40 | |
41 | public const PARAM_IMPORT_JSON = 'importJson'; |
42 | |
43 | public function __invoke($params = []) |
44 | { |
45 | $logger = $this->getLogger(); |
46 | |
47 | try { |
48 | $importResult = ImportResultInput::fromJson($params[self::PARAM_IMPORT_JSON]); |
49 | |
50 | $this->getResultImporter()->importByResultInput($importResult); |
51 | |
52 | if ($importResult->isSendAgs()) { |
53 | $this->getSendCalculatedResultService()->sendByDeliveryExecutionId( |
54 | $importResult->getDeliveryExecutionId(), |
55 | ); |
56 | } |
57 | |
58 | $message = sprintf( |
59 | '[DeliveryExecutionResults] Results imported [%s]', |
60 | var_export($importResult->jsonSerialize(), true) |
61 | ); |
62 | |
63 | $logger->info($message); |
64 | |
65 | return Report::createSuccess($message); |
66 | } catch (Throwable $exception) { |
67 | $message = sprintf( |
68 | '[DeliveryExecutionResults] Error [%s] Stacktrace [%s] importing results [%s]', |
69 | $exception->getMessage(), |
70 | $exception->getTraceAsString(), |
71 | isset($importResult) ? var_export($importResult->jsonSerialize(), true) : '' |
72 | ); |
73 | |
74 | $logger->error($message); |
75 | |
76 | return Report::createError($message); |
77 | } |
78 | } |
79 | |
80 | public function jsonSerialize() |
81 | { |
82 | return __CLASS__; |
83 | } |
84 | |
85 | private function getResultImporter(): ResultImporter |
86 | { |
87 | return $this->getServiceManager()->getContainer()->get(ResultImporter::class); |
88 | } |
89 | |
90 | private function getSendCalculatedResultService(): SendCalculatedResultService |
91 | { |
92 | return $this->getServiceManager()->getContainer()->get(SendCalculatedResultService::class); |
93 | } |
94 | } |