Files

778 lines
28 KiB
JavaScript
Raw Permalink Normal View History

2025-02-02 19:10:17 -07:00
const express = require('express');
const router = express.Router();
const settings = require('../lib/settings');
const db = require('../lib/database');
const lib = require('../lib/explorer');
const async = require('async');
2023-09-29 15:57:51 -06:00
function send_block_data(res, block, txs, title_text, orphan) {
let extracted_by_addresses = [];
// check if the extracted by addresses should be found
if (settings.block_page.show_extracted_by == true && txs != null && txs.length > 0) {
// find the block reward tx
const block_reward_tx = txs.find(tx => tx.vin != null && (tx.vin.length === 0 || (tx.vin.length === 1 && tx.vin[0].addresses === 'coinbase' && tx.vin[0].amount != 0)));
// get a list of all the block reward addresses
extracted_by_addresses = (block_reward_tx ? block_reward_tx.vout.map(v => v.addresses) : []);
// add claim name data to the array
db.get_extracted_by_claim_names(extracted_by_addresses, function(updated_extracted_by_addresses) {
finalize_send_block_data(res, block, txs, title_text, orphan, updated_extracted_by_addresses);
});
} else
finalize_send_block_data(res, block, txs, title_text, orphan, extracted_by_addresses);
}
function finalize_send_block_data(res, block, txs, title_text, orphan, extracted_by_addresses) {
2023-09-29 15:57:51 -06:00
res.render(
'block',
{
active: 'block',
block: block,
orphan: orphan,
confirmations: settings.shared_pages.confirmations,
txs: txs,
extracted_by_addresses: extracted_by_addresses,
2023-09-29 15:57:51 -06:00
showSync: db.check_show_sync_message(),
customHash: get_custom_hash(),
styleHash: get_style_hash(),
themeHash: get_theme_hash(),
page_title_prefix: settings.coin.name + ' ' + title_text
}
);
}
function send_tx_data(res, tx, blockcount, orphan) {
let extracted_by_addresses = [];
// check if the extracted by addresses should be found
if (
settings.transaction_page.show_extracted_by == true &&
tx != null &&
tx.vout != null &&
(
tx.vin == null ||
tx.vin.length === 0 ||
(
tx.vin.length === 1 &&
tx.vin[0].addresses === 'coinbase' &&
tx.vin[0].amount != 0
)
)
) {
// get a list of all the block reward addresses
extracted_by_addresses = tx.vout.map(v => v.addresses);
// add claim name data to the array
db.get_extracted_by_claim_names(extracted_by_addresses, function(updated_extracted_by_addresses) {
finalize_send_tx_data(res, tx, blockcount, orphan, updated_extracted_by_addresses);
});
} else
finalize_send_tx_data(res, tx, blockcount, orphan, extracted_by_addresses);
}
function finalize_send_tx_data(res, tx, blockcount, orphan, extracted_by_addresses) {
2023-09-29 15:57:51 -06:00
res.render(
'tx',
{
active: 'tx',
tx: tx,
orphan: orphan,
confirmations: settings.shared_pages.confirmations,
blockcount: blockcount,
extracted_by_addresses: extracted_by_addresses,
2023-09-29 15:57:51 -06:00
showSync: db.check_show_sync_message(),
customHash: get_custom_hash(),
styleHash: get_style_hash(),
themeHash: get_theme_hash(),
page_title_prefix: settings.coin.name + ' ' + 'Transaction ' + tx.txid
}
);
}
function send_address_data(res, address, claim_name) {
res.render(
'address',
{
active: 'address',
address: address,
claim_name: claim_name,
showSync: db.check_show_sync_message(),
customHash: get_custom_hash(),
styleHash: get_style_hash(),
themeHash: get_theme_hash(),
page_title_prefix: settings.coin.name + ' ' + 'Address ' + (claim_name == null || claim_name == '' ? address.a_id : claim_name)
}
);
}
function send_claimaddress_data(res, hash, claim_name) {
res.render(
'claim_address',
{
active: 'claim-address',
hash: hash,
claim_name: claim_name,
showSync: db.check_show_sync_message(),
customHash: get_custom_hash(),
styleHash: get_style_hash(),
themeHash: get_theme_hash(),
page_title_prefix: settings.coin.name + ' Claim Wallet Address' + (hash == null || hash == '' ? '' : ' ' + hash)
}
);
}
function get_file_timestamp(file_name) {
if (db.fs.existsSync(file_name))
return parseInt(db.fs.statSync(file_name).mtimeMs / 1000);
else
return null;
}
function get_last_updated_date(show_last_updated, last_updated_field, cb) {
// check if the last updated date is needed
if (show_last_updated == true) {
// lookup the stats record
db.get_stats(settings.coin.name, function (stats) {
// return the last updated date
return cb(stats[last_updated_field]);
});
} else {
return cb(null);
}
}
function get_block_data_from_wallet(block, res, orphan) {
var ntxs = [];
2025-02-02 19:10:17 -07:00
async.eachSeries(block.tx, function(block_tx, loop) {
lib.get_rawtransaction(block_tx, function(tx) {
2024-06-16 18:58:12 -06:00
if (tx && tx != `${settings.localization.ex_error}: ${settings.localization.check_console}`) {
2023-09-29 15:57:51 -06:00
lib.prepare_vin(tx, function(vin, tx_type_vin) {
2025-02-02 19:10:17 -07:00
lib.prepare_vout(tx.vout, block_tx, vin, ((!settings.blockchain_specific.zksnarks.enabled || typeof tx.vjoinsplit === 'undefined' || tx.vjoinsplit == null) ? [] : tx.vjoinsplit), function(vout, nvin, tx_type_vout) {
const total = lib.calculate_total(vout);
2023-09-29 15:57:51 -06:00
2025-02-02 19:10:17 -07:00
ntxs.push({
txid: block_tx,
vout: vout,
total: total.toFixed(8)
2023-09-29 15:57:51 -06:00
});
2025-02-02 19:10:17 -07:00
if (settings.block_page.show_extracted_by == true) {
// add the vin object to the tx data
ntxs[ntxs.length - 1].vin = (vin == null || vin.length == 0 ? [] : nvin);
}
2025-02-02 19:10:17 -07:00
loop();
2023-09-29 15:57:51 -06:00
});
});
} else
2025-02-02 19:10:17 -07:00
loop();
2023-09-29 15:57:51 -06:00
});
}, function() {
send_block_data(res, block, ntxs, 'Block ' + block.height, orphan);
});
}
function get_custom_hash() {
return get_file_timestamp('./public/css/custom.scss');
}
function get_style_hash() {
return get_file_timestamp('./public/css/style.scss');
}
function get_theme_hash() {
return get_file_timestamp('./public/css/themes/' + settings.shared_pages.theme.toLowerCase() + '/bootstrap.min.css');
}
/* GET functions */
2019-05-27 10:33:22 -07:00
function route_get_block(res, blockhash) {
lib.get_block(blockhash, function (block) {
2024-06-16 18:58:12 -06:00
if (block && block != `${settings.localization.ex_error}: ${settings.localization.check_console}`) {
2021-03-17 17:54:09 -06:00
if (blockhash == settings.block_page.genesis_block)
2023-09-29 15:57:51 -06:00
send_block_data(res, block, null, 'Genesis Block', null);
2023-05-06 12:36:35 -06:00
else if (block.confirmations == -1) {
// this is an orphaned block, so get the data from the wallet directly
get_block_data_from_wallet(block, res, true);
} else {
2019-05-27 10:33:22 -07:00
db.get_txs(block, function(txs) {
2021-03-17 17:54:09 -06:00
if (txs.length > 0)
2023-09-29 15:57:51 -06:00
send_block_data(res, block, txs, 'Block ' + block.height, null);
2021-03-17 17:54:09 -06:00
else {
2021-01-22 15:04:32 -07:00
// cannot find block in local database so get the data from the wallet directly
2023-05-06 12:36:35 -06:00
get_block_data_from_wallet(block, res, false);
2019-05-27 10:33:22 -07:00
}
});
}
} else {
if (!isNaN(blockhash)) {
var height = blockhash;
2021-03-17 17:54:09 -06:00
lib.get_blockhash(height, function(hash) {
2024-06-16 18:58:12 -06:00
if (hash && hash != `${settings.localization.ex_error}: ${settings.localization.check_console}`)
res.redirect('/block/' + hash);
2021-03-17 17:54:09 -06:00
else
2023-09-29 15:57:51 -06:00
route_get_txlist(res, 'Block not found: ' + blockhash);
});
2021-03-17 17:54:09 -06:00
} else
2023-09-29 15:57:51 -06:00
route_get_txlist(res, 'Block not found: ' + blockhash);
2019-05-27 10:33:22 -07:00
}
});
}
2021-03-17 17:54:09 -06:00
2019-05-27 10:33:22 -07:00
function route_get_tx(res, txid) {
2021-03-17 17:54:09 -06:00
if (txid == settings.transaction_page.genesis_tx)
2021-01-22 15:04:32 -07:00
route_get_block(res, settings.block_page.genesis_block);
2021-03-17 17:54:09 -06:00
else {
2019-05-27 10:33:22 -07:00
db.get_tx(txid, function(tx) {
if (tx) {
lib.get_blockcount(function(blockcount) {
2021-01-22 15:04:32 -07:00
if (settings.claim_address_page.enabled == true) {
2020-12-23 18:40:10 -07:00
db.populate_claim_address_names(tx, function(tx) {
2023-09-29 15:57:51 -06:00
send_tx_data(res, tx, (blockcount ? blockcount : 0), null);
2020-12-23 18:40:10 -07:00
});
2021-03-17 17:54:09 -06:00
} else
2023-09-29 15:57:51 -06:00
send_tx_data(res, tx, (blockcount ? blockcount : 0), null);
2019-05-27 10:33:22 -07:00
});
2020-12-23 18:40:10 -07:00
} else {
2019-05-27 10:33:22 -07:00
lib.get_rawtransaction(txid, function(rtx) {
if (rtx && rtx.txid) {
2021-03-20 01:34:13 -06:00
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) {
2025-02-02 19:10:17 -07:00
const total = lib.calculate_total(rvout);
if (!rtx.confirmations > 0) {
lib.get_block(rtx.blockhash, function(block) {
if (block && block != `${settings.localization.ex_error}: ${settings.localization.check_console}`) {
var utx = {
txid: rtx.txid,
vin: rvin,
vout: rvout,
total: total.toFixed(8),
timestamp: (rtx.time == null ? block.time : rtx.time),
blockhash: (rtx.blockhash == null ? '-' : rtx.blockhash),
blockindex: block.height
};
if (settings.claim_address_page.enabled == true) {
db.populate_claim_address_names(utx, function(utx) {
send_tx_data(res, utx, (block.height - 1), true);
});
} else
send_tx_data(res, utx, (block.height - 1), true);
} else {
// cannot load tx
route_get_txlist(res, null);
}
});
} else {
// check if blockheight exists
if (!rtx.blockheight && rtx.blockhash) {
// blockheight not found so look up the block
2023-05-06 12:36:35 -06:00
lib.get_block(rtx.blockhash, function(block) {
2024-06-16 18:58:12 -06:00
if (block && block != `${settings.localization.ex_error}: ${settings.localization.check_console}`) {
2025-02-02 19:10:17 -07:00
// create the tx object before rendering
2023-05-06 12:36:35 -06:00
var utx = {
txid: rtx.txid,
vin: rvin,
vout: rvout,
total: total.toFixed(8),
2025-02-02 19:10:17 -07:00
timestamp: rtx.time,
blockhash: rtx.blockhash,
2023-05-06 12:36:35 -06:00
blockindex: block.height
};
2025-02-02 19:10:17 -07:00
lib.get_blockcount(function(blockcount) {
if (settings.claim_address_page.enabled == true) {
db.populate_claim_address_names(utx, function(utx) {
send_tx_data(res, utx, (blockcount ? blockcount : 0), null);
});
} else
send_tx_data(res, utx, (blockcount ? blockcount : 0), null);
});
2023-05-06 12:36:35 -06:00
} else {
// cannot load tx
2023-09-29 15:57:51 -06:00
route_get_txlist(res, null);
2023-05-06 12:36:35 -06:00
}
});
2019-05-27 10:33:22 -07:00
} else {
2025-02-02 19:10:17 -07:00
// 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
};
2021-03-17 17:54:09 -06:00
2025-02-02 19:10:17 -07:00
lib.get_blockcount(function(blockcount) {
if (settings.claim_address_page.enabled == true) {
db.populate_claim_address_names(utx, function(utx) {
2023-09-29 15:57:51 -06:00
send_tx_data(res, utx, (blockcount ? blockcount : 0), null);
2025-02-02 19:10:17 -07:00
});
} else
send_tx_data(res, utx, (blockcount ? blockcount : 0), null);
});
2019-05-27 10:33:22 -07:00
}
2025-02-02 19:10:17 -07:00
}
2019-05-27 10:33:22 -07:00
});
});
2021-03-17 17:54:09 -06:00
} else
2023-09-29 15:57:51 -06:00
route_get_txlist(res, null);
2019-05-27 10:33:22 -07:00
});
}
});
}
}
2023-09-29 15:57:51 -06:00
function route_get_txlist(res, error) {
// lookup the last updated date if necessary
get_last_updated_date(settings.index_page.page_header.show_last_updated, 'blockchain_last_updated', function(last_updated_date) {
2022-05-15 21:28:11 -06:00
res.render(
'index',
{
active: 'home',
error: error,
2023-09-29 15:57:51 -06:00
last_updated: last_updated_date,
2022-05-15 21:28:11 -06:00
showSync: db.check_show_sync_message(),
2023-09-29 15:57:51 -06:00
customHash: get_custom_hash(),
styleHash: get_style_hash(),
themeHash: get_theme_hash(),
page_title_prefix: settings.coin.name + ' ' + 'Block Explorer'
2022-05-15 21:28:11 -06:00
}
);
2023-09-29 15:57:51 -06:00
});
2019-05-27 10:33:22 -07:00
}
2021-01-22 15:04:32 -07:00
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) {
2023-09-29 15:57:51 -06:00
if (address) {
if (settings.claim_address_page.enabled == true) {
// lookup claim_name for this address if exists
db.get_claim_name(hash, function(claim_name) {
send_address_data(res, address, claim_name);
});
} else
send_address_data(res, address, null);
} else
route_get_txlist(res, hash + ' not found');
});
} else
2023-09-29 15:57:51 -06:00
route_get_txlist(res, hash + ' not found');
2019-05-27 10:33:22 -07:00
}
2020-12-23 18:40:10 -07:00
function route_get_claim_form(res, hash) {
// check if claiming addresses is enabled
2021-01-22 15:04:32 -07:00
if (settings.claim_address_page.enabled == true) {
2020-12-26 22:01:36 -07:00
// check if a hash was passed in
if (hash == null || hash == '') {
// no hash so just load the claim page without an address
2023-09-29 15:57:51 -06:00
send_claimaddress_data(res, hash, '');
2020-12-26 22:01:36 -07:00
} else {
// lookup hash in the address collection
db.get_claim_name(hash, function(claim_name) {
2020-12-26 22:01:36 -07:00
// load the claim page regardless of whether the address exists or not
2023-09-29 15:57:51 -06:00
send_claimaddress_data(res, hash, (claim_name == null ? '' : claim_name));
2020-12-26 22:01:36 -07:00
});
}
} else
2021-01-22 15:04:32 -07:00
route_get_address(res, hash);
2020-11-22 14:39:10 -07:00
}
2019-05-27 10:33:22 -07:00
router.get('/', function(req, res) {
2023-09-29 15:57:51 -06:00
route_get_txlist(res, null);
2019-05-27 10:33:22 -07:00
});
router.get('/info', function(req, res) {
2024-06-16 18:58:12 -06:00
let pluginApisExt = [];
// ensure api page is enabled
2021-01-22 15:04:32 -07:00
if (settings.api_page.enabled == true) {
2024-06-16 18:58:12 -06:00
// loop through all plugins defined in the settings
settings.plugins.allowed_plugins.forEach(function (plugin) {
// check if this plugin is enabled
if (plugin.enabled) {
// check if this plugin has a public_apis section
if (plugin.public_apis != null) {
// check if there is an ext section
if (plugin.public_apis.ext != null) {
// loop through all ext apis for this plugin
Object.keys(plugin.public_apis.ext).forEach(function(key, index, map) {
// check if this api is enabled
if (plugin.public_apis.ext[key].enabled == true) {
// add this api into the list of ext apis for plugins
pluginApisExt.push(plugin.public_apis.ext[key]);
}
});
}
}
}
});
// load the api page
2022-05-15 21:28:11 -06:00
res.render(
'info',
{
active: 'info',
address: req.headers.host,
showSync: db.check_show_sync_message(),
2023-09-29 15:57:51 -06:00
customHash: get_custom_hash(),
styleHash: get_style_hash(),
themeHash: get_theme_hash(),
2024-06-16 18:58:12 -06:00
page_title_prefix: settings.coin.name + ' Public API',
pluginApisExt: pluginApisExt
2022-05-15 21:28:11 -06:00
}
);
} else {
2023-09-29 15:57:51 -06:00
// api page is not enabled so default to the tx list page
route_get_txlist(res, null);
}
2019-05-27 10:33:22 -07:00
});
2021-01-22 15:04:32 -07:00
router.get('/markets/:market/:coin_symbol/:pair_symbol', function(req, res) {
2020-12-31 15:19:48 -07:00
// ensure markets page is enabled
2021-01-22 15:04:32 -07:00
if (settings.markets_page.enabled == true) {
2020-12-31 15:19:48 -07:00
var market_id = req.params['market'];
2021-01-22 15:04:32 -07:00
var coin_symbol = req.params['coin_symbol'];
var pair_symbol = req.params['pair_symbol'];
2020-12-31 15:19:48 -07:00
2021-01-22 15:04:32 -07:00
// 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) {
2020-12-31 15:19:48 -07:00
// lookup market data
2021-01-22 15:04:32 -07:00
db.get_market(market_id, coin_symbol, pair_symbol, function(data) {
2020-12-31 15:19:48 -07:00
// load market data
var market_data = require('../lib/markets/' + market_id);
var isAlt = false;
2022-04-12 13:34:18 -06:00
var url = '';
// build the external exchange url link and determine if using the alt name + logo
2022-04-12 13:34:18 -06:00
if (market_data.market_url_template != null && market_data.market_url_template != '') {
switch ((market_data.market_url_case == null || market_data.market_url_case == '' ? 'l' : market_data.market_url_case.toLowerCase())) {
case 'l':
case 'lower':
url = market_data.market_url_template.replace('{base}', pair_symbol.toLowerCase()).replace('{coin}', coin_symbol.toLowerCase()).replace('{url_prefix}', (market_data.market_url != null ? market_data.market_url({coin: coin_symbol.toLowerCase(), exchange: pair_symbol.toLowerCase()}) : ''));
isAlt = (market_data.isAlt != null ? market_data.isAlt({coin: coin_symbol.toLowerCase(), exchange: pair_symbol.toLowerCase()}) : false);
2022-04-12 13:34:18 -06:00
break;
case 'u':
case 'upper':
url = market_data.market_url_template.replace('{base}', pair_symbol.toUpperCase()).replace('{coin}', coin_symbol.toUpperCase()).replace('{url_prefix}', (market_data.market_url != null ? market_data.market_url({coin: coin_symbol.toUpperCase(), exchange: pair_symbol.toUpperCase()}) : ''));
isAlt = (market_data.isAlt != null ? market_data.isAlt({coin: coin_symbol.toUpperCase(), exchange: pair_symbol.toUpperCase()}) : false);
2022-04-12 13:34:18 -06:00
break;
default:
}
}
var market_name = (isAlt ? (market_data.market_name_alt == null ? '' : market_data.market_name_alt) : (market_data.market_name == null ? '' : market_data.market_name));
var market_logo = (isAlt ? (market_data.market_logo_alt == null ? '' : market_data.market_logo_alt) : (market_data.market_logo == null ? '' : market_data.market_logo));
2023-09-29 15:57:51 -06:00
var marketdata = {
market_name: market_name,
market_logo: market_logo,
coin: coin_symbol,
exchange: pair_symbol,
data: data,
url: url
};
// lookup the last updated date if necessary
get_last_updated_date(settings.markets_page.page_header.show_last_updated, 'markets_last_updated', function(last_updated_date) {
2022-05-15 21:28:11 -06:00
res.render(
'./market',
{
2020-12-31 15:19:48 -07:00
active: 'markets',
2023-09-29 15:57:51 -06:00
marketdata: marketdata,
2020-12-31 15:19:48 -07:00
market: market_id,
2023-09-29 15:57:51 -06:00
last_updated: last_updated_date,
2022-03-12 21:40:19 -07:00
showSync: db.check_show_sync_message(),
2023-09-29 15:57:51 -06:00
customHash: get_custom_hash(),
styleHash: get_style_hash(),
themeHash: get_theme_hash(),
2024-06-16 18:58:12 -06:00
page_title_prefix: settings.localization.mkt_title.replace('{1}', marketdata.market_name + ' (' + marketdata.coin + '/' + marketdata.exchange + ')')
2022-05-15 21:28:11 -06:00
}
);
2023-09-29 15:57:51 -06:00
});
2019-05-27 10:33:22 -07:00
});
2020-12-31 15:19:48 -07:00
} else {
2023-09-29 15:57:51 -06:00
// selected market does not exist or is not enabled so default to the tx list page
route_get_txlist(res, null);
2020-12-31 15:19:48 -07:00
}
2019-05-27 10:33:22 -07:00
} else {
2023-09-29 15:57:51 -06:00
// markets page is not enabled so default to the tx list page
route_get_txlist(res, null);
2019-05-27 10:33:22 -07:00
}
});
router.get('/richlist', function(req, res) {
2020-12-31 15:19:48 -07:00
// ensure richlist page is enabled
2021-01-22 15:04:32 -07:00
if (settings.richlist_page.enabled == true) {
db.get_stats(settings.coin.name, function (stats) {
db.get_richlist(settings.coin.name, function(richlist) {
2019-05-27 10:33:22 -07:00
if (richlist) {
db.get_distribution(richlist, stats, function(distribution) {
2022-05-15 21:28:11 -06:00
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(),
2023-09-29 15:57:51 -06:00
customHash: get_custom_hash(),
styleHash: get_style_hash(),
themeHash: get_theme_hash(),
2022-05-15 21:28:11 -06:00
page_title_prefix: 'Top ' + settings.coin.name + ' Coin Holders'
}
);
2019-05-27 10:33:22 -07:00
});
} else {
2023-09-29 15:57:51 -06:00
// richlist data not found so default to the tx list page
route_get_txlist(res, null);
2019-05-27 10:33:22 -07:00
}
});
});
} else {
2023-09-29 15:57:51 -06:00
// richlist page is not enabled so default to the tx list page
route_get_txlist(res, null);
2019-05-27 10:33:22 -07:00
}
});
router.get('/movement', function(req, res) {
2020-12-31 15:19:48 -07:00
// ensure movement page is enabled
2021-01-22 15:04:32 -07:00
if (settings.movement_page.enabled == true) {
2023-09-29 15:57:51 -06:00
// lookup the last updated date if necessary
get_last_updated_date(settings.movement_page.page_header.show_last_updated, 'blockchain_last_updated', function(last_updated_date) {
2022-05-15 21:28:11 -06:00
res.render(
'movement',
{
active: 'movement',
2023-09-29 15:57:51 -06:00
last_updated: last_updated_date,
2022-05-15 21:28:11 -06:00
showSync: db.check_show_sync_message(),
2023-09-29 15:57:51 -06:00
customHash: get_custom_hash(),
styleHash: get_style_hash(),
themeHash: get_theme_hash(),
page_title_prefix: settings.coin.name + ' ' + 'Coin Movements'
2022-05-15 21:28:11 -06:00
}
);
2023-09-29 15:57:51 -06:00
});
2020-12-31 15:19:48 -07:00
} else {
2023-09-29 15:57:51 -06:00
// movement page is not enabled so default to the tx list page
route_get_txlist(res, null);
2020-12-31 15:19:48 -07:00
}
2019-05-27 10:33:22 -07:00
});
router.get('/network', function(req, res) {
2020-12-31 15:19:48 -07:00
// ensure network page is enabled
2021-01-22 15:04:32 -07:00
if (settings.network_page.enabled == true) {
2023-09-29 15:57:51 -06:00
// lookup the last updated date if necessary
get_last_updated_date(settings.network_page.page_header.show_last_updated, 'network_last_updated', function(last_updated_date) {
2022-05-15 21:28:11 -06:00
res.render(
'network',
{
active: 'network',
2023-09-29 15:57:51 -06:00
last_updated: last_updated_date,
2022-05-15 21:28:11 -06:00
showSync: db.check_show_sync_message(),
2023-09-29 15:57:51 -06:00
customHash: get_custom_hash(),
styleHash: get_style_hash(),
themeHash: get_theme_hash(),
page_title_prefix: settings.coin.name + ' ' + 'Network Peers'
2022-05-15 21:28:11 -06:00
}
);
2023-09-29 15:57:51 -06:00
});
2020-12-31 15:19:48 -07:00
} else {
2023-09-29 15:57:51 -06:00
// network page is not enabled so default to the tx list page
route_get_txlist(res, null);
2020-12-31 15:19:48 -07:00
}
2019-05-27 10:33:22 -07:00
});
2020-12-30 18:22:02 -07:00
// masternode list page
router.get('/masternodes', function(req, res) {
// ensure masternode page is enabled
2021-01-22 15:04:32 -07:00
if (settings.masternodes_page.enabled == true) {
2023-09-29 15:57:51 -06:00
// lookup the last updated date if necessary
get_last_updated_date(settings.masternodes_page.page_header.show_last_updated, 'masternodes_last_updated', function(last_updated_date) {
2022-05-15 21:28:11 -06:00
res.render(
'masternodes',
{
active: 'masternodes',
2023-09-29 15:57:51 -06:00
last_updated: last_updated_date,
2022-05-15 21:28:11 -06:00
showSync: db.check_show_sync_message(),
2023-09-29 15:57:51 -06:00
customHash: get_custom_hash(),
styleHash: get_style_hash(),
themeHash: get_theme_hash(),
page_title_prefix: settings.coin.name + ' ' + 'Masternodes'
2022-05-15 21:28:11 -06:00
}
);
2023-09-29 15:57:51 -06:00
});
2020-12-30 18:22:02 -07:00
} else {
2023-09-29 15:57:51 -06:00
// masternode page is not enabled so default to the tx list page
route_get_txlist(res, null);
2020-12-30 18:22:02 -07:00
}
});
router.get('/reward', function(req, res) {
2020-12-31 15:19:48 -07:00
// ensure reward page is enabled
2021-01-22 15:04:32 -07:00
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)
2021-01-22 15:04:32 -07:00
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;
2020-12-31 15:19:48 -07:00
votes.sort(function (a, b) {
if (a.count < b.count)
return -1;
2020-12-31 15:19:48 -07:00
else if (a.count > b.count)
return 1;
2020-12-31 15:19:48 -07:00
else
return 0;
});
2022-05-15 21:28:11 -06:00
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(),
2023-09-29 15:57:51 -06:00
customHash: get_custom_hash(),
styleHash: get_style_hash(),
themeHash: get_theme_hash(),
2022-05-15 21:28:11 -06:00
page_title_prefix: settings.coin.name + ' Reward/Voting Details'
}
);
});
});
} else {
2023-09-29 15:57:51 -06:00
// reward page is not enabled so default to the tx list page
route_get_txlist(res, null);
}
2019-05-27 10:33:22 -07:00
});
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);
});
2020-12-26 22:01:36 -07:00
router.get('/claim', function(req, res) {
route_get_claim_form(res, '');
});
router.get('/claim/:hash', function(req, res) {
2020-11-22 14:39:10 -07:00
route_get_claim_form(res, req.params.hash);
});
2019-05-27 10:33:22 -07:00
router.get('/address/:hash', function(req, res) {
2021-01-22 15:04:32 -07:00
route_get_address(res, req.params.hash);
2019-05-27 10:33:22 -07:00
});
2023-05-06 12:36:35 -06:00
router.get('/orphans', function(req, res) {
// ensure orphans page is enabled
if (settings.orphans_page.enabled == true) {
// lookup the last updated date if necessary
get_last_updated_date(settings.orphans_page.page_header.show_last_updated, 'blockchain_last_updated', function(last_updated_date) {
res.render(
'orphans',
{
active: 'orphans',
last_updated: last_updated_date,
showSync: db.check_show_sync_message(),
2023-09-29 15:57:51 -06:00
customHash: get_custom_hash(),
styleHash: get_style_hash(),
themeHash: get_theme_hash(),
2024-06-16 18:58:12 -06:00
page_title_prefix: settings.localization.orphan_title.replace('{1}', settings.coin.name)
2023-05-06 12:36:35 -06:00
}
);
});
} else {
2023-09-29 15:57:51 -06:00
// orphans page is not enabled so default to the tx list page
route_get_txlist(res, null);
2023-05-06 12:36:35 -06:00
}
});
2019-05-27 10:33:22 -07:00
router.post('/search', function(req, res) {
2021-04-05 12:24:48 -06:00
if (settings.shared_pages.page_header.search.enabled == true) {
2021-01-22 15:04:32 -07:00
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) {
2024-06-16 18:58:12 -06:00
if (block && block != `${settings.localization.ex_error}: ${settings.localization.check_console}`)
2021-01-22 15:04:32 -07:00
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 {
2023-09-29 15:57:51 -06:00
// search found nothing so display the tx list page with an error msg
2024-06-16 18:58:12 -06:00
route_get_txlist(res, settings.localization.ex_search_error + query );
2021-01-22 15:04:32 -07:00
}
});
}
});
}
});
}
2019-05-27 10:33:22 -07:00
} else {
2021-01-22 15:04:32 -07:00
db.get_address(query, false, function(address) {
if (address)
res.redirect('/address/' + address.a_id);
else {
lib.get_blockhash(query, function(hash) {
2024-06-16 18:58:12 -06:00
if (hash && hash != `${settings.localization.ex_error}: ${settings.localization.check_console}`)
2021-01-22 15:04:32 -07:00
res.redirect('/block/' + hash);
else
2024-06-16 18:58:12 -06:00
route_get_txlist(res, settings.localization.ex_search_error + query);
2019-05-27 10:33:22 -07:00
});
}
});
}
} else {
2023-09-29 15:57:51 -06:00
// Search is disabled so load the tx list page with an error msg
route_get_txlist(res, 'Search is disabled');
2019-05-27 10:33:22 -07:00
}
});
router.get('/qr/:string', function(req, res) {
if (req.params.string) {
2023-09-29 15:57:51 -06:00
const qr = require('qr-image');
2019-05-27 10:33:22 -07:00
var address = qr.image(req.params.string, {
type: 'png',
size: 4,
margin: 1,
ec_level: 'M'
});
2021-03-17 17:54:09 -06:00
2019-05-27 10:33:22 -07:00
res.type('png');
address.pipe(res);
}
});
module.exports = router;