aboutsummaryrefslogtreecommitdiff
path: root/context.d
diff options
context:
space:
mode:
authorNathan Lasseter <nathan@4574.co.uk>2013-10-24 22:38:45 +0100
committerNathan Lasseter <nathan@4574.co.uk>2013-10-24 22:38:45 +0100
commit5d58503d4e36091d5fca0edbca6be5a71d883044 (patch)
treef2667d41d5b7753f3c357454a42f1feab25f163d /context.d
parentf3ee7526e1f04ccee1f1a4d3a775e2ce75169926 (diff)
Some errors and rooted properlyHEADmaster
Diffstat (limited to 'context.d')
-rw-r--r--context.d62
1 files changed, 50 insertions, 12 deletions
diff --git a/context.d b/context.d
index 965fe72..0a5fd73 100644
--- a/context.d
+++ b/context.d
@@ -3,26 +3,46 @@ import
std.file,
std.string,
std.format,
- std.stdio;
-import
- serverutils;
+ std.path;
enum ClientState {
START,
REQUEST_LINE,
- HEADER_LINES,
+ END_REQUEST,
DONE,
ERROR
};
+enum ResponseCode {
+ OKAY = 200,
+ NOTFOUND = 404,
+ NOTIMPLEMENTED = 501
+};
+
class Request {
string method;
string path;
string vers;
- char[][] header_lines;
+ string[] header_lines;
auto this(char[] line) {
line = strip(line);
- formattedRead(line, "%s %s %s", &method, &path, &vers);
+ string tpath;
+ formattedRead(line, "%s %s %s", &method, &tpath, &vers);
+ if (tpath[0] == '/')
+ path = buildNormalizedPath(getcwd() ~ tpath);
+ else
+ path = buildNormalizedPath(getcwd() ~ "/" ~ tpath);
+ }
+ ResponseCode check() {
+ try {
+ bool isfile = path.isFile();
+ if (!isfile)
+ return ResponseCode.NOTFOUND;
+ }
+ catch (FileException e) {
+ return ResponseCode.NOTFOUND;
+ }
+ return ResponseCode.OKAY;
}
}
@@ -45,13 +65,31 @@ class ClientContext {
state = ClientState.REQUEST_LINE;
break;
case ClientState.REQUEST_LINE:
- state
+ char[255] line;
+ auto len = pair.receive(line);
+ if (len < 3) //FIXME: A better test needed for newline
+ state = ClientState.END_REQUEST;
+ else {
+ auto header_line = line[0 .. len];
+ header_line = strip(line);
+ request.header_lines ~= cast(string) header_line;
+ }
break;
- case ClientState.HEADER_LINES:
- if (inRoot(request.path))
- pair.send(readText(request.path));
- else
- pair.send("ERROR: Client left root!\n");
+ case ClientState.END_REQUEST:
+ switch (request.check()) {
+ case ResponseCode.OKAY:
+ pair.send(readText(request.path));
+ break;
+ case ResponseCode.NOTFOUND:
+ pair.send("404 File Not Found");
+ break;
+ case ResponseCode.NOTIMPLEMENTED:
+ pair.send("501 Method Not Implemented");
+ break;
+ default:
+ pair.send("500 Internal Server Error");
+ break;
+ }
state = ClientState.DONE;
break;
case ClientState.DONE: