d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
59 lines
2.1 KiB
TypeScript
59 lines
2.1 KiB
TypeScript
import { type NextRequest, NextResponse } from 'next/server'
|
|
import { generateCopilotApiKeyContract } from '@/lib/api/contracts'
|
|
import { parseRequest } from '@/lib/api/server'
|
|
import { getSession } from '@/lib/auth'
|
|
import { TraceAttr } from '@/lib/copilot/generated/trace-attributes-v1'
|
|
import { fetchGo } from '@/lib/copilot/request/go/fetch'
|
|
import { getMothershipBaseURL } from '@/lib/copilot/server/agent-url'
|
|
import { env } from '@/lib/core/config/env'
|
|
import { withRouteHandler } from '@/lib/core/utils/with-route-handler'
|
|
|
|
export const POST = withRouteHandler(async (req: NextRequest) => {
|
|
try {
|
|
const session = await getSession()
|
|
if (!session?.user?.id) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const userId = session.user.id
|
|
const mothershipBaseURL = await getMothershipBaseURL({ userId })
|
|
|
|
const parsed = await parseRequest(generateCopilotApiKeyContract, req, {})
|
|
if (!parsed.success) return parsed.response
|
|
|
|
const { name } = parsed.data.body
|
|
|
|
const res = await fetchGo(`${mothershipBaseURL}/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 }),
|
|
spanName: 'sim → go /api/validate-key/generate',
|
|
operation: 'generate_api_key',
|
|
attributes: { [TraceAttr.UserId]: userId },
|
|
})
|
|
|
|
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 })
|
|
}
|
|
})
|