Build & Deploy / build-and-push (backend) (push) Failing after 35s
Build & Deploy / build-and-push (discord-gateway) (push) Failing after 25s
Build & Deploy / build-and-push (proxy) (push) Failing after 25s
- Remove pnpm workspace, moon repo, and all monorepo tooling - Delete packages/shared/, embed shared code directly into each service - Copy packages/shared/src/* -> services/backend/src/shared/ and services/discord-gateway/src/shared/ - Replace all @bete/shared imports with @/shared/ path alias - Remove @bete/shared workspace dependency from both services - Update root package.json scripts from --filter to --prefix - Rewrite Dockerfiles to build each service standalone - Clean up biome.json, .gitignore, remove root drizzle.config.ts
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
import { createChildLogger } from "@/shared/logger/index";
|
|
import type { Request, Response } from "express";
|
|
import { asyncHandler } from "../../shared/middlewares/index.js";
|
|
import { publishCommandNoReply } from "../../shared/redis/index.js";
|
|
import type { ConnectVoiceInput, VoiceCommandInput } from "./voice.schema.js";
|
|
import {
|
|
connectVoice,
|
|
disconnectVoice,
|
|
getVoiceStatus,
|
|
} from "./voice.service.js";
|
|
|
|
const logger = createChildLogger("voice.controller");
|
|
|
|
export const handleGetVoiceStatus = asyncHandler(
|
|
async (_req: Request, res: Response) => {
|
|
const status = await getVoiceStatus();
|
|
res.json(status);
|
|
},
|
|
);
|
|
|
|
export const handleConnectVoice = asyncHandler(
|
|
async (req: Request, res: Response) => {
|
|
const { guildId, channelId } = req.body as ConnectVoiceInput;
|
|
logger.debug({ guildId, channelId }, "Connecting to voice channel");
|
|
const status = await connectVoice(guildId, channelId);
|
|
res.json(status);
|
|
},
|
|
);
|
|
|
|
export const handleDisconnectVoice = asyncHandler(
|
|
async (_req: Request, res: Response) => {
|
|
logger.debug("Disconnecting from voice");
|
|
const status = await disconnectVoice();
|
|
res.json(status);
|
|
},
|
|
);
|
|
|
|
export const handleVoiceCommand = asyncHandler(
|
|
async (req: Request, res: Response) => {
|
|
const { command } = req.body as VoiceCommandInput;
|
|
logger.debug({ command }, "Publishing voice command");
|
|
await publishCommandNoReply(command);
|
|
res.json({ success: true, command });
|
|
},
|
|
);
|