pool/web/yaamp/modules/explorer/ExplorerController.php
Tanguy Pruvot 0bf982da95 sql: add hasgetinfo and no_explorer fields to coins table
wallets without getinfo will be handled in a later commit...

ps: remember to restart memcached service after the db change..
2018-02-02 06:03:07 +01:00

161 lines
3.9 KiB
PHP

<?php
require_once("util.php");
class ExplorerController extends CommonController
{
public $defaultAction='index';
/////////////////////////////////////////////////
public function run($actionID)
{
// Forward the url /explorer/BTC to the BTC block explorer
if (!empty($actionID)) {
if (is_numeric($actionID) && isset($_REQUEST['id'])) {
$this->forward('id');
}
elseif (strlen($actionID) <= 6 && !isset($_REQUEST['id'])) {
$coin = getdbosql('db_coins', "symbol=:symbol", array(
':symbol'=>strtoupper($actionID)
));
if ($coin && ($coin->visible || $this->admin)) {
if (!empty($_POST)) {
$_GET['SYM'] = $coin->symbol;
$this->forward('search');
}
$_REQUEST['id'] = $coin->id;
$this->forward('id');
}
}
}
return parent::run($actionID);
}
/////////////////////////////////////////////////
// Hide coin id from explorer links... created by createUrl()
public function createUrl($route,$params=array(),$ampersand='&')
{
if ($route == '/explorer' && isset($params['id'])) {
$coin = getdbo('db_coins', intval($params['id']));
if ($coin && $coin->visible && !is_numeric($coin->symbol)) {
unset($params['id']);
$route = '/explorer/'.$coin->symbol.'?'.http_build_query($params,'',$ampersand);
$params = array();
}
}
return parent::createUrl($route, $params, $ampersand);
}
/////////////////////////////////////////////////
public function actionIndex()
{
if(isset($_COOKIE['mainbtc'])) return;
if(!LimitRequest('explorer')) return;
$id = getiparam('id');
$coin = getdbo('db_coins', $id);
if($coin && $coin->no_explorer) {
$link = $coin->link_explorer;
//$txid = getparam('txid');
//$hash = getparam('hash');
//if (!empty($txid)) $link .= 'tx/'.$txid;
//elseif (!empty($hash)) $link .= 'block/'.$hash;
die("Block explorer disabled, please use <a href=\"$link\">$link</a>");
}
$height = getiparam('height');
if($coin && intval($height)>0)
{
$remote = new WalletRPC($coin);
$hash = $remote->getblockhash(intval($height));
} else {
$hash = getparam('hash');
}
$txid = getparam('txid');
$q = getparam('q');
if (strlen($q) >= 32 && ctype_xdigit($q)) {
$remote = new WalletRPC($coin);
$block = $remote->getblock($q);
if ($block) {
$hash = $q;
$height = objSafeVal($hash, 'height');
} else {
$txid = $q;
}
}
if($coin && !empty($txid) && ctype_xdigit($txid))
{
$remote = new WalletRPC($coin);
$tx = $remote->getrawtransaction($txid, 1);
if (!$tx) $tx = $remote->gettransaction($txid);
$hash = arraySafeVal($tx,'blockhash');
}
if($coin && !empty($hash) && ctype_xdigit($hash))
$this->render('block', array('coin'=>$coin, 'hash'=>$hash));
else if($coin)
$this->render('coin', array('coin'=>$coin));
else
$this->render('index');
}
// alias...
public function actionId()
{
return $this->actionIndex();
}
// redirect POST request with url cleanup...
public function actionSearch()
{
$height = getiparam('height');
$txid = arraySafeVal($_REQUEST,'txid');
$hash = arraySafeVal($_REQUEST,'hash');
$q = arraySafeVal($_REQUEST,'q');
if (isset($_GET['SYM'])) {
// only for visible coins
$url = "/explorer/".$_GET['SYM']."?";
} else if (isset($_GET['id'])) {
// only for hidden coins
$url = "/explorer/".$_GET['id']."?";
}
if (!empty($height)) $url .= "&height=$height";
if (!empty($txid)) $url .= "&txid=$txid";
if (!empty($hash)) $url .= "&hash=$hash";
if (!empty($q)) $url .= "&q=$q";
return $this->redirect(str_replace('?&', '?', $url));
}
/**
* Difficulty Graph
*/
public function actionGraph()
{
$id = getiparam('id');
$coin = getdbo('db_coins', $id);
if ($coin)
$this->renderPartial('graph', array('coin'=>$coin));
else
echo "[]";
}
/**
* Public nodes
*/
public function actionPeers()
{
$id = getiparam('id');
$coin = getdbo('db_coins', $id);
if ($coin)
$this->renderPartial('peers', array('coin'=>$coin));
}
}