forked from Supositware/Haha-Yes
Allow blocking specific user from command
This commit is contained in:
parent
31da6d966a
commit
02a858bf48
2 changed files with 55 additions and 1 deletions
52
commands/admin/commandblockuser.js
Normal file
52
commands/admin/commandblockuser.js
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
const { Command } = require('discord-akairo');
|
||||||
|
const commandblockuser = require('../../models').commandblockuser;
|
||||||
|
|
||||||
|
class commandblockuserCommand extends Command {
|
||||||
|
constructor() {
|
||||||
|
super('commandblockuser', {
|
||||||
|
aliases: ['commandblockuser', 'userblockcommand'],
|
||||||
|
category: 'admin',
|
||||||
|
args: [
|
||||||
|
{
|
||||||
|
id: 'command',
|
||||||
|
type: 'command',
|
||||||
|
prompt: {
|
||||||
|
start: 'What command do you want to block?',
|
||||||
|
retry: 'Not a valid command, please try again'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'user',
|
||||||
|
type: 'user',
|
||||||
|
prompt: {
|
||||||
|
start: 'Which user you want to block?'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
clientPermissions: ['SEND_MESSAGES'],
|
||||||
|
userPermissions: ['ADMINISTRATOR'],
|
||||||
|
channel: 'guild',
|
||||||
|
description: {
|
||||||
|
content: 'Block a command from a user. Execute that command again to unblock a command',
|
||||||
|
usage: '[command name] [@user]',
|
||||||
|
examples: ['owned @supositware']
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async exec(message, args) {
|
||||||
|
if (args.command.id == 'commandblockuser') return message.channel.send('Whoa there, i can\'t let you block this command or else how would you unblock it?');
|
||||||
|
|
||||||
|
const blocked = await commandblockuser.findOne({where: {serverID: message.guild.id, userID: args.user.id, command: args.command.id}});
|
||||||
|
|
||||||
|
if (!blocked) {
|
||||||
|
const body = {serverID: message.guild.id, userID: args.user.id, command: args.command.id};
|
||||||
|
commandblockuser.create(body);
|
||||||
|
return message.channel.send(`Blocked command ${args.command.id}`);
|
||||||
|
} else {
|
||||||
|
commandblockuser.destroy({where: {serverID: message.guild.id, userID: args.user.id, command: args.command.id}});
|
||||||
|
return message.channel.send(`The command ${args.command.id} has been unblocked`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
module.exports = commandblockuserCommand;
|
|
@ -1,5 +1,6 @@
|
||||||
const { Inhibitor } = require('discord-akairo');
|
const { Inhibitor } = require('discord-akairo');
|
||||||
const commandblock = require('../../models').commandBlock;
|
const commandblock = require('../../models').commandBlock;
|
||||||
|
const commandblockuser = require('../../models').commandblockuser;
|
||||||
|
|
||||||
class commandblockInhibitor extends Inhibitor {
|
class commandblockInhibitor extends Inhibitor {
|
||||||
constructor() {
|
constructor() {
|
||||||
|
@ -11,8 +12,9 @@ class commandblockInhibitor extends Inhibitor {
|
||||||
async exec(message, command) {
|
async exec(message, command) {
|
||||||
if (message.channel.type == 'dm' || message.author.id == this.client.ownerID || message.member.hasPermission('ADMINISTRATOR')) return false;
|
if (message.channel.type == 'dm' || message.author.id == this.client.ownerID || message.member.hasPermission('ADMINISTRATOR')) return false;
|
||||||
const blacklist = await commandblock.findOne({where: {serverID:message.guild.id, command: command.id}});
|
const blacklist = await commandblock.findOne({where: {serverID:message.guild.id, command: command.id}});
|
||||||
|
const blocked = await commandblockuser.findOne({where: {serverID: message.guild.id, userID: message.author.id, command: command.id}});
|
||||||
|
|
||||||
if (blacklist) return true;
|
if (blacklist || blocked) return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue