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/receiveZBlock/index.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 api/routes/receiveZBlock/index.js (limited to 'api/routes/receiveZBlock/index.js') diff --git a/api/routes/receiveZBlock/index.js b/api/routes/receiveZBlock/index.js new file mode 100644 index 0000000..3ad6100 --- /dev/null +++ b/api/routes/receiveZBlock/index.js @@ -0,0 +1,28 @@ +/* + * Accepts a ZBLOCK! + * + * Checks: + * 1. Exists, + * 2. Length is 46 bytes, + * 3. Matches regular expression /Qm[A-Za-z0-9]{44}/ + * + * Returns: + * - errno 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({errno:"Invalid data"}); + } + } else { + res.send({errno:"Invalid data"}); + } +} -- cgit v1.2.3