2022-03-19 10:37:45 +00:00
|
|
|
'use strict';
|
|
|
|
|
2022-03-24 10:55:32 +00:00
|
|
|
const process = require('node:process');
|
2022-03-19 10:37:45 +00:00
|
|
|
const BaseGuildVoiceChannel = require('./BaseGuildVoiceChannel');
|
2022-03-24 10:55:32 +00:00
|
|
|
const Permissions = require('../util/Permissions');
|
|
|
|
|
|
|
|
let deprecationEmittedForEditable = false;
|
2022-03-19 10:37:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a guild voice channel on Discord.
|
|
|
|
* @extends {BaseGuildVoiceChannel}
|
|
|
|
*/
|
|
|
|
class VoiceChannel extends BaseGuildVoiceChannel {
|
2022-03-24 10:55:32 +00:00
|
|
|
/**
|
|
|
|
* Whether the channel is editable by the client user
|
|
|
|
* @type {boolean}
|
|
|
|
* @readonly
|
|
|
|
* @deprecated Use {@link VoiceChannel#manageable} instead
|
|
|
|
*/
|
|
|
|
get editable() {
|
|
|
|
if (!deprecationEmittedForEditable) {
|
|
|
|
process.emitWarning(
|
|
|
|
'The VoiceChannel#editable getter is deprecated. Use VoiceChannel#manageable instead.',
|
|
|
|
'DeprecationWarning',
|
|
|
|
);
|
|
|
|
|
|
|
|
deprecationEmittedForEditable = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.manageable;
|
|
|
|
}
|
|
|
|
|
2022-03-19 10:37:45 +00:00
|
|
|
/**
|
|
|
|
* Whether the channel is joinable by the client user
|
|
|
|
* @type {boolean}
|
|
|
|
* @readonly
|
|
|
|
*/
|
|
|
|
get joinable() {
|
|
|
|
if (!super.joinable) return false;
|
2022-03-24 10:55:32 +00:00
|
|
|
if (this.full && !this.permissionsFor(this.client.user).has(Permissions.FLAGS.MOVE_MEMBERS, false)) return false;
|
2022-03-19 10:37:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the client has permission to send audio to the voice channel
|
|
|
|
* @type {boolean}
|
|
|
|
* @readonly
|
|
|
|
*/
|
|
|
|
get speakable() {
|
|
|
|
const permissions = this.permissionsFor(this.client.user);
|
|
|
|
if (!permissions) return false;
|
|
|
|
// This flag allows speaking even if timed out
|
2022-03-24 10:55:32 +00:00
|
|
|
if (permissions.has(Permissions.FLAGS.ADMINISTRATOR, false)) return true;
|
2022-03-19 10:37:45 +00:00
|
|
|
|
|
|
|
return (
|
2022-03-24 10:55:32 +00:00
|
|
|
this.guild.me.communicationDisabledUntilTimestamp < Date.now() && permissions.has(Permissions.FLAGS.SPEAK, false)
|
2022-03-19 10:37:45 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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(48_000)
|
|
|
|
* .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;
|