added quartz external wiki
This commit is contained in:
@@ -4,24 +4,34 @@ const WIKI_SERVICE_URL = process.env.WIKI_SERVICE_URL || 'http://wiki:8080'
|
||||
|
||||
export async function GET(
|
||||
request: NextRequest,
|
||||
{ params }: { params: { path: string[] } }
|
||||
{ params }: { params: Promise<{ path?: string[] }> }
|
||||
) {
|
||||
try {
|
||||
const path = params.path || []
|
||||
const resolvedParams = await params
|
||||
const path = resolvedParams.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}`
|
||||
// Ensure no double slashes
|
||||
const baseUrl = WIKI_SERVICE_URL.endsWith('/') ? WIKI_SERVICE_URL.slice(0, -1) : WIKI_SERVICE_URL
|
||||
const wikiUrl = `${baseUrl}${wikiPath}${queryString}`
|
||||
|
||||
console.log(`[Wiki Proxy] Fetching: ${wikiUrl}`)
|
||||
|
||||
const response = await fetch(wikiUrl, {
|
||||
headers: {
|
||||
'User-Agent': request.headers.get('user-agent') || 'Next.js',
|
||||
},
|
||||
// Add timeout
|
||||
signal: AbortSignal.timeout(10000), // 10 second timeout
|
||||
})
|
||||
|
||||
if (!response.ok) {
|
||||
return new NextResponse('Wiki not found', { status: response.status })
|
||||
console.error(`Wiki service returned ${response.status}: ${response.statusText} for ${wikiUrl}`)
|
||||
return new NextResponse(`Wiki not found: ${response.status} ${response.statusText}`, {
|
||||
status: response.status
|
||||
})
|
||||
}
|
||||
|
||||
const contentType = response.headers.get('content-type') || 'text/html'
|
||||
@@ -44,22 +54,24 @@ export async function GET(
|
||||
status: response.status,
|
||||
headers,
|
||||
})
|
||||
} catch (error) {
|
||||
} catch (error: any) {
|
||||
console.error('Wiki proxy error:', error)
|
||||
return new NextResponse('Error loading wiki', { status: 500 })
|
||||
return new NextResponse(`Error loading wiki: ${error.message || 'Unknown error'}`, {
|
||||
status: 500
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
// Handle other HTTP methods
|
||||
export async function POST(request: NextRequest, { params }: { params: { path: string[] } }) {
|
||||
export async function POST(request: NextRequest, { params }: { params: Promise<{ path?: string[] }> }) {
|
||||
return GET(request, { params })
|
||||
}
|
||||
|
||||
export async function PUT(request: NextRequest, { params }: { params: { path: string[] } }) {
|
||||
export async function PUT(request: NextRequest, { params }: { params: Promise<{ path?: string[] }> }) {
|
||||
return GET(request, { params })
|
||||
}
|
||||
|
||||
export async function DELETE(request: NextRequest, { params }: { params: { path: string[] } }) {
|
||||
export async function DELETE(request: NextRequest, { params }: { params: Promise<{ path?: string[] }> }) {
|
||||
return GET(request, { params })
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user