From 2043e733c9d1a2ad5c9f4a91a422b13656e12f05 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Mon, 17 Jun 2024 05:12:50 +0300 Subject: Refactoring --- api/routes/getSBlock/index.js | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) (limited to 'api/routes/getSBlock') diff --git a/api/routes/getSBlock/index.js b/api/routes/getSBlock/index.js index e78c421..2fb8c80 100644 --- a/api/routes/getSBlock/index.js +++ b/api/routes/getSBlock/index.js @@ -8,15 +8,17 @@ const fs = require('fs'); const config = require("../../config.js"); module.exports = (req, res) => { + var args = req.url.split("/"); + var sblock = args[3]; regex= /[a-f0-9]{128}/ - if (regex.test(req.params.sblock)){ + if (regex.test(sblock)){ genesisreg = /0{128}/ - if (!genesisreg.test(req.params.sblock)){ - var path = config.minedBlocksDir+"/"+req.params.sblock; - const command = spawn("cat",[config.minedBlocksDir+"/"+req.params.sblock]); + if (!genesisreg.test(sblock)){ + var path = config.minedBlocksDir+"/"+sblock; + const command = spawn("cat",[config.minedBlocksDir+"/"+sblock]); response_string = ""; command.stdout.on("data", data => { - response_string = response_string+data; + response_string += data; }); command.stderr.on("data", data => { @@ -30,17 +32,21 @@ module.exports = (req, res) => { command.on("close", code => { if ( code === 0 ) { - res.send(JSON.parse(fs.readFileSync(path))); + res.writeHead(200, {'Content-Type': 'application/json'}); + res.end(JSON.stringify(JSON.parse(fs.readFileSync(path)))); } else { - res.send({"error":"Sblock not found"}) + res.writeHead(404, {'Content-Type': 'application/json'}); + res.end(JSON.stringify({error:"Sblock not found"})); } console.log(`child process exited with code ${code}`); }); } else { - res.send({sblock:"Genesis Block - Arching Kaos Net"}); + res.writeHead(200, {'Content-Type': 'application/json'}); + res.end(JSON.stringify({sblock:"Genesis Block - Arching Kaos Net"})); } } else { - res.send({"error":"No hash"}) + res.writeHead(404, {'Content-Type': 'application/json'}); + res.end(JSON.stringify({error:"No hash"})); } } -- cgit v1.2.3