1 |
import DiscordClient from "../client/Client"; |
2 |
import Service from "../utils/structures/Service"; |
3 |
import express, { Express, Router as ExpressRouter } from 'express'; |
4 |
import Router from "./Router"; |
5 |
import path from "path"; |
6 |
import rateLimit from 'express-rate-limit'; |
7 |
|
8 |
export interface ServerOptions { |
9 |
port?: number; |
10 |
} |
11 |
|
12 |
export default class Server extends Service { |
13 |
port: number; |
14 |
express: Express; |
15 |
router: Router; |
16 |
|
17 |
constructor(client: DiscordClient, { port = 4000 }: ServerOptions = {}) { |
18 |
super(client); |
19 |
this.port = port; |
20 |
this.express = express(); |
21 |
this.router = new Router(client, this, { routesDir: path.resolve(__dirname, 'routes') }); |
22 |
} |
23 |
|
24 |
async boot() { |
25 |
type methods = 'get' | 'post' | 'put' | 'patch' | 'delete'; |
26 |
const expressRouter = ExpressRouter(); |
27 |
|
28 |
expressRouter.use(rateLimit({ |
29 |
windowMs: 1 * 60 * 1000, |
30 |
max: 50, |
31 |
standardHeaders: true, |
32 |
legacyHeaders: true, |
33 |
message: { code: 429, error: 'Too many requests at a time. Please try again later.' }, |
34 |
})); |
35 |
|
36 |
expressRouter.use(express.json()); |
37 |
expressRouter.use(express.urlencoded({ extended: true })); |
38 |
|
39 |
await this.router.loadRoutes(); |
40 |
|
41 |
for (const route of this.router.routes) { |
42 |
// console.log(route.callback[1], route.callback[0].middleware()[route.callback[1]]); |
43 |
expressRouter[route.method.toLowerCase() as methods](route.path, ...(route.callback[0].middleware()[route.callback[1]] as any[] ?? []), ...route.middlewareList as any[], await route.getCallbackFunction()); |
44 |
} |
45 |
|
46 |
this.express.use(expressRouter); |
47 |
} |
48 |
|
49 |
async run() { |
50 |
await this.boot(); |
51 |
|
52 |
this.express.listen(this.port, () => { |
53 |
console.log(`API Server listening at port ${this.port}`); |
54 |
}); |
55 |
} |
56 |
} |