blob: 91ac5b91e5d12d2e791be5e50037d33ec06d3cad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/*
* 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) && typeof req.body.zchain === "string" && req.body.zchain.length === 62 ){
let zchain = req.body.zchain;
regex= /k51qzi5uqu5d[A-Za-z0-9]{50}/
if (regex.test(zchain)){
getNSvalidity(zchain,res);
} else {
res.send({error:"Invalid data"});
}
} else {
res.send({error:"Invalid data"});
}
}
|