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
|
module brpaste.web;
import brpaste.hash;
import brpaste.storage;
import vibe.vibe;
import std.functional;
RedisStorage store;
alias put = partial!(insert, true);
alias post = partial!(insert, false);
alias idLng = partial!(id, true);
alias idRaw = partial!(id, false);
void id(bool highlight, HTTPServerRequest req, HTTPServerResponse res) {
string id = req.params["id"];
auto data = store.get(id);
if(!highlight) {
res.contentType = "text/plain";
res.writeBody(data);
return;
}
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;
render!("code.dt", data, language)(res);
}
void insert(bool put, HTTPServerRequest req, HTTPServerResponse res) {
import std.encoding;
enforceHTTP("data" in req.form, HTTPStatus.badRequest, "Missing data field.");
string data = req.form["data"];
enforceHTTP(data.isValid, HTTPStatus.unsupportedMediaType, "Content contains binary.");
auto hash = put ? req.params["id"] : data.hash;
store.put(hash, data, put);
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));
}
|