You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

214 lines
4.6 KiB

var debug = require('debug')('btcexp:rpcApi');
var async = require("async");
var utils = require("../utils.js");
var config = require("../config.js");
var coins = require("../coins.js");
var activeQueueTasks = 0;
var rpcQueue = async.queue(function(task, callback) {
activeQueueTasks++;
//console.log("activeQueueTasks: " + activeQueueTasks);
task.rpcCall(function() {
callback();
activeQueueTasks--;
//console.log("activeQueueTasks: " + activeQueueTasks);
});
}, config.rpcConcurrency);
function getBlockchainInfo() {
return getRpcData("getblockchaininfo");
}
function getNetworkInfo() {
return getRpcData("getnetworkinfo");
}
function getNetTotals() {
return getRpcData("getnettotals");
}
function getMempoolInfo() {
return getRpcData("getmempoolinfo");
}
function getMiningInfo() {
return getRpcData("getmininginfo");
}
function getUptimeSeconds() {
return getRpcData("uptime");
}
function getPeerInfo() {
return getRpcData("getpeerinfo");
}
7 years ago
function getRawMempool() {
return getRpcDataWithParams({method:"getrawmempool", parameters:[true]});
}
function getChainTxStats(blockCount) {
return getRpcDataWithParams({method:"getchaintxstats", parameters:[blockCount]});
}
8 years ago
function getBlockByHeight(blockHeight) {
return new Promise(function(resolve, reject) {
getRpcDataWithParams({method:"getblockhash", parameters:[blockHeight]}).then(function(blockhash) {
getBlockByHash(blockhash).then(function(block) {
resolve(block);
}).catch(function(err) {
reject(err);
});
}).catch(function(err) {
reject(err);
});
});
}
function getBlockByHash(blockHash) {
debug("getBlockByHash: %s", blockHash);
8 years ago
return new Promise(function(resolve, reject) {
getRpcDataWithParams({method:"getblock", parameters:[blockHash]}).then(function(block) {
getRawTransaction(block.tx[0]).then(function(tx) {
block.coinbaseTx = tx;
block.totalFees = utils.getBlockTotalFeesFromCoinbaseTxAndBlockHeight(tx, block.height);
block.miner = utils.getMinerFromCoinbaseTx(tx);
8 years ago
resolve(block);
}).catch(function(err) {
reject(err);
});
}).catch(function(err) {
reject(err);
8 years ago
});
});
}
function getAddress(address) {
return getRpcDataWithParams({method:"validateaddress", parameters:[address]});
}
function getRawTransaction(txid) {
debug("getRawTransaction: %s", txid);
8 years ago
return new Promise(function(resolve, reject) {
if (coins[config.coin].genesisCoinbaseTransactionId && txid == coins[config.coin].genesisCoinbaseTransactionId) {
// copy the "confirmations" field from genesis block to the genesis-coinbase tx
getBlockchainInfo().then(function(blockchainInfoResult) {
var result = coins[config.coin].genesisCoinbaseTransaction;
result.confirmations = blockchainInfoResult.blocks;
8 years ago
resolve(result);
}).catch(function(err) {
reject(err);
});
8 years ago
} else {
getRpcDataWithParams({method:"getrawtransaction", parameters:[txid, 1]}).then(function(result) {
if (result == null || result.code && result.code < 0) {
reject(result);
return;
}
resolve(result);
}).catch(function(err) {
reject(err);
});
}
});
}
function getHelp() {
return getRpcData("help");
}
function getRpcMethodHelp(methodName) {
return getRpcDataWithParams({method:"help", parameters:[methodName]});
}
7 years ago
function getRpcData(cmd) {
return new Promise(function(resolve, reject) {
6 years ago
debug(`RPC: ${cmd}`);
7 years ago
rpcCall = function(callback) {
client.command(cmd, function(err, result, resHeaders) {
if (err) {
console.log(`Error for RPC command '${cmd}': ${err}`);
7 years ago
reject(err);
7 years ago
callback();
return;
}
resolve(result);
callback();
});
};
rpcQueue.push({rpcCall:rpcCall});
7 years ago
});
}
function getRpcDataWithParams(request) {
return new Promise(function(resolve, reject) {
debug(`RPC: ${request}`);
7 years ago
rpcCall = function(callback) {
client.command([request], function(err, result, resHeaders) {
if (err != null) {
6 years ago
console.log(`Error for RPC command ${JSON.stringify(request)}: ${err}, headers=${resHeaders}`);
7 years ago
reject(err);
7 years ago
callback();
return;
}
7 years ago
resolve(result[0]);
callback();
});
};
rpcQueue.push({rpcCall:rpcCall});
7 years ago
});
}
8 years ago
module.exports = {
getBlockchainInfo: getBlockchainInfo,
getNetworkInfo: getNetworkInfo,
getNetTotals: getNetTotals,
getMempoolInfo: getMempoolInfo,
getMiningInfo: getMiningInfo,
8 years ago
getBlockByHeight: getBlockByHeight,
getBlockByHash: getBlockByHash,
8 years ago
getRawTransaction: getRawTransaction,
7 years ago
getRawMempool: getRawMempool,
getUptimeSeconds: getUptimeSeconds,
getHelp: getHelp,
getRpcMethodHelp: getRpcMethodHelp,
getAddress: getAddress,
getPeerInfo: getPeerInfo,
getChainTxStats: getChainTxStats
8 years ago
};