2020-07-06 20:19:30 +00:00
|
|
|
const soundPlayer = require("../utils/soundplayer.js");
|
|
|
|
const client = require("../utils/client.js");
|
|
|
|
const AwaitRejoin = require("../utils/awaitrejoin.js");
|
2020-08-16 16:48:37 +00:00
|
|
|
const { random } = require("../utils/misc.js");
|
2020-07-06 20:19:30 +00:00
|
|
|
|
|
|
|
module.exports = async (member, oldChannel) => {
|
|
|
|
const connection = soundPlayer.players.get(oldChannel.guild.id);
|
|
|
|
if (connection && oldChannel.id === connection.voiceChannel.id) {
|
|
|
|
if (oldChannel.voiceMembers.filter((i) => i.id !== client.user.id).length === 0) {
|
|
|
|
const waitMessage = await client.createMessage(connection.originalChannel.id, "🔊 Waiting 10 seconds for someone to return...");
|
|
|
|
const awaitRejoin = new AwaitRejoin(oldChannel, true);
|
|
|
|
awaitRejoin.on("end", (rejoined, member) => {
|
|
|
|
if (rejoined) {
|
|
|
|
soundPlayer.players.set(connection.voiceChannel.guild.id, { player: connection.player, type: connection.type, host: member.id, voiceChannel: connection.voiceChannel, originalChannel: connection.originalChannel });
|
|
|
|
waitMessage.edit(`🔊 ${member.mention} is the new voice channel host.`);
|
|
|
|
} else {
|
|
|
|
waitMessage.delete();
|
|
|
|
connection.player.stop(connection.originalChannel.guild.id);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else if (member.id === connection.host) {
|
|
|
|
const waitMessage = await client.createMessage(connection.originalChannel.id, "🔊 Waiting 10 seconds for the host to return...");
|
|
|
|
const awaitRejoin = new AwaitRejoin(oldChannel, false, member.id);
|
|
|
|
awaitRejoin.on("end", (rejoined) => {
|
|
|
|
if (rejoined) {
|
|
|
|
waitMessage.delete();
|
|
|
|
} else {
|
|
|
|
const members = oldChannel.voiceMembers.filter((i) => i.id !== client.user.id);
|
|
|
|
if (members.length === 0) {
|
|
|
|
waitMessage.delete();
|
|
|
|
connection.player.stop(connection.originalChannel.guild.id);
|
|
|
|
} else {
|
2020-08-16 16:48:37 +00:00
|
|
|
const randomMember = random(members);
|
2020-07-06 20:19:30 +00:00
|
|
|
soundPlayer.players.set(connection.voiceChannel.guild.id, { player: connection.player, type: connection.type, host: randomMember.id, voiceChannel: connection.voiceChannel, originalChannel: connection.originalChannel });
|
|
|
|
waitMessage.edit(`🔊 ${randomMember.mention} is the new voice channel host.`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|