1 |
rakinar2 |
577 |
/** |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2022 OSN Inc. |
5 |
|
|
* |
6 |
|
|
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
|
|
* under the terms of the GNU Affero General Public License as published by |
8 |
|
|
* the Free Software Foundation, either version 3 of the License, or |
9 |
|
|
* (at your option) any later version. |
10 |
|
|
* |
11 |
|
|
* SudoBot is distributed in the hope that it will be useful, but |
12 |
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
|
|
* GNU Affero General Public License for more details. |
15 |
|
|
* |
16 |
|
|
* You should have received a copy of the GNU Affero General Public License |
17 |
|
|
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
|
|
*/ |
19 |
|
|
|
20 |
|
|
import { Message, Interaction, CommandInteraction, Util, GuildMemberRoleManager, Permissions } from "discord.js"; |
21 |
|
|
import DiscordClient from "../../client/Client"; |
22 |
|
|
import SpamViolation from "../../models/SpamViolation"; |
23 |
|
|
import CommandOptions from "../../types/CommandOptions"; |
24 |
|
|
import InteractionOptions from "../../types/InteractionOptions"; |
25 |
|
|
import { emoji } from "../../utils/Emoji"; |
26 |
|
|
import getUser from "../../utils/getUser"; |
27 |
|
|
import BaseCommand from "../../utils/structures/BaseCommand"; |
28 |
|
|
|
29 |
|
|
export default class SpamViolationResetCommand extends BaseCommand { |
30 |
|
|
name = 'spamviolationreset'; |
31 |
|
|
category = 'moderation'; |
32 |
|
|
aliases = ['spamreset', 'svreset']; |
33 |
|
|
permissions = [Permissions.FLAGS.MANAGE_MESSAGES]; |
34 |
|
|
|
35 |
|
|
async run(client: DiscordClient, message: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
36 |
|
|
if (!options.isInteraction && options.args[0] === undefined) { |
37 |
|
|
await message.reply(`${emoji('error')} You must specify a user.`); |
38 |
|
|
return; |
39 |
|
|
} |
40 |
|
|
|
41 |
|
|
const user = options.isInteraction ? options.options.getUser('user') : (await getUser(client, message as Message, options, 0)); |
42 |
|
|
|
43 |
|
|
if (!user) { |
44 |
|
|
await message.reply(`${emoji('error')} That user does not exist.`); |
45 |
|
|
return; |
46 |
|
|
} |
47 |
|
|
|
48 |
|
|
const { deletedCount } = await SpamViolation.deleteMany({ |
49 |
|
|
user_id: user.id, |
50 |
|
|
guild_id: message.guildId! |
51 |
|
|
}); |
52 |
|
|
|
53 |
|
|
await message.reply(`${emoji('check')} Cleared **${deletedCount}** records for user **${Util.escapeMarkdown(user.tag)}**.`); |
54 |
|
|
} |
55 |
|
|
} |