Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | import { type NextRequest, NextResponse } from 'next/server' import { startAudioGeneration } from '@/lib/tasks/audio-generate' import { withAuth } from '@/lib/auth/withAuth' /** * POST /api/admin/audio/generate * * Starts a background task to generate all missing TTS clips for a given voice. * Returns the task ID for tracking via the background task system. * * Body: { voice: string } * Response: { taskId: string } */ export const POST = withAuth( async (request: NextRequest, { userId }) => { try { const body = await request.json() const { voice, clipIds } = body if (typeof voice !== 'string' || voice.trim().length === 0) { return NextResponse.json({ error: 'voice must be a non-empty string' }, { status: 400 }) } if ( clipIds !== undefined && (!Array.isArray(clipIds) || !clipIds.every((id: unknown) => typeof id === 'string')) ) { return NextResponse.json({ error: 'clipIds must be an array of strings' }, { status: 400 }) } const taskId = await startAudioGeneration({ voice: voice.trim(), ...(clipIds ? { clipIds } : {}), _userId: userId, }) return NextResponse.json({ taskId }) } catch (error) { console.error('Error starting audio generation:', error) return NextResponse.json({ error: 'Failed to start audio generation' }, { status: 500 }) } }, { role: 'admin' } ) |