mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-13 04:10:19 +00:00
52 lines
2.2 KiB
TypeScript
52 lines
2.2 KiB
TypeScript
import { ButtonInteraction, ChatInputCommandInteraction, ColorResolvable, EmbedBuilder, StringSelectMenuInteraction } from "discord.js";
|
|
import RadioClient from "../../Client";
|
|
|
|
export default {
|
|
name: 'stop',
|
|
description: 'Stop radio',
|
|
category: 'radio',
|
|
async execute(interaction: ButtonInteraction | ChatInputCommandInteraction | StringSelectMenuInteraction, client: RadioClient, command: any) {
|
|
if (client.funcs.check(client, interaction, command)) {
|
|
const radio = client.radio?.get(interaction.guild?.id);
|
|
client.statistics?.update(client, interaction.guild, radio);
|
|
radio.connection?.destroy();
|
|
client.funcs.logger('Radio', interaction.guild?.id + " / " + 'Stop');
|
|
|
|
const embed = new EmbedBuilder()
|
|
.setTitle(client.user?.username || "-")
|
|
.setThumbnail("https://cdn.discordapp.com/emojis/" + client.messages.emojis["stop"].replace(/[^0-9]+/g, ''))
|
|
.setColor(client.config.embedColor as ColorResolvable)
|
|
.addFields({
|
|
name: client.messages.nowplayingTitle,
|
|
value: "-"
|
|
})
|
|
.setImage('https://waren.io/berriabot-temp-sa7a36a9xm6837br/images/empty-3.png')
|
|
.setFooter({
|
|
text: client.messages.footerText,
|
|
iconURL: "https://cdn.discordapp.com/emojis/" + client.messages.emojis["eximiabots"].replace(/[^0-9]+/g, '')
|
|
});
|
|
|
|
if(!radio.message){
|
|
radio.message = radio.textChannel.send({ embeds: [embed], components: [] });
|
|
} else {
|
|
if(radio.textChannel.id == radio.message.channel.id){
|
|
radio.message.edit({ embeds: [embed], components: [] });
|
|
} else {
|
|
radio.message?.delete();
|
|
}
|
|
}
|
|
|
|
setTimeout(async function() {
|
|
await radio.message?.delete();
|
|
}, 5000);
|
|
|
|
client.radio?.delete(interaction.guild?.id);
|
|
|
|
interaction.reply({
|
|
content: client.messages.emojis["stop"] + client.messages.stop,
|
|
ephemeral: true
|
|
});
|
|
}
|
|
}
|
|
};
|