File size: 11,377 Bytes
5ef6e9d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 | export type CustomFetchOptions = RequestInit & {
responseType?: "json" | "text" | "blob" | "auto";
};
export type ErrorType<T = unknown> = ApiError<T>;
export type BodyType<T> = T;
export type AuthTokenGetter = () => Promise<string | null> | string | null;
const NO_BODY_STATUS = new Set([204, 205, 304]);
const DEFAULT_JSON_ACCEPT = "application/json, application/problem+json";
// ---------------------------------------------------------------------------
// Module-level configuration
// ---------------------------------------------------------------------------
let _baseUrl: string | null = null;
let _authTokenGetter: AuthTokenGetter | null = null;
/**
* Set a base URL that is prepended to every relative request URL
* (i.e. paths that start with `/`).
*
* Useful for Expo bundles that need to call a remote API server.
* Pass `null` to clear the base URL.
*/
export function setBaseUrl(url: string | null): void {
_baseUrl = url ? url.replace(/\/+$/, "") : null;
}
/**
* Register a getter that supplies a bearer auth token. Before every fetch
* the getter is invoked; when it returns a non-null string, an
* `Authorization: Bearer <token>` header is attached to the request.
*
* Useful for Expo bundles making token-gated API calls.
* Pass `null` to clear the getter.
*
* NOTE: This function should never be used in web applications where session
* token cookies are automatically associated with API calls by the browser.
*/
export function setAuthTokenGetter(getter: AuthTokenGetter | null): void {
_authTokenGetter = getter;
}
function isRequest(input: RequestInfo | URL): input is Request {
return typeof Request !== "undefined" && input instanceof Request;
}
function resolveMethod(input: RequestInfo | URL, explicitMethod?: string): string {
if (explicitMethod) return explicitMethod.toUpperCase();
if (isRequest(input)) return input.method.toUpperCase();
return "GET";
}
// Use loose check for URL — some runtimes (e.g. React Native) polyfill URL
// differently, so `instanceof URL` can fail.
function isUrl(input: RequestInfo | URL): input is URL {
return typeof URL !== "undefined" && input instanceof URL;
}
function applyBaseUrl(input: RequestInfo | URL): RequestInfo | URL {
if (!_baseUrl) return input;
const url = resolveUrl(input);
// Only prepend to relative paths (starting with /)
if (!url.startsWith("/")) return input;
const absolute = `${_baseUrl}${url}`;
if (typeof input === "string") return absolute;
if (isUrl(input)) return new URL(absolute);
return new Request(absolute, input as Request);
}
function resolveUrl(input: RequestInfo | URL): string {
if (typeof input === "string") return input;
if (isUrl(input)) return input.toString();
return input.url;
}
function mergeHeaders(...sources: Array<HeadersInit | undefined>): Headers {
const headers = new Headers();
for (const source of sources) {
if (!source) continue;
new Headers(source).forEach((value, key) => {
headers.set(key, value);
});
}
return headers;
}
function getMediaType(headers: Headers): string | null {
const value = headers.get("content-type");
return value ? value.split(";", 1)[0].trim().toLowerCase() : null;
}
function isJsonMediaType(mediaType: string | null): boolean {
return mediaType === "application/json" || Boolean(mediaType?.endsWith("+json"));
}
function isTextMediaType(mediaType: string | null): boolean {
return Boolean(
mediaType &&
(mediaType.startsWith("text/") ||
mediaType === "application/xml" ||
mediaType === "text/xml" ||
mediaType.endsWith("+xml") ||
mediaType === "application/x-www-form-urlencoded"),
);
}
// Use strict equality: in browsers, `response.body` is `null` when the
// response genuinely has no content. In React Native, `response.body` is
// always `undefined` because the ReadableStream API is not implemented —
// even when the response carries a full payload readable via `.text()` or
// `.json()`. Loose equality (`== null`) matches both `null` and `undefined`,
// which causes every React Native response to be treated as empty.
function hasNoBody(response: Response, method: string): boolean {
if (method === "HEAD") return true;
if (NO_BODY_STATUS.has(response.status)) return true;
if (response.headers.get("content-length") === "0") return true;
if (response.body === null) return true;
return false;
}
function stripBom(text: string): string {
return text.charCodeAt(0) === 0xfeff ? text.slice(1) : text;
}
function looksLikeJson(text: string): boolean {
const trimmed = text.trimStart();
return trimmed.startsWith("{") || trimmed.startsWith("[");
}
function getStringField(value: unknown, key: string): string | undefined {
if (!value || typeof value !== "object") return undefined;
const candidate = (value as Record<string, unknown>)[key];
if (typeof candidate !== "string") return undefined;
const trimmed = candidate.trim();
return trimmed === "" ? undefined : trimmed;
}
function truncate(text: string, maxLength = 300): string {
return text.length > maxLength ? `${text.slice(0, maxLength - 1)}…` : text;
}
function buildErrorMessage(response: Response, data: unknown): string {
const prefix = `HTTP ${response.status} ${response.statusText}`;
if (typeof data === "string") {
const text = data.trim();
return text ? `${prefix}: ${truncate(text)}` : prefix;
}
const title = getStringField(data, "title");
const detail = getStringField(data, "detail");
const message =
getStringField(data, "message") ??
getStringField(data, "error_description") ??
getStringField(data, "error");
if (title && detail) return `${prefix}: ${title} — ${detail}`;
if (detail) return `${prefix}: ${detail}`;
if (message) return `${prefix}: ${message}`;
if (title) return `${prefix}: ${title}`;
return prefix;
}
export class ApiError<T = unknown> extends Error {
readonly name = "ApiError";
readonly status: number;
readonly statusText: string;
readonly data: T | null;
readonly headers: Headers;
readonly response: Response;
readonly method: string;
readonly url: string;
constructor(
response: Response,
data: T | null,
requestInfo: { method: string; url: string },
) {
super(buildErrorMessage(response, data));
Object.setPrototypeOf(this, new.target.prototype);
this.status = response.status;
this.statusText = response.statusText;
this.data = data;
this.headers = response.headers;
this.response = response;
this.method = requestInfo.method;
this.url = response.url || requestInfo.url;
}
}
export class ResponseParseError extends Error {
readonly name = "ResponseParseError";
readonly status: number;
readonly statusText: string;
readonly headers: Headers;
readonly response: Response;
readonly method: string;
readonly url: string;
readonly rawBody: string;
readonly cause: unknown;
constructor(
response: Response,
rawBody: string,
cause: unknown,
requestInfo: { method: string; url: string },
) {
super(
`Failed to parse response from ${requestInfo.method} ${response.url || requestInfo.url} ` +
`(${response.status} ${response.statusText}) as JSON`,
);
Object.setPrototypeOf(this, new.target.prototype);
this.status = response.status;
this.statusText = response.statusText;
this.headers = response.headers;
this.response = response;
this.method = requestInfo.method;
this.url = response.url || requestInfo.url;
this.rawBody = rawBody;
this.cause = cause;
}
}
async function parseJsonBody(
response: Response,
requestInfo: { method: string; url: string },
): Promise<unknown> {
const raw = await response.text();
const normalized = stripBom(raw);
if (normalized.trim() === "") {
return null;
}
try {
return JSON.parse(normalized);
} catch (cause) {
throw new ResponseParseError(response, raw, cause, requestInfo);
}
}
async function parseErrorBody(response: Response, method: string): Promise<unknown> {
if (hasNoBody(response, method)) {
return null;
}
const mediaType = getMediaType(response.headers);
// Fall back to text when blob() is unavailable (e.g. some React Native builds).
if (mediaType && !isJsonMediaType(mediaType) && !isTextMediaType(mediaType)) {
return typeof response.blob === "function" ? response.blob() : response.text();
}
const raw = await response.text();
const normalized = stripBom(raw);
const trimmed = normalized.trim();
if (trimmed === "") {
return null;
}
if (isJsonMediaType(mediaType) || looksLikeJson(normalized)) {
try {
return JSON.parse(normalized);
} catch {
return raw;
}
}
return raw;
}
function inferResponseType(response: Response): "json" | "text" | "blob" {
const mediaType = getMediaType(response.headers);
if (isJsonMediaType(mediaType)) return "json";
if (isTextMediaType(mediaType) || mediaType == null) return "text";
return "blob";
}
async function parseSuccessBody(
response: Response,
responseType: "json" | "text" | "blob" | "auto",
requestInfo: { method: string; url: string },
): Promise<unknown> {
if (hasNoBody(response, requestInfo.method)) {
return null;
}
const effectiveType =
responseType === "auto" ? inferResponseType(response) : responseType;
switch (effectiveType) {
case "json":
return parseJsonBody(response, requestInfo);
case "text": {
const text = await response.text();
return text === "" ? null : text;
}
case "blob":
if (typeof response.blob !== "function") {
throw new TypeError(
"Blob responses are not supported in this runtime. " +
"Use responseType \"json\" or \"text\" instead.",
);
}
return response.blob();
}
}
export async function customFetch<T = unknown>(
input: RequestInfo | URL,
options: CustomFetchOptions = {},
): Promise<T> {
input = applyBaseUrl(input);
const { responseType = "auto", headers: headersInit, ...init } = options;
const method = resolveMethod(input, init.method);
if (init.body != null && (method === "GET" || method === "HEAD")) {
throw new TypeError(`customFetch: ${method} requests cannot have a body.`);
}
const headers = mergeHeaders(isRequest(input) ? input.headers : undefined, headersInit);
if (
typeof init.body === "string" &&
!headers.has("content-type") &&
looksLikeJson(init.body)
) {
headers.set("content-type", "application/json");
}
if (responseType === "json" && !headers.has("accept")) {
headers.set("accept", DEFAULT_JSON_ACCEPT);
}
// Attach bearer token when an auth getter is configured and no
// Authorization header has been explicitly provided.
if (_authTokenGetter && !headers.has("authorization")) {
const token = await _authTokenGetter();
if (token) {
headers.set("authorization", `Bearer ${token}`);
}
}
const requestInfo = { method, url: resolveUrl(input) };
const response = await fetch(input, { ...init, method, headers });
if (!response.ok) {
const errorData = await parseErrorBody(response, method);
throw new ApiError(response, errorData, requestInfo);
}
return (await parseSuccessBody(response, responseType, requestInfo)) as T;
}
|