mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
73 lines
2.9 KiB
JavaScript
73 lines
2.9 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const { RichEmbed } = require('discord.js');
|
|
const { stripIndents } = require('common-tags');
|
|
|
|
module.exports = class KickCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'kick',
|
|
group: 'moderation',
|
|
memberName: 'kick',
|
|
description: 'Kicks a user and logs the kick to the mod logs.',
|
|
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 < 140) return true;
|
|
return 'Invalid Reason. Reason must be under 140 characters.';
|
|
}
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
hasPermission(msg) {
|
|
return msg.member.hasPermission('KICK_MEMBERS') || msg.member.roles.has(msg.guild.settings.get('staffRole'));
|
|
}
|
|
|
|
async run(msg, args) {
|
|
if (!msg.channel.permissionsFor(this.client.user).has('KICK_MEMBERS'))
|
|
return msg.say('This Command requires the `Kick Members` Permission.');
|
|
const modlogs = msg.guild.channels.get(msg.guild.settings.get('modLog'));
|
|
if (!modlogs) return msg.say('This Command requires a channel set with the `modchannel` command.');
|
|
if (!modlogs.permissionsFor(this.client.user).has('SEND_MESSAGES'))
|
|
return msg.say('This Command requires the `Send Messages` Permission for the Mod Log Channel.');
|
|
if (!modlogs.permissionsFor(this.client.user).has('EMBED_LINKS'))
|
|
return msg.say('This Command requires the `Embed Links` Permission.');
|
|
const { member, reason } = args;
|
|
if (!member.kickable) return msg.say('This member is not kickable. Perhaps they have a higher role than me?');
|
|
try {
|
|
try {
|
|
await member.send(stripIndents`
|
|
You were kicked from ${msg.guild.name}!
|
|
Reason: ${reason}.
|
|
`);
|
|
} catch (err) {
|
|
await msg.say('Failed to send DM.');
|
|
}
|
|
await member.kick({ reason });
|
|
await msg.say(':ok_hand:');
|
|
const embed = new RichEmbed()
|
|
.setAuthor(msg.author.tag, msg.author.displayAvatarURL)
|
|
.setColor(0xFFA500)
|
|
.setTimestamp()
|
|
.setDescription(stripIndents`
|
|
**Member:** ${member.user.tag} (${member.id})
|
|
**Action:** Kick
|
|
**Reason:** ${reason}
|
|
`);
|
|
return modlogs.send({ embed });
|
|
} catch (err) {
|
|
return msg.say(`An Error Occurred: ${err}`);
|
|
}
|
|
}
|
|
};
|