/* * Vencord, a Discord client mod * Copyright (c) 2024 Vendicated and contributors * SPDX-License-Identifier: GPL-3.0-or-later */ import { NavContextMenuPatchCallback } from "@api/ContextMenu"; import { Devs, EquicordDevs } from "@utils/constants"; import definePlugin from "@utils/types"; import { findStoreLazy } from "@webpack"; import { GuildChannelStore, Menu, React, RestAPI, UserStore } from "@webpack/common"; import type { Channel } from "discord-types/general"; const VoiceStateStore = findStoreLazy("VoiceStateStore"); function sendPatch(channel: Channel, body: Record, bypass = false) { const usersVoice = VoiceStateStore.getVoiceStatesForChannel(channel.id); // Get voice states by channel id const myId = UserStore.getCurrentUser().id; // Get my user id Object.keys(usersVoice).forEach((key, index) => { const userVoice = usersVoice[key]; if (bypass || userVoice.userId !== myId) { setTimeout(() => { RestAPI.patch({ url: `/guilds/${channel.guild_id}/members/${userVoice.userId}`, body: body }); }, index * 500); } }); } interface VoiceChannelContextProps { channel: Channel; } const VoiceChannelContext: NavContextMenuPatchCallback = (children, { channel }: VoiceChannelContextProps) => { // only for voice and stage channels if (!channel || (channel.type !== 2 && channel.type !== 13)) return; const userCount = Object.keys(VoiceStateStore.getVoiceStatesForChannel(channel.id)).length; if (userCount === 0) return; const guildChannels: { VOCAL: { channel: Channel, comparator: number; }[]; } = GuildChannelStore.getChannels(channel.guild_id); const voiceChannels = guildChannels.VOCAL.map(({ channel }) => channel).filter(({ id }) => id !== channel.id); children.splice( -1, 0, sendPatch(channel, { channel_id: null, })} /> sendPatch(channel, { mute: true, })} /> sendPatch(channel, { mute: false, })} /> sendPatch(channel, { deaf: true, })} /> sendPatch(channel, { deaf: false, })} /> {voiceChannels.map(voiceChannel => { return ( sendPatch(channel, { channel_id: voiceChannel.id, }, true)} /> ); })} ); }; export default definePlugin({ name: "VoiceChatUtilities", description: "This plugin allows you to perform multiple actions on an entire channel (move, mute, disconnect, etc.) (originally by dutake)", authors: [EquicordDevs.Dams, Devs.D3SOX], contextMenus: { "channel-context": VoiceChannelContext }, });