Files
pc-10588/server/api/_file/[...path].ts
2026-03-05 13:32:48 +08:00

26 lines
913 B
TypeScript

import { defineEventHandler, getHeader, getRequestURL, getRouterParam, proxyRequest } from 'h3'
import { useRuntimeConfig } from '#imports'
function joinURL(base: string, path: string) {
if (!path) return base
return base.replace(/\/+$/, '') + '/' + path.replace(/^\/+/, '')
}
export default defineEventHandler((event) => {
const config = useRuntimeConfig()
const fileServerBase = config.public.fileServerBase || 'https://server.websoft.top'
const path = getRouterParam(event, 'path') || ''
const search = getRequestURL(event).search
const target = joinURL(fileServerBase, path) + search
const tenantId = getHeader(event, 'tenantid') || config.public.tenantId
const authorization = getHeader(event, 'authorization')
return proxyRequest(event, target, {
headers: {
TenantId: String(tenantId),
...(authorization ? { Authorization: String(authorization) } : {})
}
})
})