plugeth/httprpc.js

71 lines
1.9 KiB
JavaScript
Raw Normal View History

2014-10-22 09:38:33 +00:00
(function () {
2014-10-28 15:53:31 +00:00
var HttpRpcProvider = function (host) {
2014-10-22 09:38:33 +00:00
this.handlers = [];
this.host = host;
};
function formatJsonRpcObject(object) {
return {
jsonrpc: '2.0',
method: object.call,
params: object.args,
id: object._id
}
};
function formatJsonRpcMessage(message) {
var object = JSON.parse(message);
return {
2014-10-22 09:38:33 +00:00
_id: object.id,
data: object.result
};
2014-10-22 09:38:33 +00:00
};
2014-10-28 15:53:31 +00:00
HttpRpcProvider.prototype.sendRequest = function (payload, cb) {
2014-10-22 09:38:33 +00:00
var data = formatJsonRpcObject(payload);
var request = new XMLHttpRequest();
request.open("POST", this.host, true);
request.send(JSON.stringify(data));
request.onreadystatechange = function () {
2014-10-23 12:11:57 +00:00
if (request.readyState === 4 && cb) {
cb(request);
2014-10-22 09:38:33 +00:00
}
}
};
2014-10-28 15:53:31 +00:00
HttpRpcProvider.prototype.send = function (payload) {
2014-10-23 12:11:57 +00:00
var self = this;
this.sendRequest(payload, function (request) {
self.handlers.forEach(function (handler) {
handler.call(self, formatJsonRpcMessage(request.responseText));
});
});
};
2014-10-28 15:53:31 +00:00
HttpRpcProvider.prototype.poll = function (payload, id) {
2014-10-23 12:11:57 +00:00
var self = this;
this.sendRequest(payload, function (request) {
var parsed = JSON.parse(request.responseText);
if (!parsed.result) {
return;
}
self.handlers.forEach(function (handler) {
handler.call(self, {_event: "messages", data: id});
});
});
};
2014-10-28 15:53:31 +00:00
Object.defineProperty(HttpRpcProvider.prototype, "onmessage", {
2014-10-22 09:38:33 +00:00
set: function (handler) {
this.handlers.push(handler);
}
});
if (typeof(web3) !== "undefined" && web3.providers !== undefined) {
2014-10-28 15:53:31 +00:00
web3.providers.HttpRpcProvider = HttpRpcProvider;
2014-10-22 09:38:33 +00:00
}
})();
2014-10-28 15:53:31 +00:00