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

Contents of /branches/6.x/src/commands/moderation/NoteListCommand.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: 3997 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 { EmbedBuilder, PermissionsBitField, User, escapeCodeBlock } from "discord.js";
22 import Command, { BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command";
23 import Pagination from "../../utils/Pagination";
24 import { isSnowflake } from "../../utils/utils";
25
26 export default class NoteListCommand extends Command {
27 public readonly name = "note__list";
28 public readonly validationRules: ValidationRule[] = [];
29 public readonly permissions = [PermissionsBitField.Flags.ModerateMembers, PermissionsBitField.Flags.ViewAuditLog];
30 public readonly permissionMode = "or";
31 public readonly description = "List 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 list 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 this.client.fetchUserSafe(
44 isSnowflake(context.args[0])
45 ? context.args[0]
46 : context.args[0].substring(context.args[0].includes("!") ? 3 : 2, context.args[0].length - 1)
47 );
48 }
49
50 if (!user) {
51 await this.error(message, "Invalid user specified!");
52 return;
53 }
54
55 const notes = await this.client.prisma.infraction.findMany({
56 where: {
57 userId: user.id,
58 guildId: message.guildId!,
59 type: InfractionType.NOTE
60 }
61 });
62
63 if (notes.length === 0) {
64 await this.deferredReply(message, "No notes were found for this user.");
65 return;
66 }
67
68 const pagination = new Pagination(notes, {
69 channelId: message.channelId!,
70 client: this.client,
71 guildId: message.guildId!,
72 limit: 10,
73 timeout: 180_000,
74 userId: message.member!.user.id,
75 embedBuilder({ currentPage, data, maxPages }) {
76 let description = "";
77
78 for (const note of data) {
79 description += `ID: ${note.id}\nCreated by: <@${note.moderatorId}> (${note.moderatorId})\n`;
80 description += `\`\`\`\n${escapeCodeBlock(note.reason ?? "*No content*")}\n\`\`\`\n`;
81 description += "\n";
82 }
83
84 return new EmbedBuilder({
85 author: {
86 name: user!.username,
87 icon_url: user!.displayAvatarURL()
88 },
89 color: 0x007bff,
90 description,
91 footer: {
92 text: `Page ${currentPage} of ${maxPages}`
93 }
94 });
95 }
96 });
97
98 const reply = await this.deferredReply(message, await pagination.getMessageOptions(1));
99 await pagination.start(reply);
100 }
101 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26