mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-10 05:00:18 +00:00
Removed createDiscordJSAdapter
This commit is contained in:
parent
dc5a9d4e71
commit
6c89770d16
@ -4,7 +4,6 @@ const {
|
|||||||
getVoiceConnection,
|
getVoiceConnection,
|
||||||
joinVoiceChannel
|
joinVoiceChannel
|
||||||
} = require("@discordjs/voice");
|
} = require("@discordjs/voice");
|
||||||
const { createDiscordJSAdapter } = require("../utils/adapter");
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: "play",
|
name: "play",
|
||||||
@ -99,7 +98,7 @@ module.exports = {
|
|||||||
joinVoiceChannel({
|
joinVoiceChannel({
|
||||||
channelId: voiceChannel.id,
|
channelId: voiceChannel.id,
|
||||||
guildId: voiceChannel.guild.id,
|
guildId: voiceChannel.guild.id,
|
||||||
adapterCreator: createDiscordJSAdapter(voiceChannel)
|
adapterCreator: voiceChannel.guild.voiceAdapterCreator
|
||||||
});
|
});
|
||||||
construct.connection = connection;
|
construct.connection = connection;
|
||||||
let date = new Date();
|
let date = new Date();
|
||||||
|
@ -2,7 +2,6 @@ const {
|
|||||||
getVoiceConnection,
|
getVoiceConnection,
|
||||||
joinVoiceChannel
|
joinVoiceChannel
|
||||||
} = require("@discordjs/voice");
|
} = require("@discordjs/voice");
|
||||||
const { createDiscordJSAdapter } = require("../utils/adapter");
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: "voiceStateUpdate",
|
name: "voiceStateUpdate",
|
||||||
@ -16,7 +15,7 @@ module.exports = {
|
|||||||
|
|
||||||
if (newState.channel === null) {
|
if (newState.channel === null) {
|
||||||
client.funcs.statisticsUpdate(client, newState.guild, radio);
|
client.funcs.statisticsUpdate(client, newState.guild, radio);
|
||||||
radio.connection = null;
|
radio.connection?.destroy();
|
||||||
radio.audioPlayer?.stop();
|
radio.audioPlayer?.stop();
|
||||||
return client.radio.delete(newState.guild.id);
|
return client.radio.delete(newState.guild.id);
|
||||||
}
|
}
|
||||||
@ -29,7 +28,7 @@ module.exports = {
|
|||||||
radio.connection = joinVoiceChannel({
|
radio.connection = joinVoiceChannel({
|
||||||
channelId: oldState.channel.id,
|
channelId: oldState.channel.id,
|
||||||
guildId: oldState.channel.guild.id,
|
guildId: oldState.channel.guild.id,
|
||||||
adapterCreator: createDiscordJSAdapter(oldState.channel)
|
adapterCreator: oldState.channel.guild.voiceAdapterCreator
|
||||||
})
|
})
|
||||||
//radio.connection = await oldState.channel.join()
|
//radio.connection = await oldState.channel.join()
|
||||||
),
|
),
|
||||||
|
@ -1,70 +0,0 @@
|
|||||||
import { DiscordGatewayAdapterCreator, DiscordGatewayAdapterLibraryMethods } from '@discordjs/voice';
|
|
||||||
import { VoiceChannel, Snowflake, Client, Constants, WebSocketShard, Guild, StageChannel } from 'discord.js';
|
|
||||||
import { GatewayVoiceServerUpdateDispatchData, GatewayVoiceStateUpdateDispatchData } from 'discord-api-types/v9';
|
|
||||||
|
|
||||||
const adapters = new Map<Snowflake, DiscordGatewayAdapterLibraryMethods>();
|
|
||||||
const trackedClients = new Set<Client>();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tracks a Discord.js client, listening to VOICE_SERVER_UPDATE and VOICE_STATE_UPDATE events.
|
|
||||||
* @param client - The Discord.js Client to track
|
|
||||||
*/
|
|
||||||
function trackClient(client: Client) {
|
|
||||||
if (trackedClients.has(client)) return;
|
|
||||||
trackedClients.add(client);
|
|
||||||
client.ws.on(Constants.WSEvents.VOICE_SERVER_UPDATE, (payload: GatewayVoiceServerUpdateDispatchData) => {
|
|
||||||
adapters.get(payload.guild_id)?.onVoiceServerUpdate(payload);
|
|
||||||
});
|
|
||||||
client.ws.on(Constants.WSEvents.VOICE_STATE_UPDATE, (payload: GatewayVoiceStateUpdateDispatchData) => {
|
|
||||||
if (payload.guild_id && payload.session_id && payload.user_id === client.user?.id) {
|
|
||||||
adapters.get(payload.guild_id)?.onVoiceStateUpdate(payload);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const trackedGuilds = new Map<WebSocketShard, Set<Snowflake>>();
|
|
||||||
|
|
||||||
function cleanupGuilds(shard: WebSocketShard) {
|
|
||||||
const guilds = trackedGuilds.get(shard);
|
|
||||||
if (guilds) {
|
|
||||||
for (const guildID of guilds.values()) {
|
|
||||||
adapters.get(guildID)?.destroy();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function trackGuild(guild: Guild) {
|
|
||||||
let guilds = trackedGuilds.get(guild.shard);
|
|
||||||
if (!guilds) {
|
|
||||||
const cleanup = () => cleanupGuilds(guild.shard);
|
|
||||||
guild.shard.on('close', cleanup);
|
|
||||||
guild.shard.on('destroyed', cleanup);
|
|
||||||
guilds = new Set();
|
|
||||||
trackedGuilds.set(guild.shard, guilds);
|
|
||||||
}
|
|
||||||
guilds.add(guild.id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates an adapter for a Voice Channel
|
|
||||||
* @param channel - The channel to create the adapter for
|
|
||||||
*/
|
|
||||||
export function createDiscordJSAdapter(channel: VoiceChannel | StageChannel): DiscordGatewayAdapterCreator {
|
|
||||||
return (methods) => {
|
|
||||||
adapters.set(channel.guild.id, methods);
|
|
||||||
trackClient(channel.client);
|
|
||||||
trackGuild(channel.guild);
|
|
||||||
return {
|
|
||||||
sendPayload(data) {
|
|
||||||
if (channel.guild.shard.status === Constants.Status.READY) {
|
|
||||||
channel.guild.shard.send(data);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
},
|
|
||||||
destroy() {
|
|
||||||
return adapters.delete(channel.guild.id);
|
|
||||||
},
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user