/[sudobot]/branches/6.x/src/commands/moderation/InfractionListCommand.ts
ViewVC logotype

Contents of /branches/6.x/src/commands/moderation/InfractionListCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 4860 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
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 { formatDistanceToNowStrict } from "date-fns";
22 import { EmbedBuilder, PermissionsBitField, User } from "discord.js";
23 import Command, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command";
24 import Pagination from "../../utils/Pagination";
25
26 export default class InfractionListCommand extends Command {
27 public readonly name = "infraction__list";
28 public readonly validationRules: ValidationRule[] = [
29 {
30 types: [ArgumentType.User],
31 name: "user",
32 errors: {
33 required: `Please provide a user to view their infractions!`,
34 "type:invalid": `Please provide a __valid__ user!`,
35 "entity:null": "This user does not exist!"
36 },
37 entity: true
38 }
39 ];
40 public readonly permissions = [PermissionsBitField.Flags.ModerateMembers, PermissionsBitField.Flags.ViewAuditLog];
41 public readonly permissionMode = "or";
42 public readonly aliases: string[] = ["l", "history"];
43
44 public readonly description = "View infractions of a user.";
45 public readonly argumentSyntaxes = ["<UserID|UserMention>"];
46
47 async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> {
48 const user: User = context.isLegacy ? context.parsedNamedArgs.user : context.options.getUser("user", true);
49
50 const infractions = await this.client.prisma.infraction.findMany({
51 where: { userId: user.id, guildId: message.guildId! }
52 });
53
54 if (infractions.length === 0) {
55 await this.deferredReply(message, "No infractions found for this user!");
56 return;
57 }
58
59 const pagination = new Pagination(infractions, {
60 channelId: message.channelId!,
61 guildId: message.guildId!,
62 limit: 10,
63 userId: message.member!.user.id,
64 client: this.client,
65 timeout: 180_000,
66 embedBuilder({ data, currentPage, maxPages }) {
67 let description = "";
68
69 for (const infraction of data) {
70 description += `**ID**: \`${infraction.id}\`\n`;
71 (description += `**Type**: ${
72 infraction.type === InfractionType.BULK_DELETE_MESSAGE
73 ? "Bulk message delete"
74 : infraction.type[0] + infraction.type.substring(1).toLowerCase().replace(/_/g, " ")
75 }\n`),
76 (description += `Responsible Moderator: <@${infraction.moderatorId}>\n`);
77 description += `Reason:\n${
78 infraction.reason ? `\`\`\`\n${infraction.reason}\n\`\`\`` : "*No reason provided*"
79 }\n`;
80 description += `Created at: ${infraction.createdAt.toLocaleString()} (${formatDistanceToNowStrict(
81 infraction.createdAt,
82 {
83 addSuffix: true
84 }
85 )})\n`;
86 description += `Updated at: ${infraction.updatedAt.toLocaleString()} (${formatDistanceToNowStrict(
87 infraction.updatedAt,
88 {
89 addSuffix: true
90 }
91 )})\n`;
92 description += `\n`;
93 }
94
95 return new EmbedBuilder({
96 author: {
97 name: user.username,
98 icon_url: user.displayAvatarURL()
99 },
100 description,
101 footer: {
102 text: `Page ${currentPage} of ${maxPages} • ${infractions.length} infractions total`
103 },
104 color: 0x007bff
105 }).setTimestamp();
106 }
107 });
108
109 const reply = await this.deferredReply(message, await pagination.getMessageOptions(1));
110 await pagination.start(reply);
111 }
112 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26