-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathindex.ts
63 lines (48 loc) · 1.62 KB
/
index.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
// @ts-ignore
import { STATUS_CODE } from "https://deno.land/std/http/status.ts";
type SessionStroage = { [key: string]: unknown };
const SESSION_HEADER_NAME = "X-Edge-Runtime-Session-Id";
const SESSIONS = new Map<string, SessionStroage>();
function makeNewSession(): [string, SessionStroage] {
const uuid = crypto.randomUUID();
const storage = {};
SESSIONS.set(uuid, storage);
return [uuid, storage];
}
function getSessionStorageFromRequest(req: Request): SessionStroage | void {
const maybeSessionId = req.headers.get(SESSION_HEADER_NAME);
if (typeof maybeSessionId === "string" && SESSIONS.has(maybeSessionId)) {
return SESSIONS.get(maybeSessionId);
}
}
export default {
fetch(req: Request) {
const headers = new Headers();
let storage: SessionStroage;
if (req.headers.get(SESSION_HEADER_NAME)) {
const maybeStorage = getSessionStorageFromRequest(req);
if (!maybeStorage) {
return new Response(null, {
status: STATUS_CODE.BadRequest
});
}
storage = maybeStorage;
} else {
const [sessionId, newStorage] = makeNewSession();
headers.set(SESSION_HEADER_NAME, sessionId);
storage = newStorage;
}
if (!("count" in storage)) {
storage["count"] = 0;
} else {
(storage["count"] as number)++;
}
const count = storage["count"] as number;
return new Response(
JSON.stringify({ count }),
{
headers
}
);
}
}