Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 34 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 1 |
StateOffloadTask | |
0.00% |
0 / 34 |
|
0.00% |
0 / 3 |
20 | |
0.00% |
0 / 1 |
manipulateState | |
0.00% |
0 / 28 |
|
0.00% |
0 / 1 |
6 | |||
enqueueStateRemovalTask | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
2 | |||
getQueueDispatcher | |
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) 2022 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\taoQtiTest\models\classes\tasks\QtiStateOffload; |
24 | |
25 | use InvalidArgumentException; |
26 | use oat\oatbox\extension\AbstractAction; |
27 | use oat\oatbox\reporting\Report; |
28 | use oat\oatbox\service\exception\InvalidServiceManagerException; |
29 | use oat\tao\model\state\StateMigration; |
30 | use oat\tao\model\taskQueue\QueueDispatcherInterface; |
31 | use oat\tao\model\taskQueue\Task\TaskAwareInterface; |
32 | use oat\tao\model\taskQueue\Task\TaskAwareTrait; |
33 | use Psr\Container\ContainerExceptionInterface; |
34 | use Psr\Container\NotFoundExceptionInterface; |
35 | |
36 | class StateOffloadTask extends AbstractQtiStateManipulationTask |
37 | { |
38 | protected function manipulateState(string $userId, string $callId, string $stateLabel): Report |
39 | { |
40 | $logContext = [ |
41 | 'userId' => $userId, |
42 | 'callId' => $callId, |
43 | 'stateType' => $stateLabel |
44 | ]; |
45 | |
46 | if (!$this->getStateMigrationService()->archive($userId, $callId)) { |
47 | $this->getLogger()->warning( |
48 | sprintf('Failed to archive %s state', $stateLabel), |
49 | $logContext |
50 | ); |
51 | return Report::createError( |
52 | sprintf( |
53 | '[%s] - %s state archiving failed for user %s', |
54 | $callId, |
55 | $stateLabel, |
56 | $userId |
57 | ) |
58 | ); |
59 | } |
60 | |
61 | $this->enqueueStateRemovalTask($userId, $callId, $stateLabel); |
62 | |
63 | $this->getLogger()->info(sprintf('%s state has been archived', $stateLabel), $logContext); |
64 | |
65 | return Report::createSuccess( |
66 | sprintf( |
67 | '[%s] - %s state was successfully archived for user %s', |
68 | $callId, |
69 | $stateLabel, |
70 | $userId |
71 | ) |
72 | ); |
73 | } |
74 | |
75 | private function enqueueStateRemovalTask(string $userId, string $callId, string $stateLabel): void |
76 | { |
77 | $this->getQueueDispatcher()->createTask(new StateRemovalTask(), [ |
78 | AbstractQtiStateManipulationTask::PARAM_USER_ID_KEY => $userId, |
79 | AbstractQtiStateManipulationTask::PARAM_CALL_ID_KEY => $callId, |
80 | AbstractQtiStateManipulationTask::PARAM_STATE_LABEL_KEY => $stateLabel |
81 | ]); |
82 | } |
83 | |
84 | private function getQueueDispatcher(): QueueDispatcherInterface |
85 | { |
86 | return $this->getServiceLocator()->get(QueueDispatcherInterface::SERVICE_ID); |
87 | } |
88 | } |