blob: 721e8361786b0417234904385e3377c9bed54049 (
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
|
const fs = require("fs");
const config = require("../../config");
/*
* Gets the local latest zblock
*
* Returns:
* - JSON object
* { zlatest: "Qm..." }
*
*/
function fetchZblock(zblock, res){
res.writeHead(200, { 'Content-Type': 'application/json'});
var path = config.workDir+"/ipfs/"+zblock;
res.end(JSON.stringify(JSON.parse(fs.readFileSync(path))));
};
module.exports = (req, res) => {
console.log(req.query)
if ( (req.query.ipfs) && typeof req.query.ipfs === "string" && req.query.ipfs.length === 46 ){
let ipfs = req.query.ipfs;
regex= /Qm[A-Za-z0-9]{44}/;
if (regex.test(ipfs)){
if (ipfs === "QmbFMke1KXqnYyBBWxB74N4c5SBnJMVAiMNRcGu6x1AwQH" ){
res.writeHead(200, { 'Content-Type': 'application/json'});
res.end(JSON.stringify({error:"Genesis block"}));
} else {
fetchZblock(ipfs,res);
}
} else {
res.writeHead(404, { 'Content-Type': 'application/json'});
res.end(JSON.stringify({error:"Invalid data: regexp failed to pass"}));
}
} else {
res.writeHead(404, { 'Content-Type': 'application/json'});
res.end(JSON.stringify({error:"Invalid data: no valid zblock was provided"}));
}
}
|