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 |
requiredErrorMessage: `Please provide a user to view their infractions!`, |
33 |
typeErrorMessage: `Please provide a __valid__ user!`, |
34 |
entityNotNull: true, |
35 |
entityNotNullErrorMessage: "This user does not exist!" |
36 |
} |
37 |
]; |
38 |
public readonly permissions = [PermissionsBitField.Flags.ModerateMembers, PermissionsBitField.Flags.ViewAuditLog]; |
39 |
public readonly permissionMode = "or"; |
40 |
public readonly aliases: string[] = ["l", "history"]; |
41 |
|
42 |
public readonly description = "View infractions of a user."; |
43 |
public readonly argumentSyntaxes = ["<UserID|UserMention>"]; |
44 |
|
45 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
46 |
const user: User = context.isLegacy ? context.parsedNamedArgs.user : context.options.getUser("user", true); |
47 |
|
48 |
const infractions = await this.client.prisma.infraction.findMany({ |
49 |
where: { userId: user.id, guildId: message.guildId! } |
50 |
}); |
51 |
|
52 |
if (infractions.length === 0) { |
53 |
await this.deferredReply(message, "No infractions found for this user!"); |
54 |
return; |
55 |
} |
56 |
|
57 |
const pagination = new Pagination(infractions, { |
58 |
channelId: message.channelId!, |
59 |
guildId: message.guildId!, |
60 |
limit: 10, |
61 |
userId: message.member!.user.id, |
62 |
client: this.client, |
63 |
timeout: 180_000, |
64 |
embedBuilder({ data, currentPage, maxPages }) { |
65 |
let description = ""; |
66 |
|
67 |
for (const infraction of data) { |
68 |
description += `**ID**: \`${infraction.id}\`\n`; |
69 |
(description += `**Type**: ${ |
70 |
infraction.type === InfractionType.BULK_DELETE_MESSAGE |
71 |
? "Bulk message delete" |
72 |
: infraction.type[0] + infraction.type.substring(1).toLowerCase() |
73 |
}\n`), |
74 |
(description += `Responsible Moderator: <@${infraction.moderatorId}>\n`); |
75 |
description += `Reason:\n${ |
76 |
infraction.reason ? `\`\`\`\n${infraction.reason}\n\`\`\`` : "*No reason provided*" |
77 |
}\n`; |
78 |
description += `Created at: ${infraction.createdAt.toLocaleString()} (${formatDistanceToNowStrict( |
79 |
infraction.createdAt, |
80 |
{ |
81 |
addSuffix: true |
82 |
} |
83 |
)})\n`; |
84 |
description += `Updated at: ${infraction.updatedAt.toLocaleString()} (${formatDistanceToNowStrict( |
85 |
infraction.updatedAt, |
86 |
{ |
87 |
addSuffix: true |
88 |
} |
89 |
)})\n`; |
90 |
description += `\n`; |
91 |
} |
92 |
|
93 |
return new EmbedBuilder({ |
94 |
author: { |
95 |
name: user.username, |
96 |
icon_url: user.displayAvatarURL() |
97 |
}, |
98 |
description, |
99 |
footer: { |
100 |
text: `Page ${currentPage} of ${maxPages} • ${infractions.length} infractions total` |
101 |
}, |
102 |
color: 0x007bff |
103 |
}).setTimestamp(); |
104 |
} |
105 |
}); |
106 |
|
107 |
const reply = await this.deferredReply(message, await pagination.getMessageOptions(1)); |
108 |
await pagination.start(reply); |
109 |
} |
110 |
} |