1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-22 10:41:34 +02:00
server/api/src/Server.ts

102 lines
2.7 KiB
TypeScript
Raw Normal View History

2021-10-04 21:57:24 +02:00
import { OptionsJson } from "body-parser";
2021-02-06 10:09:32 +01:00
import "missing-native-js-functions";
2021-02-14 19:01:41 +01:00
import { Connection } from "mongoose";
import { Server, ServerOptions } from "lambert-server";
2021-06-27 23:14:13 +02:00
import { Authentication, CORS } from "./middlewares/";
2021-08-29 00:03:40 +02:00
import { Config, initDatabase, initEvent } from "@fosscord/util";
2021-02-02 00:51:00 +01:00
import { ErrorHandler } from "./middlewares/ErrorHandler";
import { BodyParser } from "./middlewares/BodyParser";
2021-08-17 20:37:13 +02:00
import { Router, Request, Response, NextFunction } from "express";
2021-04-26 00:10:20 +02:00
import mongoose from "mongoose";
2021-05-24 20:47:06 +02:00
import path from "path";
import { initRateLimits } from "./middlewares/RateLimit";
import TestClient from "./middlewares/TestClient";
2021-08-13 20:53:50 +02:00
import { initTranslation } from "./middlewares/Translation";
import morgan from "morgan";
2020-11-28 19:31:04 +01:00
export interface FosscordServerOptions extends ServerOptions {}
2020-11-28 19:31:04 +01:00
declare global {
namespace Express {
interface Request {
2021-02-02 00:51:00 +01:00
// @ts-ignore
2021-04-22 23:29:06 +02:00
server: FosscordServer;
}
}
}
2020-11-28 19:31:04 +01:00
2021-04-22 23:29:06 +02:00
export class FosscordServer extends Server {
public declare options: FosscordServerOptions;
2020-11-28 19:31:04 +01:00
2021-04-22 23:29:06 +02:00
constructor(opts?: Partial<FosscordServerOptions>) {
2021-02-02 00:51:00 +01:00
// @ts-ignore
super({ ...opts, errorHandler: false, jsonBody: false });
2020-11-28 19:31:04 +01:00
}
async start() {
2021-08-29 00:03:40 +02:00
await initDatabase();
2021-05-24 20:47:06 +02:00
await Config.init();
await initEvent();
2021-01-30 19:58:15 +01:00
2021-09-18 20:43:00 +02:00
/*
DOCUMENTATION: uses LOG_REQUESTS environment variable
2021-09-18 20:43:00 +02:00
# only log 200 and 204
LOG_REQUESTS=200 204
2021-09-18 20:43:00 +02:00
# log everything except 200 and 204
LOG_REQUESTS=-200 204
2021-09-18 20:43:00 +02:00
# log all requests
LOG_REQUESTS=-
2021-09-18 20:43:00 +02:00
*/
let logRequests = process.env["LOG_REQUESTS"] != undefined;
2021-10-04 21:57:24 +02:00
if (logRequests) {
this.app.use(
morgan("combined", {
skip: (req, res) => {
var skip = !(process.env["LOG_REQUESTS"]?.includes(res.statusCode.toString()) ?? false);
if (process.env["LOG_REQUESTS"]?.charAt(0) == "-") skip = !skip;
return skip;
}
})
);
}
this.app.use(CORS);
2021-09-08 13:34:37 +02:00
this.app.use(BodyParser({ inflate: true, limit: "10mb" }));
2021-01-30 19:58:15 +01:00
2021-04-05 21:43:11 +02:00
const app = this.app;
2021-08-13 20:53:50 +02:00
const api = Router(); // @ts-ignore
this.app = api;
2021-04-05 21:43:11 +02:00
2021-08-13 20:53:50 +02:00
api.use(Authentication);
await initRateLimits(api);
2021-08-13 20:53:50 +02:00
await initTranslation(api);
2021-05-24 20:57:22 +02:00
this.routes = await this.registerRoutes(path.join(__dirname, "routes", "/"));
2021-08-17 20:37:13 +02:00
api.use("*", (error: any, req: Request, res: Response, next: NextFunction) => {
if (error) return next(error);
res.status(404).json({
message: "404: Not Found",
code: 0
});
2021-08-15 21:56:30 +02:00
next();
});
2021-04-05 21:43:11 +02:00
this.app = app;
2021-08-13 20:53:50 +02:00
app.use("/api/v8", api);
app.use("/api/v9", api);
app.use("/api", api); // allow unversioned requests
2021-02-02 00:51:00 +01:00
this.app.use(ErrorHandler);
TestClient(this.app);
2021-04-05 21:43:11 +02:00
2021-10-04 21:57:24 +02:00
if (logRequests) {
console.log(
"Warning: Request logging is enabled! This will spam your console!\nTo disable this, unset the 'LOG_REQUESTS' environment variable!"
);
}
return super.start();
2020-11-28 19:31:04 +01:00
}
}