mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
* feat: add stage channel type * feat: initialise stage channel structure * feat: add STAGE_MODERATOR permissions bitfield * fix: typo in permissions * fix(Channel): type selection logic * feat: add rtcRegion to StageChannel and VoiceChannel * feat: rtc region editing for stage and voice channels * feat: stage channel userLimit * feat: add stage channels to exports * feat: add computed properties to stage channel * feat(VoiceState): include stage channel in docs * feat: allow ability to join stage channels * feat(StageChannel): join and leave methods * docs: add StageChannel link in GuildChannel docs * feat(VoiceState): suppress and requestToSpeakTimestamp * feat(StageChannel): setRequestToSpeak * refactor(StageChannel): update setRequestToSpeak * feat(VoiceState): add moveToSpeakers and moveToAudience * feat(VoiceState): add methods to move in/out of speakers * feat(VoiceState): add stage channel sanity checks * feat(Permissions): add REQUEST_TO_SPEAK * feat(VoiceState): simpler methods * docs(VoiceState): add documentation for new methods * refactor: remove unused error message * chore: remove debug statements * chore: revert changes to package-lock.json * docs(VoiceState): clarify suppress * docs(VoiceState): add missing @type param * feat(StageChannel): remove nsfw property * fix(VoiceState): check permissions in channel Co-authored-by: Advaith <advaithj1@gmail.com> * fix(VoiceState): instantiate error with new Co-authored-by: BannerBomb <BannerBomb55@gmail.com> * refactor(VoiceState): more readable API route builder Co-authored-by: Sugden <28943913+NotSugden@users.noreply.github.com> * style(VoiceState): fix lint errors * docs(VoiceState): add example usage for new methods * docs: setRTCRegion examples * chore: update typings * fix(VoiceState): calculate permissions for self * refactor(VoiceState): tidy up implementation * Update src/structures/VoiceState.js Co-authored-by: Jan <66554238+vaporox@users.noreply.github.com> * refactor: vaporox's suggestions * style(VoiceState): fix linter errors * chore: update typings * chore: remove unused error message * refactor(VoiceState): use optional chaining Co-authored-by: Sugden <28943913+NotSugden@users.noreply.github.com> * chore: move getters below constructor in typings * refactor(StageChannel): optional chaining Co-authored-by: Sugden <28943913+NotSugden@users.noreply.github.com> * style(VoiceState): fix lint errors * docs: fix incorrect types Co-authored-by: izexi <43889168+izexi@users.noreply.github.com> * Update src/structures/VoiceChannel.js Co-authored-by: izexi <43889168+izexi@users.noreply.github.com> * Update src/structures/VoiceChannel.js Co-authored-by: izexi <43889168+izexi@users.noreply.github.com> * refactor(VoiceState): use optional chaining Co-authored-by: Sugden <28943913+NotSugden@users.noreply.github.com> * refactor(StageChannel): remove permission override check in joinable * refactor: make ChannelTypes a proper enum * Use createEnum Co-authored-by: izexi <43889168+izexi@users.noreply.github.com> * chore: remove unused code from Constants * refactor(StageChannel): remove unnecessary getters * chore: update typings * refactor: introduce BaseGuildVoiceChannel class * refactor(VoiceChannel): reduce code duplication * feat: export BaseGuildVoiceChannel * chore: update typings * docs: fix typos * refactor: move setRTCRegion to BaseGuildVoiceChannel * feat(VoiceState): remove permission checks * chore: update typings * Apply suggestions from code review Co-authored-by: Sugden <28943913+NotSugden@users.noreply.github.com> Co-authored-by: Jan <66554238+vaporox@users.noreply.github.com> * chore: update esm exports and typings * Update src/structures/VoiceState.js Co-authored-by: Vlad Frangu <kingdgrizzle@gmail.com> Co-authored-by: Advaith <advaithj1@gmail.com> Co-authored-by: BannerBomb <BannerBomb55@gmail.com> Co-authored-by: Sugden <28943913+NotSugden@users.noreply.github.com> Co-authored-by: Jan <66554238+vaporox@users.noreply.github.com> Co-authored-by: izexi <43889168+izexi@users.noreply.github.com> Co-authored-by: Vlad Frangu <kingdgrizzle@gmail.com>
94 lines
2.7 KiB
JavaScript
94 lines
2.7 KiB
JavaScript
'use strict';
|
|
|
|
const BaseGuildVoiceChannel = require('./BaseGuildVoiceChannel');
|
|
const Permissions = require('../util/Permissions');
|
|
|
|
/**
|
|
* Represents a guild voice channel on Discord.
|
|
* @extends {BaseGuildVoiceChannel}
|
|
*/
|
|
class VoiceChannel extends BaseGuildVoiceChannel {
|
|
/**
|
|
* Whether the channel is deletable by the client user
|
|
* @type {boolean}
|
|
* @readonly
|
|
*/
|
|
get deletable() {
|
|
return super.deletable && this.permissionsFor(this.client.user).has(Permissions.FLAGS.CONNECT, false);
|
|
}
|
|
|
|
/**
|
|
* Whether the channel is editable by the client user
|
|
* @type {boolean}
|
|
* @readonly
|
|
*/
|
|
get editable() {
|
|
return this.manageable && this.permissionsFor(this.client.user).has(Permissions.FLAGS.CONNECT, false);
|
|
}
|
|
|
|
/**
|
|
* Whether the channel is joinable by the client user
|
|
* @type {boolean}
|
|
* @readonly
|
|
*/
|
|
get joinable() {
|
|
if (!super.joinable) return false;
|
|
if (this.full && !this.permissionsFor(this.client.user).has(Permissions.FLAGS.MOVE_MEMBERS, false)) return false;
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Checks if the client has permission to send audio to the voice channel
|
|
* @type {boolean}
|
|
* @readonly
|
|
*/
|
|
get speakable() {
|
|
return this.permissionsFor(this.client.user).has(Permissions.FLAGS.SPEAK, false);
|
|
}
|
|
|
|
/**
|
|
* Sets the bitrate of the channel.
|
|
* @param {number} bitrate The new bitrate
|
|
* @param {string} [reason] Reason for changing the channel's bitrate
|
|
* @returns {Promise<VoiceChannel>}
|
|
* @example
|
|
* // Set the bitrate of a voice channel
|
|
* voiceChannel.setBitrate(48000)
|
|
* .then(vc => console.log(`Set bitrate to ${vc.bitrate}bps for ${vc.name}`))
|
|
* .catch(console.error);
|
|
*/
|
|
setBitrate(bitrate, reason) {
|
|
return this.edit({ bitrate }, reason);
|
|
}
|
|
|
|
/**
|
|
* Sets the user limit of the channel.
|
|
* @param {number} userLimit The new user limit
|
|
* @param {string} [reason] Reason for changing the user limit
|
|
* @returns {Promise<VoiceChannel>}
|
|
* @example
|
|
* // Set the user limit of a voice channel
|
|
* voiceChannel.setUserLimit(42)
|
|
* .then(vc => console.log(`Set user limit to ${vc.userLimit} for ${vc.name}`))
|
|
* .catch(console.error);
|
|
*/
|
|
setUserLimit(userLimit, reason) {
|
|
return this.edit({ userLimit }, reason);
|
|
}
|
|
|
|
/**
|
|
* Sets the RTC region of the channel.
|
|
* @name VoiceChannel#setRTCRegion
|
|
* @param {?string} region The new region of the channel. Set to `null` to remove a specific region for the channel
|
|
* @returns {Promise<VoiceChannel>}
|
|
* @example
|
|
* // Set the RTC region to europe
|
|
* voiceChannel.setRTCRegion('europe');
|
|
* @example
|
|
* // Remove a fixed region for this channel - let Discord decide automatically
|
|
* voiceChannel.setRTCRegion(null);
|
|
*/
|
|
}
|
|
|
|
module.exports = VoiceChannel;
|