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 { PermissionFlagsBits, SlashCommandBuilder } from "discord.js"; |
21 |
import Command, { ArgumentType, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
|
23 |
export default class SendHistoryCommand extends Command { |
24 |
public readonly name = "sendhistory"; |
25 |
public readonly validationRules: ValidationRule[] = [ |
26 |
{ |
27 |
types: [ArgumentType.User], |
28 |
entity: true, |
29 |
errors: { |
30 |
required: "You must specify a user to give shot!", |
31 |
"type:invalid": "You have specified an invalid user mention or ID.", |
32 |
"entity:null": "The given user does not exist!" |
33 |
}, |
34 |
name: "user" |
35 |
} |
36 |
]; |
37 |
public readonly permissions = [PermissionFlagsBits.BanMembers, PermissionFlagsBits.ManageGuild]; |
38 |
public readonly permissionMode = "or"; |
39 |
|
40 |
public readonly aliases = ["modlogs", "genlogs", "genhistory"]; |
41 |
public readonly description = "Generates a file that contains the infraction history of the given user."; |
42 |
|
43 |
public readonly slashCommandBuilder = new SlashCommandBuilder().addUserOption(option => |
44 |
option.setName("user").setDescription("The target user").setRequired(true) |
45 |
); |
46 |
|
47 |
async execute(message: CommandMessage): Promise<CommandReturn> { |
48 |
await this.deferIfInteraction(message, { ephemeral: true }); |
49 |
|
50 |
const { buffer, count } = await this.client.infractionManager.createInfractionHistoryBuffer( |
51 |
message.member!.user, |
52 |
message.guild! |
53 |
); |
54 |
|
55 |
if (!buffer) { |
56 |
await this.deferredReply(message, "This user doesn't have any infractions."); |
57 |
return; |
58 |
} |
59 |
|
60 |
await this.deferredReply(message, { |
61 |
content: `${this.emoji( |
62 |
"check" |
63 |
)} Successfully generated the infraction history. The attached files contains ${count} records.`, |
64 |
files: [ |
65 |
{ |
66 |
attachment: buffer, |
67 |
name: `history-${message.member!.user.username}.txt` |
68 |
} |
69 |
] |
70 |
}); |
71 |
} |
72 |
} |