/[sudobot]/branches/5.x/src/commands/moderation/SendHistoryCommand.ts
ViewVC logotype

Contents of /branches/5.x/src/commands/moderation/SendHistoryCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months, 1 week ago) by rakinar2
File MIME type: application/typescript
File size: 2804 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 { PermissionFlagsBits, SlashCommandBuilder } from "discord.js";
21 import Command, { ArgumentType, BasicCommandContext, 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 entityNotNull: true,
29 requiredErrorMessage: "You must specify a user to give shot!",
30 typeErrorMessage: "You have specified an invalid user mention or ID.",
31 entityNotNullErrorMessage: "The given user does not exist!",
32 name: "user"
33 }
34 ];
35 public readonly permissions = [PermissionFlagsBits.BanMembers, PermissionFlagsBits.ManageGuild];
36 public readonly permissionMode = "or";
37
38 public readonly aliases = ["modlogs", "genlogs", "genhistory"];
39 public readonly description = "Generates a file that contains the infraction history of the given user.";
40
41 public readonly slashCommandBuilder = new SlashCommandBuilder().addUserOption(option =>
42 option.setName("user").setDescription("The target user").setRequired(true)
43 );
44
45 async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> {
46 await this.deferIfInteraction(message, { ephemeral: true });
47
48 const { buffer, count } = await this.client.infractionManager.createInfractionHistoryBuffer(message.member!.user, message.guild!);
49
50 if (!buffer) {
51 await this.deferredReply(message, "This user doesn't have any infractions.");
52 return;
53 }
54
55 await this.deferredReply(message, {
56 content: `${this.emoji("check")} Successfully generated the infraction history. The attached files contains ${count} records.`,
57 files: [
58 {
59 attachment: buffer,
60 name: `history-${message.member!.user.username}.txt`
61 }
62 ]
63 });
64 }
65 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26