feat: Implement OpenAPI with API Key authentication and role-based access control

This commit is contained in:
beilunyang
2025-02-10 11:25:25 +08:00
parent 1bc0369b83
commit 9ad3115833
28 changed files with 2339 additions and 144 deletions
+91
View File
@@ -0,0 +1,91 @@
import { auth } from "@/lib/auth"
import { createDb } from "@/lib/db"
import { apiKeys } from "@/lib/schema"
import { NextResponse } from "next/server"
import { checkPermission } from "@/lib/auth"
import { PERMISSIONS } from "@/lib/permissions"
import { eq, and } from "drizzle-orm"
export const runtime = "edge"
export async function DELETE(
_request: Request,
{ params }: { params: Promise<{ id: string }> }
) {
const hasPermission = await checkPermission(PERMISSIONS.MANAGE_API_KEY)
if (!hasPermission) {
return NextResponse.json({ error: "权限不足" }, { status: 403 })
}
try {
const db = createDb()
const session = await auth()
const { id } = await params
const result = await db.delete(apiKeys)
.where(
and(
eq(apiKeys.id, id),
eq(apiKeys.userId, session!.user.id!)
)
)
.returning()
if (!result.length) {
return NextResponse.json(
{ error: "API Key 不存在或无权删除" },
{ status: 404 }
)
}
return NextResponse.json({ success: true })
} catch (error) {
console.error("Failed to delete API key:", error)
return NextResponse.json(
{ error: "删除 API Key 失败" },
{ status: 500 }
)
}
}
export async function PATCH(
request: Request,
{ params }: { params: Promise<{ id: string }> }
) {
const hasPermission = await checkPermission(PERMISSIONS.MANAGE_API_KEY)
if (!hasPermission) {
return NextResponse.json({ error: "权限不足" }, { status: 403 })
}
try {
const session = await auth()
const { id } = await params
const { enabled } = await request.json() as { enabled: boolean }
const db = createDb()
const result = await db.update(apiKeys)
.set({ enabled })
.where(
and(
eq(apiKeys.id, id),
eq(apiKeys.userId, session!.user.id!)
)
)
.returning()
if (!result.length) {
return NextResponse.json(
{ error: "API Key 不存在或无权更新" },
{ status: 404 }
)
}
return NextResponse.json({ success: true })
} catch (error) {
console.error("Failed to update API key:", error)
return NextResponse.json(
{ error: "更新 API Key 失败" },
{ status: 500 }
)
}
}