implement StatusProvider.send for Android and iOS (only http)
This commit is contained in:
parent
0d9f35190f
commit
80f4c54357
|
@ -5,17 +5,16 @@ function httpCallback(id, data) {
|
||||||
var result = data;
|
var result = data;
|
||||||
var error = null;
|
var error = null;
|
||||||
|
|
||||||
console.log(data);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
result = JSON.parse(data);
|
result = JSON.parse(data);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
error = {message: "InvalidResponse"};
|
error = {message: "InvalidResponse"};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (callbacks[id]) {
|
||||||
callbacks[id](error, result);
|
callbacks[id](error, result);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
var StatusHttpProvider = function (host, timeout) {
|
var StatusHttpProvider = function (host, timeout) {
|
||||||
this.host = host || 'http://localhost:8545';
|
this.host = host || 'http://localhost:8545';
|
||||||
|
@ -23,10 +22,50 @@ var StatusHttpProvider = function (host, timeout) {
|
||||||
};
|
};
|
||||||
|
|
||||||
StatusHttpProvider.prototype.send = function (payload) {
|
StatusHttpProvider.prototype.send = function (payload) {
|
||||||
|
if (typeof StatusBridge == "undefined") {
|
||||||
|
if (window.location.protocol == "https:") {
|
||||||
throw new Error('You tried to send "' + payload.method + '" synchronously. Synchronous requests are not supported, sorry.');
|
throw new Error('You tried to send "' + payload.method + '" synchronously. Synchronous requests are not supported, sorry.');
|
||||||
|
}
|
||||||
|
|
||||||
|
var request = this.prepareRequest(false);
|
||||||
|
|
||||||
|
try {
|
||||||
|
request.send(JSON.stringify(payload));
|
||||||
|
} catch (error) {
|
||||||
|
throw errors.InvalidConnection(this.host);
|
||||||
|
}
|
||||||
|
|
||||||
|
var result = request.responseText;
|
||||||
|
|
||||||
|
try {
|
||||||
|
result = JSON.parse(result);
|
||||||
|
} catch (e) {
|
||||||
|
throw errors.InvalidResponse(request.responseText);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
} else {
|
||||||
|
result = StatusBridge.sendRequestSync(JSON.stringify(payload));
|
||||||
|
|
||||||
|
try {
|
||||||
|
result = JSON.parse(result);
|
||||||
|
} catch (e) {
|
||||||
|
throw new Error("InvalidResponse: " + result);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
StatusHttpProvider.prototype.sendAsync = function (payload, callback) {
|
StatusHttpProvider.prototype.prepareRequest = function () {
|
||||||
|
var request = new XMLHttpRequest();
|
||||||
|
|
||||||
|
request.open('POST', "http://localhost:8545", false);
|
||||||
|
request.setRequestHeader('Content-Type', 'application/json');
|
||||||
|
return request;
|
||||||
|
};
|
||||||
|
|
||||||
|
function sendAsync(payload, callback) {
|
||||||
|
|
||||||
var messageId = callbackId++;
|
var messageId = callbackId++;
|
||||||
callbacks[messageId] = callback;
|
callbacks[messageId] = callback;
|
||||||
|
@ -42,6 +81,8 @@ StatusHttpProvider.prototype.sendAsync = function (payload, callback) {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
StatusHttpProvider.prototype.sendAsync = sendAsync;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Synchronously tries to make Http request
|
* Synchronously tries to make Http request
|
||||||
*
|
*
|
||||||
|
@ -55,7 +96,8 @@ StatusHttpProvider.prototype.isConnected = function() {
|
||||||
jsonrpc: '2.0',
|
jsonrpc: '2.0',
|
||||||
method: 'net_listening',
|
method: 'net_listening',
|
||||||
params: []
|
params: []
|
||||||
}, function(){});
|
}, function () {
|
||||||
|
});
|
||||||
return true;
|
return true;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue