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

110 lines
3.6 KiB
TypeScript
Raw Normal View History

2021-02-06 10:09:32 +01:00
import "missing-native-js-functions";
import fs from "fs";
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-12 16:47:51 +02:00
import { Config, db, RabbitMQ } from "@fosscord/server-util";
2021-02-01 21:49:01 +01:00
import i18next from "i18next";
2021-02-02 00:51:00 +01:00
import i18nextMiddleware, { I18next } from "i18next-http-middleware";
import i18nextBackend from "i18next-node-fs-backend";
import { ErrorHandler } from "./middlewares/ErrorHandler";
import { BodyParser } from "./middlewares/BodyParser";
import express, { Router, Request, Response } 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";
2020-11-28 19:31:04 +01:00
2021-04-26 00:10:20 +02:00
// this will return the new updated document for findOneAndUpdate
mongoose.set("returnOriginal", false); // https://mongoosejs.com/docs/api/model.html#model_Model.findOneAndUpdate
2021-04-26 00:10:20 +02: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
}
2021-02-14 19:01:41 +01:00
async setupSchema() {
return Promise.all([
db.collection("users").createIndex({ id: 1 }, { unique: true }),
db.collection("messages").createIndex({ id: 1 }, { unique: true }),
db.collection("channels").createIndex({ id: 1 }, { unique: true }),
db.collection("guilds").createIndex({ id: 1 }, { unique: true }),
db.collection("members").createIndex({ id: 1, guild_id: 1 }, { unique: true }),
db.collection("roles").createIndex({ id: 1 }, { unique: true }),
db.collection("emojis").createIndex({ id: 1 }, { unique: true }),
db.collection("invites").createIndex({ code: 1 }, { unique: true }),
2021-07-01 09:33:54 +02:00
db.collection("invites").createIndex({ expires_at: 1 }, { expireAfterSeconds: 0 }), // after 0 seconds of expires_at the invite will get delete
2021-07-01 11:16:13 +02:00
db.collection("ratelimits").createIndex({ expires_at: 1 }, { expireAfterSeconds: 0 })
]);
2021-02-14 19:01:41 +01:00
}
async start() {
2021-02-14 19:01:41 +01:00
// @ts-ignore
2021-02-16 21:20:07 +01:00
await (db as Promise<Connection>);
2021-02-14 19:01:41 +01:00
await this.setupSchema();
2021-07-18 19:49:10 +02:00
console.log("[Database] connected");
2021-05-24 20:47:06 +02:00
await Config.init();
2021-08-12 16:47:51 +02:00
await RabbitMQ.init();
2021-01-30 19:58:15 +01:00
this.app.use(CORS);
2021-06-25 15:54:13 +02:00
this.app.use(Authentication);
this.app.use(BodyParser({ inflate: true, limit: 1024 * 1024 * 10 })); // 2MB
const languages = fs.readdirSync(path.join(__dirname, "..", "locales"));
const namespaces = fs.readdirSync(path.join(__dirname, "..", "locales", "en"));
2021-02-01 21:49:01 +01:00
const ns = namespaces.filter((x) => x.endsWith(".json")).map((x) => x.slice(0, x.length - 5));
2021-02-02 00:51:00 +01:00
await i18next
.use(i18nextBackend)
.use(i18nextMiddleware.LanguageDetector)
.init({
preload: languages,
// debug: true,
fallbackLng: "en",
ns,
backend: {
loadPath: __dirname + "/../locales/{{lng}}/{{ns}}.json"
2021-02-02 00:51:00 +01:00
},
load: "all"
2021-02-02 00:51:00 +01:00
});
2021-02-01 21:49:01 +01:00
this.app.use(i18nextMiddleware.handle(i18next, {}));
2021-01-30 19:58:15 +01:00
2021-04-05 21:43:11 +02:00
const app = this.app;
const api = Router();
2021-04-05 21:43:11 +02:00
// @ts-ignore
this.app = api;
2021-04-05 21:43:11 +02:00
initRateLimits(api);
2021-05-24 20:57:22 +02:00
this.routes = await this.registerRoutes(path.join(__dirname, "routes", "/"));
app.use("/api/v8", api);
app.use("/api/v9", api);
app.use("/api", api); // allow unversioned requests
api.get("*", (req: Request, res: Response) => {
res.status(404).json({
message: "404: Not Found",
code: 0
});
});
2021-04-05 21:43:11 +02:00
this.app = app;
2021-02-02 00:51:00 +01:00
this.app.use(ErrorHandler);
TestClient(this.app);
2021-04-05 21:43:11 +02:00
return super.start();
2020-11-28 19:31:04 +01:00
}
}