-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from debris/master
Http JSON-RPC provider, http polling, little refactor, whisper
- Loading branch information
Showing
5 changed files
with
364 additions
and
366 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
(function () { | ||
var HttpRpcProvider = function (host) { | ||
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 { | ||
_id: object.id, | ||
data: object.result | ||
}; | ||
}; | ||
|
||
HttpRpcProvider.prototype.sendRequest = function (payload, cb) { | ||
var data = formatJsonRpcObject(payload); | ||
|
||
var request = new XMLHttpRequest(); | ||
request.open("POST", this.host, true); | ||
request.send(JSON.stringify(data)); | ||
request.onreadystatechange = function () { | ||
if (request.readyState === 4 && cb) { | ||
cb(request); | ||
} | ||
} | ||
}; | ||
|
||
HttpRpcProvider.prototype.send = function (payload) { | ||
var self = this; | ||
this.sendRequest(payload, function (request) { | ||
self.handlers.forEach(function (handler) { | ||
handler.call(self, formatJsonRpcMessage(request.responseText)); | ||
}); | ||
}); | ||
}; | ||
|
||
HttpRpcProvider.prototype.poll = function (payload, id) { | ||
var self = this; | ||
this.sendRequest(payload, function (request) { | ||
var parsed = JSON.parse(request.responseText); | ||
if (parsed.result instanceof Array ? parsed.result.length === 0 : !parsed.result) { | ||
return; | ||
} | ||
self.handlers.forEach(function (handler) { | ||
handler.call(self, {_event: payload.call, _id: id, data: parsed.result}); | ||
}); | ||
}); | ||
}; | ||
|
||
Object.defineProperty(HttpRpcProvider.prototype, "onmessage", { | ||
set: function (handler) { | ||
this.handlers.push(handler); | ||
} | ||
}); | ||
|
||
if (typeof(web3) !== "undefined" && web3.providers !== undefined) { | ||
web3.providers.HttpRpcProvider = HttpRpcProvider; | ||
} | ||
})(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.