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
|
<?php
class SubPage
{
public static function doPreprocess()
{
$action = Request::post('action', false, 'string');
if ($action === 'exec') {
self::execExec();
}
}
private static function execExec()
{
$uuids = array_values(Request::post('uuid', Request::REQUIRED, 'array'));
$machines = RebootUtils::getFilteredMachineList($uuids, 'action.exec');
if (empty($machines))
return;
RebootUtils::sortRunningFirst($machines);
$script = preg_replace('/\r\n?/', "\n", Request::post('script', Request::REQUIRED, 'string'));
$task = RebootControl::runScript($machines, $script);
if (Taskmanager::isTask($task)) {
Util::redirect("?do=rebootcontrol&show=task&what=task&taskid=" . $task["id"]);
}
}
/*
* Render
*/
public static function doRender()
{
$what = Request::get('what', 'list', 'string');
if ($what === 'prepare') {
self::showPrepare();
}
}
private static function showPrepare()
{
$id = Request::get('id', Request::REQUIRED, 'int');
$machines = Session::get('exec-' . $id);
if (!is_array($machines)) {
Message::addError('unknown-exec-job', $id);
return;
}
Session::set('exec-' . $id, false);
Render::addTemplate('exec-enter-command', ['clients' => $machines, 'id' => $id]);
}
public static function doAjax()
{
}
}
|