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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | import { eq } from 'drizzle-orm' import { type NextRequest, NextResponse } from 'next/server' import { db } from '@/db' import { appSettings, DEFAULT_APP_SETTINGS } from '@/db/schema' import { withAuth } from '@/lib/auth/withAuth' import type { VoiceSourceData } from '@/lib/audio/voiceSource' async function ensureDefaultSettings() { const existing = await db.select().from(appSettings).where(eq(appSettings.id, 'default')).limit(1) if (existing.length === 0) { await db.insert(appSettings).values({ id: 'default', bktConfidenceThreshold: DEFAULT_APP_SETTINGS.bktConfidenceThreshold, audioVoice: DEFAULT_APP_SETTINGS.audioVoice, voiceChain: DEFAULT_APP_SETTINGS.voiceChain, }) } } function isValidVoiceChain(chain: unknown): chain is VoiceSourceData[] { if (!Array.isArray(chain)) return false return chain.every( (entry) => (entry && typeof entry === 'object' && entry.type === 'pregenerated' && typeof entry.name === 'string') || (entry && typeof entry === 'object' && entry.type === 'custom' && typeof entry.name === 'string') || (entry && typeof entry === 'object' && entry.type === 'browser-tts') || (entry && typeof entry === 'object' && entry.type === 'subtitle') || (entry && typeof entry === 'object' && entry.type === 'generate') ) } /** * GET /api/settings/voice-chain * * Returns the voice chain configuration. */ export const GET = withAuth(async () => { try { await ensureDefaultSettings() const [settings] = await db .select() .from(appSettings) .where(eq(appSettings.id, 'default')) .limit(1) const raw = settings?.voiceChain ?? DEFAULT_APP_SETTINGS.voiceChain const voiceChain: VoiceSourceData[] = raw ? JSON.parse(raw) : [{ type: 'pregenerated', name: 'nova' }, { type: 'browser-tts' }] return NextResponse.json({ voiceChain }) } catch (error) { console.error('Error fetching voice chain setting:', error) return NextResponse.json({ error: 'Failed to fetch settings' }, { status: 500 }) } }) /** * PATCH /api/settings/voice-chain * * Updates the voice chain configuration. * * Body: { voiceChain: VoiceSourceData[] } */ export const PATCH = withAuth(async (request) => { try { const body = await request.json() const { voiceChain } = body if (!isValidVoiceChain(voiceChain)) { return NextResponse.json( { error: 'voiceChain must be an array of valid voice sources' }, { status: 400 } ) } await ensureDefaultSettings() const serialized = JSON.stringify(voiceChain) // Also update audioVoice to match the first pregenerated voice for backward compat const firstPregenerated = voiceChain.find( (v): v is { type: 'pregenerated'; name: string } => v.type === 'pregenerated' ) const updates: Record<string, string> = { voiceChain: serialized } if (firstPregenerated) { updates.audioVoice = firstPregenerated.name } await db.update(appSettings).set(updates).where(eq(appSettings.id, 'default')) return NextResponse.json({ voiceChain }) } catch (error) { console.error('Error updating voice chain setting:', error) return NextResponse.json({ error: 'Failed to update settings' }, { status: 500 }) } }) |