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, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
23 |
import { log } from "../../utils/logger"; |
24 |
|
25 |
export default class InfractionClearCommand extends Command { |
26 |
public readonly name = "infraction__clear"; |
27 |
public readonly validationRules: ValidationRule[] = [ |
28 |
{ |
29 |
types: [ArgumentType.User], |
30 |
name: "user", |
31 |
errors: { |
32 |
required: `Please provide a user to clear their infractions!`, |
33 |
"type:invalid": `Please provide a __valid__ user!`, |
34 |
"entity:null": "This user does not exist!" |
35 |
}, |
36 |
entity: { |
37 |
notNull: true |
38 |
} |
39 |
} |
40 |
]; |
41 |
public readonly permissions = [PermissionsBitField.Flags.ModerateMembers, PermissionsBitField.Flags.ViewAuditLog]; |
42 |
public readonly permissionMode = "or"; |
43 |
public readonly aliases: string[] = ["ci", "clearinfractions"]; |
44 |
|
45 |
public readonly description = "Clear infractions of a user."; |
46 |
public readonly argumentSyntaxes = ["<UserID|UserMention>"]; |
47 |
|
48 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
49 |
await this.deferIfInteraction(message); |
50 |
|
51 |
const user: User = context.isLegacy ? context.parsedNamedArgs.user : context.options.getUser("user", true); |
52 |
const type = context.isLegacy ? undefined : context.options.getString("type")?.toUpperCase(); |
53 |
|
54 |
if (type && !(type in InfractionType)) { |
55 |
await this.error(message, "Invalid infraction type provided"); |
56 |
return; |
57 |
} |
58 |
|
59 |
log(user); |
60 |
|
61 |
if (!user) return; |
62 |
|
63 |
const { count } = await this.client.prisma.infraction.deleteMany({ |
64 |
where: { |
65 |
userId: user.id, |
66 |
guildId: message.guildId!, |
67 |
type: type |
68 |
? { |
69 |
in: [type as InfractionType] |
70 |
} |
71 |
: undefined |
72 |
} |
73 |
}); |
74 |
|
75 |
if (count === 0) { |
76 |
await this.deferredReply(message, "No infractions found for this user!"); |
77 |
return; |
78 |
} |
79 |
|
80 |
await this.deferredReply(message, `${this.emoji("check")} Deleted ${count} infractions for user ${user.username}`); |
81 |
} |
82 |
} |