blob: fa834ab7b3f45eaafe2a1b650da40eecc64c8b36 (
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
|
/*
* Receives an SHA512SUM as a map's hash and if exists it
* returns the map's content
*
*/
const fs = require('fs');
const config = require("../../config.js");
module.exports = (req, res) => {
var args = req.url.split("/");
var hash = args[3];
regex= /[a-f0-9]{128}/
if (regex.test(hash))
{
var path = config.mapsDir+"/"+hash;
try
{
if(fs.existsSync(path))
{
res.send(fs.readFileSync(path));
}
}
catch (error)
{
res.send({"error":error.message});
}
}
else
{
res.writeHead(404, {'Content-Type': 'application/json'});
res.end(JSON.stringify({error:"No hash"}));
}
}
|