- Migration: app_settings table with admin-only RLS (ANTHROPIC_API_KEY, VOYAGE_API_KEY) - lib/settings.ts: getApiKey() reads DB first, falls back to env var - lib/claude/client.ts: factory createAnthropicClient(apiKey) replaces singleton - lib/claude/embed.ts: optional apiKey param, falls back to env - 3 Claude AI routes + similar route: fetch key from settings before calling AI - incidents/route.ts: fire-and-forget embed reads VOYAGE key from settings - GET/POST /api/settings: admin-only masked key management endpoint - /hse/settings page + ApiKeyForm client component Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FFDuBhMKvoWjrWT3ZnGmmr
54 lines
1.8 KiB
TypeScript
54 lines
1.8 KiB
TypeScript
export const dynamic = 'force-dynamic'
|
|
|
|
import { NextRequest, NextResponse } from 'next/server'
|
|
import { createClient } from '@/lib/supabase/server'
|
|
import { embedText } from '@/lib/claude/embed'
|
|
import { getApiKey } from '@/lib/settings'
|
|
|
|
export async function GET(
|
|
_request: NextRequest,
|
|
{ params }: { params: Promise<{ id: string }> }
|
|
) {
|
|
const { id } = await params
|
|
const supabase = await createClient()
|
|
const { data: { user }, error: authError } = await supabase.auth.getUser()
|
|
if (authError || !user) return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
|
|
|
|
const { data: profile } = await supabase.from('users').select('role').eq('id', user.id).single()
|
|
if (!profile || !['hse', 'admin'].includes(profile.role))
|
|
return NextResponse.json({ error: 'Forbidden' }, { status: 403 })
|
|
|
|
const voyageKey = await getApiKey(supabase, 'VOYAGE_API_KEY')
|
|
|
|
const { data: incident } = await supabase
|
|
.from('incidents')
|
|
.select('id, description, embedding')
|
|
.eq('id', id)
|
|
.single()
|
|
if (!incident) return NextResponse.json({ error: 'Not found' }, { status: 404 })
|
|
|
|
const inc = incident as { id: string; description: string; embedding: string | null }
|
|
|
|
let embeddingVec: number[]
|
|
try {
|
|
if (inc.embedding) {
|
|
embeddingVec = JSON.parse(inc.embedding) as number[]
|
|
} else {
|
|
embeddingVec = await embedText(inc.description, voyageKey)
|
|
await supabase.from('incidents').update({
|
|
embedding: `[${embeddingVec.join(',')}]` as unknown as string,
|
|
}).eq('id', id)
|
|
}
|
|
} catch {
|
|
return NextResponse.json({ error: 'Embedding service unavailable' }, { status: 503 })
|
|
}
|
|
|
|
const { data: similar } = await supabase.rpc('match_incidents', {
|
|
query_embedding: `[${embeddingVec.join(',')}]`,
|
|
exclude_id: id,
|
|
match_count: 5,
|
|
})
|
|
|
|
return NextResponse.json(similar ?? [])
|
|
}
|