blob: ca3b644b95b0aa55c2f157aa7fb4fab19a60b322 (
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
57
58
59
60
61
62
63
64
|
module brpaste.web;
import brpaste.hash;
import vibe.vibe;
RedisDatabase client;
shared static this() {
string path = "redis://127.0.0.1";
readOption("redis|r", &path, "The URL to use to connect to redis");
URL redis = path;
client = connectRedisDB(redis);
}
class BRPaste {
@method(HTTPMethod.REPORT)
@path("/health")
void health(HTTPServerResponse res) {
import std.array;
res.statusCode = 200;
auto app = appender!string;
// is Redis healthy? - FIXME: stack traces over HTTP are fun, I guess
import std.random;
long val = uniform!uint;
auto ech = client.client.echo!(long, long)(val);
if(val != ech) {
res.statusCode = 500;
app.put("Redis: failed.");
} else app.put("Redis: pass.");
res.writeBody(app.data);
}
void index() {
render!("index.dt");
}
@path("/:id")
void getId(string _id) {
if (!client.exists(_id)) throw new HTTPStatusException(404);
string language;
// TODO: rewrite the next two lines once #2273 is resolved
auto req = request;
if (req.query.length > 0) language = req.query.byKey.front;
auto data = client.get(_id);
render!("code.dt", data, language);
}
@path("/raw/:id")
void getRawId(HTTPServerResponse res, string _id) {
if (!client.exists(_id)) throw new HTTPStatusException(404);
auto val = client.get(_id);
res.contentType = "text/plain";
res.writeBody(val);
}
void post(string data) {
auto hash = data.hash;
client.set(hash, data);
status(201);
response.writeBody(hash);
}
}
|