Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 31 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
StateRemovalTask | |
0.00% |
0 / 31 |
|
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 1 |
manipulateState | |
0.00% |
0 / 31 |
|
0.00% |
0 / 1 |
6 |
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 Exception; |
26 | use InvalidArgumentException; |
27 | use oat\oatbox\extension\AbstractAction; |
28 | use oat\oatbox\reporting\Report; |
29 | use oat\oatbox\service\exception\InvalidServiceManagerException; |
30 | use oat\tao\model\state\StateMigration; |
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 StateRemovalTask extends AbstractQtiStateManipulationTask |
37 | { |
38 | protected function manipulateState(string $userId, string $callId, string $stateLabel): Report |
39 | { |
40 | $loggerContext = [ |
41 | 'userId' => $userId, |
42 | 'callId' => $callId, |
43 | 'stateType' => $stateLabel |
44 | ]; |
45 | |
46 | try { |
47 | $this->getStateMigrationService()->removeState($userId, $callId); |
48 | |
49 | $this->getLogger()->info( |
50 | sprintf('%s state has been deleted', $stateLabel), |
51 | $loggerContext |
52 | ); |
53 | return Report::createSuccess( |
54 | sprintf( |
55 | '[%s] - %s state was successfully removed for user %s', |
56 | $callId, |
57 | $stateLabel, |
58 | $userId |
59 | ) |
60 | ); |
61 | } catch (Exception $exception) { |
62 | $this->getLogger()->warning( |
63 | sprintf('Failed to delete %s state', $stateLabel), |
64 | $loggerContext |
65 | ); |
66 | return Report::createError( |
67 | sprintf( |
68 | '[%s] - %s state removing failed for user %s', |
69 | $callId, |
70 | $stateLabel, |
71 | $userId |
72 | ) |
73 | ); |
74 | } |
75 | } |
76 | } |