import { AllowedMentions, BotCommand, emojis, formatKickResponse, Moderation, type ArgType, type CommandMessage, type OptArgType, type SlashMessage } from '#lib'; import assert from 'assert/strict'; import { ApplicationCommandOptionType } from 'discord.js'; export default class KickCommand extends BotCommand { public constructor() { super('kick', { aliases: ['kick'], category: 'moderation', description: 'Kick a user.', usage: ['kick '], examples: ['kick @user bad'], args: [ { id: 'user', description: 'The user to kick.', type: 'user', prompt: 'What user would you like to kick?', retry: '{error} Choose a valid user to kick.', slashType: ApplicationCommandOptionType.User }, { id: 'reason', description: 'The reason for the kick.', type: 'string', match: 'rest', prompt: 'Why should this user be kicked?', retry: '{error} Choose a valid kick reason.', optional: true, slashType: ApplicationCommandOptionType.String }, { id: 'force', description: 'Override permission checks.', flag: '--force', match: 'flag', optional: true, slashType: false, only: 'text', ownerOnly: true } ], slash: true, clientPermissions: ['KickMembers'], userPermissions: ['KickMembers'] }); } public override async exec( message: CommandMessage | SlashMessage, { user, reason, force }: { user: ArgType<'user'>; reason: OptArgType<'string'>; force: ArgType<'flag'> } ) { assert(message.inGuild()); assert(message.member); const member = await message.guild.members.fetch(user.id); if (!member) return await message.util.reply(`${emojis.error} The user you selected is not in the server or is not a valid user.`); const useForce = force && message.author.isOwner(); const canModerateResponse = await Moderation.permissionCheck(message.member, member, Moderation.Action.Kick, true, useForce); if (canModerateResponse !== true) { return message.util.reply(canModerateResponse); } const responseCode = await member.customKick({ reason, moderator: message.member }); return await message.util.reply({ content: formatKickResponse(member, responseCode), allowedMentions: AllowedMentions.none() }); } }