mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-13 18:13:29 +01:00
Added permissions evaluation!
This commit is contained in:
@@ -5,20 +5,51 @@ var _createClass = (function () { function defineProperties(target, props) { for
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
var ChannelPermissions = (function () {
|
||||
function ChannelPermissions(data) {
|
||||
function ChannelPermissions(data, channel) {
|
||||
_classCallCheck(this, ChannelPermissions);
|
||||
|
||||
var self = this;
|
||||
|
||||
function getBit(x) {
|
||||
return (this.packed >>> x & 1) === 1;
|
||||
return (self.packed >>> x & 1) === 1;
|
||||
}
|
||||
|
||||
this.type = data.type; //either member or role
|
||||
|
||||
this.id = data.id;
|
||||
|
||||
this.deny = data.deny;
|
||||
if (this.type === "member") {
|
||||
this.packed = channel.server.getMember("id", data.id).evalPerms.packed;
|
||||
} else {
|
||||
this.packed = channel.server.getRole(data.id).packed;
|
||||
}
|
||||
|
||||
this.packed = this.packed & ~data.deny;
|
||||
this.packed = this.packed | data.allow;
|
||||
|
||||
this.deny = data.deny;
|
||||
this.allow = data.allow;
|
||||
|
||||
this.createInstantInvite = getBit(0);
|
||||
//this.banMembers = getBit(1);
|
||||
//this.kickMembers = getBit(2);
|
||||
this.managePermissions = getBit(3);
|
||||
this.manageChannels = getBit(4);
|
||||
//this.manageServer = getBit(5);
|
||||
this.readMessages = getBit(10);
|
||||
this.sendMessages = getBit(11);
|
||||
this.sendTTSMessages = getBit(12);
|
||||
this.manageMessages = getBit(13);
|
||||
this.embedLinks = getBit(14);
|
||||
this.attachFiles = getBit(15);
|
||||
this.readMessageHistory = getBit(16);
|
||||
this.mentionEveryone = getBit(17);
|
||||
|
||||
this.voiceConnect = getBit(20);
|
||||
this.voiceSpeak = getBit(21);
|
||||
this.voiceMuteMembers = getBit(22);
|
||||
this.voiceDeafenMembers = getBit(23);
|
||||
this.voiceMoveMembers = getBit(24);
|
||||
this.voiceUseVoiceActivation = getBit(25);
|
||||
}
|
||||
|
||||
_createClass(ChannelPermissions, [{
|
||||
|
||||
Reference in New Issue
Block a user