1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-22 02:31:36 +02:00

Rate Limit Bucket

This commit is contained in:
Flam3rboy 2021-07-01 11:13:12 +02:00
parent 54fe0c9f1a
commit 3a8c7ec1c3

View File

@ -1,15 +1,12 @@
import { Schema, Document, Types } from "mongoose";
import db from "../util/Database";
import { ChannelModel } from "./Channel";
import { UserModel } from "./User";
import { GuildModel } from "./Guild";
export interface Bucket {
id: "global" | string; // channel_239842397 | guild_238927349823 | webhook_238923423498
user: string;
id: "global" | "error" | string; // channel_239842397 | guild_238927349823 | webhook_238923423498
user_id: string;
hits: number;
blocked: boolean;
created_at: Date;
expires_at: Date;
}
export interface BucketDocument extends Bucket, Document {
@ -21,7 +18,7 @@ export const BucketSchema = new Schema({
user_id: { type: String, required: true }, // bot, user, oauth_application, webhook
hits: { type: Number, required: true }, // Number of times the user hit this bucket
blocked: { type: Boolean, required: true },
created_at: { type: Date, required: true },
expires_at: { type: Date, required: true },
});
// @ts-ignore