aboutsummaryrefslogtreecommitdiff
path: root/api/settings/index.js
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-06-22 19:37:37 +0300
committerkaotisk <kaotisk@arching-kaos.org>2024-06-22 19:37:37 +0300
commitf4bfb970713a9599df193bc14348e2b406165392 (patch)
treed9b302953d1a973a40a03811105266229bc1bc4e /api/settings/index.js
parent2043e733c9d1a2ad5c9f4a91a422b13656e12f05 (diff)
downloadarching-kaos-tools-f4bfb970713a9599df193bc14348e2b406165392.tar.gz
arching-kaos-tools-f4bfb970713a9599df193bc14348e2b406165392.tar.bz2
arching-kaos-tools-f4bfb970713a9599df193bc14348e2b406165392.zip
api: Gets settings from ak-settings now
Diffstat (limited to 'api/settings/index.js')
-rw-r--r--api/settings/index.js33
1 files changed, 28 insertions, 5 deletions
diff --git a/api/settings/index.js b/api/settings/index.js
index f71a66c..49b4084 100644
--- a/api/settings/index.js
+++ b/api/settings/index.js
@@ -1,6 +1,29 @@
-module.exports = {
- PORT: 8610,
- URL_PREFIX : "/v0",
- DEF_PROTO : "http://",
- LOCAL_IP : "127.0.0.1"
+const { spawnSync } = require('child_process');
+
+function get_api_bindToIP_value()
+{
+ const command = spawnSync("ak-settings", ["--get", "api.bindToIP"]);
+ var ip_to_bind_onto = command.stdout;
+ if ( command.status !== 0 ) {
+ return 1;
+ } else {
+ return ip_to_bind_onto;
+ }
}
+
+function return_settings()
+{
+ const ip = get_api_bindToIP_value();
+ const port = 8610;
+ const url_prefix = "/v0";
+ const protocol = "http://";
+
+ return JSON.parse(JSON.stringify({
+ "DEF_PROTO": `${protocol}`,
+ "LOCAL_IP": `${ip}`,
+ "PORT": `${port}`,
+ "URL_PREFIX": `${url_prefix}`
+ }));
+}
+
+module.exports = return_settings;