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

abstract class BootEntryHook
{

	/**
	 * @var string -- set by ipxe, not module implementing hook
	 */
	public $moduleId = '';
	/**
	 * @var string -- set by ipxe, not module implementing hook
	 */
	public $checked = '';

	private $selectedId = '';

	private $data = [];

	/**
	 * @return string
	 */
	public abstract function name(): string;

	/**
	 * @return HookExtraField[]
	 */
	public abstract function extraFields(): array;

	public abstract function isValidId(string $id): bool;

	/**
	 * @return HookEntryGroup[]
	 */
	protected abstract function groupsInternal(): array;

	/**
	 * @return HookEntryGroup[]
	 */
	public final function groups(): array
	{
		$groups = $this->groupsInternal();
		foreach ($groups as $group) {
			foreach ($group->entries as $entry) {
				if ($entry->id === $this->selectedId) {
					$entry->selected = 'selected';
				}
			}
		}
		return $groups;
	}

	/**
	 * @return BootEntry|null the actual boot entry instance for given entry, null if invalid id
	 */
	public abstract function getBootEntryInternal(array $localData): ?BootEntry;

	public final function getBootEntry(string $jsonString): ?BootEntry
	{
		$data = json_decode($jsonString, true);
		return $this->getBootEntryInternal($data);
	}

	/**
	 * @param string $mixed either the plain ID if the entry to be marked as selected, or the JSON string representing
	 *          the entire entry, which must have a key called 'id' that will be used as the ID then.
	 */
	public function setSelected(string $mixed): void
	{
		$json = @json_decode($mixed, true);
		if (is_array($json)) {
			$id = $json['id'];
			$this->data = $json;
		} else {
			$id = $mixed;
		}
		$this->selectedId = $id;
	}

	/**
	 * @return string ID of entry that was marked as selected by setSelected()
	 */
	public function getSelected(): string
	{
		return $this->selectedId;
	}

	/**
	 * @return HookExtraField[]
	 */
	public function renderExtraFields(): array
	{
		$list = $this->extraFields();
		foreach ($list as $entry) {
			$entry->currentValue = $this->data[$entry->name] ?? $entry->default;
			$entry->hook = $this;
		}
		return $list;
	}

}

class HookEntryGroup
{
	/**
	 * @var string
	 */
	public $groupName;
	/**
	 * @var HookEntry[]
	 */
	public $entries;

	public function __construct($groupName, $entries)
	{
		$this->groupName = $groupName;
		$this->entries = $entries;
	}
}

class HookEntry
{
	/**
	 * @var string
	 */
	public $id;
	/**
	 * @var string
	 */
	public $name;
	/**
	 * @var bool
	 */
	public $valid;
	/**
	 * @var string if !valid, this will be the string 'disabled', empty otherwise
	 */
	public $disabled;
	/**
	 * @var string internal - to be set by ipxe module
	 */
	public $selected;

	public function __construct(string $id, string $name, bool $valid)
	{
		$this->id = $id;
		$this->name = $name;
		$this->valid = $valid;
		$this->disabled = $valid ? '' : 'disabled';
	}
}

class HookExtraField
{
	/**
	 * @var string ID of extra field, [a-z0-9\-] please. Must not be 'id'
	 */
	public $name;
	/**
	 * @var string type of field, use string, bool, or an array of predefined options
	 */
	public $type;
	/**
	 * @var mixed default value
	 */
	public $default;

	public $currentValue;

	/**
	 * @var BootEntryHook
	 */
	public $hook;

	public function __construct(string $name, string $type, $default)
	{
		$this->name = $name;
		$this->type = $type;
		$this->default = $default;
	}

	public function fromPost($typePrefix)
	{
		if (is_array($this->type)) {
			$val = Request::post('extra-' . $typePrefix . '-' . $this->name, '', 'array');
			if (!in_array($val, $this->type)) {
				$val = $this->default;
			}
		} else {
			$val = Request::post('extra-' . $typePrefix . '-' . $this->name, '', $this->type);
			settype($val, $this->type);
		}
		return $val;
	}

	public function html(): string
	{
		$fieldId = 'extra-' . $this->hook->moduleId . '-' . $this->name;
		$fieldText = htmlspecialchars(Dictionary::translateFileModule($this->hook->moduleId, 'module', 'ipxe-' . $this->name));
		if (is_array($this->type)) {
			$out = '<label for="' . $fieldId . '">' . $fieldText . '</label><select class="form-control" name="' . $fieldId . '" id="' . $fieldId . '">';
			foreach ($this->type as $entry) {
				$selected = ($entry === $this->currentValue) ? 'selected' : '';
				$out .= '<option ' . $selected . '>' . htmlspecialchars($entry) . '</option>';
			}
			$out .= '</select>';
			return $out;
		}
		if ($this->type === 'bool') {
			$checked = $this->currentValue ? 'checked' : '';
			return '<div class="checkbox"><input type="checkbox" id="' . $fieldId
				. '" name="' . $fieldId . '" ' . $checked . '><label for="' . $fieldId . '">'
				. $fieldText . '</label></div>';
		}
		// Default
		return '<label for="' . $fieldId . '">' . $fieldText . '</label>'
			. '<input class="form-control" type="text" id="' . $fieldId
			. '" name="' . $fieldId . '" value="' . htmlspecialchars($this->currentValue) . '">';
	}

}