simplify getJson
This commit is contained in:
parent
97be8b7463
commit
d5f77fb965
|
@ -77,14 +77,8 @@ class IPFS {
|
|||
}
|
||||
|
||||
_checkService(cb) {
|
||||
const self = this;
|
||||
let url = this._getNodeUrl();
|
||||
self.logger.info(`Checking IPFS version on ${url}...`);
|
||||
if (self.protocol !== 'https'){
|
||||
utils.httpGetJson(url, cb);
|
||||
} else {
|
||||
utils.httpsGetJson(url, cb);
|
||||
}
|
||||
utils.getJson(url, cb);
|
||||
}
|
||||
|
||||
addProviderToEmbarkJS() {
|
||||
|
|
|
@ -81,6 +81,13 @@ function httpsGetJson(url, callback) {
|
|||
});
|
||||
}
|
||||
|
||||
function getJson(url, cb) {
|
||||
if (url.indexOf('https') === 0) {
|
||||
return httpsGetJson(url, cb);
|
||||
}
|
||||
httpGetJson(url, cb);
|
||||
}
|
||||
|
||||
function pingEndpoint(host, port, type, protocol, origin, callback) {
|
||||
const options = {
|
||||
protocolVersion: 13,
|
||||
|
@ -363,6 +370,7 @@ module.exports = {
|
|||
httpsGet,
|
||||
httpGetJson,
|
||||
httpsGetJson,
|
||||
getJson,
|
||||
hexToNumber,
|
||||
pingEndpoint,
|
||||
decodeParams,
|
||||
|
|
Loading…
Reference in New Issue