mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-14 00:15:09 -05:00
* v0 * v1 * Basic ss tes * Ss tests * Stuff * Add mcp * mcp v1 * Improvement * Fix * BROKEN * Checkpoint * Streaming * Fix abort * Things are broken * Streaming seems to work but copilot is dumb * Fix edge issue * LUAAAA * Fix stream buffer * Fix lint * Checkpoint * Initial temp state, in the middle of a refactor * Initial test shows diff store still working * Tool refactor * First cleanup pass complete - untested * Continued cleanup * Refactor * Refactor complete - no testing yet * Fix - cursor makes me sad * Fix mcp * Clean up mcp * Updated mcp * Add respond to subagents * Fix definitions * Add tools * Add tools * Add copilot mcp tracking * Fix lint * Fix mcp * Fix * Updates * Clean up mcp * Fix copilot mcp tool names to be sim prefixed * Add opus 4.6 * Fix discovery tool * Fix * Remove logs * Fix go side tool rendering * Update docs * Fix hydration * Fix tool call resolution * Fix * Fix lint * Fix superagent and autoallow integrations * Fix always allow * Update block * Remove plan docs * Fix hardcoded ff * Fix dropped provider * Fix lint * Fix tests * Fix dead messages array * Fix discovery * Fix run workflow * Fix run block * Fix run from block in copilot * Fix lint * Fix skip and mtb * Fix typing * Fix tool call * Bump api version * Fix bun lock * Nuke bad files
65 lines
1.9 KiB
TypeScript
65 lines
1.9 KiB
TypeScript
import { type NextRequest, NextResponse } from 'next/server'
|
|
import { z } from 'zod'
|
|
import { getSession } from '@/lib/auth'
|
|
import { SIM_AGENT_API_URL } from '@/lib/copilot/constants'
|
|
import { env } from '@/lib/core/config/env'
|
|
|
|
const GenerateApiKeySchema = z.object({
|
|
name: z.string().min(1, 'Name is required').max(255, 'Name is too long'),
|
|
})
|
|
|
|
export async function POST(req: NextRequest) {
|
|
try {
|
|
const session = await getSession()
|
|
if (!session?.user?.id) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const userId = session.user.id
|
|
|
|
const body = await req.json().catch(() => ({}))
|
|
const validationResult = GenerateApiKeySchema.safeParse(body)
|
|
|
|
if (!validationResult.success) {
|
|
return NextResponse.json(
|
|
{
|
|
error: 'Invalid request body',
|
|
details: validationResult.error.errors,
|
|
},
|
|
{ status: 400 }
|
|
)
|
|
}
|
|
|
|
const { name } = validationResult.data
|
|
|
|
const res = await fetch(`${SIM_AGENT_API_URL}/api/validate-key/generate`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
...(env.COPILOT_API_KEY ? { 'x-api-key': env.COPILOT_API_KEY } : {}),
|
|
},
|
|
body: JSON.stringify({ userId, name }),
|
|
})
|
|
|
|
if (!res.ok) {
|
|
return NextResponse.json(
|
|
{ error: 'Failed to generate copilot API key' },
|
|
{ status: res.status || 500 }
|
|
)
|
|
}
|
|
|
|
const data = (await res.json().catch(() => null)) as { apiKey?: string; id?: string } | null
|
|
|
|
if (!data?.apiKey) {
|
|
return NextResponse.json({ error: 'Invalid response from Sim Agent' }, { status: 500 })
|
|
}
|
|
|
|
return NextResponse.json(
|
|
{ success: true, key: { id: data?.id || 'new', apiKey: data.apiKey } },
|
|
{ status: 201 }
|
|
)
|
|
} catch (error) {
|
|
return NextResponse.json({ error: 'Failed to generate copilot API key' }, { status: 500 })
|
|
}
|
|
}
|