aboutsummaryrefslogtreecommitdiff
path: root/modules/write.js
blob: 48ab1d6d39601d57f64f89b4c810044ae48c94ef (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
const body = require("body/json");
const crypto = require('crypto');
const fs = require('fs');

module.exports = (req, res, entry, dbid) => {
    res.writeHead(200, {'Content-Type':'application/json'});
    body(req, res, variables.bodyOptions, (err, body) => {
        try {
            if (databases[entry]["immutable"]) {
                res.writeHead(501, {'Content-Type':'application/json'});
                res.write("{\"error\":501}");
                res.end();
                return;
            }

            if (err) throw err;
            console.log(body);
            if (typeof body.path === "string" && typeof body.data === "string") {
                node = crypto.createHash('md5').update(body.path).digest('hex');
                file = "/data/" + dbid + "/" + node.substring(0, 2) + "/" + node;

                fs.writeFileSync(__dirname + "/../" + file, Buffer.from(body.data).toString("base64"));
                heads[entry][body.path] = file;
                fs.writeFileSync(__dirname + "/../data/" + dbid + "/HEAD", Buffer.from(JSON.stringify(heads[entry])).toString("hex"));

                res.write(JSON.stringify({
                    "_internal": {
                        "database": entry,
                        "node": node,
                        "path": file
                    },
                    "error": 200
                }));
                res.end();
            } else {
                res.writeHead(400, {'Content-Type':'application/json'});
                res.write("{\"error\":400}");
                res.end();
            }
        } catch (e) {
            console.error(e);
            res.writeHead(502, {'Content-Type':'application/json'});
            res.write("{\"error\":502}");
            res.end();
        }
    })
}