Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
82.35% |
14 / 17 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
QueueMigrationService | |
82.35% |
14 / 17 |
|
0.00% |
0 / 1 |
5.14 | |
0.00% |
0 / 1 |
migrate | |
82.35% |
14 / 17 |
|
0.00% |
0 / 1 |
5.14 |
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) 2020 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\tao\model\task\migration\service; |
24 | |
25 | use common_report_Report; |
26 | use oat\oatbox\service\ConfigurableService; |
27 | use oat\tao\model\task\migration\MigrationConfig; |
28 | use Throwable; |
29 | |
30 | class QueueMigrationService extends ConfigurableService |
31 | { |
32 | public function migrate( |
33 | MigrationConfig $config, |
34 | ResultUnitProcessorInterface $resultUnitProcessor, |
35 | ResultSearcherInterface $resultSearcher, |
36 | ResultFilter $filter, |
37 | SpawnMigrationConfigServiceInterface $spawnService, |
38 | common_report_Report $report |
39 | ): ?MigrationConfig { |
40 | $results = $resultSearcher->search($filter); |
41 | |
42 | foreach ($results as $unit) { |
43 | try { |
44 | $resultUnitProcessor->process($unit); |
45 | } catch (Throwable $exception) { |
46 | $report->add(common_report_Report::createFailure($exception->getMessage())); |
47 | return null; |
48 | } |
49 | } |
50 | |
51 | if ($config->isProcessAll()) { |
52 | $config = $spawnService->spawn($config, $filter); |
53 | |
54 | if ($config) { |
55 | $report->add( |
56 | common_report_Report::createInfo('Respawning additional task') |
57 | ); |
58 | |
59 | return $config; |
60 | } |
61 | } |
62 | |
63 | $report->add( |
64 | common_report_Report::createSuccess('To repeat this process to other units please provide -rp flag') |
65 | ); |
66 | |
67 | return null; |
68 | } |
69 | } |