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 |
APIEmbed, |
22 |
ActionRowBuilder, |
23 |
ApplicationCommandType, |
24 |
CacheType, |
25 |
Interaction, |
26 |
MessageContextMenuCommandInteraction, |
27 |
ModalBuilder, |
28 |
PermissionsBitField, |
29 |
TextInputBuilder, |
30 |
TextInputStyle |
31 |
} from "discord.js"; |
32 |
import Command, { CommandReturn, ValidationRule } from "../../core/Command"; |
33 |
import { GatewayEventListener } from "../../decorators/GatewayEventListener"; |
34 |
import { HasEventListeners } from "../../types/HasEventListeners"; |
35 |
import EmbedSchemaParser from "../../utils/EmbedSchemaParser"; |
36 |
import { logError } from "../../utils/Logger"; |
37 |
|
38 |
export default class SendReplyCommand extends Command implements HasEventListeners { |
39 |
public readonly name = "Send Reply"; |
40 |
public readonly validationRules: ValidationRule[] = []; |
41 |
public readonly permissions = [PermissionsBitField.Flags.ManageMessages]; |
42 |
public readonly applicationCommandType = ApplicationCommandType.Message; |
43 |
public readonly supportsLegacy = false; |
44 |
|
45 |
public readonly description = "Sends a reply to a message."; |
46 |
|
47 |
@GatewayEventListener("interactionCreate") |
48 |
async onInteractionCreate(interaction: Interaction<CacheType>) { |
49 |
if (!interaction.isModalSubmit() || !interaction.customId.startsWith("sendreply__")) { |
50 |
return; |
51 |
} |
52 |
|
53 |
const echoMentions = this.client.configManager.config[interaction.guildId!]?.commands?.echo_mentions ?? false; |
54 |
|
55 |
await interaction |
56 |
.deferReply({ |
57 |
ephemeral: true |
58 |
}) |
59 |
.catch(logError); |
60 |
|
61 |
const [, id] = interaction.customId.split("__"); |
62 |
const options = { |
63 |
reply: { |
64 |
messageReference: id, |
65 |
failIfNotExists: true |
66 |
}, |
67 |
content: interaction.fields.getTextInputValue("content"), |
68 |
allowedMentions: (interaction.member?.permissions as Readonly<PermissionsBitField>)?.has("MentionEveryone", true) |
69 |
? undefined |
70 |
: echoMentions |
71 |
? undefined |
72 |
: { |
73 |
parse: ["users" as const] |
74 |
} |
75 |
}; |
76 |
let messageId: string | undefined = undefined; |
77 |
|
78 |
if (interaction.channel) { |
79 |
messageId = (await EmbedSchemaParser.sendMessage(interaction.channel, options).catch(logError))?.id; |
80 |
} |
81 |
|
82 |
await interaction |
83 |
.editReply({ |
84 |
content: `${this.emoji(messageId ? "check" : "error")} ${ |
85 |
messageId ? "Reply sent successfully" : "Failed to send reply. Make sure it's a valid and reply-able message" |
86 |
}.` |
87 |
}) |
88 |
.catch(logError); |
89 |
|
90 |
const embed: APIEmbed = {}; |
91 |
|
92 |
await this.sendCommandRanLog(interaction, embed, { |
93 |
previews: [options], |
94 |
async before(channel, sentMessages) { |
95 |
embed.description = `The message preview is [above](${sentMessages[0]?.url}).`; |
96 |
this.url = messageId |
97 |
? `[Click here](https://discord.com/channels/${interaction.guildId}/${interaction.channelId}/${messageId})` |
98 |
: "*Not available*"; |
99 |
} |
100 |
}); |
101 |
} |
102 |
|
103 |
async execute(interaction: MessageContextMenuCommandInteraction): Promise<CommandReturn> { |
104 |
const modal = new ModalBuilder() |
105 |
.setCustomId(`sendreply__${interaction.targetMessage.id}`) |
106 |
.setTitle("Send Reply") |
107 |
.setComponents( |
108 |
new ActionRowBuilder<TextInputBuilder>().addComponents( |
109 |
new TextInputBuilder() |
110 |
.setCustomId("content") |
111 |
.setLabel("Content") |
112 |
.setPlaceholder("Type the message content here...") |
113 |
.setRequired(true) |
114 |
.setStyle(TextInputStyle.Paragraph) |
115 |
) |
116 |
); |
117 |
|
118 |
await interaction.showModal(modal).catch(logError); |
119 |
} |
120 |
} |