Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 22 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 1 |
DeliveryUpdaterTask | |
0.00% |
0 / 22 |
|
0.00% |
0 / 3 |
42 | |
0.00% |
0 / 1 |
__invoke | |
0.00% |
0 / 8 |
|
0.00% |
0 / 1 |
6 | |||
updateDeliveryLabels | |
0.00% |
0 / 13 |
|
0.00% |
0 / 1 |
12 | |||
jsonSerialize | |
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) 2018 (original work) Open Assessment Technologies SA; |
19 | * |
20 | */ |
21 | |
22 | namespace oat\taoProctoring\model\Tasks; |
23 | |
24 | use oat\oatbox\extension\AbstractAction; |
25 | use oat\taoProctoring\model\monitorCache\DeliveryMonitoringService; |
26 | use common_report_Report as Report; |
27 | |
28 | /** |
29 | * Class DeliveryUpdaterTask |
30 | * @package oat\taoProctoring\model\Tasks |
31 | */ |
32 | class DeliveryUpdaterTask extends AbstractAction implements \JsonSerializable |
33 | { |
34 | /** |
35 | * @param array $params |
36 | * @return Report |
37 | * @throws \common_exception_Error |
38 | * @throws \common_exception_MissingParameter |
39 | */ |
40 | public function __invoke($params) |
41 | { |
42 | if (count($params) < 2) { |
43 | throw new \common_exception_MissingParameter(); |
44 | } |
45 | $resourceUri = array_shift($params); |
46 | $metadataValue = array_shift($params); |
47 | |
48 | $report = Report::createSuccess(); |
49 | $this->updateDeliveryLabels($resourceUri, $metadataValue); |
50 | $report->add(Report::createSuccess(__('Resource update task is completed'))); |
51 | return $report; |
52 | } |
53 | |
54 | /** |
55 | * @param string $resourceUri |
56 | * @param string $metadataValue |
57 | * @return bool |
58 | */ |
59 | public function updateDeliveryLabels($resourceUri, $metadataValue) |
60 | { |
61 | /** @var DeliveryMonitoringService $service */ |
62 | $service = $this->getServiceLocator()->get(DeliveryMonitoringService::SERVICE_ID); |
63 | |
64 | $deliveryExecutionsData = $service->find([ |
65 | DeliveryMonitoringService::DELIVERY_ID => $resourceUri, |
66 | ], []); |
67 | |
68 | foreach ($deliveryExecutionsData as $data) { |
69 | $data->update(DeliveryMonitoringService::DELIVERY_NAME, $metadataValue); |
70 | $success = $service->partialSave($data); |
71 | if (!$success) { |
72 | \common_Logger::w( |
73 | 'Monitor cache for delivery ' . $data[DeliveryMonitoringService::DELIVERY_EXECUTION_ID] |
74 | . ' could not be updated. Label has not been changed' |
75 | ); |
76 | } |
77 | } |
78 | return true; |
79 | } |
80 | /** |
81 | * @return mixed|string |
82 | */ |
83 | public function jsonSerialize() |
84 | { |
85 | return __CLASS__; |
86 | } |
87 | } |