aboutsummaryrefslogtreecommitdiff
path: root/api/routes/announceZBlock/index.js
blob: 254e1dc2bf8cb2a57020982827b4523d92a2c744 (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
/*
 * 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);
    if ( (req.body.zblock) && typeof req.body.zblock === "string" && req.body.zblock.length === 46 ){
        let zblock = req.body.zblock;
        regex= /Qm[A-Za-z0-9]{44}/;
        if (regex.test(zblock)){
            getvalidity(zblock,res);
        } else {
            res.send({error:"Invalid data"});
        }
    } else {
        res.send({error:"Invalid data"});
    }
}