From 6cb0efc1abeccd8f6a9c7ca7f209ff22c42341bd Mon Sep 17 00:00:00 2001 From: kaotisk Date: Fri, 1 Mar 2024 02:47:10 +0200 Subject: Renamed functions and routes receive* -> announce* szbk -> /v0/announce/zblock szch -> /v0/announce/zchain --- api/routes/announceZBlock/index.js | 29 ++++++++++++++++++++++ api/routes/announceZChain/index.js | 49 ++++++++++++++++++++++++++++++++++++++ api/routes/index.js | 8 +++---- api/routes/receiveZBlock/index.js | 28 ---------------------- api/routes/receiveZChain/index.js | 48 ------------------------------------- 5 files changed, 82 insertions(+), 80 deletions(-) create mode 100644 api/routes/announceZBlock/index.js create mode 100644 api/routes/announceZChain/index.js delete mode 100644 api/routes/receiveZBlock/index.js delete mode 100644 api/routes/receiveZChain/index.js (limited to 'api/routes') diff --git a/api/routes/announceZBlock/index.js b/api/routes/announceZBlock/index.js new file mode 100644 index 0000000..b395dbf --- /dev/null +++ b/api/routes/announceZBlock/index.js @@ -0,0 +1,29 @@ +/* + * Accepts a ZBLOCK! + * + * Checks: + * 1. Exists, + * 2. Length is 46 bytes, + * 3. Matches regular expression /Qm[A-Za-z0-9]{44}/ + * + * Returns: + * - error on failure + * - on success the string is processed for further + * validation to the function getvalidity() + * + */ +const getvalidity = require('../../validators/ZblockValidator') +module.exports = (req, res) => { + console.log(req); + console.log("okay we got called"); + if ( (req.body.zblock) && req.body.zblock.length === 46 ){ + regex= /Qm[A-Za-z0-9]{44}/; + if (regex.test(req.body.zblock)){ + getvalidity(req.body.zblock,res); + } else { + res.send({error:"Invalid data"}); + } + } else { + res.send({error:"Invalid data"}); + } +} diff --git a/api/routes/announceZChain/index.js b/api/routes/announceZChain/index.js new file mode 100644 index 0000000..092b6a9 --- /dev/null +++ b/api/routes/announceZChain/index.js @@ -0,0 +1,49 @@ +/* + * After NS validation went through we examine the return code + * of the application that run the test. + * + * Returns: + * - error on failure + * - on success we process with addNSEntriesToFile() + * + */ +function continuethingsNS(validitycode,sh,res,gotit){ + if (validitycode === 0){ + var entry = { + zchain: sh, + latest: JSON.parse(gotit).Path.replace('/ipfs/','') + }; + addNSEntriesToFile(entry,res); + } else { + res.send({error:"Invalid data"}); + } +} +/* + * Accepts a zchain + * + * Checks: + * 1. Exists, + * 2. Length is 62 bytes, + * 3. Matches regular expression /k51qzi5uqu5d[A-Za-z0-9]{50}/ + * + * Returns: + * - error on failure + * - on success the string is processed for further validation to the + * function getNSvalidity() + * + */ +const getNSvalidity = require('../../validators/ZchainValidator') + +module.exports = (req, res) => { + console.log(req); + if ( (req.body.zchain) && req.body.zchain.length === 62 ){//&& req.body.block_signature.length === 46){ + regex= /k51qzi5uqu5d[A-Za-z0-9]{50}/ + if (regex.test(req.body.zchain)){ // && regex.test(req.body.block_signature)){ + getNSvalidity(req.body.zchain,res); + } else { + res.send({error:"Invalid data"}); + } + } else { + res.send({error:"Invalid data"}); + } +} diff --git a/api/routes/index.js b/api/routes/index.js index cb3c584..f68e2e6 100644 --- a/api/routes/index.js +++ b/api/routes/index.js @@ -8,8 +8,8 @@ const getSLatest = require('./getSLatest'); const getZLatest = require('./getZLatest'); const getSBlock = require('./getSBlock'); const getZChain = require('./getZChain'); -const receiveZBlock = require('./receiveZBlock'); -const receiveZChain = require('./receiveZChain'); +const announceZBlock = require('./announceZBlock'); +const announceZChain = require('./announceZChain'); const getZblock = require('./getZblock'); const getMrk = require('./getMrk'); const getTr = require('./getTr'); @@ -53,9 +53,9 @@ router.route(settings.URL_PREFIX+'/mrk/:mrk').get(getMrk); // Returns a tr router.route(settings.URL_PREFIX+'/tr/:tr').get(getTr); // Send a block to the node (zchain block) -router.route(settings.URL_PREFIX+'/sblk').post(receiveZBlock); +router.route(settings.URL_PREFIX+'/announce/zblock').post(announceZBlock); // Send a zchain link to the node (refering to a valid zchain out there) -router.route(settings.URL_PREFIX+'/szch').post(receiveZChain); +router.route(settings.URL_PREFIX+'/announce/zchain').post(announceZChain); router.route('/*').get((req,res)=>{console.log(req.url);res.send({error:"404"})}); router.route('/*').post((req,res)=>{console.log(req.url);res.send({error:"404"})}); diff --git a/api/routes/receiveZBlock/index.js b/api/routes/receiveZBlock/index.js deleted file mode 100644 index 4f1ae3d..0000000 --- a/api/routes/receiveZBlock/index.js +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Accepts a ZBLOCK! - * - * Checks: - * 1. Exists, - * 2. Length is 46 bytes, - * 3. Matches regular expression /Qm[A-Za-z0-9]{44}/ - * - * Returns: - * - error on failure - * - on success the string is processed for further - * validation to the function getvalidity() - * - */ -const getvalidity = require('../../validators/ZblockValidator') -module.exports = (req, res) => { - console.log("okay we got called") - if ( (req.body.zblock) && req.body.zblock.length === 46 ){ - regex= /Qm[A-Za-z0-9]{44}/; - if (regex.test(req.body.zblock)){ - getvalidity(req.body.zblock,res); - } else { - res.send({error:"Invalid data"}); - } - } else { - res.send({error:"Invalid data"}); - } -} diff --git a/api/routes/receiveZChain/index.js b/api/routes/receiveZChain/index.js deleted file mode 100644 index a955b79..0000000 --- a/api/routes/receiveZChain/index.js +++ /dev/null @@ -1,48 +0,0 @@ -/* - * After NS validation went through we examine the return code - * of the application that run the test. - * - * Returns: - * - error on failure - * - on success we process with addNSEntriesToFile() - * - */ -function continuethingsNS(validitycode,sh,res,gotit){ - if (validitycode === 0){ - var entry = { - zchain: sh, - latest: JSON.parse(gotit).Path.replace('/ipfs/','') - }; - addNSEntriesToFile(entry,res); - } else { - res.send({error:"Invalid data"}); - } -} -/* - * Accepts a zchain - * - * Checks: - * 1. Exists, - * 2. Length is 62 bytes, - * 3. Matches regular expression /k51qzi5uqu5d[A-Za-z0-9]{50}/ - * - * Returns: - * - error on failure - * - on success the string is processed for further validation to the - * function getNSvalidity() - * - */ -const getNSvalidity = require('../../validators/ZchainValidator') - -module.exports = (req, res) => { - if ( (req.body.zchain) && req.body.zchain.length === 62 ){//&& req.body.block_signature.length === 46){ - regex= /k51qzi5uqu5d[A-Za-z0-9]{50}/ - if (regex.test(req.body.zchain)){ // && regex.test(req.body.block_signature)){ - getNSvalidity(req.body.zchain,res); - } else { - res.send({error:"Invalid data"}); - } - } else { - res.send({error:"Invalid data"}); - } -} -- cgit v1.2.3