103 lines
2.4 KiB
JavaScript
103 lines
2.4 KiB
JavaScript
var lbry = {
|
|
isConnected: false,
|
|
rootPath: '.',
|
|
colors: {
|
|
primary: '#155B4A'
|
|
}
|
|
};
|
|
|
|
lbry.call = function (method, params, callback, connectFailedCallback)
|
|
{
|
|
var xhr = new XMLHttpRequest;
|
|
xhr.addEventListener('load', function() {
|
|
var response = JSON.parse(xhr.responseText);
|
|
|
|
if (response.error) {
|
|
throw new Error('Call to method ' + method + ' failed with message: ' + response.error);
|
|
}
|
|
callback(response.result);
|
|
});
|
|
|
|
if (connectFailedCallback) {
|
|
xhr.addEventListener('error', function (e) {
|
|
connectFailedCallback(e);
|
|
});
|
|
}
|
|
|
|
xhr.open('POST', 'http://localhost:5279/lbryapi', true);
|
|
xhr.send(JSON.stringify({
|
|
'jsonrpc': '2.0',
|
|
'method': method,
|
|
'params': [params, ],
|
|
'id': 0
|
|
}));
|
|
}
|
|
|
|
//core
|
|
lbry.connect = function(callback)
|
|
{
|
|
// Check every half second to see if the daemon's running.
|
|
// Returns true to callback once connected, or false if it takes too long and we give up.
|
|
function checkDaemonRunning(tryNum=0) {
|
|
lbry.daemonRunningStatus(function (runningStatus) {
|
|
if (runningStatus) {
|
|
lbry.isConnected = true;
|
|
callback(true);
|
|
} else {
|
|
if (tryNum <= 50) { // Move # of tries into constant or config option
|
|
setTimeout(function () {
|
|
checkDaemonRunning(tryNum + 1);
|
|
}, 500);
|
|
} else {
|
|
callback(false);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
checkDaemonRunning();
|
|
}
|
|
|
|
lbry.daemonRunningStatus = function (callback) {
|
|
// Returns true/false whether the daemon is running (i.e. fully conncected to the network),
|
|
// or null if the AJAX connection to the daemon fails.
|
|
|
|
lbry.call('is_running', {}, callback, function () {
|
|
callback(null);
|
|
});
|
|
};
|
|
|
|
lbry.getBalance = function(callback)
|
|
{
|
|
lbry.call("get_balance", {}, callback);
|
|
}
|
|
|
|
lbry.search = function(query, callback)
|
|
{
|
|
lbry.call("search_nametrie", { "search": query }, callback);
|
|
}
|
|
|
|
//utilities
|
|
lbry.formatCredits = function(amount, precision)
|
|
{
|
|
return amount.toFixed(precision || 1);
|
|
}
|
|
|
|
lbry.loadJs = function(src, type, onload)
|
|
{
|
|
var lbryScriptTag = document.getElementById('lbry'),
|
|
newScriptTag = document.createElement('script'),
|
|
type = type || 'text/javascript';
|
|
|
|
newScriptTag.src = src;
|
|
newScriptTag.type = type;
|
|
if (onload)
|
|
{
|
|
newScript.onload = onload;
|
|
}
|
|
lbryScriptTag.parentNode.insertBefore(newScriptTag, lbryScriptTag);
|
|
}
|
|
|
|
lbry.imagePath = function(file)
|
|
{
|
|
return lbry.rootPath + '/img/' + file;
|
|
}
|