mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
240 lines
5.4 KiB
JavaScript
240 lines
5.4 KiB
JavaScript
"use strict";
|
|
|
|
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
var ServerPermissions = (function () {
|
|
function ServerPermissions(data, server) {
|
|
_classCallCheck(this, ServerPermissions);
|
|
|
|
var self = this;
|
|
|
|
function getBit(x) {
|
|
return (self.packed >>> x & 1) === 1;
|
|
}
|
|
|
|
this.managed = data.managed || false;
|
|
this.position = data.position || 1;
|
|
this.hoist = data.hoist || false;
|
|
this.color = data.color || 0;
|
|
this.packed = data.permissions || 36953089;
|
|
this.name = data.name || "new role";
|
|
this.id = data.id || null;
|
|
this.server = server;
|
|
}
|
|
|
|
ServerPermissions.prototype.serialise = function serialise() {
|
|
return {
|
|
createInstantInvite: this.createInstantInvite,
|
|
manageRoles: this.manageRoles,
|
|
manageChannels: this.manageChannels,
|
|
readMessages: this.readMessages,
|
|
sendMessages: this.sendMessages,
|
|
sendTTSMessages: this.sendTTSMessages,
|
|
manageMessages: this.manageMessages,
|
|
embedLinks: this.embedLinks,
|
|
attachFiles: this.attachFiles,
|
|
readMessageHistory: this.readMessageHistory,
|
|
mentionEveryone: this.mentionEveryone,
|
|
voiceConnect: this.voiceConnect,
|
|
voiceSpeak: this.voiceSpeak,
|
|
voiceMuteMembers: this.voiceMuteMembers,
|
|
voiceDeafenMembers: this.voiceDeafenMembers,
|
|
voiceMoveMembers: this.voiceMoveMembers,
|
|
voiceUseVoiceActivation: this.voiceUseVoiceActivation
|
|
};
|
|
};
|
|
|
|
ServerPermissions.prototype.serialize = function serialize() {
|
|
return this.serialise();
|
|
};
|
|
|
|
ServerPermissions.prototype.getBit = function getBit(x) {
|
|
if ((this.packed >>> 3 & 1) === 1) {
|
|
return true;
|
|
}
|
|
return (this.packed >>> x & 1) === 1;
|
|
};
|
|
|
|
ServerPermissions.prototype.setBit = function setBit(location, value) {
|
|
|
|
if (value) {
|
|
// allow that permission
|
|
this.packed |= 1 << location;
|
|
} else {
|
|
// not allowed
|
|
this.packed &= ~(1 << location);
|
|
}
|
|
};
|
|
|
|
ServerPermissions.prototype.toString = function toString() {
|
|
return this.name;
|
|
};
|
|
|
|
_createClass(ServerPermissions, [{
|
|
key: "createInstantInvite",
|
|
get: function get() {
|
|
return this.getBit(0);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(0, val);
|
|
}
|
|
}, {
|
|
key: "banMembers",
|
|
get: function get() {
|
|
return this.getBit(1);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(1, val);
|
|
}
|
|
}, {
|
|
key: "kickMembers",
|
|
get: function get() {
|
|
return this.getBit(2);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(2, val);
|
|
}
|
|
}, {
|
|
key: "manageRoles",
|
|
get: function get() {
|
|
return this.getBit(3);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(3, val);
|
|
}
|
|
}, {
|
|
key: "manageChannels",
|
|
get: function get() {
|
|
return this.getBit(4);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(4, val);
|
|
}
|
|
}, {
|
|
key: "manageServer",
|
|
get: function get() {
|
|
return this.getBit(5);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(5, val);
|
|
}
|
|
}, {
|
|
key: "readMessages",
|
|
get: function get() {
|
|
return this.getBit(10);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(10, val);
|
|
}
|
|
}, {
|
|
key: "sendMessages",
|
|
get: function get() {
|
|
return this.getBit(11);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(11, val);
|
|
}
|
|
}, {
|
|
key: "sendTTSMessages",
|
|
get: function get() {
|
|
return this.getBit(12);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(12, val);
|
|
}
|
|
}, {
|
|
key: "manageMessages",
|
|
get: function get() {
|
|
return this.getBit(13);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(13, val);
|
|
}
|
|
}, {
|
|
key: "embedLinks",
|
|
get: function get() {
|
|
return this.getBit(14);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(14, val);
|
|
}
|
|
}, {
|
|
key: "attachFiles",
|
|
get: function get() {
|
|
return this.getBit(15);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(15, val);
|
|
}
|
|
}, {
|
|
key: "readMessageHistory",
|
|
get: function get() {
|
|
return this.getBit(16);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(16, val);
|
|
}
|
|
}, {
|
|
key: "mentionEveryone",
|
|
get: function get() {
|
|
return this.getBit(17);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(17, val);
|
|
}
|
|
}, {
|
|
key: "voiceConnect",
|
|
get: function get() {
|
|
return this.getBit(20);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(20, val);
|
|
}
|
|
}, {
|
|
key: "voiceSpeak",
|
|
get: function get() {
|
|
return this.getBit(21);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(21, val);
|
|
}
|
|
}, {
|
|
key: "voiceMuteMembers",
|
|
get: function get() {
|
|
return this.getBit(22);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(22, val);
|
|
}
|
|
}, {
|
|
key: "voiceDeafenMembers",
|
|
get: function get() {
|
|
return this.getBit(23);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(23, val);
|
|
}
|
|
}, {
|
|
key: "voiceMoveMembers",
|
|
get: function get() {
|
|
return this.getBit(24);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(24, val);
|
|
}
|
|
}, {
|
|
key: "voiceUseVoiceActivation",
|
|
get: function get() {
|
|
return this.getBit(25);
|
|
},
|
|
set: function set(val) {
|
|
this.setBit(25, val);
|
|
}
|
|
}]);
|
|
|
|
return ServerPermissions;
|
|
})();
|
|
|
|
module.exports = ServerPermissions; |