mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-05 13:53:12 +02:00
72 lines
3.3 KiB
JavaScript
72 lines
3.3 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. (;unban USERID not being a jerk.)',
|
|
examples: [';unban USERID not being a jerk.'],
|
|
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 'Invalid 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 < 141) {
|
|
return true;
|
|
}
|
|
return 'Please keep your reason under 140 characters.';
|
|
}
|
|
}]
|
|
});
|
|
}
|
|
hasPermission(msg) {
|
|
return msg.member.hasPermission('BAN_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('BAN_MEMBERS')) return message.say(':x: Error! I don\'t have the Ban 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 memberID = args.memberID;
|
|
const reason = args.reason;
|
|
const bans = await message.guild.fetchBans();
|
|
if (!bans.has(memberID)) return message.say(':x: Error! Could not find this user in the bans.');
|
|
const unbanUserObj = await bans.get(memberID);
|
|
try {
|
|
const unbanUser = await message.guild.unban(unbanUserObj);
|
|
const okHandMsg = await message.say(':ok_hand:');
|
|
const embed = new RichEmbed()
|
|
.setAuthor(`${message.author.username}#${message.author.discriminator}`, message.author.avatarURL)
|
|
.setColor(0x00AE86)
|
|
.setFooter('XiaoBot Moderation', this.client.user.avatarURL)
|
|
.setTimestamp()
|
|
.setDescription(`**Member:** ${unbanUser.username}#${unbanUser.discriminator} (${unbanUser.id})\n**Action:** Unban\n**Reason:** ${reason}`);
|
|
const modLogMsg = await message.guild.channels.find('name', 'mod_logs').sendEmbed(embed);
|
|
return [unbanUser, okHandMsg, modLogMsg];
|
|
}
|
|
catch (err) {
|
|
return message.say(':x: Error! Something went wrong!');
|
|
}
|
|
}
|
|
};
|