summaryrefslogtreecommitdiffstats
path: root/modules-available/serversetup-bwlp-ipxe/api.inc.php
blob: 4ca9fdec81cb25a4be53456fd28b03001479010e (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
<?php

(function() {
	$type = Request::any('type');
	if ($type === 'bash') {
		$builder = new ScriptBuilderBash();
	} else {
		$builder = new ScriptBuilderIpxe();
	}
	$bootEntryId = Request::get('beid', false, 'string');
	if ($bootEntryId !== false) {
		$bootEntryId = Util::cleanUtf8($bootEntryId);
	}
	$entryId = Request::get('entryid', false, 'int');
	if ($bootEntryId !== false) {
		$entry = BootEntry::fromDatabaseId($bootEntryId);
		$data = $builder->getBootEntry($entry);
	} elseif ($entryId !== false) {
		$entry = MenuEntry::get($entryId);
		$data = $builder->getMenuEntry($entry);
	} else {
		// Get bootstrap code if required...
		$data = $builder->bootstrapLive();
		if ($data === false) {
			// ...otherwise, generate normal code
			$menuId = Request::get('menuid', false, 'int');
			if ($menuId !== false) {
				$menu = IPxeMenu::get($menuId, true);
			} else {
				$menu = IPxeMenu::forClient($builder->clientIp(), $builder->uuid());
			}
			$data = null;
			if ($menu->itemCount() === 1 && $menu->timeoutMs() === 0) {
				// One entry, no timeout -- direct boot
				$entry = $menu->defaultEntry();
				if ($entry !== null) {
					$data = $builder->getMenuEntry($entry);
				}
			}
			if ($data === null) {
				// Show menu
				$data = $builder->getMenu($menu, true);
			}
		}
	}
	$builder->output($data);
})();