diff options
Diffstat (limited to 'api/routes')
-rw-r--r-- | api/routes/getPeers/index.js | 30 | ||||
-rw-r--r-- | api/routes/index.js | 3 |
2 files changed, 33 insertions, 0 deletions
diff --git a/api/routes/getPeers/index.js b/api/routes/getPeers/index.js new file mode 100644 index 0000000..302f23a --- /dev/null +++ b/api/routes/getPeers/index.js @@ -0,0 +1,30 @@ +const { spawn } = require('child_process'); +const config = require('../../config'); +const fs = require('fs'); + +module.exports = (req, res) => { +// const command = spawn("ak-config", ["get-published"]); + const path = config.peersFile; + if(fs.existsSync(path)){ + res.send(fs.readFileSync(path)); + } else { + res.send({"error":"404"}) + } +// var buffer = ""; +// command.stdout.on("data", data => { +// buffer = buffer + 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(fs.Read)); +// console.log(`child process exited with code ${code}`); +// }); +}; diff --git a/api/routes/index.js b/api/routes/index.js index 3a2e413..8aa8ac0 100644 --- a/api/routes/index.js +++ b/api/routes/index.js @@ -14,6 +14,7 @@ const getZblock = require('./getZblock'); const getMrk = require('./getMrk'); const getTr = require('./getTr'); const getAkid = require('./getAkid'); +const getPeers = require('./getPeers'); const getInnerIPFSContent = require('./getInnerIPFSContent'); const corsOptions = { origin: '*', @@ -41,6 +42,8 @@ router.route(settings.URL_PREFIX+'/zchain').get(getZChain); router.route(settings.URL_PREFIX+'/zlatest').get(getZLatest); // Returns local node's akid router.route(settings.URL_PREFIX+'/akid').get(getAkid); +// Returns local node's peers +router.route(settings.URL_PREFIX+'/peers').get(getPeers); // Returns content router.route(settings.URL_PREFIX+'/content').get(getInnerIPFSContent); // Returns zblock |