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 { 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 { safeUserFetch } from "../../utils/fetch"; |
25 |
|
|
import { isSnowflake } from "../../utils/utils"; |
26 |
|
|
|
27 |
|
|
export default class UserNoteListCommand extends Command { |
28 |
|
|
public readonly name = "unote__list"; |
29 |
|
|
public readonly validationRules: ValidationRule[] = []; |
30 |
|
|
public readonly permissions = [PermissionsBitField.Flags.ModerateMembers, PermissionsBitField.Flags.ViewAuditLog]; |
31 |
|
|
public readonly permissionMode = "or"; |
32 |
|
|
public readonly description = "List notes of a user"; |
33 |
|
|
public readonly argumentSyntaxes = ["<UserID|UserMention>"]; |
34 |
|
|
|
35 |
|
|
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
36 |
|
|
if (context.isLegacy && context.args[0] === undefined) { |
37 |
|
|
await this.error(message, "Please specify a user to list notes!"); |
38 |
|
|
return; |
39 |
|
|
} |
40 |
|
|
|
41 |
|
|
let user: User | null | undefined = context.isLegacy ? undefined : context.options.getUser("user", true); |
42 |
|
|
|
43 |
|
|
if (context.isLegacy) { |
44 |
|
|
user = await safeUserFetch( |
45 |
|
|
this.client, |
46 |
|
|
isSnowflake(context.args[0]) |
47 |
|
|
? context.args[0] |
48 |
|
|
: context.args[0].substring(context.args[0].includes("!") ? 3 : 2, context.args[0].length - 1) |
49 |
|
|
); |
50 |
|
|
} |
51 |
|
|
|
52 |
|
|
if (!user) { |
53 |
|
|
await this.error(message, "Invalid user specified!"); |
54 |
|
|
return; |
55 |
|
|
} |
56 |
|
|
|
57 |
|
|
const notes = await this.client.prisma.infraction.findMany({ |
58 |
|
|
where: { |
59 |
|
|
userId: user.id, |
60 |
|
|
guildId: message.guildId!, |
61 |
|
|
type: InfractionType.NOTE |
62 |
|
|
} |
63 |
|
|
}); |
64 |
|
|
|
65 |
|
|
if (notes.length === 0) { |
66 |
|
|
await this.deferredReply(message, "No notes were found for this user."); |
67 |
|
|
return; |
68 |
|
|
} |
69 |
|
|
|
70 |
|
|
const pagination = new Pagination(notes, { |
71 |
|
|
channelId: message.channelId!, |
72 |
|
|
client: this.client, |
73 |
|
|
guildId: message.guildId!, |
74 |
|
|
limit: 10, |
75 |
|
|
timeout: 180_000, |
76 |
|
|
userId: message.member!.user.id, |
77 |
|
|
embedBuilder({ currentPage, data, maxPages }) { |
78 |
|
|
let description = ""; |
79 |
|
|
|
80 |
|
|
for (const note of data) { |
81 |
|
|
description += `ID: ${note.id}\nCreated by: <@${note.moderatorId}> (${note.moderatorId})\n`; |
82 |
|
|
description += `\`\`\`\n${escapeCodeBlock(note.reason ?? "*No content*")}\n\`\`\`\n`; |
83 |
|
|
description += "\n"; |
84 |
|
|
} |
85 |
|
|
|
86 |
|
|
return new EmbedBuilder({ |
87 |
|
|
author: { |
88 |
|
|
name: user!.username, |
89 |
|
|
icon_url: user!.displayAvatarURL() |
90 |
|
|
}, |
91 |
|
|
color: 0x007bff, |
92 |
|
|
description, |
93 |
|
|
footer: { |
94 |
|
|
text: `Page ${currentPage} of ${maxPages}` |
95 |
|
|
} |
96 |
|
|
}); |
97 |
|
|
} |
98 |
|
|
}); |
99 |
|
|
|
100 |
|
|
const reply = await this.deferredReply(message, await pagination.getMessageOptions(1)); |
101 |
|
|
await pagination.start(reply); |
102 |
|
|
} |
103 |
|
|
} |