summaryrefslogtreecommitdiffstats
path: root/modules-available/baseconfig/api.inc.php
blob: a4024c5ee3b8b07b1cda419f92f4c2641a5246fd (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
<?php

$ip = $_SERVER['REMOTE_ADDR'];
if (substr($ip, 0, 7) === '::ffff:') {
	$ip = substr($ip, 7);
}

$uuid = Request::any('uuid', false, 'string');
if ($uuid !== false && strlen($uuid) !== 36) {
	$uuid = false;
}

class ConfigHolder
{
	private static $config = [];

	private static $context = '';

	public static function setContext($name)
	{
		self::$context = $name;
	}

	public static function addArray($array, $prio = 0)
	{
		foreach ($array as $key => $value) {
			self::add($key, $value, $prio);
		}
	}

	public static function add($key, $value, $prio = 0)
	{
		if (!isset(self::$config[$key])) {
			self::$config[$key] = [];
		}
		$new = [
			'prio' => $prio,
			'value' => $value,
			'context' => self::$context,
		];
		if (empty(self::$config[$key]) || self::$config[$key][0]['prio'] > $prio) {
			// Existing is higher, append new one
			array_push(self::$config[$key], $new);
		} else {
			// New one has highest prio or matches existing, put in front
			array_unshift(self::$config[$key], $new);
		}
	}

	public static function get($key)
	{
		if (!isset(self::$config[$key]))
			return false;
		return self::$config[$key][0]['value'];
	}

	public static function getConfig()
	{
		$ret = [];
		foreach (self::$config as $key => $list) {
			if ($list[0]['value'] === false)
				continue;
			$ret[$key] = $list[0]['value'];
		}
		return $ret;
	}

	public static function outputConfig()
	{
		foreach (self::$config as $key => $list) {
			echo '##', $key, "\n";
			foreach ($list as $pos => $item) {
				echo '# (', $item['context'], ':', $item['prio'], ')';
				if ($pos != 0 || $item['value'] === false) {
					if ($pos == 0) {
						echo " <disabled>\n";
					} else {
						echo " <overridden>\n";
					}
					continue;
				}
				echo "⤵\n", $key, "='", escape($item['value']), "'\n";
			}
		}
	}

}

/**
 * Escape given string so it is a valid string in sh that can be surrounded
 * by single quotes ('). This basically turns _'_ into _'"'"'_
 *
 * @param string $string input
 * @return string escaped sh string
 */
function escape($string)
{
	return str_replace("'", "'\"'\"'", $string);
}

/*
 * We gather all config variables here. First, let other modules generate
 * their desired config vars. Afterwards, add the global config vars from
 * db. If a variable is already set, it will not be overridden by the
 * global setting.
 */

function handleModule($file, $ip, $uuid) // Pass ip and uuid instead of global to make them read only
{
	$configVars = [];
	include_once $file;
	ConfigHolder::addArray($configVars, 0);
}

// Handle any hooks by other modules first
// other modules should generally only populate $configVars
foreach (glob('modules/*/baseconfig/getconfig.inc.php') as $file) {
	preg_match('#^modules/([^/]+)/#', $file, $out);
	$mod = Module::get($out[1]);
	if ($mod === false)
		continue;
	$mod->activate();
	foreach ($mod->getDependencies() as $dep) {
		$depFile = 'modules/' . $dep . '/baseconfig/getconfig.inc.php';
		if (file_exists($depFile) && Module::isAvailable($dep)) {
			ConfigHolder::setContext($dep);
			handleModule($depFile, $ip, $uuid);
		}
	}
	ConfigHolder::setContext($out[1]);
	handleModule($file, $ip, $uuid);
}

// Rest is handled by module
$defaults = BaseConfigUtil::getVariables();

// Dump global config from DB
ConfigHolder::setContext('<global>');
$res = Database::simpleQuery('SELECT setting, value, enabled FROM setting_global');
while ($row = $res->fetch(PDO::FETCH_ASSOC)) {
	if (!isset($defaults[$row['setting']]))
		continue; // Setting is not defined in any <module>/baseconfig/settings.json
	if ($row['enabled'] != 1) {
		// Setting is disabled
		ConfigHolder::add($row['setting'], false, -1);
	} else {
		ConfigHolder::add($row['setting'], $row['value'], -1);
	}
}

// Fallback to default values from json files
ConfigHolder::setContext('<default>');
foreach ($defaults as $setting => $value) {
	ConfigHolder::add($setting, $value['defaultvalue'], -1000);
}

// All done, now output

if (Request::any('save') === 'true') {
	// output AND save to disk: Generate contents
	$lines = '';
	foreach (ConfigHolder::getConfig() as $setting => $value) {
		$lines .= $setting . "='" . escape($value) . "'\n";
	}
	// Save to all the locations
	$data = Property::getVersionCheckInformation();
	if (is_array($data) && isset($data['systems'])) {
		foreach ($data['systems'] as $system) {
			$path = CONFIG_HTTP_DIR . '/' . $system['id'] . '/config';
			if (file_put_contents($path, $lines) > 0) {
				echo "# Saved config to $path\n";
			} else {
				echo "# Error saving config to $path\n";
			}
			echo "SLX_NOW='", time(), "'\n";
		}
	}
	// Output to browser
	echo $lines;
} else {
	// Only output to client
	ConfigHolder::add('SLX_NOW', time(), PHP_INT_MAX);
	ConfigHolder::outputConfig();
}

// For quick testing or custom extensions: Include external file that should do nothing
// more than outputting more key-value-pairs. It's expected in the webroot of slxadmin
if (file_exists('client_config_additional.php')) @include('client_config_additional.php');