summaryrefslogtreecommitdiffstats
path: root/modules-available/rebootcontrol/pages/exec.inc.php
blob: 58053072679cfbbcf6f4938b2a64455ceb4b925c (plain) (blame)
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()
	{
		$id = Request::post('id', Request::REQUIRED, 'int');
		$machines = Session::get('exec-' . $id);
		if (!is_array($machines)) {
			Message::addError('unknown-exec-job', $id);
			return;
		}
		$script = 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;
		}
		Render::addTemplate('exec-enter-command', ['clients' => $machines, 'id' => $id]);
	}

	public static function doAjax()
	{

	}

}