summaryrefslogtreecommitdiffstats
path: root/modules/ipxe.inc.php
blob: 869f4c72368ba91bd9501eb59d868069e60611b4 (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
<?php

User::load();

if (!User::hasPermission('superadmin')) {
	Message::addError('no-permission');
	Util::redirect('?do=main');
}

if (isset($_POST['action'])) {
	if ($_POST['action'] === 'compile') {
		if (!Util::verifyToken()) {
			Util::redirect('?do=main');
		}
	}
}

function render_module()
{
	$ips = array();
	$current = CONFIG_IPXE_DIR . '/last-ip';
	if (file_exists($current)) $current = file_get_contents($current);
	exec('/bin/ip a', $retval);
	foreach ($retval as $ip) {
		if (preg_match('#inet (\d+\.\d+\.\d+\.\d+)/\d+.*scope#', $ip, $out) && $out[1] !== '127.0.0.1') {
			$ips[] = array(
				'ip'       => $out[1],
				'current'  => ($out[1] == $current)
			);
		}
	}
	Render::addTemplate('page-ipxe', array('ips' => $ips, 'token' => Session::get('token')));
}