-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontroller.ts
198 lines (171 loc) · 4.53 KB
/
controller.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
import { IncomingMessage } from "http";
import * as cheerio from "cheerio"
import path, { join } from "node:path";
import { readFileSync, existsSync } from "fs";
import { createUser, getUserTasks, getTask, Tasks } from "./db_implementations";
interface ResponseHeader {
[key: string]: string | undefined;
"content-type": string;
"Access-Control-Allow-Origin": string;
"set-cookie"?: string | undefined;
}
interface ServerErrorHeader {
[key: string]: string | undefined;
"content-type": string;
"connection": string;
}
interface RedirectHeader {
[key: string]: string | undefined;
"location": string,
}
interface Response {
codeStatus: number;
header: ResponseHeader | ServerErrorHeader | RedirectHeader;
body?: string;
}
const PROJECT_DIR = path.resolve(__dirname, "..");
export const COOKIE_TIMEOUT = 60 * 60 // 1 hour
function taskCreationPage(userReq: IncomingMessage): Response {
let tasksHtml: string;
if (!userReq.headers.cookie) {
return {
codeStatus: 302,
header: {
"location": "/"
} as RedirectHeader
};
}
try {
tasksHtml = readFileSync(join(PROJECT_DIR, "public", "tasks.html"), "utf8")
} catch (e) {
return {
codeStatus: 500,
header: {
"content-type": "plain/text",
"connection": "close"
} as ServerErrorHeader,
body: "500 Server Error"
};
}
// Wanna refactor this with union discrimination, so I know how to use it
// and a valid use case properly
return {
codeStatus: 200,
header: {
"content-type": "text/html",
"Access-Control-Allow-Origin": "*"
} as ResponseHeader,
body: tasksHtml
}
}
async function mainPage(userReq: IncomingMessage): Promise<Response>{
let indexHtml: string;
try {
indexHtml = readFileSync(join(PROJECT_DIR, "public", "index.html"), "utf8")
} catch (e) {
return {
codeStatus: 500,
header: {
"content-type": "plain/text",
"connection": "close"
} as ServerErrorHeader,
body: "500 Server Error"
};
}
const response_header: ResponseHeader = {
"Access-Control-Allow-Origin": "*",
"content-type": "text/html"
}
if (!userReq.headers.cookie) {
const cookieId = Math.floor(new Date().getTime() / 1000).toString(); // Date in seconds
response_header["set-cookie"] =
"sessionId=" + cookieId + "; Path=/; HttpOnly; Secure; Max-Age="
+ COOKIE_TIMEOUT.toString() + ";" + "SameSite=Strict";
await createUser("sessionId=" + cookieId);
const response: Response = {
codeStatus: 200,
header: response_header as ResponseHeader,
body: indexHtml
};
return response;
} else {
// TODO: The whole task should be an anchor div that when
// clicking, should send the UUID of the task to return the
// whole description from the server
const result = await getUserTasks(userReq.headers.cookie);
if (typeof result === "object") {
const $ = cheerio.load(indexHtml);
for (let task in result as Tasks) {
let title = result[task].title;
let desc = result[task].description;
// Wanna display only the first 100 chars of the desc
desc = desc.length > 100 ? desc.substring(0, 100) + "..." : desc;
$("body").append(`<div class=task data-uuid=${task}>
<h3>${title}</h3>
<p>${desc}</p>
</div>\n`
);
}
$("body").append(`<script src="src/index.js"></script>`);
indexHtml = $.html();
}
const response: Response = {
codeStatus: 200,
header: response_header as ResponseHeader,
body: indexHtml
};
return response;
}
}
async function renderTask(reqUrl: String): Promise<Response>
{
const task_uuid = reqUrl.replace(/\/task\//, "");
const task = await getTask(task_uuid);
// Render the HTML with the task
const $ = cheerio.load(
`<h1>${task.title}</h1>
<h2>${task.description}</h2>`
);
return {
codeStatus: 200,
header: {
"Access-Control-Allow-Origin": "*",
"content-type": "text/html"
},
body: $.html()
}
}
export async function serverUrls(userReq: IncomingMessage): Promise<Response>
{
if (userReq.url === "/")
return mainPage(userReq);
else if (userReq.url === "/createTask") {
return taskCreationPage(userReq);
}
else if (userReq.url?.match("task")) {
return renderTask(userReq.url);
}
else {
const resource = process.cwd() + "/public" + userReq.url;
if (existsSync(resource)) {
return {
codeStatus: 200,
header: {
"content-type": "text/html",
"Access-Control-Allow-Origin": "*"
},
body: readFileSync(resource, "utf8")
}
}
else {
return {
codeStatus: 404,
header: {
"content-type": "text/html",
"Access-Control-Allow-Origin": "*"
},
body: "404 Not Found"
};
}
}
}