2022-12-18 23:30:25 +01:00
|
|
|
const ratelimit = {};
|
2023-04-19 17:05:43 +02:00
|
|
|
const { ownerId } = process.env;
|
|
|
|
|
2023-04-04 01:07:08 +02:00
|
|
|
import db from '../models/index.js';
|
2022-12-18 23:30:25 +01:00
|
|
|
|
|
|
|
export default {
|
|
|
|
check,
|
|
|
|
};
|
|
|
|
function check(user, commandName, commands) {
|
|
|
|
const userID = user.id;
|
|
|
|
const userTag = user.tag;
|
|
|
|
|
2023-04-19 17:05:43 +02:00
|
|
|
// Don't apply the rate limit to bot owner
|
|
|
|
if (userID === ownerId) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-12-18 23:30:25 +01:00
|
|
|
if (!ratelimit[userID]) {
|
|
|
|
ratelimit[userID] = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
const date = new Date();
|
|
|
|
if (ratelimit[userID][commandName]) {
|
2022-12-20 19:53:41 +01:00
|
|
|
if (ratelimit[userID][commandName].cooldown && ratelimit[userID][commandName].limit === commands.ratelimit) {
|
2022-12-18 23:30:25 +01:00
|
|
|
if (date > ratelimit[userID][commandName].cooldown) {
|
|
|
|
ratelimit[userID][commandName].limit = 0;
|
|
|
|
ratelimit[userID][commandName].cooldown = undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (commands.ratelimit === ratelimit[userID][commandName].limit) {
|
2022-12-19 05:03:39 +01:00
|
|
|
const seconds = Math.floor((ratelimit[userID][commandName].cooldown - date) / 1000);
|
|
|
|
const minutes = Math.floor(seconds / 60);
|
|
|
|
const hours = Math.floor(minutes / 60);
|
2022-12-20 19:53:41 +01:00
|
|
|
const dateString = `${hours > 0 ? ` ${Math.floor(hours)} hours` : ''}${minutes > 0 ? ` ${Math.floor(minutes % 60)} minutes` : ''}${seconds > 0 ? ` ${Math.floor(seconds % 60)} seconds` : ''}`;
|
2023-04-04 01:07:08 +02:00
|
|
|
|
|
|
|
const isOptOut = db.optout.findOne({ where: { userID: userID } });
|
|
|
|
if (isOptOut) {
|
|
|
|
console.log(`A user is rate limited on \x1b[33m${commandName}\x1b[0m for${dateString}.`);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
console.log(`\x1b[33m${userTag} (${userID})\x1b[0m is rate limited on \x1b[33m${commandName}\x1b[0m for${dateString}.`);
|
|
|
|
}
|
2022-12-20 19:53:41 +01:00
|
|
|
return `You are being rate limited. You can try again in${dateString}.`;
|
2022-12-18 23:30:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (commands.ratelimit) {
|
2022-12-20 19:53:41 +01:00
|
|
|
date.setSeconds(date.getSeconds() + commands.cooldown);
|
|
|
|
ratelimit[userID][commandName] = { limit: ratelimit[userID][commandName] ? ratelimit[userID][commandName].limit + 1 : 1, cooldown: date };
|
2022-12-18 23:30:25 +01:00
|
|
|
}
|
2022-12-20 19:53:41 +01:00
|
|
|
|
2022-12-18 23:30:25 +01:00
|
|
|
return false;
|
|
|
|
}
|