summary refs log tree commit diff
path: root/util/src/models/RateLimit.ts
blob: 6a0e1ffd405bdd744177ca933e23b473c53e5c1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { Schema, Document, Types } from "mongoose";
import db from "../util/Database";

export interface Bucket {
	id: "global" | "error" | string; // channel_239842397 | guild_238927349823 | webhook_238923423498
	user_id: string;
	hits: number;
	blocked: boolean;
	expires_at: Date;
}

export interface BucketDocument extends Bucket, Document {
	id: string;
}

export const BucketSchema = new Schema({
	id: { type: String, required: true },
	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 },
	expires_at: { type: Date, required: true },
});

// @ts-ignore
export const BucketModel = db.model<BucketDocument>("Bucket", BucketSchema, "ratelimits");