-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserve_http.ts
62 lines (60 loc) · 1.67 KB
/
serve_http.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
import { Handler } from "./Handler.ts";
import { Handlers } from "./Handlers.ts";
import { hostnameForDisplay } from "./hostnameForDisplay.ts";
import { on_Error } from "./on_Error.ts";
import { on_NotFound } from "./on_NotFound.ts";
import { on_tcp_connection } from "./on_tcp_connection.ts";
import { ServeHttpInit } from "./ServeHttpInit.ts";
export async function serve_http(
handlers: Handlers | Handler = {},
{
port = 8000,
hostname = "0.0.0.0",
onNotFound = on_NotFound,
onError = on_Error,
...rest
}: ServeHttpInit = {},
): Promise<void> {
const { signal } = rest;
if (signal?.aborted) {
return;
}
const server = Deno.listen({
...rest,
port: port,
hostname,
});
signal?.addEventListener("abort", () => server.close());
try {
if ("onListen" in rest) {
rest.onListen?.({ port, hostname });
} else {
console.log(
`Listening on http://${hostnameForDisplay(hostname)}:${port}/`,
);
}
for await (const conn of server) {
if (signal?.aborted) {
return;
}
on_tcp_connection({
conn,
handlers: typeof handlers === "function"
? { request: handlers }
: handlers,
onError,
signal: signal,
onNotFound,
}).catch(console.error);
}
} catch (error) {
throw error;
} finally {
try {
server.close();
} catch {
/* (error) */
// console.error(error);
}
}
}