diff options
-rw-r--r-- | api/routes/getMrk/index.js | 38 | ||||
-rw-r--r-- | api/routes/getTr/index.js | 37 |
2 files changed, 0 insertions, 75 deletions
diff --git a/api/routes/getMrk/index.js b/api/routes/getMrk/index.js deleted file mode 100644 index 92f8c1e..0000000 --- a/api/routes/getMrk/index.js +++ /dev/null @@ -1,38 +0,0 @@ -const fs = require("fs"); -const config = require("../../config"); - -/* - * Gets a local merkle leaf - * - * Returns: - * the merkle leaf - * - */ -function fetchFmrk(mrk, res){ - res.set('Content-Type', 'application/json'); - const path = config.workDir+"/fmrk/"+mrk; - // console.log(path) - try { - if(fs.existsSync(path)){ - res.send(fs.readFileSync(path)); - } - } catch (error) { - res.send({"error":error.message}); - } -}; - -module.exports = (req, res) => { - console.log(req.params) - res.set('Content-Type', 'application/json'); - if ( (req.params.mrk) && typeof req.params.mrk === "string" && req.params.mrk.length === 128 ){ - regex= /[a-f0-9]{128}/; - if (regex.test(req.params.mrk)){ - let mrk = req.params.mrk; - fetchFmrk(mrk,res); - } else { - res.send({error:"Invalid data: regexp failed to pass"}); - } - } else { - res.send({error:"Invalid data: no valid zblock was provided"}); - } -} diff --git a/api/routes/getTr/index.js b/api/routes/getTr/index.js deleted file mode 100644 index 11ef38e..0000000 --- a/api/routes/getTr/index.js +++ /dev/null @@ -1,37 +0,0 @@ -const fs = require("fs"); -const config = require("../../config"); - -/* - * Gets a file chunk - * - * Returns: - * the chunk - * - */ -function fetchFtr(tr, res){ - res.set('Content-Type', 'application/json'); - const path = config.workDir+"/ftr/"+tr; - try { - if(fs.existsSync(path)){ - res.send(fs.readFileSync(path)); - } - } catch (error) { - res.send({"error":error.message}); - } -}; - -module.exports = (req, res) => { - console.log(req.params) - res.set('Content-Type', 'application/json'); - if ( (req.params.tr) && typeof req.params.tr === "string" && req.params.tr.length === 128 ){ - regex= /[a-f0-9]{128}/; - if (regex.test(req.params.tr)){ - let tr = req.params.tr; - fetchFtr(tr,res); - } else { - res.send({error:"Invalid data: regexp failed to pass"}); - } - } else { - res.send({error:"Invalid data: no valid zblock was provided"}); - } -} |