mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-01 14:52:25 +00:00
27 lines
840 B
TypeScript
27 lines
840 B
TypeScript
import type { APIEvent } from "@solidjs/start/server"
|
|
import { LOCALE_HEADER, localeFromCookieHeader, parseLocale, tag } from "~/lib/language"
|
|
|
|
async function handler(evt: APIEvent) {
|
|
const req = evt.request.clone()
|
|
const url = new URL(req.url)
|
|
const targetUrl = `https://docs.opencode.ai${url.pathname}${url.search}`
|
|
|
|
const headers = new Headers(req.headers)
|
|
const locale = parseLocale(req.headers.get(LOCALE_HEADER)) ?? localeFromCookieHeader(req.headers.get("cookie"))
|
|
if (locale) headers.set("accept-language", tag(locale))
|
|
|
|
const response = await fetch(targetUrl, {
|
|
method: req.method,
|
|
headers,
|
|
body: req.body,
|
|
})
|
|
return response
|
|
}
|
|
|
|
export const GET = handler
|
|
export const POST = handler
|
|
export const PUT = handler
|
|
export const DELETE = handler
|
|
export const OPTIONS = handler
|
|
export const PATCH = handler
|