66 lines
2.0 KiB
TypeScript
Executable File
66 lines
2.0 KiB
TypeScript
Executable File
import { NextRequest, NextResponse } from 'next/server'
|
|
|
|
const WIKI_SERVICE_URL = process.env.WIKI_SERVICE_URL || 'http://wiki:8080'
|
|
|
|
export async function GET(
|
|
request: NextRequest,
|
|
{ params }: { params: { path: string[] } }
|
|
) {
|
|
try {
|
|
const path = params.path || []
|
|
const searchParams = request.nextUrl.searchParams.toString()
|
|
const queryString = searchParams ? `?${searchParams}` : ''
|
|
const wikiPath = path.length > 0 ? `/${path.join('/')}` : '/'
|
|
|
|
const wikiUrl = `${WIKI_SERVICE_URL}${wikiPath}${queryString}`
|
|
|
|
const response = await fetch(wikiUrl, {
|
|
headers: {
|
|
'User-Agent': request.headers.get('user-agent') || 'Next.js',
|
|
},
|
|
})
|
|
|
|
if (!response.ok) {
|
|
return new NextResponse('Wiki not found', { status: response.status })
|
|
}
|
|
|
|
const contentType = response.headers.get('content-type') || 'text/html'
|
|
const content = await response.text()
|
|
|
|
// Pass through headers
|
|
const headers = new Headers()
|
|
headers.set('Content-Type', contentType)
|
|
|
|
// Handle CORS if needed
|
|
headers.set('Access-Control-Allow-Origin', '*')
|
|
|
|
// Preserve cache headers
|
|
const cacheControl = response.headers.get('cache-control')
|
|
if (cacheControl) {
|
|
headers.set('Cache-Control', cacheControl)
|
|
}
|
|
|
|
return new NextResponse(content, {
|
|
status: response.status,
|
|
headers,
|
|
})
|
|
} catch (error) {
|
|
console.error('Wiki proxy error:', error)
|
|
return new NextResponse('Error loading wiki', { status: 500 })
|
|
}
|
|
}
|
|
|
|
// Handle other HTTP methods
|
|
export async function POST(request: NextRequest, { params }: { params: { path: string[] } }) {
|
|
return GET(request, { params })
|
|
}
|
|
|
|
export async function PUT(request: NextRequest, { params }: { params: { path: string[] } }) {
|
|
return GET(request, { params })
|
|
}
|
|
|
|
export async function DELETE(request: NextRequest, { params }: { params: { path: string[] } }) {
|
|
return GET(request, { params })
|
|
}
|
|
|