ethers.js/packages/web/src.ts/index.ts

239 lines
7.4 KiB
TypeScript
Raw Normal View History

2019-05-15 01:25:46 +03:00
"use strict";
import fetch from "cross-fetch";
2019-05-15 01:25:46 +03:00
import { encode as base64Encode } from "@ethersproject/base64";
import { shallowCopy } from "@ethersproject/properties";
import { toUtf8Bytes } from "@ethersproject/strings";
2019-08-02 01:04:06 +03:00
import { Logger } from "@ethersproject/logger";
import { version } from "./_version";
const logger = new Logger(version);
2019-05-15 01:25:46 +03:00
// Exported Types
export type ConnectionInfo = {
url: string,
user?: string,
password?: string,
allowInsecureAuthentication?: boolean,
2019-05-15 01:25:46 +03:00
timeout?: number,
headers?: { [key: string]: string | number }
};
export interface OnceBlockable {
once(eventName: "block", handler: () => void): void;
}
export type PollOptions = {
timeout?: number,
floor?: number,
ceiling?: number,
interval?: number,
retryLimit?: number,
onceBlock?: OnceBlockable
};
type Header = { key: string, value: string };
export function fetchJson(connection: string | ConnectionInfo, json?: string, processFunc?: (value: any) => any): Promise<any> {
let headers: { [key: string]: Header } = { };
let url: string = null;
// @TODO: Allow ConnectionInfo to override some of these values
let options: any = {
method: "GET",
mode: "cors", // no-cors, cors, *same-origin
cache: "no-cache", // *default, no-cache, reload, force-cache, only-if-cached
credentials: "same-origin", // include, *same-origin, omit
redirect: "follow", // manual, *follow, error
referrer: "client", // no-referrer, *client
};
2019-05-15 01:25:46 +03:00
let timeout = 2 * 60 * 1000;
if (typeof(connection) === "string") {
url = connection;
} else if (typeof(connection) === "object") {
if (connection == null || connection.url == null) {
2019-08-02 01:04:06 +03:00
logger.throwArgumentError("missing URL", "connection.url", connection);
2019-05-15 01:25:46 +03:00
}
url = connection.url;
if (typeof(connection.timeout) === "number" && connection.timeout > 0) {
timeout = connection.timeout;
}
if (connection.headers) {
for (let key in connection.headers) {
headers[key.toLowerCase()] = { key: key, value: String(connection.headers[key]) };
}
}
if (connection.user != null && connection.password != null) {
if (url.substring(0, 6) !== "https:" && connection.allowInsecureAuthentication !== true) {
2019-08-02 01:04:06 +03:00
logger.throwError(
2019-05-15 01:25:46 +03:00
"basic authentication requires a secure https url",
2019-08-02 01:04:06 +03:00
Logger.errors.INVALID_ARGUMENT,
{ argument: "url", url: url, user: connection.user, password: "[REDACTED]" }
2019-05-15 01:25:46 +03:00
);
}
let authorization = connection.user + ":" + connection.password;
headers["authorization"] = {
key: "Authorization",
value: "Basic " + base64Encode(toUtf8Bytes(authorization))
};
}
}
return new Promise(function(resolve, reject) {
let timer: any = null;
if (timeout) {
timer = setTimeout(() => {
if (timer == null) { return; }
timer = null;
2019-08-02 01:04:06 +03:00
reject(logger.makeError("timeout", Logger.errors.TIMEOUT, { timeout: timeout }));
}, timeout);
}
2019-05-15 01:25:46 +03:00
let cancelTimeout = () => {
if (timer == null) { return; }
clearTimeout(timer);
timer = null;
}
if (json) {
options.method = "POST";
options.body = json;
2019-05-15 01:25:46 +03:00
headers["content-type"] = { key: "Content-Type", value: "application/json" };
}
let flatHeaders: { [ key: string ]: string } = { };
2019-05-15 01:25:46 +03:00
Object.keys(headers).forEach((key) => {
let header = headers[key];
flatHeaders[header.key] = header.value;
2019-05-15 01:25:46 +03:00
});
options.headers = flatHeaders;
return fetch(url, options).then((response) => {
return response.text().then((body) => {
if (!response.ok) {
2019-08-02 01:04:06 +03:00
logger.throwError("bad response", Logger.errors.SERVER_ERROR, {
status: response.status,
body: body,
type: response.type,
url: response.url
});
2019-05-15 01:25:46 +03:00
}
return body;
});
}).then((text) => {
let json: any = null;
2019-05-15 01:25:46 +03:00
try {
json = JSON.parse(text);
2019-05-15 01:25:46 +03:00
} catch (error) {
2019-08-02 01:04:06 +03:00
logger.throwError("invalid JSON", Logger.errors.SERVER_ERROR, {
body: text,
error: error,
url: url
});
2019-05-15 01:25:46 +03:00
}
if (processFunc) {
try {
json = processFunc(json);
2019-05-15 01:25:46 +03:00
} catch (error) {
2019-08-02 01:04:06 +03:00
logger.throwError("processing response error", Logger.errors.SERVER_ERROR, {
body: json,
error: error
});
2019-05-15 01:25:46 +03:00
}
}
return json;
}, (error) => {
throw error;
}).then((result) => {
2019-05-15 01:25:46 +03:00
cancelTimeout();
resolve(result);
}, (error) => {
2019-05-15 01:25:46 +03:00
cancelTimeout();
reject(error);
});
2019-05-15 01:25:46 +03:00
});
}
export function poll(func: () => Promise<any>, options?: PollOptions): Promise<any> {
if (!options) { options = {}; }
options = shallowCopy(options);
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: any = null;
let done: boolean = false;
// Returns true if cancel was successful. Unsuccessful cancel means we're already done.
let cancel = (): boolean => {
if (done) { return false; }
done = true;
if (timer) { clearTimeout(timer); }
return true;
};
if (options.timeout) {
timer = setTimeout(() => {
if (cancel()) { reject(new Error("timeout")); }
}, options.timeout)
}
let retryLimit = options.retryLimit;
let attempt = 0;
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); }
} 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)));
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();
});
}