-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.ts
More file actions
419 lines (396 loc) · 13.1 KB
/
mod.ts
File metadata and controls
419 lines (396 loc) · 13.1 KB
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
import { join } from "https://deno.land/std@0.215.0/path/join.ts";
export class RouteAlreadyBoundError extends Error {
constructor(route: string) {
super(`Route "${route}" is already bound.`);
this.name = "RouteAlreadyBoundError";
}
}
export class Route {
path: string;
method: string;
callback: (
req: Request,
info: Deno.ServeHandlerInfo
) => Promise<ResponseConstructor>;
constructor(
path: string,
method: string,
callback: (
req: Request,
info: Deno.ServeHandlerInfo
) => Promise<ResponseConstructor>
) {
this.path = path;
this.method = method;
this.callback = callback;
}
equals(path: string, method: string): boolean {
if (this.path == path && this.method == method) {
return true;
}
return false;
}
}
export interface ResponseConstructor {
body?: BodyInit;
init?: ResponseInit;
}
export class ServerShell {
private routes: Array<Route> = [];
private middleware: (req: Request, info: Deno.ServeHandlerInfo) => void =
() => {};
private config: Deno.ServeOptions;
/**
* Creates an instance of ServerShell using the specified config. Config can be omitted, in which case the default config will be used.
* @date 2/14/2024 - 7:23:47 PM
*
* @constructor
* @param {Deno.ServeOptions} [config={hostname: 'localhost', port: 8000}] - By default, the server will start on localhost:8000
*/
constructor(
config: Deno.ServeOptions = { hostname: "localhost", port: 8000 }
) {
this.config = config;
}
/**
* Starts the server on the specified config
* @date 2/14/2024 - 7:14:42 PM
*
* @param {() => void} [callback=() => {}] - Callback called upon the creation of the server
* @returns {Deno.HttpServer} The server object used by Deno.serve()
*/
listen(callback: () => void = () => {}): Deno.HttpServer {
const server = Deno.serve(
this.config,
async (req: Request, info: Deno.ServeHandlerInfo) => {
const pathname = new URL(req.url).pathname;
const method = req.method.toUpperCase();
this.middleware(req, info);
let returnvalue: ResponseConstructor = {
body: `Cannot ${method.toLowerCase()} ${pathname}`,
init: {
headers: {
"Content-Type": "text/html",
},
status: 404,
},
};
for (const route of this.routes) {
if (route.equals(pathname, method)) {
returnvalue = await route.callback(req, info);
} else if (route.path == pathname && route.method == "ANY") {
returnvalue = await route.callback(req, info);
}
}
return new Response(returnvalue.body, returnvalue.init);
}
);
callback();
return server;
}
/**
* Scans `staticDirectory` to listen for any incoming request to any of the static assets
* @date 2/14/2024 - 7:38:18 PM
*
* @param {string} staticDirectory - The root directory of the static assets
* @param {string} staticRoute - The route from which to start scanning. This is the equivalent of removing the `staticDirectory` folder from the resulting route
*/
useStatic(staticDirectory: string, staticRoute: string) {
for (const entry of Deno.readDirSync(staticDirectory)) {
const pathnameDir = join(staticDirectory, entry.name);
let pathnameRoute = join(staticRoute, entry.name);
if (entry.isDirectory) {
this.useStatic(pathnameDir, pathnameRoute);
} else if (entry.isFile) {
const contents = Deno.readFileSync(pathnameDir);
const splitFileName = entry.name.split(".");
const extension = splitFileName[splitFileName.length - 1];
splitFileName.pop();
const name = splitFileName.join(".");
if (name == "index" && extension == "html") {
pathnameRoute = join(pathnameRoute, "..");
}
this.get(pathnameRoute.replaceAll("\\", "/"), () => {
return new Promise((resolve) => {
resolve({
body: new TextDecoder("utf-8").decode(contents),
init: {
headers: {
"Content-Type": MIMEFromExt(extension),
"Content-Length": contents.byteLength.toString(),
},
status: 200,
},
});
});
});
}
}
}
/**
* Equivalent to `useStatic` but allows editing your assets without needing a server reload
* @date 2/14/2024 - 7:38:18 PM
*
* @param {string} directory - The root directory of the static assets
* @param {string} route - The route from which to start scanning. This is the equivalent of removing the `directory` folder from the resulting route
*/
useDynamic(directory: string, route: string) {
for (const entry of Deno.readDirSync(directory)) {
const pathnameDir = join(directory, entry.name);
let pathnameRoute = join(route, entry.name);
if (entry.isDirectory) {
this.useStatic(pathnameDir, pathnameRoute);
} else if (entry.isFile) {
const splitFileName = entry.name.split(".");
const extension = splitFileName[splitFileName.length - 1];
splitFileName.pop();
const name = splitFileName.join(".");
if (name == "index" && extension == "html") {
pathnameRoute = join(pathnameRoute, "..");
}
this.get(pathnameRoute.replaceAll("\\", "/"), () => {
const assetContents = Deno.readFileSync(pathnameDir);
return new Promise((resolve) => {
resolve({
body: new TextDecoder("utf-8").decode(assetContents),
init: {
headers: {
"Content-Type": MIMEFromExt(extension),
"Content-Length": assetContents.byteLength.toString(),
},
status: 200,
},
});
});
});
}
}
}
/**
* Sets up a middleware function to be run for each incoming request
* @date 2/14/2024 - 7:27:36 PM
*
* @param {(req: Request, info: Deno.ServeHandlerInfo) => void} middleware - The middleware function
*/
use(middleware: (req: Request, info: Deno.ServeHandlerInfo) => void) {
this.middleware = middleware;
}
/**
* Binds a new route at `path` to a GET listener
* @date 2/14/2024 - 7:09:49 PM
*
* @param {string} path - The path at which the route will take effect. Must start with a `/`
* @param {(req: Request, info: Deno.ServeHandlerInfo) => Promise<ResponseConstructor>} listener - The function that will be run when a request arrives at the specified route
* @throws `RouteAlreadyBoundError` if the `path` at which we're binding the route is already bound to another route
*/
get(
path: string,
listener: (
req: Request,
info: Deno.ServeHandlerInfo
) => Promise<ResponseConstructor>
) {
this.routes.forEach((route) => {
if (
route.path == path &&
(route.method == "GET" || route.method == "ANY")
) {
throw new RouteAlreadyBoundError(path);
}
});
this.routes.push(new Route(path, "GET", listener));
}
/**
* Binds a new route at `path` to a POST listener
* @date 2/14/2024 - 7:09:49 PM
*
* @param {string} path - The path at which the route will take effect. Must start with a `/`
* @param {(req: Request, info: Deno.ServeHandlerInfo) => Promise<ResponseConstructor>} listener - The function that will be run when a request arrives at the specified route
* @throws `RouteAlreadyBoundError` if the `path` at which we're binding the route is already bound to another route
*/
post(
path: string,
listener: (
req: Request,
info: Deno.ServeHandlerInfo
) => Promise<ResponseConstructor>
) {
this.routes.forEach((route) => {
if (
route.path == path &&
(route.method == "POST" || route.method == "ANY")
) {
throw new RouteAlreadyBoundError(path);
}
});
this.routes.push(new Route(path, "POST", listener));
}
/**
* Binds a new route at `path` to an OPTIONS listener
* @date 2/14/2024 - 7:09:49 PM
*
* @param {string} path - The path at which the route will take effect. Must start with a `/`
* @param {(req: Request, info: Deno.ServeHandlerInfo) => Promise<ResponseConstructor>} listener - The function that will be run when a request arrives at the specified route
* @throws `RouteAlreadyBoundError` if the `path` at which we're binding the route is already bound to another route
*/
options(
path: string,
listener: (
req: Request,
info: Deno.ServeHandlerInfo
) => Promise<ResponseConstructor>
) {
this.routes.forEach((route) => {
if (
route.path == path &&
(route.method == "OPTIONS" || route.method == "ANY")
) {
throw new RouteAlreadyBoundError(path);
}
});
this.routes.push(new Route(path, "OPTIONS", listener));
}
/**
* Binds a new route at `path` to a PUT listener
* @date 2/14/2024 - 7:09:49 PM
*
* @param {string} path - The path at which the route will take effect. Must start with a `/`
* @param {(req: Request, info: Deno.ServeHandlerInfo) => Promise<ResponseConstructor>} listener - The function that will be run when a request arrives at the specified route
* @throws `RouteAlreadyBoundError` if the `path` at which we're binding the route is already bound to another route
*/
put(
path: string,
listener: (
req: Request,
info: Deno.ServeHandlerInfo
) => Promise<ResponseConstructor>
) {
this.routes.forEach((route) => {
if (
route.path == path &&
(route.method == "PUT" || route.method == "ANY")
) {
throw new RouteAlreadyBoundError(path);
}
});
this.routes.push(new Route(path, "PUT", listener));
}
/**
* Binds a new route at `path` to a DELETE listener
* @date 2/14/2024 - 7:09:49 PM
*
* @param {string} path - The path at which the route will take effect. Must start with a `/`
* @param {(req: Request, info: Deno.ServeHandlerInfo) => Promise<ResponseConstructor>} listener - The function that will be run when a request arrives at the specified route
* @throws `RouteAlreadyBoundError` if the `path` at which we're binding the route is already bound to another route
*/
delete(
path: string,
listener: (
req: Request,
info: Deno.ServeHandlerInfo
) => Promise<ResponseConstructor>
) {
this.routes.forEach((route) => {
if (
route.path == path &&
(route.method == "DELETE" || route.method == "ANY")
) {
throw new RouteAlreadyBoundError(path);
}
});
this.routes.push(new Route(path, "DELETE", listener));
}
/**
* Binds a new route at `path` to a listener for any request method.
* @date 2/14/2024 - 7:09:49 PM
*
* @param {string} path - The path at which the route will take effect. Must start with a `/`
* @param {(req: Request, info: Deno.ServeHandlerInfo) => Promise<ResponseConstructor>} listener - The function that will be run when a request arrives at the specified route
* @throws `RouteAlreadyBoundError` if the `path` at which we're binding the route is already bound to another route
*/
any(
path: string,
listener: (
req: Request,
info: Deno.ServeHandlerInfo
) => Promise<ResponseConstructor>
) {
this.routes.forEach((route) => {
if (route.path == path) {
throw new RouteAlreadyBoundError(path);
}
});
this.routes.push(new Route(path, "ANY", listener));
}
}
function MIMEFromExt(extension: string): string {
switch (extension) {
// text/
case "html":
case "htm":
return "text/html";
case "css":
return "text/css";
case "js":
case "mjs":
return "text/javascript";
case "txt":
return "text/plain";
// image/
case "svg":
return "image/svg+xml";
case "apng":
return "image/apng";
case "png":
return "image/png";
case "gif":
return "image/gif";
case "jpg":
case "jpeg":
return "image/jpeg";
case "ico":
return "image/vnd.microsoft.icon";
case "mp4":
return "video/mp4";
case "mpeg":
return "video/mpeg";
case "ogv":
return "video/ogg";
case "mp3":
return "audio/mpeg";
case "oga":
return "audio/ogg";
// application/
case "json":
return "application/json";
case "xml":
return "application/xml";
case "zip":
return "application/zip";
case "7z":
return "application/x-7z-compressed";
case "rar":
return "application/vnd.rar";
case "tar":
return "application/x-tar";
case "gz":
return "application/gzip";
case "php":
return "application/x-httpd-php";
case "pdf":
return "application/pdf";
case "sh":
return "application/x-sh";
// font/
case "otf":
return "font/otf";
case "ttf":
return "font/ttf";
default: {
console.log(
`Encountered unknown extension while generating static routes: .${extension} - If you want this fixed as quickly as possible, open an issue at https://github.com/SaphirDeFeu/TSMServerShell-Deno/issues`
);
return "text/plain";
}
}
}