mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
61 lines
2.8 KiB
JavaScript
61 lines
2.8 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const { RichEmbed } = require('discord.js');
|
|
|
|
module.exports = class KickCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'kick',
|
|
group: 'moderation',
|
|
memberName: 'kick',
|
|
description: 'Kicks a user. (;kick @User being a jerk.)',
|
|
examples: [';kick @User being a jerk.'],
|
|
guildOnly: true,
|
|
args: [{
|
|
key: 'member',
|
|
prompt: 'What member do you want to kick?',
|
|
type: 'member'
|
|
}, {
|
|
key: 'reason',
|
|
prompt: 'What do you want to set the reason as?',
|
|
type: 'string',
|
|
validate: reason => {
|
|
if (reason.length < 141) {
|
|
return true;
|
|
}
|
|
return 'Please keep your reason under 140 characters.';
|
|
}
|
|
}]
|
|
});
|
|
}
|
|
hasPermission(msg) {
|
|
return msg.member.hasPermission('KICK_MEMBERS');
|
|
}
|
|
|
|
async run(message, args) {
|
|
if (message.channel.type !== 'dm') {
|
|
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
|
|
if (!message.channel.permissionsFor(this.client.user).hasPermission('EMBED_LINKS')) return message.say(':x: Error! I don\'t have the Embed Links Permission!');
|
|
if (!message.channel.permissionsFor(this.client.user).hasPermission('KICK_MEMBERS')) return message.say(':x: Error! I don\'t have the Kick Members Permission!');
|
|
}
|
|
if (!message.guild.channels.exists('name', 'mod_logs')) return message.say(':x: Error! Could not find the mod_logs channel! Please create it!');
|
|
const member = args.member;
|
|
const reason = args.reason;
|
|
if (!message.guild.member(member).bannable) return message.say(':x: Error! This member cannot be kicked! Perhaps they have a higher role than me?');
|
|
try {
|
|
const kickUser = await message.guild.member(member).kick();
|
|
const okHandMsg = await message.say(':ok_hand:');
|
|
const embed = new RichEmbed()
|
|
.setAuthor(`${message.author.username}#${message.author.discriminator}`, message.author.avatarURL)
|
|
.setColor(0xFFA500)
|
|
.setFooter('XiaoBot Moderation', this.client.user.avatarURL)
|
|
.setTimestamp()
|
|
.setDescription(`**Member:** ${kickUser.user.username}#${kickUser.user.discriminator} (${member.id})\n**Action:** Kick\n**Reason:** ${reason}`);
|
|
const modLogMsg = await message.guild.channels.find('name', 'mod_logs').sendEmbed(embed);
|
|
return [kickUser, okHandMsg, modLogMsg];
|
|
}
|
|
catch (err) {
|
|
return message.say(':x: Error! Something went wrong!');
|
|
}
|
|
}
|
|
};
|