ethers.js/packages/web/lib.esm/index.js

356 lines
15 KiB
JavaScript
Raw Normal View History

2019-05-15 01:48:48 +03:00
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
import { encode as base64Encode } from "@ethersproject/base64";
2020-09-06 06:35:35 +03:00
import { hexlify, isBytesLike } from "@ethersproject/bytes";
import { shallowCopy } from "@ethersproject/properties";
2020-07-31 00:04:53 +03:00
import { toUtf8Bytes, toUtf8String } from "@ethersproject/strings";
import { Logger } from "@ethersproject/logger";
import { version } from "./_version";
const logger = new Logger(version);
2020-04-18 12:14:55 +03:00
import { getUrl } from "./geturl";
2020-07-14 09:33:30 +03:00
function staller(duration) {
return new Promise((resolve) => {
setTimeout(resolve, duration);
});
}
2020-09-06 06:35:35 +03:00
function bodyify(value, type) {
if (value == null) {
return null;
}
if (typeof (value) === "string") {
return value;
}
if (isBytesLike(value)) {
2020-09-16 10:08:36 +03:00
if (type && (type.split("/")[0] === "text" || type.split(";")[0].trim() === "application/json")) {
2020-09-06 06:35:35 +03:00
try {
return toUtf8String(value);
}
catch (error) { }
;
}
return hexlify(value);
}
return value;
}
2020-07-31 08:32:26 +03:00
// This API is still a work in progress; the future changes will likely be:
// - ConnectionInfo => FetchDataRequest<T = any>
// - FetchDataRequest.body? = string | Uint8Array | { contentType: string, data: string | Uint8Array }
// - If string => text/plain, Uint8Array => application/octet-stream (if content-type unspecified)
// - FetchDataRequest.processFunc = (body: Uint8Array, response: FetchDataResponse) => T
// For this reason, it should be considered internal until the API is finalized
export function _fetchData(connection, body, processFunc) {
2020-07-14 09:33:30 +03:00
// How many times to retry in the event of a throttle
const attemptLimit = (typeof (connection) === "object" && connection.throttleLimit != null) ? connection.throttleLimit : 12;
logger.assertArgument((attemptLimit > 0 && (attemptLimit % 1) === 0), "invalid connection throttle limit", "connection.throttleLimit", attemptLimit);
const throttleCallback = ((typeof (connection) === "object") ? connection.throttleCallback : null);
2020-07-15 21:00:36 +03:00
const throttleSlotInterval = ((typeof (connection) === "object" && typeof (connection.throttleSlotInterval) === "number") ? connection.throttleSlotInterval : 100);
logger.assertArgument((throttleSlotInterval > 0 && (throttleSlotInterval % 1) === 0), "invalid connection throttle slot interval", "connection.throttleSlotInterval", throttleSlotInterval);
2019-11-20 12:57:38 +03:00
const headers = {};
let url = null;
2019-06-12 08:01:04 +03:00
// @TODO: Allow ConnectionInfo to override some of these values
2019-11-20 12:57:38 +03:00
const options = {
2019-06-12 08:01:04 +03:00
method: "GET",
};
2019-09-28 09:36:19 +03:00
let allow304 = false;
let timeout = 2 * 60 * 1000;
2019-05-15 01:48:48 +03:00
if (typeof (connection) === "string") {
url = connection;
}
else if (typeof (connection) === "object") {
2019-06-12 08:01:04 +03:00
if (connection == null || connection.url == null) {
2019-08-02 09:10:58 +03:00
logger.throwArgumentError("missing URL", "connection.url", connection);
2019-05-15 01:48:48 +03:00
}
url = connection.url;
if (typeof (connection.timeout) === "number" && connection.timeout > 0) {
timeout = connection.timeout;
}
if (connection.headers) {
2019-11-20 12:57:38 +03:00
for (const key in connection.headers) {
2019-05-15 01:48:48 +03:00
headers[key.toLowerCase()] = { key: key, value: String(connection.headers[key]) };
2019-09-28 09:36:19 +03:00
if (["if-none-match", "if-modified-since"].indexOf(key.toLowerCase()) >= 0) {
allow304 = true;
}
2019-05-15 01:48:48 +03:00
}
}
2020-10-08 03:10:50 +03:00
options.allowGzip = !!connection.allowGzip;
2019-05-15 01:48:48 +03:00
if (connection.user != null && connection.password != null) {
2019-06-12 08:01:04 +03:00
if (url.substring(0, 6) !== "https:" && connection.allowInsecureAuthentication !== true) {
logger.throwError("basic authentication requires a secure https url", Logger.errors.INVALID_ARGUMENT, { argument: "url", url: url, user: connection.user, password: "[REDACTED]" });
2019-05-15 01:48:48 +03:00
}
2019-11-20 12:57:38 +03:00
const authorization = connection.user + ":" + connection.password;
2019-05-15 01:48:48 +03:00
headers["authorization"] = {
key: "Authorization",
value: "Basic " + base64Encode(toUtf8Bytes(authorization))
2019-05-15 01:48:48 +03:00
};
}
}
2020-07-31 00:04:53 +03:00
if (body) {
options.method = "POST";
2020-07-31 00:04:53 +03:00
options.body = body;
if (headers["content-type"] == null) {
headers["content-type"] = { key: "Content-Type", value: "application/octet-stream" };
}
2020-09-11 09:10:58 +03:00
if (headers["content-length"] == null) {
headers["content-length"] = { key: "Content-Length", value: String(body.length) };
}
}
const flatHeaders = {};
Object.keys(headers).forEach((key) => {
const header = headers[key];
flatHeaders[header.key] = header.value;
});
options.headers = flatHeaders;
const runningTimeout = (function () {
let timer = null;
const promise = new Promise(function (resolve, reject) {
if (timeout) {
timer = setTimeout(() => {
if (timer == null) {
return;
}
timer = null;
2020-06-12 11:57:38 +03:00
reject(logger.makeError("timeout", Logger.errors.TIMEOUT, {
2020-09-06 06:35:35 +03:00
requestBody: bodyify(options.body, flatHeaders["content-type"]),
2020-06-12 11:57:38 +03:00
requestMethod: options.method,
timeout: timeout,
url: url
}));
}, timeout);
}
});
const cancel = function () {
2019-05-15 01:48:48 +03:00
if (timer == null) {
return;
}
clearTimeout(timer);
timer = null;
};
return { promise, cancel };
})();
const runningFetch = (function () {
return __awaiter(this, void 0, void 0, function* () {
2020-07-14 09:33:30 +03:00
for (let attempt = 0; attempt < attemptLimit; attempt++) {
let response = null;
try {
2020-07-14 09:33:30 +03:00
response = yield getUrl(url, options);
2020-07-15 21:00:36 +03:00
// Exponential back-off throttling
2020-07-14 09:33:30 +03:00
if (response.statusCode === 429 && attempt < attemptLimit) {
let tryAgain = true;
if (throttleCallback) {
tryAgain = yield throttleCallback(attempt, url);
}
if (tryAgain) {
2020-07-15 21:00:36 +03:00
let stall = 0;
const retryAfter = response.headers["retry-after"];
if (typeof (retryAfter) === "string" && retryAfter.match(/^[1-9][0-9]*$/)) {
stall = parseInt(retryAfter) * 1000;
}
else {
stall = throttleSlotInterval * parseInt(String(Math.random() * Math.pow(2, attempt)));
}
2020-07-31 00:04:53 +03:00
//console.log("Stalling 429");
2020-07-15 21:00:36 +03:00
yield staller(stall);
2020-07-14 09:33:30 +03:00
continue;
}
}
2019-05-15 01:48:48 +03:00
}
catch (error) {
2020-07-14 09:33:30 +03:00
response = error.response;
if (response == null) {
runningTimeout.cancel();
logger.throwError("missing response", Logger.errors.SERVER_ERROR, {
2020-09-06 06:35:35 +03:00
requestBody: bodyify(options.body, flatHeaders["content-type"]),
2020-07-14 09:33:30 +03:00
requestMethod: options.method,
serverError: error,
url: url
});
}
}
let body = response.body;
if (allow304 && response.statusCode === 304) {
body = null;
}
else if (response.statusCode < 200 || response.statusCode >= 300) {
runningTimeout.cancel();
logger.throwError("bad response", Logger.errors.SERVER_ERROR, {
status: response.statusCode,
headers: response.headers,
2020-09-06 06:35:35 +03:00
body: bodyify(body, ((response.headers) ? response.headers["content-type"] : null)),
requestBody: bodyify(options.body, flatHeaders["content-type"]),
2020-06-12 11:57:38 +03:00
requestMethod: options.method,
url: url
});
}
2020-07-14 09:33:30 +03:00
if (processFunc) {
try {
2020-07-31 00:04:53 +03:00
const result = yield processFunc(body, response);
runningTimeout.cancel();
return result;
2020-07-14 09:33:30 +03:00
}
catch (error) {
// Allow the processFunc to trigger a throttle
if (error.throttleRetry && attempt < attemptLimit) {
let tryAgain = true;
if (throttleCallback) {
tryAgain = yield throttleCallback(attempt, url);
}
if (tryAgain) {
2020-07-15 21:00:36 +03:00
const timeout = throttleSlotInterval * parseInt(String(Math.random() * Math.pow(2, attempt)));
2020-07-31 00:04:53 +03:00
//console.log("Stalling callback");
2020-07-14 09:33:30 +03:00
yield staller(timeout);
continue;
}
}
runningTimeout.cancel();
logger.throwError("processing response error", Logger.errors.SERVER_ERROR, {
2020-09-06 06:35:35 +03:00
body: bodyify(body, ((response.headers) ? response.headers["content-type"] : null)),
2020-07-14 09:33:30 +03:00
error: error,
2020-09-06 06:35:35 +03:00
requestBody: bodyify(options.body, flatHeaders["content-type"]),
2020-07-14 09:33:30 +03:00
requestMethod: options.method,
url: url
});
}
}
2020-07-14 09:33:30 +03:00
runningTimeout.cancel();
2021-10-16 09:29:27 +03:00
// If we had a processFunc, it either returned a T or threw above.
2020-07-31 00:04:53 +03:00
// The "body" is now a Uint8Array.
return body;
}
2020-07-31 00:04:53 +03:00
return logger.throwError("failed response", Logger.errors.SERVER_ERROR, {
2020-09-06 06:35:35 +03:00
requestBody: bodyify(options.body, flatHeaders["content-type"]),
2020-07-31 00:04:53 +03:00
requestMethod: options.method,
url: url
});
2019-06-12 08:01:04 +03:00
});
})();
return Promise.race([runningTimeout.promise, runningFetch]);
2019-05-15 01:48:48 +03:00
}
2020-07-31 00:04:53 +03:00
export function fetchJson(connection, json, processFunc) {
let processJsonFunc = (value, response) => {
let result = null;
if (value != null) {
try {
result = JSON.parse(toUtf8String(value));
}
catch (error) {
logger.throwError("invalid JSON", Logger.errors.SERVER_ERROR, {
body: value,
error: error
});
}
}
if (processFunc) {
result = processFunc(result, response);
}
return result;
};
// If we have json to send, we must
// - add content-type of application/json (unless already overridden)
// - convert the json to bytes
let body = null;
if (json != null) {
body = toUtf8Bytes(json);
// Create a connection with the content-type set for JSON
2020-08-05 03:55:55 +03:00
const updated = (typeof (connection) === "string") ? ({ url: connection }) : shallowCopy(connection);
2020-07-31 00:04:53 +03:00
if (updated.headers) {
const hasContentType = (Object.keys(updated.headers).filter((k) => (k.toLowerCase() === "content-type")).length) !== 0;
if (!hasContentType) {
updated.headers = shallowCopy(updated.headers);
updated.headers["content-type"] = "application/json";
}
}
else {
updated.headers = { "content-type": "application/json" };
}
connection = updated;
}
2020-07-31 08:32:26 +03:00
return _fetchData(connection, body, processJsonFunc);
2020-07-31 00:04:53 +03:00
}
export function poll(func, options) {
2019-05-15 01:48:48 +03:00
if (!options) {
options = {};
}
options = shallowCopy(options);
2019-05-15 01:48:48 +03:00
if (options.floor == null) {
options.floor = 0;
}
if (options.ceiling == null) {
options.ceiling = 10000;
}
if (options.interval == null) {
options.interval = 250;
}
return new Promise(function (resolve, reject) {
let timer = null;
let done = false;
2019-05-15 01:48:48 +03:00
// Returns true if cancel was successful. Unsuccessful cancel means we're already done.
2019-11-20 12:57:38 +03:00
const cancel = () => {
2019-05-15 01:48:48 +03:00
if (done) {
return false;
}
done = true;
if (timer) {
clearTimeout(timer);
}
return true;
};
if (options.timeout) {
timer = setTimeout(() => {
2019-05-15 01:48:48 +03:00
if (cancel()) {
reject(new Error("timeout"));
}
}, options.timeout);
}
2019-11-20 12:57:38 +03:00
const retryLimit = options.retryLimit;
let attempt = 0;
2019-05-15 01:48:48 +03:00
function check() {
return func().then(function (result) {
// If we have a result, or are allowed null then we're done
if (result !== undefined) {
if (cancel()) {
resolve(result);
}
}
2020-05-05 06:01:04 +03:00
else if (options.oncePoll) {
options.oncePoll.once("poll", check);
}
2019-05-15 01:48:48 +03:00
else if (options.onceBlock) {
options.onceBlock.once("block", check);
// Otherwise, exponential back-off (up to 10s) our next request
}
else if (!done) {
attempt++;
if (attempt > retryLimit) {
if (cancel()) {
reject(new Error("retry limit reached"));
}
return;
}
let timeout = options.interval * parseInt(String(Math.random() * Math.pow(2, attempt)));
2019-05-15 01:48:48 +03:00
if (timeout < options.floor) {
timeout = options.floor;
}
if (timeout > options.ceiling) {
timeout = options.ceiling;
}
setTimeout(check, timeout);
}
return null;
}, function (error) {
if (cancel()) {
reject(error);
}
});
}
check();
});
}
2020-07-13 15:03:56 +03:00
//# sourceMappingURL=index.js.map