summaryrefslogtreecommitdiffstats
path: root/modules-available/sysconfig/api.inc.php
diff options
context:
space:
mode:
authorSimon Rettberg2016-06-22 17:56:04 +0200
committerSimon Rettberg2016-06-22 17:56:04 +0200
commita6a484ea37aeb91f848c11cb818e2d7d4351d391 (patch)
tree03cc7b9df8dabf61bdb1bc84137601ce187339ef /modules-available/sysconfig/api.inc.php
parent[location] Support passing array of selected locs to getLocations() (diff)
downloadslx-admin-a6a484ea37aeb91f848c11cb818e2d7d4351d391.tar.gz
slx-admin-a6a484ea37aeb91f848c11cb818e2d7d4351d391.tar.xz
slx-admin-a6a484ea37aeb91f848c11cb818e2d7d4351d391.zip
[locations/sysconfig] Implement location specific sysconfig
Diffstat (limited to 'modules-available/sysconfig/api.inc.php')
-rw-r--r--modules-available/sysconfig/api.inc.php78
1 files changed, 78 insertions, 0 deletions
diff --git a/modules-available/sysconfig/api.inc.php b/modules-available/sysconfig/api.inc.php
new file mode 100644
index 00000000..556e99f3
--- /dev/null
+++ b/modules-available/sysconfig/api.inc.php
@@ -0,0 +1,78 @@
+<?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;
+}
+$locationId = false;
+if (Module::isAvailable('locations')) {
+ $locationId = Location::getFromIpAndUuid($ip, $uuid);
+ if ($locationId !== false) {
+ $locationChain = Location::getLocationRootChain($locationId);
+ $locationChain[] = 0;
+ }
+}
+if ($locationId === false) {
+ $locationId = 0;
+ $locationChain = array(0);
+}
+
+// What we do if we can't supply the requested config
+function deliverEmpty($message)
+{
+ EventLog::failure($message);
+ Header('HTTP/1.1 404 Not found');
+ die('Config file could not be found or read!');
+}
+
+// Get config module path
+
+// We get all the configs for the whole location chain up to root
+$res = Database::simpleQuery("SELECT c.title, c.filepath, c.status, cl.locationid FROM configtgz c"
+ . " INNER JOIN configtgz_location cl USING (configid)"
+ . " WHERE cl.locationid IN (" . implode(',', $locationChain) . ")");
+$best = 1000;
+$row = false;
+while ($r = $res->fetch(PDO::FETCH_ASSOC)) {
+ settype($r['locationid'], 'int');
+ $index = array_search($r['locationid'], $locationChain);
+ if ($index === false || $index > $best)
+ continue;
+ if (!file_exists($r['filepath'])) {
+ if ($r['locationid'] === 0) {
+ EventLog::failure("The global config.tgz '{$r['title']}' was not found at '{$r['filepath']}'. Please regenerate the system configuration");
+ } else {
+ EventLog::warning("config.tgz '{$r['title']}' for location $locationId not found at '{$r['filepath']}', trying fallback....");
+ }
+ continue;
+ }
+ $best = $index;
+ $row = $r;
+}
+
+if ($row === false) {
+ // TODO Not found in DB
+ deliverEmpty("No config.tgz for location $locationId found");
+}
+
+if (!file_exists($row['filepath'])) {
+ // TODO Does not exist
+ deliverEmpty();
+}
+
+Header('Content-Type: application/gzip');
+Header('Content-Disposition: attachment; filename=' . Util::sanitizeFilename($row['title']) . '.tgz');
+$ret = readfile($row['filepath']);
+
+if ($ret === false || $ret === 0) {
+ // TODO didn't send anything/everything
+ // Cannot deliver empty, don't know what has been send already
+ EventLog::warning("Could not deliver config.tgz to client $ip: readfile() returned " . ($ret === false ? 'false' : $ret));
+}
+
+exit; \ No newline at end of file