1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
<?php
/**
* @copyright Copyright (c) 2016 Morris Jobke <hey@morrisjobke.de>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\WorkflowEngine\Controller;
use OCA\WorkflowEngine\Manager;
use OCP\AppFramework\Controller;
use OCP\AppFramework\Http;
use OCP\AppFramework\Http\JSONResponse;
use OCP\IRequest;
use OCP\WorkflowEngine\RegisterCheckEvent;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class FlowOperations extends Controller {
/** @var Manager */
protected $manager;
/** @var EventDispatcherInterface */
protected $dispatcher;
/**
* @param IRequest $request
* @param Manager $manager
* @param EventDispatcherInterface $dispatcher
*/
public function __construct(IRequest $request, Manager $manager, EventDispatcherInterface $dispatcher) {
parent::__construct('workflowengine', $request);
$this->manager = $manager;
$this->dispatcher = $dispatcher;
}
/**
* @NoCSRFRequired
*
* @return JSONResponse
*/
public function getChecks() {
$event = new RegisterCheckEvent();
$this->dispatcher->dispatch('OCP\WorkflowEngine\RegisterCheckEvent', $event);
return new JSONResponse($event->getChecks());
}
/**
* @NoCSRFRequired
*
* @param string $class
* @return JSONResponse
*/
public function getOperations($class) {
$operations = $this->manager->getOperations($class);
foreach ($operations as &$operation) {
$operation = $this->prepareOperation($operation);
}
return new JSONResponse($operations);
}
/**
* @param string $class
* @param string $name
* @param array[] $checks
* @param string $operation
* @return JSONResponse The added element
*/
public function addOperation($class, $name, $checks, $operation) {
try {
$operation = $this->manager->addOperation($class, $name, $checks, $operation);
$operation = $this->prepareOperation($operation);
return new JSONResponse($operation);
} catch (\UnexpectedValueException $e) {
return new JSONResponse($e->getMessage(), Http::STATUS_BAD_REQUEST);
}
}
/**
* @param int $id
* @param string $name
* @param array[] $checks
* @param string $operation
* @return JSONResponse The updated element
*/
public function updateOperation($id, $name, $checks, $operation) {
try {
$operation = $this->manager->updateOperation($id, $name, $checks, $operation);
$operation = $this->prepareOperation($operation);
return new JSONResponse($operation);
} catch (\UnexpectedValueException $e) {
return new JSONResponse($e->getMessage(), Http::STATUS_BAD_REQUEST);
}
}
/**
* @param int $id
* @return JSONResponse
*/
public function deleteOperation($id) {
$deleted = $this->manager->deleteOperation((int) $id);
return new JSONResponse($deleted);
}
/**
* @param array $operation
* @return array
*/
protected function prepareOperation(array $operation) {
$checkIds = json_decode($operation['checks']);
$checks = $this->manager->getChecks($checkIds);
$operation['checks'] = [];
foreach ($checks as $check) {
// Remove internal values
unset($check['id']);
unset($check['hash']);
$operation['checks'][] = $check;
}
return $operation;
}
}
|