63 lines
No EOL
2.2 KiB
JavaScript
63 lines
No EOL
2.2 KiB
JavaScript
const { ApplicationCommandOptionType } = require('discord.js');
|
|
|
|
module.exports = {
|
|
name: "resume",
|
|
description: '▶ Resume a paused giveaway',
|
|
|
|
options: [
|
|
{
|
|
name: 'giveaway',
|
|
description: 'The giveaway to resume (message ID)',
|
|
type: ApplicationCommandOptionType.String,
|
|
required: true
|
|
}
|
|
],
|
|
|
|
run: async (client, interaction) => {
|
|
|
|
// If the member doesn't have enough permissions
|
|
if (!interaction.member.permissions.has('MANAGE_MESSAGES') && !interaction.member.roles.cache.some((r) => r.name === "Giveaways")) {
|
|
return interaction.reply({
|
|
content: '<:x_:1010816180719722566> You need to have the manage messages permissions to pause giveaways.',
|
|
ephemeral: true
|
|
});
|
|
}
|
|
|
|
const query = interaction.options.getString('giveaway');
|
|
|
|
// try to find the giveaway with prize alternatively with ID
|
|
const giveaway =
|
|
// Search with giveaway ID
|
|
client.giveawaysManager.giveaways.find((g) => g.messageId === query && g.guildId === interaction.guild.id);
|
|
|
|
// If no giveaway was found
|
|
if (!giveaway) {
|
|
return interaction.reply({
|
|
content: 'Unable to find a giveaway for `' + query + '`.',
|
|
ephemeral: true
|
|
});
|
|
}
|
|
|
|
if (!giveaway.pauseOptions.isPaused) {
|
|
return interaction.reply({
|
|
content: `**[This giveaway](https://discord.com/channels/${giveaway.guildId}/${giveaway.channelId}/${giveaway.messageId})** is not paused!`,
|
|
ephemeral: true
|
|
});
|
|
}
|
|
|
|
// Edit the giveaway
|
|
client.giveawaysManager.unpause(giveaway.messageId)
|
|
// Success message
|
|
.then(() => {
|
|
// Success message
|
|
interaction.reply(`**[This giveaway](https://discord.com/channels/${giveaway.guildId}/${giveaway.channelId}/${giveaway.messageId})** has been successfully resumed!`);
|
|
})
|
|
.catch((e) => {
|
|
interaction.reply({
|
|
content: e,
|
|
ephemeral: true
|
|
});
|
|
});
|
|
|
|
}
|
|
}; |