1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 17:51:35 +02:00

🔥 disable rate limit for now -> wait till mongoose model exists

This commit is contained in:
Flam3rboy 2021-02-16 11:22:51 +01:00
parent e49591a78e
commit 4a815d302a
4 changed files with 6 additions and 3 deletions

4
package-lock.json generated
View File

@ -780,7 +780,7 @@
},
"node_modules/fosscord-server-util": {
"version": "1.0.0",
"resolved": "git+ssh://git@github.com/fosscord/fosscord-server-util.git#775296d0048d290b959f07cde10a3ffc1430bad9",
"resolved": "git+ssh://git@github.com/fosscord/fosscord-server-util.git#637cfa6010dd00a399463f5a14869c169960d6e6",
"license": "ISC",
"dependencies": {
"jsonwebtoken": "^8.5.1",
@ -2998,7 +2998,7 @@
"integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ="
},
"fosscord-server-util": {
"version": "git+ssh://git@github.com/fosscord/fosscord-server-util.git#775296d0048d290b959f07cde10a3ffc1430bad9",
"version": "git+ssh://git@github.com/fosscord/fosscord-server-util.git#637cfa6010dd00a399463f5a14869c169960d6e6",
"from": "fosscord-server-util@github:fosscord/fosscord-server-util",
"requires": {
"jsonwebtoken": "^8.5.1",

View File

@ -1,6 +1,5 @@
process.on("uncaughtException", console.error);
process.on("unhandledRejection", console.error);
setTimeout(() => {}, 100000000);
import { DiscordServer } from "./Server";

View File

@ -8,6 +8,7 @@ import { db } from "fosscord-server-util";
export async function GlobalRateLimit(req: Request, res: Response, next: NextFunction) {
return next();
// TODO: use new db mongoose models
/*
if (!Config.get().limits.rate.ip.enabled) return next();
const ip = getIpAdress(req);
@ -39,6 +40,7 @@ export async function GlobalRateLimit(req: Request, res: Response, next: NextFun
});
return next();
*/
}
export function getIpAdress(req: Request): string {

View File

@ -7,6 +7,7 @@ export function RateLimit({ count = 10, timespan = 1000 * 5, name = "/" }) {
return async (req: Request, res: Response, next: NextFunction) => {
return next();
// TODO: use new db mongoose models
/*
let id = req.userid || getIpAdress(req);
@ -40,5 +41,6 @@ export function RateLimit({ count = 10, timespan = 1000 * 5, name = "/" }) {
}
return next();
*/
};
}