blob: 16dbbb9b1bf994dd91ce3a71adbb2a2f068c7047 (
plain) (
blame)
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
|
module brpaste.web;
import brpaste.hash;
import brpaste.storage;
import vibe.vibe;
RedisStorage store;
string idCommon(in HTTPServerRequest req) {
string id = req.params["id"];
return store.get(id);
}
void id(HTTPServerRequest req, HTTPServerResponse res) {
string language = "none";
// TODO: rewrite the next two lines once #2273 is resolved
if ("lang" in req.query) language = req.query["lang"];
else if (req.query.length > 0) language = req.query.byKey.front;
auto data = idCommon(req);
render!("code.dt", data, language)(res);
}
void rawId(HTTPServerRequest req, HTTPServerResponse res) {
res.contentType = "text/plain";
auto data = idCommon(req);
res.writeBody(data);
}
void post(HTTPServerRequest req, HTTPServerResponse res) {
enforceHTTP("data" in req.form, HTTPStatus.badRequest, "Missing data field.");
auto data = req.form["data"];
auto hash = data.hash;
store.put(hash, data);
res.statusCode = HTTPStatus.created;
res.writeBody(hash);
}
void health(HTTPServerRequest req, HTTPServerResponse res) {
res.statusCode = HTTPStatus.noContent;
scope(success) res.writeBody("");
// Redis
store.isDown;
}
shared static this() {
// setup redis
string path;
readOption("redis|r", &path, "The URL to use to connect to redis");
store = path.empty ? new RedisStorage : new RedisStorage(URL(path));
}
|