aboutsummaryrefslogtreecommitdiff
path: root/api/routes/receiveZChain
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-03-01 02:47:10 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-03-01 02:47:10 +0200
commit6cb0efc1abeccd8f6a9c7ca7f209ff22c42341bd (patch)
tree17d514ffe79223d303229da97f114eebb4f3f052 /api/routes/receiveZChain
parent11cd4029ee6e1e5368be22742827dba1547cfc71 (diff)
downloadarching-kaos-tools-6cb0efc1abeccd8f6a9c7ca7f209ff22c42341bd.tar.gz
arching-kaos-tools-6cb0efc1abeccd8f6a9c7ca7f209ff22c42341bd.tar.bz2
arching-kaos-tools-6cb0efc1abeccd8f6a9c7ca7f209ff22c42341bd.zip
Renamed functions and routes
receive* -> announce* szbk -> /v0/announce/zblock szch -> /v0/announce/zchain
Diffstat (limited to 'api/routes/receiveZChain')
-rw-r--r--api/routes/receiveZChain/index.js48
1 files changed, 0 insertions, 48 deletions
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"});
- }
-}