viem
Version:
121 lines • 4.96 kB
JavaScript
import { HttpRequestError, TimeoutError, } from '../../errors/request.js';
import { getAbortError, isAbortError, } from '../../errors/utils.js';
import { withTimeout, } from '../promise/withTimeout.js';
import { stringify } from '../stringify.js';
import { idCache } from './id.js';
export function getHttpRpcClient(url_, options = {}) {
const { url, headers: headers_url } = parseUrl(url_);
return {
async request(params) {
const { body, fetchFn = options.fetchFn ?? fetch, onRequest = options.onRequest, onResponse = options.onResponse, timeout = options.timeout ?? 10_000, } = params;
const fetchOptions = {
...(options.fetchOptions ?? {}),
...(params.fetchOptions ?? {}),
};
const { headers, method, signal: signal_ } = fetchOptions;
try {
const response = await withTimeout(async ({ signal }) => {
const init = {
...fetchOptions,
body: Array.isArray(body)
? stringify(body.map((body) => ({
jsonrpc: '2.0',
id: body.id ?? idCache.take(),
...body,
})))
: stringify({
jsonrpc: '2.0',
id: body.id ?? idCache.take(),
...body,
}),
headers: {
...headers_url,
'Content-Type': 'application/json',
...headers,
},
method: method || 'POST',
signal: signal_ || (timeout > 0 ? signal : null),
};
const request = new Request(url, init);
const args = (await onRequest?.(request, init)) ?? { ...init, url };
const response = await fetchFn(args.url ?? url, args);
return response;
}, {
errorInstance: new TimeoutError({ body, url }),
timeout,
signal: true,
});
if (onResponse)
await onResponse(response);
let data;
if (response.headers.get('Content-Type')?.startsWith('application/json'))
data = await response.json();
else {
data = await response.text();
try {
data = JSON.parse(data || '{}');
}
catch (err) {
if (response.ok)
throw err;
data = { error: data };
}
}
if (!response.ok) {
// If the response body contains a valid JSON-RPC error, return it
// so it flows through the normal RPC error handling pipeline.
if (typeof data.error?.code === 'number' &&
typeof data.error?.message === 'string')
return data;
throw new HttpRequestError({
body,
details: stringify(data.error) || response.statusText,
headers: response.headers,
status: response.status,
url,
});
}
return data;
}
catch (err) {
if (signal_?.aborted)
throw getAbortError(signal_);
if (isAbortError(err))
throw err;
if (err instanceof HttpRequestError)
throw err;
if (err instanceof TimeoutError)
throw err;
throw new HttpRequestError({
body,
cause: err,
url,
});
}
},
};
}
/** @internal */
export function parseUrl(url_) {
try {
const url = new URL(url_);
const result = (() => {
// Handle Basic authentication credentials
if (url.username) {
const credentials = `${decodeURIComponent(url.username)}:${decodeURIComponent(url.password)}`;
url.username = '';
url.password = '';
return {
url: url.toString(),
headers: { Authorization: `Basic ${btoa(credentials)}` },
};
}
return;
})();
return { url: url.toString(), ...result };
}
catch {
return { url: url_ };
}
}
//# sourceMappingURL=http.js.map