mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-21 20:54:58 +05:00
103 lines
2.8 KiB
JavaScript
103 lines
2.8 KiB
JavaScript
const { SlashCommandBuilder, InteractionContextType, ApplicationIntegrationType } = require("discord.js");
|
|
const BaseCommand = require("../../base/BaseCommand");
|
|
|
|
class Say extends BaseCommand {
|
|
/**
|
|
*
|
|
* @param {import("../base/Client")} client
|
|
*/
|
|
constructor(client) {
|
|
super({
|
|
command: new SlashCommandBuilder()
|
|
.setName("say")
|
|
.setDescription(client.translate("owner/say:DESCRIPTION"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("owner/say:DESCRIPTION", null, "uk-UA"),
|
|
ru: client.translate("owner/say:DESCRIPTION", null, "ru-RU"),
|
|
})
|
|
.setIntegrationTypes([ApplicationIntegrationType.GuildInstall])
|
|
.setContexts([InteractionContextType.Guild])
|
|
.addStringOption(option =>
|
|
option
|
|
.setName("message")
|
|
.setDescription(client.translate("common:MESSAGE"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("common:MESSAGE", null, "uk-UA"),
|
|
ru: client.translate("common:MESSAGE", null, "ru-RU"),
|
|
})
|
|
.setRequired(true),
|
|
)
|
|
.addChannelOption(option =>
|
|
option
|
|
.setName("channel")
|
|
.setDescription(client.translate("common:CHANNEL"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("common:CHANNEL", null, "uk-UA"),
|
|
ru: client.translate("common:CHANNEL", null, "ru-RU"),
|
|
}),
|
|
)
|
|
.addAttachmentOption(option =>
|
|
option
|
|
.setName("attachment")
|
|
.setDescription(client.translate("common:ATTACHMENT"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("common:ATTACHMENT", null, "uk-UA"),
|
|
ru: client.translate("common:ATTACHMENT", null, "ru-RU"),
|
|
}),
|
|
),
|
|
dirname: __dirname,
|
|
ownerOnly: true,
|
|
});
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {import("../../base/Client")} client
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
|
*/
|
|
async execute(client, interaction) {
|
|
await interaction.deferReply({ ephemeral: true });
|
|
|
|
const message = interaction.options.getString("message"),
|
|
attachment = interaction.options.getAttachment("attachment"),
|
|
channel = interaction.options.getChannel("channel");
|
|
|
|
if (!channel) {
|
|
interaction.channel.sendTyping();
|
|
|
|
setTimeout(function () {
|
|
interaction.channel.send({
|
|
content: message,
|
|
files: attachment ? [{
|
|
name: attachment.name,
|
|
attachment: attachment.url,
|
|
}] : null,
|
|
});
|
|
|
|
interaction.replyT("owner/say:DONE", {
|
|
message,
|
|
channel: interaction.channel.toString(),
|
|
}, { edit: true });
|
|
}, 2000);
|
|
} else {
|
|
channel.sendTyping();
|
|
|
|
setTimeout(function () {
|
|
channel.send({
|
|
content: message,
|
|
files: attachment ? [{
|
|
name: attachment.name,
|
|
attachment: attachment.url,
|
|
}] : null,
|
|
});
|
|
|
|
interaction.replyT("owner/say:DONE", {
|
|
message,
|
|
channel: channel.toString(),
|
|
}, { edit: true });
|
|
}, 2000);
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = Say;
|