ethers.js/lib.esm/utils/geturl-browser.js

45 lines
1.7 KiB
JavaScript
Raw Normal View History

2022-11-09 10:57:02 +03:00
import { assert } from "./errors.js";
2022-09-05 23:57:11 +03:00
// @TODO: timeout is completely ignored; start a Promise.any with a reject?
2023-10-10 03:27:56 +03:00
export function createGetUrl(options) {
async function getUrl(req, _signal) {
const protocol = req.url.split(":")[0].toLowerCase();
assert(protocol === "http" || protocol === "https", `unsupported protocol ${protocol}`, "UNSUPPORTED_OPERATION", {
info: { protocol },
operation: "request"
});
assert(protocol === "https" || !req.credentials || req.allowInsecureAuthentication, "insecure authorized connections unsupported", "UNSUPPORTED_OPERATION", {
operation: "request"
});
let signal = undefined;
if (_signal) {
const controller = new AbortController();
signal = controller.signal;
_signal.addListener(() => { controller.abort(); });
}
const init = {
method: req.method,
headers: new Headers(Array.from(req)),
body: req.body || undefined,
signal
};
const resp = await fetch(req.url, init);
const headers = {};
resp.headers.forEach((value, key) => {
headers[key.toLowerCase()] = value;
});
const respBody = await resp.arrayBuffer();
const body = (respBody == null) ? null : new Uint8Array(respBody);
return {
statusCode: resp.status,
statusMessage: resp.statusText,
headers, body
};
2022-09-05 23:57:11 +03:00
}
2023-10-10 03:27:56 +03:00
return getUrl;
}
// @TODO: remove in v7; provided for backwards compat
const defaultGetUrl = createGetUrl({});
export async function getUrl(req, _signal) {
return defaultGetUrl(req, _signal);
2022-09-05 23:57:11 +03:00
}
//# sourceMappingURL=geturl-browser.js.map