blob: d1bdc5f5afd1d7b824382fdfb1b1c320eef500fc (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
|
const { spawn } = require('child_process');
const fs = require("fs");
const config = require("../../config");
const akLogMessage = require("../../lib/akLogMessage");
akLogMessage('lol');
/*
* Returns a cached ipfs_hash
*
* Returns:
* - JSON object
*
*/
function fetchIPFShash(ipfs_hash, res)
{
regex= /Qm[A-Za-z0-9]{44}/;
if (regex.test(ipfs_hash)){
const path = `${config.ipfsArtifactsDir}/${ipfs_hash}`;
console.log(path)
try
{
if(fs.existsSync(path))
{
res.writeHead(200); //, {'Content-Type': 'application/json'});
// res.end(JSON.stringify(JSON.parse(fs.readFileSync(path))));
res.end(fs.readFileSync(path));
}
else
{
res.writeHead(404, {'Content-Type': 'application/json'});
res.end(JSON.stringify({error:"invalid or unreachable"}));
}
}
catch (error)
{
res.writeHead(404, {'Content-Type': 'application/json'});
res.end(JSON.stringify({error:error.message}));
}
}
else
{
res.writeHead(404, {'Content-Type': 'application/json'});
res.end(JSON.stringify({error:"Invalid data: regexp failed to pass"}));
}
};
function getIPFSHash(req, res)
{
var args = req.url.split("/");
if ( (args[2] === 'ipfs_hash'||args[2] === 'ipfs') && args[3] && typeof args[3] === "string" && args[3].length === 46 ){
regex= /Qm[A-Za-z0-9]{44}/;
if (regex.test(args[3]))
{
if (args[3] === "QmbFMke1KXqnYyBBWxB74N4c5SBnJMVAiMNRcGu6x1AwQH" )
{
res.writeHead(404, {'Content-Type': 'application/json'});
res.end(JSON.stringify({error:"Genesis block"}));
}
else
{
fetchIPFShash(args[3],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 ipfs_hash was provided"}));
}
}
module.exports = getIPFSHash;
|