poixpixel-discord-bot/src/commands/moderation/unban.ts
2025-04-17 01:05:10 -04:00

75 lines
2 KiB
TypeScript

import { PermissionsBitField, SlashCommandBuilder } from 'discord.js';
import { executeUnban } from '@/util/helpers.js';
import { OptionsCommand } from '@/types/CommandTypes.js';
const command: OptionsCommand = {
data: new SlashCommandBuilder()
.setName('unban')
.setDescription('Unban a user from the server')
.addStringOption((option) =>
option
.setName('userid')
.setDescription('The Discord ID of the user to unban')
.setRequired(true),
)
.addStringOption((option) =>
option
.setName('reason')
.setDescription('The reason for the unban')
.setRequired(true),
),
execute: async (interaction) => {
if (!interaction.isChatInputCommand() || !interaction.guild) return;
interaction.deferReply({ flags: ['Ephemeral'] });
try {
const userId = interaction.options.get('userid')?.value as string;
const reason = interaction.options.get('reason')?.value as string;
if (
!interaction.memberPermissions?.has(
PermissionsBitField.Flags.BanMembers,
)
) {
await interaction.editReply({
content: 'You do not have permission to unban users.',
});
return;
}
try {
const ban = await interaction.guild.bans.fetch(userId);
if (!ban) {
await interaction.editReply({
content: 'This user is not banned.',
});
return;
}
} catch {
await interaction.editReply({
content: 'Error getting ban. Is this user banned?',
});
return;
}
await executeUnban(
interaction.client,
interaction.guild.id,
userId,
reason,
);
await interaction.editReply({
content: `<@${userId}> has been unbanned. Reason: ${reason}`,
});
} catch (error) {
console.error(error);
await interaction.editReply({
content: 'Unable to unban user.',
});
}
},
};
export default command;