mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-24 12:20:32 +00:00
158 lines
No EOL
5.2 KiB
PHP
158 lines
No EOL
5.2 KiB
PHP
<?php
|
|
|
|
echo <<<end
|
|
<div align="right" style="margin-top: -14px; margin-bottom: 6px;">
|
|
<input class="search" type="search" data-column="all" style="width: 140px;" placeholder="Search..." />
|
|
</div>
|
|
<style type="text/css">
|
|
tr.ssrow.filtered { display: none; }
|
|
.actions { width: 120px; text-align: right; }
|
|
table.dataGrid a.red { color: darkred; }
|
|
table.totals { margin-top: 8px; margin-left: 16px; display: inline-block; }
|
|
table.totals th { text-align: left; width: 100px; }
|
|
table.totals td { text-align: right; }
|
|
table.totals tr.red td { color: darkred; }
|
|
.page .footer { width: auto; }
|
|
</style>
|
|
end;
|
|
|
|
$coin_id = getiparam('id');
|
|
|
|
$saveSort = $coin_id ? 'false' : 'true';
|
|
|
|
showTableSorter('maintable', "{
|
|
tableClass: 'dataGrid',
|
|
widgets: ['zebra','filter','Storage','saveSort'],
|
|
textExtraction: {
|
|
6: function(node, table, n) { return $(node).attr('data'); },
|
|
7: function(node, table, n) { return $(node).attr('data'); }
|
|
},
|
|
widgetOptions: {
|
|
saveSort: {$saveSort},
|
|
filter_saveFilters: {$saveSort},
|
|
filter_external: '.search',
|
|
filter_columnFilters: false,
|
|
filter_childRows : true,
|
|
filter_ignoreCase: true
|
|
}
|
|
}");
|
|
|
|
echo <<<end
|
|
<thead>
|
|
<tr>
|
|
<th data-sorter="" width="20"></th>
|
|
<th data-sorter="text">Coin</th>
|
|
<th data-sorter="text">Address</th>
|
|
<th data-sorter="currency">Quantity</th>
|
|
<th data-sorter="currency">BTC</th>
|
|
<th data-sorter="numeric">Block</th>
|
|
<th data-sorter="">Status</th>
|
|
<th data-sorter="numeric">Sent</th>
|
|
<th data-sorter="" class="actions">Actions</th>
|
|
</tr>
|
|
</thead><tbody>
|
|
end;
|
|
|
|
$coin_id = getiparam('id');
|
|
$sqlFilter = $coin_id ? "AND coinid={$coin_id}": '';
|
|
$limit = $coin_id ? '' : 'LIMIT 1500';
|
|
|
|
$earnings = getdbolist('db_earnings', "status!=2 $sqlFilter ORDER BY create_time DESC $limit");
|
|
|
|
$total = 0.; $total_btc = 0.; $totalimmat = 0.; $totalfees = 0.; $totalstake = 0.;
|
|
|
|
foreach($earnings as $earning)
|
|
{
|
|
// if(!$earning) debuglog($earning);
|
|
$coin = getdbo('db_coins', $earning->coinid);
|
|
if(!$coin) continue;
|
|
|
|
$user = getdbo('db_accounts', $earning->userid);
|
|
if(!$user) continue;
|
|
|
|
$block = getdbo('db_blocks', $earning->blockid);
|
|
if(!$block) continue;
|
|
|
|
$t1 = datetoa2($earning->create_time). ' ago';
|
|
$t2 = datetoa2($earning->mature_time);
|
|
if ($t2) $t2 = '+'.$t2;
|
|
|
|
$coinimg = CHtml::image($coin->image, $coin->symbol, array('width'=>'16'));
|
|
$coinlink = CHtml::link($coin->name, '/site/coin?id='.$coin->id);
|
|
|
|
echo '<tr class="ssrow">';
|
|
echo "<td>$coinimg</td>";
|
|
echo "<td><b>$coinlink</b> ($coin->symbol_show)</td>";
|
|
echo '<td><b><a href="/?address='.$user->username.'">'.$user->username.'</a></b></td>';
|
|
echo '<td>'.bitcoinvaluetoa($earning->amount).'</td>';
|
|
echo '<td>'.bitcoinvaluetoa($earning->amount * $earning->price).'</td>';
|
|
echo '<td>'.$block->height.'</td>';
|
|
echo '<td data="'.$block->height.'">'."$block->category ($block->confirmations)</td>";
|
|
echo '<td data="'.$earning->create_time.'">'."$t1 $t2</td>";
|
|
|
|
echo '<td class="actions">';
|
|
echo '<a href="/site/clearearning?id='.$earning->id.'">clear</a> ';
|
|
echo '<a class="red" href="/site/deleteearning?id='.$earning->id.'">delete</a>';
|
|
echo '</td>';
|
|
|
|
// echo "<td style='font-size: .7em'>$earning->tx</td>";
|
|
echo "</tr>";
|
|
|
|
// if($block->category == 'generate' && $earning->status == 0)
|
|
// {
|
|
// $earning->status = 1;
|
|
// $earning->mature_time = time()-100*60;
|
|
// $earning->save();
|
|
// }
|
|
|
|
if($block->category == 'immature') {
|
|
$total += (double) $earning->amount;
|
|
$total_btc += (double) $earning->amount * $earning->price;
|
|
$totalimmat += (double) $earning->amount;
|
|
}
|
|
if($block->category == 'generate') {
|
|
$total += (double) $earning->amount; // "Exchange" state
|
|
$total_btc += (double) $earning->amount * $earning->price;
|
|
}
|
|
else if($block->category == 'stake' || $block->category == 'generated') {
|
|
$totalstake += (double) $earning->amount;
|
|
}
|
|
}
|
|
|
|
echo '</tbody><tfoot>';
|
|
echo '<tr><th colspan="9">';
|
|
echo count($earnings).' records';
|
|
if (count($earnings) >= 1000) echo " ($limit)";
|
|
echo '</th></tr>';
|
|
echo '</tfoot></table>';
|
|
|
|
if ($coin_id) {
|
|
$coin = getdbo('db_coins', $coin_id);
|
|
if (!$coin) exit;
|
|
$symbol = $coin->symbol;
|
|
$feepct = yaamp_fee($coin->algo);
|
|
$totalfees = ($total / ((100 - $feepct) / 100.)) - $total;
|
|
|
|
$cleared = dboscalar("SELECT SUM(balance) FROM accounts WHERE coinid={$coin->id}");
|
|
|
|
echo '<div class="totals" align="right">';
|
|
|
|
echo '<table class="totals">';
|
|
echo '<tr><th>Immature</th><td>'.bitcoinvaluetoa($totalimmat)." $symbol</td></tr>";
|
|
echo '<tr><th>Total owed</th><td>'.bitcoinvaluetoa($total)." $symbol</td></tr>";
|
|
//echo '<tr><th>Total BTC</th><td>'.bitcoinvaluetoa($total_btc)." BTC</td></tr>";
|
|
echo '<tr><th>Pool Fees '.round($feepct,1).'%</th><td>'.bitcoinvaluetoa($totalfees)." $symbol</td></tr>";
|
|
if ($coin->rpcencoding == 'POS')
|
|
echo '<tr><th>Stake</th><td>'.bitcoinvaluetoa($totalstake)." $symbol</td></tr>";
|
|
echo '</tr></table>';
|
|
|
|
echo '<table class="totals">';
|
|
echo '<tr><th>Balance</th><td>'.bitcoinvaluetoa($coin->balance)." $symbol</td></tr>";
|
|
echo '<tr><th>Cleared</th><td>'.bitcoinvaluetoa($cleared)." $symbol</td></tr>";
|
|
$exchange = $total - $totalimmat;
|
|
echo '<tr><th title="Available = (Balance - Cleared - in exchange)">Available</th>';
|
|
echo '<td>'.bitcoinvaluetoa($coin->balance - $exchange - $cleared)." $symbol</td></tr>";
|
|
echo '</tr></table>';
|
|
|
|
echo '</div>';
|
|
} |