1 |
rakinar2 |
577 |
/** |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2023 OSN Developers. |
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 { InfractionType } from "@prisma/client"; |
21 |
|
|
import { PermissionsBitField, User } from "discord.js"; |
22 |
|
|
import Command, { BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
23 |
|
|
import { isSnowflake } from "../../utils/utils"; |
24 |
|
|
|
25 |
|
|
export default class NoteClearCommand extends Command { |
26 |
|
|
public readonly name = "note__clear"; |
27 |
|
|
public readonly validationRules: ValidationRule[] = []; |
28 |
|
|
public readonly permissions = [PermissionsBitField.Flags.ModerateMembers, PermissionsBitField.Flags.ViewAuditLog]; |
29 |
|
|
public readonly permissionMode = "or"; |
30 |
|
|
public readonly description = "Clear all the notes of a user"; |
31 |
|
|
public readonly argumentSyntaxes = ["<UserID|UserMention>"]; |
32 |
|
|
|
33 |
|
|
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
34 |
|
|
if (context.isLegacy && context.args[0] === undefined) { |
35 |
|
|
await this.error(message, "Please specify a user to clear notes!"); |
36 |
|
|
return; |
37 |
|
|
} |
38 |
|
|
|
39 |
|
|
await this.deferIfInteraction(message); |
40 |
|
|
|
41 |
|
|
let user: User | null | undefined = context.isLegacy ? undefined : context.options.getUser("user", true); |
42 |
|
|
|
43 |
|
|
if (context.isLegacy) { |
44 |
|
|
user = await this.client.fetchUserSafe( |
45 |
|
|
isSnowflake(context.args[0]) |
46 |
|
|
? context.args[0] |
47 |
|
|
: context.args[0].substring(context.args[0].includes("!") ? 3 : 2, context.args[0].length - 1) |
48 |
|
|
); |
49 |
|
|
} |
50 |
|
|
|
51 |
|
|
if (!user) { |
52 |
|
|
await this.error(message, "Invalid user specified!"); |
53 |
|
|
return; |
54 |
|
|
} |
55 |
|
|
|
56 |
|
|
const { count } = await this.client.prisma.infraction.deleteMany({ |
57 |
|
|
where: { |
58 |
|
|
userId: user.id, |
59 |
|
|
guildId: message.guildId!, |
60 |
|
|
type: InfractionType.NOTE |
61 |
|
|
} |
62 |
|
|
}); |
63 |
|
|
|
64 |
|
|
if (count === 0) { |
65 |
|
|
await this.deferredReply(message, "No notes were found for this user."); |
66 |
|
|
return; |
67 |
|
|
} |
68 |
|
|
|
69 |
|
|
await this.deferredReply(message, `${this.emoji("check")} Deleted ${count} notes of user **${user.username}**`); |
70 |
|
|
} |
71 |
|
|
} |