| import { redactValue } from './redact'; |
| import { |
| AUTHORIZATION_HEADER, |
| BEARER_PREFIX, |
| CONTENT_TYPE_HEADER, |
| CORS_PROXY_HEADER_PREFIX, |
| REDACTED_HEADERS |
| } from '$lib/constants'; |
| import { MimeTypeApplication } from '$lib/enums'; |
| import { config } from '$lib/stores/settings.svelte'; |
|
|
| |
| |
| |
| |
| export function getAuthHeaders(): Record<string, string> { |
| const currentConfig = config(); |
| const apiKey = currentConfig.apiKey?.toString().trim(); |
|
|
| return apiKey ? { [AUTHORIZATION_HEADER]: `${BEARER_PREFIX}${apiKey}` } : {}; |
| } |
|
|
| |
| |
| |
| export function getJsonHeaders(): Record<string, string> { |
| return { |
| [CONTENT_TYPE_HEADER]: MimeTypeApplication.JSON, |
| ...getAuthHeaders() |
| }; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| export function sanitizeHeaders( |
| headers?: HeadersInit, |
| extraRedactedHeaders?: Iterable<string>, |
| partialRedactHeaders?: Map<string, number> |
| ): Record<string, string> { |
| if (!headers) { |
| return {}; |
| } |
|
|
| const normalized = new Headers(headers); |
| const sanitized: Record<string, string> = {}; |
| const redactedHeaders = new Set( |
| Array.from(extraRedactedHeaders ?? [], (header) => header.toLowerCase()) |
| ); |
|
|
| for (const [key, value] of normalized.entries()) { |
| const normalizedKey = key.toLowerCase(); |
| const unproxiedKey = normalizedKey.startsWith(CORS_PROXY_HEADER_PREFIX) |
| ? normalizedKey.slice(CORS_PROXY_HEADER_PREFIX.length) |
| : normalizedKey; |
| const partialChars = |
| partialRedactHeaders?.get(normalizedKey) ?? partialRedactHeaders?.get(unproxiedKey); |
|
|
| if (partialChars !== undefined) { |
| sanitized[key] = redactValue(value, partialChars); |
| } else if ( |
| REDACTED_HEADERS.has(normalizedKey) || |
| REDACTED_HEADERS.has(unproxiedKey) || |
| redactedHeaders.has(normalizedKey) || |
| redactedHeaders.has(unproxiedKey) |
| ) { |
| sanitized[key] = redactValue(value); |
| } else { |
| sanitized[key] = value; |
| } |
| } |
|
|
| return sanitized; |
| } |
|
|