forked from oakserver/oak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
routingServer.ts
145 lines (130 loc) · 3.47 KB
/
routingServer.ts
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
* This is an example of a server that utilizes the router.
*/
// Importing some console colors
import {
green,
cyan,
bold,
yellow,
} from "https://deno.land/[email protected]/fmt/colors.ts";
import {
Application,
Context,
isHttpError,
Router,
RouterContext,
Status,
} from "../mod.ts";
interface Book {
id: string;
title: string;
author: string;
}
const books = new Map<string, Book>();
books.set("1234", {
id: "1234",
title: "The Hound of the Baskervilles",
author: "Conan Doyle, Author",
});
function notFound(context: Context) {
context.response.status = Status.NotFound;
context.response.body =
`<html><body><h1>404 - Not Found</h1><p>Path <code>${context.request.url}</code> not found.`;
}
const router = new Router();
router
.get("/", (context) => {
context.response.body = "Hello world!";
})
.get("/book", async (context) => {
context.response.body = Array.from(books.values());
})
.post("/book", async (context: RouterContext) => {
console.log("post book");
if (!context.request.hasBody) {
context.throw(Status.BadRequest, "Bad Request");
}
const body = await context.request.body();
let book: Partial<Book> | undefined;
if (body.type === "json") {
book = body.value;
} else if (body.type === "form") {
book = {};
for (const [key, value] of body.value) {
book[key as keyof Book] = value;
}
} else if (body.type === "form-data") {
const formData = await body.value.read();
book = formData.fields;
}
if (book) {
context.assert(book.id && typeof book.id === "string", Status.BadRequest);
books.set(book.id, book as Book);
context.response.status = Status.OK;
context.response.body = book;
context.response.type = "json";
return;
}
context.throw(Status.BadRequest, "Bad Request");
})
.get<{ id: string }>("/book/:id", async (context, next) => {
if (context.params && books.has(context.params.id)) {
context.response.body = books.get(context.params.id);
} else {
return notFound(context);
}
});
const app = new Application();
// Logger
app.use(async (context, next) => {
await next();
const rt = context.response.headers.get("X-Response-Time");
console.log(
`${green(context.request.method)} ${cyan(context.request.url.pathname)} - ${
bold(
String(rt),
)
}`,
);
});
// Response Time
app.use(async (context, next) => {
const start = Date.now();
await next();
const ms = Date.now() - start;
context.response.headers.set("X-Response-Time", `${ms}ms`);
});
// Error handler
app.use(async (context, next) => {
try {
await next();
} catch (err) {
if (isHttpError(err)) {
context.response.status = err.status;
const { message, status, stack } = err;
if (context.request.accepts("json")) {
context.response.body = { message, status, stack };
context.response.type = "json";
} else {
context.response.body = `${status} ${message}\n\n${stack ?? ""}`;
context.response.type = "text/plain";
}
} else {
console.log(err);
throw err;
}
}
});
// Use the router
app.use(router.routes());
app.use(router.allowedMethods());
// A basic 404 page
app.use(notFound);
app.addEventListener("listen", ({ hostname, port }) => {
console.log(
bold("Start listening on ") + yellow(`${hostname}:${port}`),
);
});
await app.listen({ hostname: "127.0.0.1", port: 8000 });
console.log(bold("Finished."));