You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/owner/blacklist.js

74 lines
2.2 KiB
JavaScript

const { Command } = require('discord-akairo');
const Blacklists = require('../../models').Blacklists;
class userBlacklistCommand extends Command {
constructor() {
super('userBlacklist', {
aliases: ['userblacklist', 'ublacklist'],
category: 'owner',
ownerOnly: 'true',
userPermissions: ['MANAGE_MESSAGES'],
args: [
{
id: 'command',
type: 'string',
prompt: {
start: 'Which command do you want to get a user blacklisted from?'
}
},
{
id: 'userID',
type: 'string',
prompt: {
start: 'Who do you want to blacklist?',
}
},
{
id: 'reason',
type: 'string',
match: 'rest',
default: 'No reason specified.'
}
],
channel: 'guild',
description: {
content: 'Blacklist user from the bot',
usage: '[userID]',
examples: ['']
}
});
}
async exec(message, args) {
const blacklist = await Blacklists.findOne({where: {type:args.command, uid:args.userID}});
console.log(blacklist);
if (!blacklist) {
const body = {type:args.command, uid: args.userID, reason: args.reason};
Blacklists.create(body);
let user = args.userID;
if (args.command !== 'guild')
user = this.client.users.resolve(args.userID).tag;
return message.channel.send(`${user} has been blacklisted from ${args.command} with the following reason ${args.reason}`);
} else {
message.channel.send('This user is already blacklisted, do you want to unblacklist him? y/n');
const filter = m => m.content && m.author.id === message.author.id;
message.channel.awaitMessages(filter, {time: 5000 * 1000, max: 1, errors: ['time'] })
.then(messages => {
console.log(messages);
let messageContent = messages.map(messages => messages.content);
console.log(messageContent);
if (messageContent[0] === 'y' || messageContent[0] === 'yes') {
Blacklists.destroy({where: {type:args.command, uid:args.userID}});
return message.channel.send(`The following ID have been unblacklisted from ${args.command}: ${args.userID}`);
}
})
.catch(err => {
console.error(err);
return message.channel.send('Took too long to answer. didin\'t unblacklist anyone.');
});
}
}
}
module.exports = userBlacklistCommand;