* docs: change configurations to make v2 the main docs * move api routes to top level * remove api prefix * update opengraph images * show v1 link * add redirect to v1
74 lines
1.5 KiB
TypeScript
74 lines
1.5 KiB
TypeScript
import { NextResponse } from "next/server"
|
|
import path from "path"
|
|
import { existsSync } from "fs"
|
|
import getSchemaContent from "../../utils/get-schema-content"
|
|
|
|
export async function GET(request: Request) {
|
|
const { searchParams } = new URL(request.url)
|
|
let name = searchParams.get("name")
|
|
const area = searchParams.get("area")
|
|
|
|
if (!name) {
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
message: `Name is required.`,
|
|
},
|
|
{
|
|
status: 400,
|
|
}
|
|
)
|
|
}
|
|
|
|
if (area !== "admin" && area !== "store") {
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
message: `area ${area} is not allowed`,
|
|
},
|
|
{
|
|
status: 400,
|
|
}
|
|
)
|
|
}
|
|
|
|
name = name
|
|
.replace("#/components/schemas/", "")
|
|
.replaceAll("./components/schemas/", "")
|
|
|
|
const baseSchemasPath = path.join(
|
|
process.cwd(),
|
|
"specs",
|
|
area,
|
|
"components",
|
|
"schemas"
|
|
)
|
|
const schemaPath = path.join(baseSchemasPath, name)
|
|
|
|
if (!existsSync(schemaPath)) {
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
message: `Schema ${name} doesn't exist.`,
|
|
},
|
|
{
|
|
status: 404,
|
|
}
|
|
)
|
|
}
|
|
|
|
const { dereferencedDocument, originalSchema: schema } =
|
|
await getSchemaContent(schemaPath, baseSchemasPath)
|
|
|
|
return NextResponse.json(
|
|
{
|
|
schema: dereferencedDocument.components?.schemas
|
|
? Object.values(dereferencedDocument.components?.schemas)[0]
|
|
: schema,
|
|
},
|
|
{
|
|
status: 200,
|
|
}
|
|
)
|
|
}
|