-
Notifications
You must be signed in to change notification settings - Fork 28
/
history.php
276 lines (242 loc) · 12.5 KB
/
history.php
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Trigger workflow history.
*
* @package tool_trigger
* @copyright Peter Burnett <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once(__DIR__ . '/../../../config.php');
require_once($CFG->libdir . '/adminlib.php');
admin_externalpage_setup('tool_trigger_worfklowsettings', '', null, '', array('pagelayout' => 'report'));
$context = context_system::instance();
$PAGE->set_url(new moodle_url('/admin/tool/trigger/history.php'));
// Check for caps.
require_capability('tool/trigger:manageworkflows', $context);
$workflowid = required_param('workflow', PARAM_INT);
$runid = optional_param('run', null, PARAM_INT);
$download = optional_param('download', null, PARAM_TEXT);
$action = optional_param('action', null, PARAM_TEXT);
if (!empty($action)) {
$actionid = required_param('id', PARAM_INT);
}
$workflow = $DB->get_record('tool_trigger_workflows', ['id' => $workflowid], '*', MUST_EXIST);
if (!empty($action) && confirm_sesskey()) {
// Here we will handle page actions for steps and workflows.
$confirm = optional_param('confirm', false, PARAM_BOOL);
switch ($action) {
// Current config actions.
case 'rerunworkflowcurr':
// Rerun a workflow with current config.
if ($confirm) {
\tool_trigger\event_processor::execute_workflow_from_event_current($actionid);
} else {
$confirmurl = new moodle_url('/admin/tool/trigger/history.php');
$confirmurl->params(['confirm' => 1, 'workflow' => $workflowid, 'action' => $action, 'id' => $actionid]);
$cancelurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid]);
$string = get_string('rerunworkflowconfirm', 'tool_trigger');
}
break;
case 'rerunstepcurr':
// Rerun a step with current config for step.
if ($confirm) {
\tool_trigger\event_processor::execute_current_step($actionid);
} else {
$confirmurl = new moodle_url('/admin/tool/trigger/history.php');
$confirmurl->params(['confirm' => 1, 'workflow' => $workflowid,
'run' => $runid, 'action' => $action, 'id' => $actionid]);
$cancelurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid, 'run' => $runid]);
$string = get_string('rerunstepconfirm', 'tool_trigger');
}
break;
case 'rerunnextcurr':
// Rerun a step and next.
if ($confirm) {
\tool_trigger\event_processor::execute_step_and_continue_current($actionid);
} else {
$confirmurl = new moodle_url('/admin/tool/trigger/history.php');
$confirmurl->params(['confirm' => 1, 'workflow' => $workflowid,
'run' => $runid, 'action' => $action, 'id' => $actionid]);
$cancelurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid, 'run' => $runid]);
$string = get_string('rerunstepandnextconfirm', 'tool_trigger');
}
break;
case 'rerunfinishcurr':
// Rerun a step and finish workflow.
if ($confirm) {
// Call execute_step_and_continue_historic with the complete run flag set.
\tool_trigger\event_processor::execute_step_and_continue_current($actionid, true);
} else {
$confirmurl = new moodle_url('/admin/tool/trigger/history.php');
$confirmurl->params(['confirm' => 1, 'workflow' => $workflowid,
'run' => $runid, 'action' => $action, 'id' => $actionid]);
$cancelurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid, 'run' => $runid]);
$string = get_string('rerunstepandfinishconfirm', 'tool_trigger');
}
break;
case 'executenextcurr':
if ($confirm) {
\tool_trigger\event_processor::execute_next_step_current($actionid);
} else {
$confirmurl = new moodle_url('/admin/tool/trigger/history.php');
$confirmurl->params(['confirm' => 1, 'workflow' => $workflowid,
'run' => $runid, 'action' => $action, 'id' => $actionid]);
$cancelurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid, 'run' => $runid]);
$string = get_string('executenextconfirm', 'tool_trigger');
}
break;
// Historic actions.
case 'rerunworkflowhist':
// Rerun a workflow with current config.
if ($confirm) {
\tool_trigger\event_processor::execute_workflow_from_event_historic($actionid);
} else {
$confirmurl = new moodle_url('/admin/tool/trigger/history.php');
$confirmurl->params(['confirm' => 1, 'workflow' => $workflowid, 'action' => $action, 'id' => $actionid]);
$cancelurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid]);
$string = get_string('rerunworkflowconfirm', 'tool_trigger');
}
break;
case 'rerunstephist':
// Rerun a step.
if ($confirm) {
\tool_trigger\event_processor::execute_historic_step($actionid);
} else {
$confirmurl = new moodle_url('/admin/tool/trigger/history.php');
$confirmurl->params(['confirm' => 1, 'workflow' => $workflowid,
'run' => $runid, 'action' => $action, 'id' => $actionid]);
$cancelurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid, 'run' => $runid]);
$string = get_string('rerunstepconfirm', 'tool_trigger');
}
break;
case 'rerunnexthist':
// Rerun a step and next.
if ($confirm) {
\tool_trigger\event_processor::execute_step_and_continue_historic($actionid);
} else {
$confirmurl = new moodle_url('/admin/tool/trigger/history.php');
$confirmurl->params(['confirm' => 1, 'workflow' => $workflowid,
'run' => $runid, 'action' => $action, 'id' => $actionid]);
$cancelurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid, 'run' => $runid]);
$string = get_string('rerunstepandnextconfirm', 'tool_trigger');
}
break;
case 'rerunfinishhist':
// Rerun a step and finish workflow.
if ($confirm) {
// Call execute_step_and_continue_historic with the complete run flag set.
\tool_trigger\event_processor::execute_step_and_continue_historic($actionid, true);
} else {
$confirmurl = new moodle_url('/admin/tool/trigger/history.php');
$confirmurl->params(['confirm' => 1, 'workflow' => $workflowid,
'run' => $runid, 'action' => $action, 'id' => $actionid]);
$cancelurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid, 'run' => $runid]);
$string = get_string('rerunstepandfinishconfirm', 'tool_trigger');
}
break;
case 'executenexthist':
if ($confirm) {
\tool_trigger\event_processor::execute_next_step_historic($actionid);
} else {
$confirmurl = new moodle_url('/admin/tool/trigger/history.php');
$confirmurl->params(['confirm' => 1, 'workflow' => $workflowid,
'run' => $runid, 'action' => $action, 'id' => $actionid]);
$cancelurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid, 'run' => $runid]);
$string = get_string('executenextconfirm', 'tool_trigger');
}
break;
case 'rerunallcurr':
if ($confirm) {
\tool_trigger\event_processor::rerun_all_error_runs($workflowid);
} else {
$confirmurl = new moodle_url('/admin/tool/trigger/history.php');
$confirmurl->params(['confirm' => 1, 'action' => $action, 'id' => $actionid,
'workflow' => $workflowid, 'id' => $actionid]);
$cancelurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid, 'run' => $runid]);
$string = get_string('rerunallcurrconfirm', 'tool_trigger');
}
break;
case 'rerunallhist':
if ($confirm) {
\tool_trigger\event_processor::rerun_all_error_runs($workflowid, true);
} else {
$confirmurl = new moodle_url('/admin/tool/trigger/history.php');
$confirmurl->params(['confirm' => 1, 'action' => $action, 'id' => $actionid,
'workflow' => $workflowid, 'id' => $actionid]);
$cancelurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid, 'run' => $runid]);
$string = get_string('rerunallhistconfirm', 'tool_trigger');
}
break;
}
// If not confirmed, output the confirm page, with the params set in the switch, then exit.
if (!$confirm) {
echo $OUTPUT->header();
echo $OUTPUT->confirm($string, $confirmurl, $cancelurl);
echo $OUTPUT->footer();
exit();
} else {
// Redirect to a page with clean params to prevent accidental actions from reloads.
redirect(new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid, 'run' => $runid]));
}
}
// Manually inject navigation nodes based on the page params.
$navbarurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid]);
$PAGE->navbar->add(get_string('workflowviewhistory', 'tool_trigger'), $navbarurl);
if (!empty($runid)) {
$navbarurl = new moodle_url('/admin/tool/trigger/history.php',
['workflow' => $workflowid, 'run' => $runid]);
$PAGE->navbar->add(get_string('viewdetailedrun', 'tool_trigger'), $navbarurl);
}
// Params passed via the form, to be used as for filtering the results.
$filterparams = [
'workflow' => $workflowid,
'filteruser' => s(optional_param('filteruser', null, PARAM_TEXT)),
'filtercancelled' => optional_param('filtercancelled', null, PARAM_INT),
'filterdeferred' => optional_param('filterdeferred', null, PARAM_INT),
'filtererrored' => optional_param('filtererrored', null, PARAM_INT),
'filterpassed' => optional_param('filterpassed', null, PARAM_INT),
'filterfailed' => optional_param('filterfailed', null, PARAM_INT),
];
// Build the page output if not performing an action and being redirected.
$renderer = $PAGE->get_renderer('tool_trigger', 'workflowhistory');
if (!empty($download)) {
// Time to download.
$renderer->render_workflowhistory_table($workflowid, $filterparams, $download);
exit();
}
if (!$workflow->debug) {
\core\notification::add(
get_string('warningdebugging', 'tool_trigger', $workflowid),
\core\output\notification::NOTIFY_WARNING
);
}
// Generate the filter form before the output, such that the reset redirect will not throw a warning.
$filter = new \tool_trigger\output\workflowhistory\filter_form();
if ($filter->is_cancelled()) {
$baseurl = new moodle_url('/admin/tool/trigger/history.php', ['workflow' => $workflowid]);
redirect($baseurl);
}
echo $OUTPUT->header();
echo $OUTPUT->heading(get_string('workflowviewhistory', 'tool_trigger'));
if (empty($runid)) {
$filter->set_data($filterparams);
$filter->display();
$renderer->render_workflowhistory_table($workflowid, $filterparams);
} else {
$renderer->render_runhistory_table($workflowid, $runid);
}
echo $OUTPUT->footer();