aboutsummaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-03-01 00:34:50 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-03-01 00:34:50 +0200
commit8323eaa985dcac1152e62df28903c643ce2c9f45 (patch)
tree7dfd012f5df7d9ff267f76ce48aecbcc1c6e2007 /api
parentf53340fa52437b7a4dbe06834f0cdf1233678c72 (diff)
downloadarching-kaos-tools-8323eaa985dcac1152e62df28903c643ce2c9f45.tar.gz
arching-kaos-tools-8323eaa985dcac1152e62df28903c643ce2c9f45.tar.bz2
arching-kaos-tools-8323eaa985dcac1152e62df28903c643ce2c9f45.zip
Added ak-logthis wrapper in API
Diffstat (limited to 'api')
-rw-r--r--api/config.js3
-rwxr-xr-xapi/index.js2
-rw-r--r--api/lib/akLogThis/index.js28
3 files changed, 32 insertions, 1 deletions
diff --git a/api/config.js b/api/config.js
index b26208c..68b66f9 100644
--- a/api/config.js
+++ b/api/config.js
@@ -19,7 +19,8 @@ const config = {
pairsFile : env.AK_ZPAIRSFILE,
peersFile : env.AK_ZPEERSFILE,
cacheDir : env.AK_CACHEDIR,
- minedBlocksDir: env.AK_MINEDBLOCKSDIR
+ minedBlocksDir: env.AK_MINEDBLOCKSDIR,
+ printDebug: env.AK_DEBUG
}
module.exports = config;
diff --git a/api/index.js b/api/index.js
index f572586..5fefe9f 100755
--- a/api/index.js
+++ b/api/index.js
@@ -7,10 +7,12 @@
*/
const config = require('./config');
+const akLogThis = require('./lib/akLogThis');
const DEFAULT_PORT = 8610;
const PORT = config.port || DEFAULT_PORT;
+akLogThis("INFO", "Daemon started")
/*
* Split the prefix of each API call in segments for better management
*
diff --git a/api/lib/akLogThis/index.js b/api/lib/akLogThis/index.js
new file mode 100644
index 0000000..8f8dded
--- /dev/null
+++ b/api/lib/akLogThis/index.js
@@ -0,0 +1,28 @@
+const { spawn } = require('child_process');
+const config = require('../../config')
+
+module.exports = (type, message) => {
+ const command = spawn(
+ "ak-logthis",
+ ["<ak-daemon>", "["+type+"]", message]
+ );
+
+ var buffer = "";
+ command.stdout.on("data", data => {
+ console.log(`stdout: ${data}`);
+ });
+
+ command.stderr.on("data", data => {
+ buffer = buffer + data;
+ });
+
+ command.on('error', (error) => {
+ console.log(`error: ${error.message}`);
+ });
+
+ command.on("close", code => {
+ // res.send(JSON.parse(buffer));
+ if (config.printDebug === "yes") console.log(buffer);
+ console.log(`child process exited with code ${code}`);
+ });
+};