summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/inc/infopanel.inc.php
blob: b0ee0d5608787733e4f0c5425d194b6356a8a0e2 (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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<?php

class InfoPanel
{

	/**
	 * Gets the config of the location.
	 *
	 * @param int $locationID ID of the location
	 * @param mixed $config the panel config will be returned here
	 * @return string|bool paneltype, false if not exists
	 */
	public static function getConfig($paneluuid, &$config)
	{
		$panel = Database::queryFirst('SELECT panelname, panelconfig, paneltype, locationids FROM locationinfo_panel WHERE paneluuid = :paneluuid',
			compact('paneluuid'));

		if ($panel === false) {
			return false;
		}

		$config = LocationInfo::defaultPanelConfig($panel['paneltype']);

		if ($panel['paneltype'] === 'URL') {
			// Shortcut for URL redirect
			$config = json_decode($panel['panelconfig'], true) + $config;
			return $panel['paneltype'];
		}

		$locations = Location::getLocationsAssoc();
		$overrides = false;

		if (!empty($panel['panelconfig'])) {
			$json = json_decode($panel['panelconfig'], true);
			if (is_array($json)) {
				// Put location-specific overrides in separate variable for later use
				if (isset($json['overrides']) && is_array($json['overrides'])) {
					$overrides = $json['overrides'];
				}
				unset($json['overrides']);
				$config = $json + $config;
			}
		}
		if (isset($config['showtitle']) && $config['showtitle']) {
			$config['title'] = $panel['title'];
		}
		$config['locations'] = array();
		$lids = array_map('intval', explode(',', $panel['locationids']));
		// Locations -
		if ($panel['paneltype'] === 'SUMMARY') {
			$lids = Location::getRecursiveFlat($lids);
			$lids = array_keys($lids);
			foreach ($lids as $lid) {
				$config['locations'][$lid] = array('id' => $lid);
			}
		}
		if ($panel['paneltype'] === 'DEFAULT') {
			foreach ($lids as $lid) {
				$config['locations'][$lid] = array(
					'id' => $lid,
					'name' => isset($locations[$lid]) ? $locations[$lid]['locationname'] : 'noname00.pas',
				);
				// Now apply any overrides from above
				if (isset($overrides[$lid]) && is_array($overrides[$lid])) {
					$config['locations'][$lid]['config'] = $overrides[$lid];
				}
			}
			self::appendMachineData($config['locations'], $lids, true, $config['hostname']);
		}
		self::appendOpeningTimes($config['locations'], $lids);

		$config['locations'] = array_values($config['locations']);
		$config['time'] = date('Y-n-j-G-') . (int)date('i') . '-' . (int)(date('s'));

		return $panel['paneltype'];
	}

	/**
	 * 	{"language":"de","mode":1,"vertical":true,"eco":false,"scaledaysauto":true,"daystoshow":7,"rotation":0,"scale":56,"switchtime":10,"calupdate":120,"roomupdate":20,
	 * "overrides": { "12" : { "mode":4} }
	 * Gets the location info of the given locations.
	 * Append to passed array which is expected to
	 * map location ids to properties of that location.
	 * A new key 'machines' will be created in each
	 * entry of $array that will take all the machine data.
	 *
	 * @param array $array location list to populate with machine data
	 * @param bool $withPosition Defines if coords should be included or not.
	 */
	public static function appendMachineData(&$array, $idList = false, $withPosition = false, $withHostname = false)
	{
		if (empty($array) && $idList === false)
			return;
		if ($idList === false) {
			$idList = array_keys($array);
		}

		$ignoreList = array();
		if (Module::isAvailable('runmode')) {
			// Ignore clients with special runmode not marked as still being a client
			$ignoreList = RunMode::getAllClients(false, false);
		}

		$extraCols = '';
		if ($withPosition) {
			$extraCols .= 'm.position,';
		}
		if ($withHostname) {
			$extraCols .= 'm.hostname,';
		}
		$query = "SELECT m.locationid, m.machineuuid, m.hostname, $extraCols m.logintime, m.lastseen, m.lastboot, m.state FROM machine m
				WHERE m.locationid IN (:idlist)";
		$dbquery = Database::simpleQuery($query, array('idlist' => $idList));

		// Iterate over matching machines
		while ($row = $dbquery->fetch(PDO::FETCH_ASSOC)) {
			if (isset($ignoreList[$row['machineuuid']]))
				continue;
			settype($row['locationid'], 'int');
			if (!isset($array[$row['locationid']])) {
				$array[$row['locationid']] = array('id' => $row['locationid'], 'machines' => array());
			}
			if (!isset($array[$row['locationid']]['machines'])) {
				$array[$row['locationid']]['machines'] = array();
			}
			// Compact the pc data in one array.
			$pc = array('id' => $row['machineuuid']);
			if ($withPosition && !empty($row['position'])) {
				$position = json_decode($row['position'], true);
				if (isset($position['gridCol']) && isset($position['gridRow'])) {
					$pc['x'] = $position['gridCol'];
					$pc['y'] = $position['gridRow'];
					if (!empty($position['overlays']) && is_array($position['overlays'])) {
						$pc['overlays'] = $position['overlays'];
					}
				}
			}
			if ($withHostname) {
				if (ip2long($row['hostname']) !== false) {
					$pc['host'] = $row['hostname'];
				} else {
					$i = strpos($row['hostname'], '.');
					if ($i === false) {
						$pc['host'] = $row['hostname'];
					} else {
						$pc['host'] = substr($row['hostname'], 0, $i);
					}
				}
			}
			$pc['pcState'] = LocationInfo::getPcState($row);
			//$pc['pcState'] = ['BROKEN', 'OFFLINE', 'IDLE', 'OCCUPIED', 'STANDBY'][mt_rand(0,4)]; // XXX

			// Add the array to the machines list.
			$array[$row['locationid']]['machines'][] = $pc;
		}
	}

	/**
	 * Gets the Opening time of the given locations.
	 *
	 * @param array $array list of locations, indexed by locationId
	 * @param int[] $idList list of locations
	 */
	public static function appendOpeningTimes(&$array, $idList)
	{
		// First, lets get all the parent ids for the given locations
		// in case we need to get inherited opening times
		$allIds = self::getLocationsWithParents($idList);
		if (empty($allIds))
			return;
		$res = Database::simpleQuery("SELECT locationid, openingtime FROM locationinfo_locationconfig
		WHERE locationid IN (:lids)", array('lids' => $allIds));
		$openingTimes = array();
		while ($row = $res->fetch(PDO::FETCH_ASSOC)) {
			$openingTimes[(int)$row['locationid']] = $row;
		}
		// Now we got all the calendars for locations and parents
		// Iterate over the locations we're actually interested in
		$locations = Location::getLocationsAssoc();
		foreach ($idList as $locationId) {
			if (empty($locationId))
				continue;
			// Start checking at actual location...
			$currentId = $locationId;
			while ($currentId !== 0) {
				if (!empty($openingTimes[$currentId]['openingtime'])) {
					$cal = json_decode($openingTimes[$currentId]['openingtime'], true);
					if (is_array($cal)) {
						$cal = self::formatOpeningtime($cal);
					}
					if (!empty($cal)) {
						// Got a valid calendar
						if (!isset($array[$locationId])) {
							$array[$locationId] = array('id' => $locationId);
						}
						$array[$locationId]['openingtime'] = $cal;
						break;
					}
				}
				// Keep trying with parent
				if (!isset($locations[$currentId]))
					break;
				$currentId = $locations[$currentId]['parentlocationid'];
			}
		}
		return;
	}


	/**
	 * Returns all the passed location ids and appends
	 * all their direct and indirect parent location ids.
	 *
	 * @param int[] $idList location ids
	 * @return  int[] more location ids
	 */
	private static function getLocationsWithParents($idList)
	{
		$locations = Location::getLocationsAssoc();
		$allIds = $idList;
		foreach ($idList as $id) {
			if (isset($locations[$id]) && isset($locations[$id]['parents'])) {
				$allIds = array_merge($allIds, $locations[$id]['parents']);
			}
		}
		return array_map('intval', $allIds);
	}

// ########## <Openingtime> ##########

	/**
	 * Format the openingtime in the frontend needed format.
	 * One key per week day, which contains an array of {
	 * 'HourOpen' => hh, 'MinutesOpen' => mm,
	 * 'HourClose' => hh, 'MinutesClose' => mm }
	 *
	 * @param array $openingtime The opening time in the db saved format.
	 * @return mixed The opening time in the frontend needed format.
	 */
	private static function formatOpeningtime($openingtime)
	{
		$result = array();
		foreach ($openingtime as $entry) {
			$openTime = explode(':', $entry['openingtime']);
			$closeTime = explode(':', $entry['closingtime']);
			if (count($openTime) !== 2 || count($closeTime) !== 2)
				continue;
			$convertedTime = array(
				'HourOpen' => $openTime[0],
				'MinutesOpen' => $openTime[1],
				'HourClose' => $closeTime[0],
				'MinutesClose' => $closeTime[1],
			);
			foreach ($entry['days'] as $day) {
				if (!isset($result[$day])) {
					$result[$day] = array();
				}
				$result[$day][] = $convertedTime;
			}
		}
		return $result;
	}

}