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, { 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 |
|
|
requiredErrorMessage: `Please provide a user to clear their infractions!`, |
32 |
|
|
typeErrorMessage: `Please provide a __valid__ user!`, |
33 |
|
|
entityNotNull: true, |
34 |
|
|
entityNotNullErrorMessage: "This user does not exist!" |
35 |
|
|
} |
36 |
|
|
]; |
37 |
|
|
public readonly permissions = [PermissionsBitField.Flags.ModerateMembers, PermissionsBitField.Flags.ViewAuditLog]; |
38 |
|
|
public readonly permissionMode = "or"; |
39 |
|
|
public readonly aliases: string[] = ["ci", "clearinfractions"]; |
40 |
|
|
|
41 |
|
|
public readonly description = "Clear infractions of a user."; |
42 |
|
|
public readonly argumentSyntaxes = ["<UserID|UserMention>"]; |
43 |
|
|
|
44 |
|
|
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
45 |
|
|
await this.deferIfInteraction(message); |
46 |
|
|
|
47 |
|
|
const user: User = context.isLegacy ? context.parsedNamedArgs.user : context.options.getUser("user", true); |
48 |
|
|
const type = context.isLegacy ? undefined : context.options.getString("type")?.toUpperCase(); |
49 |
|
|
|
50 |
|
|
if (type && !(type in InfractionType)) { |
51 |
|
|
await this.error(message, "Invalid infraction type provided"); |
52 |
|
|
return; |
53 |
|
|
} |
54 |
|
|
|
55 |
|
|
log(user); |
56 |
|
|
|
57 |
|
|
if (!user) return; |
58 |
|
|
|
59 |
|
|
const { count } = await this.client.prisma.infraction.deleteMany({ |
60 |
|
|
where: { |
61 |
|
|
userId: user.id, |
62 |
|
|
guildId: message.guildId!, |
63 |
|
|
type: type |
64 |
|
|
? { |
65 |
|
|
in: [type as InfractionType] |
66 |
|
|
} |
67 |
|
|
: undefined |
68 |
|
|
} |
69 |
|
|
}); |
70 |
|
|
|
71 |
|
|
if (count === 0) { |
72 |
|
|
await this.deferredReply(message, "No infractions found for this user!"); |
73 |
|
|
return; |
74 |
|
|
} |
75 |
|
|
|
76 |
|
|
await this.deferredReply(message, `${this.emoji("check")} Deleted ${count} infractions for user ${user.username}`); |
77 |
|
|
} |
78 |
|
|
} |