From 1ba2786b5b35743967ba9107da5a84dd7fd4e65f Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Sun, 6 Oct 2019 20:29:50 +0200
Subject: [PATCH] command to blacklist people

---
 commands/owner/blacklist.js | 55 +++++++++++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)
 create mode 100644 commands/owner/blacklist.js

diff --git a/commands/owner/blacklist.js b/commands/owner/blacklist.js
new file mode 100644
index 0000000..3102aa1
--- /dev/null
+++ b/commands/owner/blacklist.js
@@ -0,0 +1,55 @@
+const { Command } = require('discord-akairo');
+const userBlacklist = require('../../models').userBlacklist;
+
+class blacklistCommand extends Command {
+	constructor() {
+		super('blacklist', {
+			aliases: ['blacklist'],
+			category: 'owner',
+			ownerOnly: 'true',
+			userPermissions: ['MANAGE_MESSAGES'],
+			args: [
+				{
+					id: 'userID',
+					type: 'string',
+					prompt: {
+						start: 'Who do you want to blacklist?',
+					}
+				}
+			],
+			channelRestriction: 'guild',
+			description: {
+				content: 'Create custom autoresponse',
+				usage: '[trigger] [response]',
+				examples: ['"do you know da wea" Fuck off dead meme', 'hello Hello [author], how are you today?']
+			}
+		});
+	}
+
+	async exec(message, args) {
+		const blacklist = await userBlacklist.findOne({where: {userID:message.author.id}});
+		
+		if (!blacklist) {
+			const body = {userID: args.userID};
+			userBlacklist.create(body);
+			return message.channel.send(`The user with the following id have been blacklisted: ${args.userID}`);
+		} 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 => {
+					let messageContent = messages.map(messages => messages.content);
+					if (messageContent == 'y' || messageContent == 'yes') {
+						userBlacklist.destroy({where: {userID:args.userID}});
+						return message.channel.send(`The user with the following id have been unblacklisted: ${args.userID}`);
+					}
+				})
+				.catch(err => {
+					console.error(err);
+					return message.channel.send('Took too long to answer. didin\'t unblacklist anyone.');
+				});
+		}
+	}
+}
+
+module.exports = blacklistCommand;
\ No newline at end of file