blob: 097f1f0906b06c9afda401da3d9a22d80e989f3c (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
|
const { spawn } = require('child_process');
const fs = require("fs");
const config = require("../../config");
/*
* Gets a local merkle leaf
*
* Returns:
* the merkle leaf
*
*/
function fetchFmrk(mrk, res){
const command = spawn("cat",[config.workDir+"/fmrk/"+mrk]);
res.set('Content-Type', 'application/json');
command.stdout.on("data", data => {
});
command.stderr.on("data", data => {
console.log(`stderr: ${data}`);
});
command.on('error', (error) => {
console.log(`error: ${error.message}`);
});
command.on("close", code => {
console.log(`child process exited with code ${code}`);
if ( code === 0 ) {
const path = config.workDir+"/fmrk/"+mrk;
console.log(path)
try {
if(fs.existsSync(path)){
res.send(fs.readFileSync(path));
}
} catch (error) {
res.send({"error":error.message});
}
} else if ( code === 2){
res.send({"error":"The roof is on fire"});
} else {
res.send({"error":"invalid or unreachable"});
}
});
};
module.exports = (req, res) => {
console.log(req.params)
res.set('Content-Type', 'application/json');
if ( (req.params.mrk) && req.params.mrk.length === 128 ){
regex= /[a-f0-9]{128}/;
if (regex.test(req.params.mrk)){
if (req.params.mrk === "QmbFMke1KXqnYyBBWxB74N4c5SBnJMVAiMNRcGu6x1AwQH" ){
res.send({error:"Genesis block"});
} else {
fetchFmrk(req.params.mrk,res);
}
} else {
res.send({error:"Invalid data: regexp failed to pass"});
}
} else {
res.send({error:"Invalid data: no valid zblock was provided"});
}
}
|