feat: implement web-driven voice connection with guild/channel selection and API integration

This commit is contained in:
MythEclipse
2026-05-13 18:23:20 +07:00
parent a5a794c590
commit 4dadcf3871
9 changed files with 937 additions and 72 deletions
+8 -62
View File
@@ -2,22 +2,20 @@ import "./mock-crc";
import "libsodium-wrappers";
import "@snazzah/davey";
import "dotenv/config";
import { getVoiceConnection } from "@discordjs/voice";
import { Client } from "discord.js-selfbot-v13";
import { config } from "./config";
import { createChildLogger } from "./logger";
import { discordPlayer } from "./player";
import { startRecording, stopRecording } from "./recorder";
import { VoiceController } from "./voiceController";
import { startWebserver } from "./webserver";
const logger = createChildLogger("bot");
const token = config.DISCORD_TOKEN;
const voiceChannelId = config.VOICE_CHANNEL_ID;
const guildId = config.GUILD_ID;
// Inisialisasi selfbot client
const client = new Client();
const voiceController = new VoiceController(client);
// Track shutdown state
let isShuttingDown = false;
@@ -32,30 +30,15 @@ async function gracefulShutdown(signal: string) {
logger.info({ signal }, "Graceful shutdown initiated");
try {
// Step 1: Stop recording
if (guildId) {
logger.info("Stopping recording...");
stopRecording(guildId);
}
// Step 1: Stop voice connection
logger.info("Stopping voice connection...");
await voiceController.disconnect();
// Step 2: Pause player
logger.info("Pausing player...");
discordPlayer.pause();
// Step 3: Destroy voice connection
if (guildId) {
const connection = getVoiceConnection(guildId);
if (connection) {
logger.info("Destroying voice connection...");
try {
connection.destroy();
} catch (err) {
logger.warn({ error: err }, "Error destroying voice connection");
}
}
}
// Step 4: Destroy client
// Step 3: Destroy client
logger.info("Destroying Discord client...");
try {
client.destroy();
@@ -72,45 +55,8 @@ async function gracefulShutdown(signal: string) {
}
client.on("ready", async () => {
if (config.VERBOSE) {
logger.info({ user: client.user?.tag }, "Bot logged in");
}
// Ambil guild
const guild = client.guilds.cache.get(guildId!);
if (!guild) {
logger.error({ guildId }, "Guild not found");
process.exit(1);
}
// Fetch channels jika belum ada di cache
const channel =
guild.channels.cache.get(voiceChannelId!) ??
(await guild.channels.fetch(voiceChannelId!).catch(() => null));
if (!channel || channel.type !== "GUILD_VOICE") {
logger.error({ voiceChannelId }, "Voice channel not found or wrong type");
process.exit(1);
}
if (config.VERBOSE) {
logger.info(
{ channelName: channel.name, channelId: channel.id },
"Joining voice channel",
);
}
await startRecording(client, channel as any);
// Set up player connection
const connection = getVoiceConnection(guildId!);
if (connection) {
discordPlayer.setConnection(connection);
logger.info("Player connected to voice channel");
}
// Start Webserver
startWebserver(config.WEBSERVER_PORT);
logger.info({ user: client.user?.tag }, "Bot logged in");
startWebserver(config.WEBSERVER_PORT, client, voiceController);
});
client.on("error", (err) => {