|
import * as set_cookie_parser from 'set-cookie-parser'; |
|
import { respond } from './respond.js'; |
|
import * as paths from '__sveltekit/paths'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function create_fetch({ event, options, manifest, state, get_cookie_header, set_internal }) { |
|
|
|
|
|
|
|
const server_fetch = async (info, init) => { |
|
const original_request = normalize_fetch_input(info, init, event.url); |
|
|
|
|
|
|
|
let mode = (info instanceof Request ? info.mode : init?.mode) ?? 'cors'; |
|
let credentials = |
|
(info instanceof Request ? info.credentials : init?.credentials) ?? 'same-origin'; |
|
|
|
return options.hooks.handleFetch({ |
|
event, |
|
request: original_request, |
|
fetch: async (info, init) => { |
|
const request = normalize_fetch_input(info, init, event.url); |
|
|
|
const url = new URL(request.url); |
|
|
|
if (!request.headers.has('origin')) { |
|
request.headers.set('origin', event.url.origin); |
|
} |
|
|
|
if (info !== original_request) { |
|
mode = (info instanceof Request ? info.mode : init?.mode) ?? 'cors'; |
|
credentials = |
|
(info instanceof Request ? info.credentials : init?.credentials) ?? 'same-origin'; |
|
} |
|
|
|
|
|
if ( |
|
(request.method === 'GET' || request.method === 'HEAD') && |
|
((mode === 'no-cors' && url.origin !== event.url.origin) || |
|
url.origin === event.url.origin) |
|
) { |
|
request.headers.delete('origin'); |
|
} |
|
|
|
if (url.origin !== event.url.origin) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (`.${url.hostname}`.endsWith(`.${event.url.hostname}`) && credentials !== 'omit') { |
|
const cookie = get_cookie_header(url, request.headers.get('cookie')); |
|
if (cookie) request.headers.set('cookie', cookie); |
|
} |
|
|
|
return fetch(request); |
|
} |
|
|
|
|
|
|
|
const prefix = paths.assets || paths.base; |
|
const decoded = decodeURIComponent(url.pathname); |
|
const filename = ( |
|
decoded.startsWith(prefix) ? decoded.slice(prefix.length) : decoded |
|
).slice(1); |
|
const filename_html = `${filename}/index.html`; |
|
|
|
const is_asset = manifest.assets.has(filename); |
|
const is_asset_html = manifest.assets.has(filename_html); |
|
|
|
if (is_asset || is_asset_html) { |
|
const file = is_asset ? filename : filename_html; |
|
|
|
if (state.read) { |
|
const type = is_asset |
|
? manifest.mimeTypes[filename.slice(filename.lastIndexOf('.'))] |
|
: 'text/html'; |
|
|
|
return new Response(state.read(file), { |
|
headers: type ? { 'content-type': type } : {} |
|
}); |
|
} |
|
|
|
return await fetch(request); |
|
} |
|
|
|
if (credentials !== 'omit') { |
|
const cookie = get_cookie_header(url, request.headers.get('cookie')); |
|
if (cookie) { |
|
request.headers.set('cookie', cookie); |
|
} |
|
|
|
const authorization = event.request.headers.get('authorization'); |
|
if (authorization && !request.headers.has('authorization')) { |
|
request.headers.set('authorization', authorization); |
|
} |
|
} |
|
|
|
if (!request.headers.has('accept')) { |
|
request.headers.set('accept', '*/*'); |
|
} |
|
|
|
if (!request.headers.has('accept-language')) { |
|
request.headers.set( |
|
'accept-language', |
|
(event.request.headers.get('accept-language')) |
|
); |
|
} |
|
|
|
const response = await respond(request, options, manifest, { |
|
...state, |
|
depth: state.depth + 1 |
|
}); |
|
|
|
const set_cookie = response.headers.get('set-cookie'); |
|
if (set_cookie) { |
|
for (const str of set_cookie_parser.splitCookiesString(set_cookie)) { |
|
const { name, value, ...options } = set_cookie_parser.parseString(str, { |
|
decodeValues: false |
|
}); |
|
|
|
const path = options.path ?? (url.pathname.split('/').slice(0, -1).join('/') || '/'); |
|
|
|
|
|
set_internal(name, value, { |
|
path, |
|
encode: (value) => value, |
|
... (options) |
|
}); |
|
} |
|
} |
|
|
|
return response; |
|
} |
|
}); |
|
}; |
|
|
|
|
|
|
|
return (input, init) => { |
|
|
|
const response = server_fetch(input, init); |
|
response.catch(() => {}); |
|
return response; |
|
}; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
function normalize_fetch_input(info, init, url) { |
|
if (info instanceof Request) { |
|
return info; |
|
} |
|
|
|
return new Request(typeof info === 'string' ? new URL(info, url) : info, init); |
|
} |
|
|