UNPKG

djs-selfbot-v11

Version:

Selfbot module Discord

65 lines (56 loc) 1.58 kB
const Permissions = require('../util/Permissions'); const { OverwriteTypes } = require('../util/Constants'); /** * Represents a permission overwrite for a role or member in a guild channel. */ class PermissionOverwrites { constructor(guildChannel, data) { /** * The GuildChannel this overwrite is for * @name PermissionOverwrites#channel * @type {GuildChannel} * @readonly */ Object.defineProperty(this, 'channel', { value: guildChannel }); if (data) this.setup(data); } setup(data) { /** * The ID of this overwrite, either a user ID or a role ID * @type {Snowflake} */ this.id = data.id; /** * The type of this overwrite * @type {string} */ this.type = data.type; /** * The permissions that are denied for the user or role. * @type {Readonly<Permissions>} */ this.deny = new Permissions(BigInt(data.deny)).freeze(); /** * The permissions that are allowed for the user or role. * @type {Readonly<Permissions>} */ this.allow = new Permissions(BigInt(data.allow)).freeze(); } toJSON() { return { id: this.id, type: OverwriteTypes[this.type], allow: this.allow, deny: this.deny, }; } /** * Delete this Permission Overwrite. * @param {string} [reason] Reason for deleting this overwrite * @returns {Promise<PermissionOverwrites>} */ delete(reason) { return this.channel.client.rest.methods.deletePermissionOverwrites(this, reason); } } module.exports = PermissionOverwrites;