galactic-bot/structure/client/components/inhibitors/MemberPermissions.js

57 lines
1.6 KiB
JavaScript
Raw Normal View History

const { Inhibitor } = require('../../../interfaces/');
const safeCommands = ['command:settings', 'command:grant', 'command:revoke'];
class Permissions extends Inhibitor {
constructor(client) {
super(client, {
name: 'permissions',
priority: 10,
guarded: true,
guild: true
});
}
async execute(message, command) {
2020-07-28 22:40:15 +02:00
const missing = await message.guild._checkPermissions(message, command);
if(missing.length > 0) {
return super._fail({ missing: missing.join(', ') });
}
2020-07-28 22:40:15 +02:00
return super._succeed();
}
_checkDiscord(message, permissions) {
return message.channel.permissionsFor(message.member).missing(permissions);
}
async _checkGrants(message, permission) { //async just incase
const _permissions = await message.guild.permissions();
const roles = message.member.roles.cache.map((r) => r.id);
const { channelId } = message.channel;
const { userId } = message.member;
let allowed = false;
for(const [ id, permissions ] of Object.entries(_permissions)) {
if(id === userId || roles.includes(id)) {
if(permissions.global.includes(permission)) {
allowed = true; break;
}
const channel = permissions.channels[channelId];
if(!channel) continue;
if(channel.includes(permission)) allowed = true; break;
}
continue;
}
return allowed ? [] : [permission];
}
}
module.exports = Permissions;