All files / web/src/app/api/admin/audio/generate-collected route.ts

0% Statements 0/50
0% Branches 0/1
0% Functions 0/1
0% Lines 0/50

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 46 47 48 49 50 51                                                                                                     
import { type NextRequest, NextResponse } from 'next/server'
import { startCollectedClipGeneration } from '@/lib/tasks/collected-clip-generate'
import { withAuth } from '@/lib/auth/withAuth'

/**
 * POST /api/admin/audio/generate-collected
 *
 * Starts a background task to generate OpenAI TTS mp3s for collected clips.
 *
 * Body: { voice: string, clipIds: 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 (
        !Array.isArray(clipIds) ||
        clipIds.length === 0 ||
        !clipIds.every((id: unknown) => typeof id === 'string')
      ) {
        return NextResponse.json(
          { error: 'clipIds must be a non-empty array of strings' },
          { status: 400 }
        )
      }

      const taskId = await startCollectedClipGeneration({
        voice: voice.trim(),
        clipIds,
        _userId: userId,
      })

      return NextResponse.json({ taskId })
    } catch (error) {
      console.error('Error starting collected clip generation:', error)
      return NextResponse.json(
        { error: 'Failed to start collected clip generation' },
        { status: 500 }
      )
    }
  },
  { role: 'admin' }
)