Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
ProctoringDeliveryDeleteService
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 1
12
0.00% covered (danger)
0.00%
0 / 1
 getDeliveryExecutions
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 1
12
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
22namespace oat\taoProctoring\model\execution;
23
24use core_kernel_classes_Resource;
25use oat\taoDeliveryRdf\model\Delete\DeliveryDeleteService;
26use oat\taoProctoring\model\monitorCache\DeliveryMonitoringService;
27use common_report_Report as Report;
28
29class ProctoringDeliveryDeleteService extends DeliveryDeleteService
30{
31    /**
32     * @param core_kernel_classes_Resource $deliveryResource
33     * @return array
34     * @throws \common_exception_Error
35     */
36    protected function getDeliveryExecutions(core_kernel_classes_Resource $deliveryResource)
37    {
38        $executions = [];
39        $serviceProxy = $this->getServiceProxy();
40        /** @var DeliveryMonitoringService $deliveryMonitoringService */
41        $deliveryMonitoringService = $this->getServiceLocator()->get(DeliveryMonitoringService::SERVICE_ID);
42
43        $monitoringExecutions = $deliveryMonitoringService->find([
44            DeliveryMonitoringService::DELIVERY_ID => $deliveryResource->getUri()
45        ]);
46
47        foreach ($monitoringExecutions as $data) {
48            try {
49                $rawData = $data->get();
50                $executions[] = $serviceProxy->getDeliveryExecution(
51                    $rawData[DeliveryMonitoringService::DELIVERY_EXECUTION_ID]
52                );
53            } catch (\Exception $exception) {
54                $this->report->add(Report::createFailure($exception->getMessage()));
55            }
56        }
57
58        return $executions;
59    }
60}