import type { WorkerProxy } from "@gradio/wasm"; import { is_self_origin } from "./url"; /** * A fetch() function that proxies HTTP requests to the worker, * which also falls back to the original fetch() for external resource requests. */ /** * * @param { WorkerProxy } workerProxy The worker proxy * @param { RequestInfo | URL} input The request info * @param {RequestInit} init The request init * @returns {Promise} The response */ export async function wasm_proxied_fetch( workerProxy: WorkerProxy, input: RequestInfo | URL, init?: RequestInit ): Promise { console.debug("wasm_proxied_fetch", input, init); const request = new Request(input, init); const url = new URL(request.url); if (!is_self_origin(url)) { console.debug("Fallback to original fetch"); return fetch(input, init); } const method = request.method; if ( method !== "GET" && method !== "POST" && method !== "PUT" && method !== "DELETE" ) { throw new Error(`Unsupported method: ${method}`); } const headers: Parameters[0]["headers"] = {}; request.headers.forEach((value, key) => { headers[key] = value; }); const bodyArrayBuffer = await new Response(request.body).arrayBuffer(); const body: Parameters[0]["body"] = new Uint8Array(bodyArrayBuffer); const response = await workerProxy.httpRequest({ path: url.pathname, query_string: url.search, method, headers, body }); return new Response(response.body, { status: response.status, headers: new Headers(response.headers) }); }