From e2da6d2db20093ebd2a65aad35c9991ab1a02176 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Thu, 30 Mar 2023 01:09:30 +0300 Subject: Introducing an HTTP JSON API --- api/routes/getZChain/index.js | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 api/routes/getZChain/index.js (limited to 'api/routes/getZChain/index.js') diff --git a/api/routes/getZChain/index.js b/api/routes/getZChain/index.js new file mode 100644 index 0000000..6aaa5d9 --- /dev/null +++ b/api/routes/getZChain/index.js @@ -0,0 +1,29 @@ +const { spawn } = require('child_process'); + +/* + * Gets the local chain as minified version + * + * Returns: + * - A JSON array representing the nodes' arching-kaos-zchain + * + */ +module.exports = (req, res) => { + const command = spawn("ak-get-chain-minified"); + response_string = ""; + command.stdout.on("data", data => { + response_string = response_string + data; + }); + + command.stderr.on("data", data => { + console.log(`stderr: ${data}`); + }); + + command.on('error', (error) => { + console.log(`error: ${error.message}`); + }); + + command.on("close", code => { + res.send(JSON.parse(response_string)/*.reverse()*/); + console.log(`child process exited with code ${code}`); + }); +}; -- cgit v1.2.3