/[sudobot]/branches/5.x/src/commands/automation/ExpireCommand.ts
ViewVC logotype

Contents of /branches/5.x/src/commands/automation/ExpireCommand.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: 5067 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 { Message, PermissionsBitField, SlashCommandBuilder, TextBasedChannel } from "discord.js";
21 import path from "path";
22 import Command, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command";
23 import QueueEntry from "../../utils/QueueEntry";
24 import { stringToTimeInterval } from "../../utils/datetime";
25 import { logError } from "../../utils/logger";
26
27 export default class ExpireCommand extends Command {
28 public readonly name = "expire";
29 public readonly validationRules: ValidationRule[] = [
30 {
31 types: [ArgumentType.TimeInterval],
32 minValue: 1,
33 minMaxErrorMessage: "Please specify a valid time interval!",
34 requiredErrorMessage: "Please specify after how long the message will expire!",
35 typeErrorMessage: "Please specify a valid time interval!",
36 timeMilliseconds: true,
37 name: "time_interval"
38 },
39 {
40 types: [ArgumentType.StringRest],
41 optional: true,
42 requiredErrorMessage: "Please specify a message content!",
43 typeErrorMessage: "Please specify a valid message content!",
44 name: "content"
45 }
46 ];
47 public readonly permissions = [PermissionsBitField.Flags.ManageMessages];
48
49 public readonly description = "Sends a message and deletes it after the given timeframe.";
50 public readonly argumentSyntaxes = ["<time_interval> [content]"];
51 public readonly slashCommandBuilder = new SlashCommandBuilder()
52 .addStringOption(option => option.setName("content").setDescription("The message content").setRequired(true))
53 .addStringOption(option =>
54 option
55 .setName("time_interval")
56 .setDescription("Specify the time after the bot should remove the message")
57 .setRequired(true)
58 )
59 .addChannelOption(option =>
60 option
61 .setName("channel")
62 .setDescription("The channel where the message will be sent, defaults to the current channel")
63 );
64
65 async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> {
66 await this.deferIfInteraction(message);
67
68 let timeInterval = context.isLegacy
69 ? context.parsedNamedArgs.time_interval
70 : context.options.getString("time_interval", true);
71
72 if (!context.isLegacy) {
73 const { error, result } = stringToTimeInterval(timeInterval, {
74 milliseconds: true
75 });
76
77 if (error) {
78 await this.error(message, error);
79 return;
80 }
81
82 timeInterval = result;
83 }
84
85 const content: string | undefined = context.isLegacy
86 ? context.parsedNamedArgs.content
87 : context.options.getString("content");
88 const channel = (
89 context.isLegacy ? message.channel! : context.options.getChannel("channel") ?? message.channel!
90 ) as TextBasedChannel;
91
92 if (!channel.isTextBased()) {
93 await this.error(message, "Cannot send messages to a non-text based channel!");
94 return;
95 }
96
97 try {
98 const sentMessage = await message.channel!.send({
99 content
100 });
101
102 await this.client.queueManager.add(
103 new QueueEntry({
104 args: [channel.id, sentMessage.id],
105 client: this.client,
106 createdAt: new Date(),
107 filePath: path.resolve(__dirname, "../../queues/ExpireMessageQueue"),
108 guild: message.guild!,
109 name: "ExpireMessageQueue",
110 userId: message.member!.user.id,
111 willRunAt: new Date(Date.now() + timeInterval)
112 })
113 );
114
115 if (message instanceof Message) {
116 await message.react(this.emoji("check")).catch(logError);
117 } else {
118 await this.success(message, "Successfully queued message deletion.");
119 }
120 } catch (e) {
121 logError(e);
122 await this.error(message, "Could not send message, make sure I have enough permissions.");
123 return;
124 }
125 }
126 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26