70 lines
No EOL
1.8 KiB
JavaScript
70 lines
No EOL
1.8 KiB
JavaScript
const Discord = require("discord.js");
|
|
|
|
module.exports = {
|
|
description: "Reroll a giveaway",
|
|
|
|
options: [
|
|
{
|
|
name: "giveaway",
|
|
description: "The giveaway to reroll (message ID or prize)",
|
|
type: Discord.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: You need to have the manage messages permissions to reroll giveaways.",
|
|
ephemeral: true,
|
|
});
|
|
}
|
|
|
|
const query = interaction.options.getString("giveaway");
|
|
|
|
// try to found the giveaway with prize then with ID
|
|
const giveaway =
|
|
// Search with giveaway prize
|
|
client.giveawaysManager.giveaways.find(
|
|
(g) => g.prize === query && g.guildId === interaction.guild.id
|
|
) ||
|
|
// 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.ended) {
|
|
return interaction.reply({
|
|
content: "The giveaway is not ended yet.",
|
|
ephemeral: true,
|
|
});
|
|
}
|
|
|
|
// Reroll the giveaway
|
|
client.giveawaysManager
|
|
.reroll(giveaway.messageId)
|
|
.then(() => {
|
|
// Success message
|
|
interaction.reply("Giveaway rerolled!");
|
|
})
|
|
.catch((e) => {
|
|
interaction.reply({
|
|
content: e,
|
|
ephemeral: true,
|
|
});
|
|
});
|
|
},
|
|
}; |