2023-12-24 10:21:40 -05:00
|
|
|
import Discord from 'discord.js';
|
|
|
|
import TClient from '../client.js';
|
|
|
|
import MessageTool from '../helpers/MessageTool.js';
|
2024-01-14 01:51:17 -05:00
|
|
|
export default async(client:TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>, type: 'ban'|'softban'|'kick'|'mute'|'warn'|'remind')=>{
|
2024-01-14 01:58:25 -05:00
|
|
|
if (!MessageTool.isModerator(interaction.member)) return MessageTool.youNeedRole(interaction, 'dcmod');
|
2023-12-24 10:21:40 -05:00
|
|
|
|
|
|
|
const time = interaction.options.getString('time') ?? undefined;
|
|
|
|
const reason = interaction.options.getString('reason') ?? 'Reason unspecified';
|
|
|
|
const GuildMember = interaction.options.getMember('member') ?? undefined;
|
|
|
|
const User = interaction.options.getUser('member', true);
|
|
|
|
|
|
|
|
if (interaction.user.id === User.id) return interaction.reply(`You cannot ${type} yourself.`);
|
|
|
|
if (!GuildMember && !['unban', 'ban'].includes(type)) return interaction.reply(`You cannot ${type} someone who is not in the server.`);
|
|
|
|
if (User.bot) return interaction.reply(`You cannot ${type} a bot!`);
|
|
|
|
|
|
|
|
await interaction.deferReply();
|
|
|
|
await client.punishments.punishmentAdd(type, {time, interaction}, interaction.user.id, reason, User, GuildMember);
|
|
|
|
}
|