import { LockdownCommand } from '#commands'; import { BotCommand, type ArgType, type CommandMessage, type OptArgType, type SlashMessage } from '#lib'; import { ApplicationCommandOptionType, Constants } from 'discord.js'; export default class UnlockdownCommand extends BotCommand { public constructor() { super('unlockdown', { aliases: ['unlockdown', 'unlock', 'lockup'], category: 'moderation', description: 'Allows you to unlockdown a channel or all configured channels.', usage: ['unlockdown [channel] [reason] [--all]'], examples: ['unlockdown', 'unlockdown raid is over --all'], args: [ { id: 'channel', description: 'Specify a different channel to unlockdown instead of the one you trigger the command in.', type: 'textBasedChannel', prompt: 'What channel would you like to unlockdown?', slashType: ApplicationCommandOptionType.Channel, channelTypes: Constants.TextBasedChannelTypes, optional: true }, { id: 'reason', description: 'The reason for the unlock.', type: 'string', match: 'rest', prompt: 'What is the reason for the unlock?', slashType: ApplicationCommandOptionType.String, optional: true }, { id: 'all', description: 'Whether or not to unlock all configured channels.', match: 'flag', flag: '--all', prompt: 'Would you like to unlockdown all configured channels?', slashType: ApplicationCommandOptionType.Boolean, optional: true } ], slash: true, channel: 'guild', clientPermissions: ['ManageChannels'], userPermissions: ['ManageChannels'] }); } public override async exec( message: CommandMessage | SlashMessage, args: { channel: OptArgType<'textBasedChannel'>; reason: OptArgType<'string'>; all: ArgType<'flag'>; } ) { return await LockdownCommand.lockdownOrUnlockdown(message, args, 'unlockdown'); } }