1 |
/** |
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 { safeUserFetch } from "../../utils/fetch"; |
24 |
import { isSnowflake } from "../../utils/utils"; |
25 |
|
26 |
export default class NoteClearCommand extends Command { |
27 |
public readonly name = "note__clear"; |
28 |
public readonly validationRules: ValidationRule[] = []; |
29 |
public readonly permissions = [PermissionsBitField.Flags.ModerateMembers, PermissionsBitField.Flags.ViewAuditLog]; |
30 |
public readonly permissionMode = "or"; |
31 |
public readonly description = "Clear all the notes of a user"; |
32 |
public readonly argumentSyntaxes = ["<UserID|UserMention>"]; |
33 |
|
34 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
35 |
if (context.isLegacy && context.args[0] === undefined) { |
36 |
await this.error(message, "Please specify a user to clear notes!"); |
37 |
return; |
38 |
} |
39 |
|
40 |
let user: User | null | undefined = context.isLegacy ? undefined : context.options.getUser("user", true); |
41 |
|
42 |
if (context.isLegacy) { |
43 |
user = await safeUserFetch( |
44 |
this.client, |
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 |
} |