mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-05 13:53:12 +02:00
68 lines
2.8 KiB
JavaScript
68 lines
2.8 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const { RichEmbed } = require('discord.js');
|
|
|
|
module.exports = class UnbanCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'unban',
|
|
aliases: [
|
|
'unbanne'
|
|
],
|
|
group: 'moderation',
|
|
memberName: 'unban',
|
|
description: 'Unbans a user and logs the unban to the mod_logs.',
|
|
guildOnly: true,
|
|
args: [{
|
|
key: 'memberID',
|
|
prompt: 'What member do you want to unban? Please enter the ID of the user.',
|
|
type: 'string',
|
|
validate: userID => {
|
|
if (userID.length === 18)
|
|
return true;
|
|
return `${userID} is not a valid ID. Please enter the user you wish to unban's ID.`;
|
|
}
|
|
}, {
|
|
key: 'reason',
|
|
prompt: 'What do you want to set the reason as?',
|
|
type: 'string',
|
|
validate: reason => {
|
|
if (reason.length < 140)
|
|
return true;
|
|
return `Please keep your reason under 140 characters, you have ${reason.length}.`;
|
|
}
|
|
}]
|
|
});
|
|
}
|
|
|
|
hasPermission(msg) {
|
|
return msg.member.permissions.has('BAN_MEMBERS');
|
|
}
|
|
|
|
async run(message, args) {
|
|
if (!message.channel.permissionsFor(this.client.user).has('BAN_MEMBERS'))
|
|
return message.say('This Command requires the `Ban Members` Permission.');
|
|
const modlogs = message.guild.channels.find('name', message.guild.settings.get('modLog', 'mod_logs'));
|
|
if (!modlogs)
|
|
return message.say('This Command requires a channel named `mod_logs` or one custom set with the `modchannel` command.');
|
|
if (!modlogs.permissionsFor(this.client.user).has('EMBED_LINKS'))
|
|
return message.say('This Command requires the `Embed Links` Permission.');
|
|
const { memberID, reason } = args;
|
|
const bans = await message.guild.fetchBans();
|
|
if (!bans.has(memberID))
|
|
return message.say('This ID is not in the Guild Banlist.');
|
|
const unbanUser = await bans.get(memberID);
|
|
try {
|
|
await message.guild.unban(unbanUser);
|
|
await message.say(':ok_hand:');
|
|
const embed = new RichEmbed()
|
|
.setAuthor(message.author.tag, message.author.avatarURL)
|
|
.setColor(0x00AE86)
|
|
.setTimestamp()
|
|
.setDescription(`**Member:** ${unbanUser.tag} (${unbanUser.id})\n**Action:** Unban\n**Reason:** ${reason}`);
|
|
return modlogs.send({embed});
|
|
} catch (err) {
|
|
return message.say('An Unknown Error Occurred.');
|
|
}
|
|
}
|
|
};
|