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 { |
21 |
ActionRowBuilder, |
22 |
ApplicationCommandType, |
23 |
CacheType, |
24 |
Interaction, |
25 |
MessageContextMenuCommandInteraction, |
26 |
ModalBuilder, |
27 |
PermissionsBitField, |
28 |
TextInputBuilder, |
29 |
TextInputStyle |
30 |
} from "discord.js"; |
31 |
import Command, { CommandReturn, ValidationRule } from "../../core/Command"; |
32 |
import { GatewayEventListener } from "../../decorators/GatewayEventListener"; |
33 |
import { HasEventListeners } from "../../types/HasEventListeners"; |
34 |
import { logError } from "../../utils/logger"; |
35 |
|
36 |
export default class SendReplyCommand extends Command implements HasEventListeners { |
37 |
public readonly name = "Send Reply"; |
38 |
public readonly validationRules: ValidationRule[] = []; |
39 |
public readonly permissions = [PermissionsBitField.Flags.ManageMessages]; |
40 |
public readonly applicationCommandType = ApplicationCommandType.Message; |
41 |
public readonly supportsLegacy = false; |
42 |
|
43 |
public readonly description = "Sends a reply to a message."; |
44 |
|
45 |
@GatewayEventListener("interactionCreate") |
46 |
async onInteractionCreate(interaction: Interaction<CacheType>) { |
47 |
if (!interaction.isModalSubmit() || !interaction.customId.startsWith("sendreply__")) { |
48 |
return; |
49 |
} |
50 |
|
51 |
await interaction |
52 |
.deferReply({ |
53 |
ephemeral: true |
54 |
}) |
55 |
.catch(logError); |
56 |
|
57 |
const [, id] = interaction.customId.split("__"); |
58 |
|
59 |
await interaction.channel |
60 |
?.send({ |
61 |
content: interaction.fields.getTextInputValue("content"), |
62 |
reply: { |
63 |
messageReference: id, |
64 |
failIfNotExists: true |
65 |
} |
66 |
}) |
67 |
.catch(logError); |
68 |
|
69 |
await interaction |
70 |
.editReply({ |
71 |
content: `${this.emoji("check")} Reply sent successfully.` |
72 |
}) |
73 |
.catch(logError); |
74 |
} |
75 |
|
76 |
async execute(interaction: MessageContextMenuCommandInteraction): Promise<CommandReturn> { |
77 |
const modal = new ModalBuilder() |
78 |
.setCustomId(`sendreply__${interaction.targetMessage.id}`) |
79 |
.setTitle("Send Reply") |
80 |
.setComponents( |
81 |
new ActionRowBuilder<TextInputBuilder>().addComponents( |
82 |
new TextInputBuilder() |
83 |
.setCustomId("content") |
84 |
.setLabel("Content") |
85 |
.setPlaceholder("Type the message content here...") |
86 |
.setRequired(true) |
87 |
.setStyle(TextInputStyle.Paragraph) |
88 |
) |
89 |
); |
90 |
|
91 |
await interaction.showModal(modal).catch(logError); |
92 |
} |
93 |
} |