74 lines
2.6 KiB
JavaScript
74 lines
2.6 KiB
JavaScript
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, override = null) {
|
|
const { permissionType } = message.guild._settings;
|
|
|
|
if(message.author.developer) return super._succeed();
|
|
const permissions = override ? override : command.memberPermissions;
|
|
|
|
let missing = [];
|
|
if(permissionType === 'discord') {
|
|
missing = this._checkDiscord(message, permissions);
|
|
} else if(permissionType === 'grant' && command.permissionRequired) {
|
|
// vv Prevent Softlock vv
|
|
if(safeCommands.includes(command.resolveable) && (this._checkDiscord(message, ['ADMINISTRATOR']).length === 0 || this._checkDiscord(message, ['MANAGE_GUILD']).length === 0)) {
|
|
return super._succeed();
|
|
}
|
|
missing = await this._checkGrants(message, command.resolveable);
|
|
} else if(permissionType === 'both') {
|
|
const disc = this._checkDiscord(message, permissions);
|
|
const grants = await this._checkGrants(message, command.resolveable);
|
|
if (disc.length && grants.length) return super._fail({ missing: [...disc, ...grants].join(', ') });
|
|
}
|
|
|
|
if(missing.length > 0) {
|
|
return super._fail({ missing: missing.join(', ') });
|
|
}
|
|
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.keyArray();
|
|
const channelId = message.channel.id;
|
|
const userId = message.author.id;
|
|
|
|
let allowed = false;
|
|
for(const [ id, permissions ] of Object.entries(_permissions)) {
|
|
// console.log(id, 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; |