Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 23
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
RestExecution
0.00% covered (danger)
0.00%
0 / 23
0.00% covered (danger)
0.00%
0 / 1
56
0.00% covered (danger)
0.00%
0 / 1
 unstop
0.00% covered (danger)
0.00%
0 / 23
0.00% covered (danger)
0.00%
0 / 1
56
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 (under the project TAO-PRODUCT);
19 *
20 *
21 */
22
23namespace oat\taoDelivery\controller;
24
25use oat\taoDelivery\model\execution\DeliveryExecution;
26use oat\taoDelivery\model\execution\ServiceProxy;
27use oat\taoDelivery\model\execution\StateServiceInterface;
28
29/**
30 * Manipulate with executions over REST
31 */
32class RestExecution extends \tao_actions_RestController
33{
34    /**
35     * Allows to resume terminated/finished executions
36     */
37    public function unstop()
38    {
39        try {
40            if ($this->getRequestMethod() != \Request::HTTP_POST) {
41                throw new \common_exception_NotImplemented('Only POST method is accepted to request this service.');
42            }
43
44            if (!$this->hasRequestParameter('deliveryExecution')) {
45                $this->returnFailure(
46                    new \common_exception_MissingParameter(
47                        'At least one mandatory parameter was required but found missing in your request'
48                    )
49                );
50            }
51
52            $reason = 'Automatically unstopped by REST call';
53
54            if ($this->hasRequestParameter('reason')) {
55                $reason = $this->getRequestParameter('reason');
56            }
57            /** @var StateServiceInterface $deliveryExecutionStateService */
58            $deliveryExecutionStateService = $this->getServiceLocator()->get(StateServiceInterface::SERVICE_ID);
59
60            /** @var DeliveryExecution $deliveryExecution */
61            $deliveryExecution = ServiceProxy::singleton()->getDeliveryExecution(
62                $this->getRequestParameter('deliveryExecution')
63            );
64
65            if (!$deliveryExecution->exists()) {
66                throw new \common_exception_NotFound('Delivery Execution not found');
67            }
68            $result = $deliveryExecutionStateService->reactivateExecution($deliveryExecution, $reason);
69            if ($result) {
70                $this->returnSuccess('Unstop successful');
71            } else {
72                throw new \common_Exception('Impossible to restore execution state');
73            }
74        } catch (\Exception $ex) {
75            $this->returnFailure($ex);
76        }
77    }
78}