Files
purple-explorer/routes/index.js
T
2022-03-12 21:40:19 -07:00

513 lines
25 KiB
JavaScript

var express = require('express'),
router = express.Router(),
settings = require('../lib/settings'),
locale = require('../lib/locale'),
db = require('../lib/database'),
lib = require('../lib/explorer'),
qr = require('qr-image');
function route_get_block(res, blockhash) {
lib.get_block(blockhash, function (block) {
if (block && block != 'There was an error. Check your console.') {
if (blockhash == settings.block_page.genesis_block)
res.render('block', { active: 'block', block: block, confirmations: settings.shared_pages.confirmations, txs: 'GENESIS', showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
else {
db.get_txs(block, function(txs) {
if (txs.length > 0)
res.render('block', { active: 'block', block: block, confirmations: settings.shared_pages.confirmations, txs: txs, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
else {
// cannot find block in local database so get the data from the wallet directly
var ntxs = [];
lib.syncLoop(block.tx.length, function (loop) {
var i = loop.iteration();
lib.get_rawtransaction(block.tx[i], function(tx) {
if (tx && tx != 'There was an error. Check your console.') {
lib.prepare_vin(tx, function(vin, tx_type_vin) {
lib.prepare_vout(tx.vout, block.tx[i], vin, ((!settings.blockchain_specific.zksnarks.enabled || typeof tx.vjoinsplit === 'undefined' || tx.vjoinsplit == null) ? [] : tx.vjoinsplit), function(vout, nvin, tx_type_vout) {
lib.calculate_total(vout, function(total) {
ntxs.push({
txid: block.tx[i],
vout: vout,
total: total.toFixed(8)
});
loop.next();
});
});
});
} else
loop.next();
});
}, function() {
res.render('block', { active: 'block', block: block, confirmations: settings.shared_pages.confirmations, txs: ntxs, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
});
}
});
}
} else {
if (!isNaN(blockhash)) {
var height = blockhash;
lib.get_blockhash(height, function(hash) {
if (hash && hash != 'There was an error. Check your console.')
res.redirect('/block/' + hash);
else
route_get_index(res, 'Block not found: ' + blockhash);
});
} else
route_get_index(res, 'Block not found: ' + blockhash);
}
});
}
function get_file_timestamp(file_name) {
if (db.fs.existsSync(file_name))
return parseInt(db.fs.statSync(file_name).mtimeMs / 1000);
else
return null;
}
/* GET functions */
function route_get_tx(res, txid) {
if (txid == settings.transaction_page.genesis_tx)
route_get_block(res, settings.block_page.genesis_block);
else {
db.get_tx(txid, function(tx) {
if (tx) {
lib.get_blockcount(function(blockcount) {
if (settings.claim_address_page.enabled == true) {
db.populate_claim_address_names(tx, function(tx) {
res.render('tx', { active: 'tx', tx: tx, confirmations: settings.shared_pages.confirmations, blockcount: (blockcount ? blockcount : 0), showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
});
} else
res.render('tx', { active: 'tx', tx: tx, confirmations: settings.shared_pages.confirmations, blockcount: (blockcount ? blockcount : 0), showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
});
} else {
lib.get_rawtransaction(txid, function(rtx) {
if (rtx && rtx.txid) {
lib.prepare_vin(rtx, function(vin, tx_type_vin) {
lib.prepare_vout(rtx.vout, rtx.txid, vin, ((!settings.blockchain_specific.zksnarks.enabled || typeof rtx.vjoinsplit === 'undefined' || rtx.vjoinsplit == null) ? [] : rtx.vjoinsplit), function(rvout, rvin, tx_type_vout) {
lib.calculate_total(rvout, function(total) {
if (!rtx.confirmations > 0) {
var utx = {
txid: rtx.txid,
vin: rvin,
vout: rvout,
total: total.toFixed(8),
timestamp: rtx.time,
blockhash: '-',
blockindex: -1
};
if (settings.claim_address_page.enabled == true) {
db.populate_claim_address_names(utx, function(utx) {
res.render('tx', { active: 'tx', tx: utx, confirmations: settings.shared_pages.confirmations, blockcount:-1, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
});
} else
res.render('tx', { active: 'tx', tx: utx, confirmations: settings.shared_pages.confirmations, blockcount:-1, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
} else {
// check if blockheight exists
if (!rtx.blockheight && rtx.blockhash) {
// blockheight not found so look up the block
lib.get_block(rtx.blockhash, function(block) {
if (block && block != 'There was an error. Check your console.') {
// create the tx object before rendering
var utx = {
txid: rtx.txid,
vin: rvin,
vout: rvout,
total: total.toFixed(8),
timestamp: rtx.time,
blockhash: rtx.blockhash,
blockindex: block.height
};
lib.get_blockcount(function(blockcount) {
if (settings.claim_address_page.enabled == true) {
db.populate_claim_address_names(utx, function(utx) {
res.render('tx', { active: 'tx', tx: utx, confirmations: settings.shared_pages.confirmations, blockcount: (blockcount ? blockcount : 0), showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
});
} else
res.render('tx', { active: 'tx', tx: utx, confirmations: settings.shared_pages.confirmations, blockcount: (blockcount ? blockcount : 0), showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
});
} else {
// cannot load tx
route_get_index(res, null);
}
});
} else {
// create the tx object before rendering
var utx = {
txid: rtx.txid,
vin: rvin,
vout: rvout,
total: total.toFixed(8),
timestamp: rtx.time,
blockhash: rtx.blockhash,
blockindex: rtx.blockheight
};
lib.get_blockcount(function(blockcount) {
if (settings.claim_address_page.enabled == true) {
db.populate_claim_address_names(utx, function(utx) {
res.render('tx', { active: 'tx', tx: utx, confirmations: settings.shared_pages.confirmations, blockcount: (blockcount ? blockcount : 0), showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
});
} else
res.render('tx', { active: 'tx', tx: utx, confirmations: settings.shared_pages.confirmations, blockcount: (blockcount ? blockcount : 0), showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
});
}
}
});
});
});
} else
route_get_index(res, null);
});
}
});
}
}
function route_get_index(res, error) {
// check if index page should show last updated date
if (settings.index_page.page_header.show_last_updated == true) {
// lookup last updated date
db.get_stats(settings.coin.name, function (stats) {
res.render('index', { active: 'home', error: error, last_updated: stats.blockchain_last_updated, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
});
} else {
// skip lookup of the last updated date and display the page now
res.render('index', { active: 'home', error: error, last_updated: null, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
}
}
function route_get_address(res, hash) {
// check if trying to load a special address
if (hash != null && hash.toLowerCase() != 'coinbase' && ((hash.toLowerCase() == 'hidden_address' && settings.address_page.enable_hidden_address_view == true) || (hash.toLowerCase() == 'unknown_address' && settings.address_page.enable_unknown_address_view == true) || (hash.toLowerCase() != 'hidden_address' && hash.toLowerCase() != 'unknown_address'))) {
// lookup address in local collection
db.get_address(hash, false, function(address) {
if (address)
res.render('address', { active: 'address', address: address, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
else
route_get_index(res, hash + ' not found');
});
} else
route_get_index(res, hash + ' not found');
}
function route_get_claim_form(res, hash) {
// check if claiming addresses is enabled
if (settings.claim_address_page.enabled == true) {
// check if a hash was passed in
if (hash == null || hash == '') {
// no hash so just load the claim page without an address
res.render("claim_address", { active: "claim-address", hash: hash, claim_name: '', showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
} else {
// lookup hash in the address collection
db.get_address(hash, false, function(address) {
// load the claim page regardless of whether the address exists or not
res.render("claim_address", { active: "claim-address", hash: hash, claim_name: (address == null || address.name == null ? '' : address.name), showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
});
}
} else
route_get_address(res, hash);
}
/* GET home page. */
router.get('/', function(req, res) {
route_get_index(res, null);
});
router.get('/info', function(req, res) {
// ensure api page is enabled
if (settings.api_page.enabled == true) {
// load the api page
res.render('info', { active: 'info', address: req.headers.host, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
} else {
// api page is not enabled so default to the index page
route_get_index(res, null);
}
});
router.get('/markets/:market/:coin_symbol/:pair_symbol', function(req, res) {
// ensure markets page is enabled
if (settings.markets_page.enabled == true) {
var market_id = req.params['market'];
var coin_symbol = req.params['coin_symbol'];
var pair_symbol = req.params['pair_symbol'];
// check if the market and trading pair exists and market is enabled in settings.json
if (settings.markets_page.exchanges[market_id] != null && settings.markets_page.exchanges[market_id].enabled == true && settings.markets_page.exchanges[market_id].trading_pairs.findIndex(p => p.toLowerCase() == coin_symbol.toLowerCase() + '/' + pair_symbol.toLowerCase()) > -1) {
// lookup market data
db.get_market(market_id, coin_symbol, pair_symbol, function(data) {
// load market data
var market_data = require('../lib/markets/' + market_id);
// check if markets page should show last updated date
if (settings.markets_page.page_header.show_last_updated == true) {
// lookup last updated date
db.get_stats(settings.coin.name, function (stats) {
res.render('./market', {
active: 'markets',
marketdata: {
market_name: (market_data.market_name == null ? '' : market_data.market_name),
market_logo: (market_data.market_logo == null ? '' : market_data.market_logo),
coin: coin_symbol,
exchange: pair_symbol,
data: data
},
market: market_id,
last_updated: stats.markets_last_updated,
showSync: db.check_show_sync_message(),
styleHash: get_file_timestamp('./public/css/style.scss'),
themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css')
});
});
} else {
// skip looking up the last updated date and display the page now
res.render('./market', {
active: 'markets',
marketdata: {
market_name: (market_data.market_name == null ? '' : market_data.market_name),
market_logo: (market_data.market_logo == null ? '' : market_data.market_logo),
coin: coin_symbol,
exchange: pair_symbol,
data: data
},
market: market_id,
last_updated: null,
showSync: db.check_show_sync_message(),
styleHash: get_file_timestamp('./public/css/style.scss'),
themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css')
});
}
});
} else {
// selected market does not exist or is not enabled so default to the index page
route_get_index(res, null);
}
} else {
// markets page is not enabled so default to the index page
route_get_index(res, null);
}
});
router.get('/richlist', function(req, res) {
// ensure richlist page is enabled
if (settings.richlist_page.enabled == true) {
db.get_stats(settings.coin.name, function (stats) {
db.get_richlist(settings.coin.name, function(richlist) {
if (richlist) {
db.get_distribution(richlist, stats, function(distribution) {
res.render('richlist', {
active: 'richlist',
balance: richlist.balance,
received: richlist.received,
burned: richlist.burned,
stats: stats,
dista: distribution.t_1_25,
distb: distribution.t_26_50,
distc: distribution.t_51_75,
distd: distribution.t_76_100,
diste: distribution.t_101plus,
last_updated: (settings.richlist_page.page_header.show_last_updated == true ? stats.richlist_last_updated : null),
showSync: db.check_show_sync_message(),
styleHash: get_file_timestamp('./public/css/style.scss'),
themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css')
});
});
} else {
// richlist data not found so default to the index page
route_get_index(res, null);
}
});
});
} else {
// richlist page is not enabled so default to the index page
route_get_index(res, null);
}
});
router.get('/movement', function(req, res) {
// ensure movement page is enabled
if (settings.movement_page.enabled == true) {
// check if movement page should show last updated date
if (settings.movement_page.page_header.show_last_updated == true) {
// lookup last updated date
db.get_stats(settings.coin.name, function (stats) {
res.render('movement', {active: 'movement', last_updated: stats.blockchain_last_updated, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
});
} else {
// skip lookup of the last updated date and display the page now
res.render('movement', {active: 'movement', last_updated: null, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
}
} else {
// movement page is not enabled so default to the index page
route_get_index(res, null);
}
});
router.get('/network', function(req, res) {
// ensure network page is enabled
if (settings.network_page.enabled == true) {
// check if network page should show last updated date
if (settings.network_page.page_header.show_last_updated == true) {
// lookup last updated date
db.get_stats(settings.coin.name, function (stats) {
res.render('network', {active: 'network', last_updated: stats.network_last_updated, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
});
} else {
// skip lookup of the last updated date and display the page now
res.render('network', {active: 'network', last_updated: null, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
}
} else {
// network page is not enabled so default to the index page
route_get_index(res, null);
}
});
// masternode list page
router.get('/masternodes', function(req, res) {
// ensure masternode page is enabled
if (settings.masternodes_page.enabled == true) {
// check if masternodes page should show last updated date
if (settings.masternodes_page.page_header.show_last_updated == true) {
// lookup last updated date
db.get_stats(settings.coin.name, function (stats) {
res.render('masternodes', {active: 'masternodes', last_updated: stats.masternodes_last_updated, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
});
} else {
// skip lookup of the last updated date and display the page now
res.render('masternodes', {active: 'masternodes', last_updated: null, showSync: db.check_show_sync_message(), styleHash: get_file_timestamp('./public/css/style.scss'), themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css') });
}
} else {
// masternode page is not enabled so default to the index page
route_get_index(res, null);
}
});
router.get('/reward', function(req, res) {
// ensure reward page is enabled
if (settings.blockchain_specific.heavycoin.enabled == true && settings.blockchain_specific.heavycoin.reward_page.enabled == true) {
db.get_stats(settings.coin.name, function (stats) {
db.get_heavy(settings.coin.name, function (heavy) {
if (!heavy)
heavy = { coin: settings.coin.name, lvote: 0, reward: 0, supply: 0, cap: 0, estnext: 0, phase: 'N/A', maxvote: 0, nextin: 'N/A', votes: [] };
var votes = heavy.votes;
votes.sort(function (a, b) {
if (a.count < b.count)
return -1;
else if (a.count > b.count)
return 1;
else
return 0;
});
res.render('reward', {
active: 'reward',
stats: stats,
heavy: heavy,
votes: votes,
last_updated: (settings.blockchain_specific.heavycoin.reward_page.page_header.show_last_updated == true ? stats.reward_last_updated : null),
showSync: db.check_show_sync_message(),
styleHash: get_file_timestamp('./public/css/style.scss'),
themeHash: get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css')
});
});
});
} else {
// reward page is not enabled so default to the index page
route_get_index(res, null);
}
});
router.get('/tx/:txid', function(req, res) {
route_get_tx(res, req.params.txid);
});
router.get('/block/:hash', function(req, res) {
route_get_block(res, req.params.hash);
});
router.get('/claim', function(req, res) {
route_get_claim_form(res, '');
});
router.get('/claim/:hash', function(req, res) {
route_get_claim_form(res, req.params.hash);
});
router.get('/address/:hash', function(req, res) {
route_get_address(res, req.params.hash);
});
router.post('/search', function(req, res) {
if (settings.shared_pages.page_header.search.enabled == true) {
var query = req.body.search.trim();
if (query.length == 64) {
if (query == settings.transaction_page.genesis_tx)
res.redirect('/block/' + settings.block_page.genesis_block);
else {
db.get_tx(query, function(tx) {
if (tx)
res.redirect('/tx/' + tx.txid);
else {
lib.get_block(query, function(block) {
if (block && block != 'There was an error. Check your console.')
res.redirect('/block/' + query);
else {
// check wallet for transaction
lib.get_rawtransaction(query, function(tx) {
if (tx && tx.txid)
res.redirect('/tx/' + tx.txid);
else {
// search found nothing so display the index page with an error msg
route_get_index(res, locale.ex_search_error + query );
}
});
}
});
}
});
}
} else {
db.get_address(query, false, function(address) {
if (address)
res.redirect('/address/' + address.a_id);
else {
lib.get_blockhash(query, function(hash) {
if (hash && hash != 'There was an error. Check your console.')
res.redirect('/block/' + hash);
else
route_get_index(res, locale.ex_search_error + query);
});
}
});
}
} else {
// Search is disabled so load the index page with an error msg
route_get_index(res, 'Search is disabled');
}
});
router.get('/qr/:string', function(req, res) {
if (req.params.string) {
var address = qr.image(req.params.string, {
type: 'png',
size: 4,
margin: 1,
ec_level: 'M'
});
res.type('png');
address.pipe(res);
}
});
module.exports = router;