blob: 85d18540c832445d67b52961439a19d96464aeee (
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
|
/*
* Accepts a zchain
*
* Checks:
* 1. Exists,
* 2. Length is 62 bytes,
* 3. Matches regular expression /k51qzi5uqu5d[A-Za-z0-9]{50}/
*
* Returns:
* - errno on failure
* - on success the string is processed for further validation to the
* function getNSvalidity()
*
*/
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({errno:"Invalid data"});
}
} else {
res.send({errno:"Invalid data"});
}
}
|