pool/web/yaamp/modules/site/worker_results.php
2016-05-18 22:52:14 +02:00

139 lines
3.9 KiB
PHP

<?php
if (isset($_GET['algo']))
user()->setState('yaamp-algo', $_GET['algo']);
$algo = user()->getState('yaamp-algo');
JavascriptFile("/yaamp/ui/js/jquery.metadata.js");
JavascriptFile("/yaamp/ui/js/jquery.tablesorter.widgets.js");
echo <<<end
<div align="right" style="margin-top: -20px; 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; }
</style>
end;
showTableSorter('maintable', "{
tableClass: 'dataGrid',
textExtraction: {
6: function(node, table, n) { return $(node).attr('data'); }
},
widgets: ['zebra','filter','Storage','saveSort'],
widgetOptions: {
saveSort: true,
filter_saveFilters: false,
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="text">Pass</th>
<th data-sorter="text">Client</th>
<th data-sorter="text">Version</th>
<th data-sorter="numeric">Hashrate</th>
<th data-sorter="numeric">Diff</th>
<th data-sorter="numeric">Shares</th>
<th data-sorter="numeric">Bad</th>
<th data-sorter="numeric">%</th>
<th data-sorter="numeric">Found</th>
<th data-sorter="text" width="30">Name</th>
<th data-sorter="text"></th>
</tr>
</thead><tbody>
end;
$workers = getdbolist('db_workers', "algo=:algo order by name", array(':algo'=>$algo));
$total_rate = 0.0;
foreach($workers as $worker)
{
$total_rate += yaamp_worker_rate($worker->id);
}
foreach($workers as $worker)
{
$user_rate = yaamp_worker_rate($worker->id);
$percent = 0.0;
if ($total_rate) $percent = (100.0 * $user_rate) / $total_rate;
$user_bad = yaamp_worker_rate_bad($worker->id);
$pct_bad = ($user_rate+$user_bad)? round($user_bad*100/($user_rate+$user_bad), 3): 0;
$user_rate_h = $user_rate ? Itoa2($user_rate).'H' : '-';
$name = $worker->worker;
$user = $coin = NULL;
$coinimg = ''; $coinlink = ''; $coinsym = ''; $shares= '';
if ($worker->userid) {
$user = getdbo('db_accounts', $worker->userid);
if ($user) {
$coin = getdbo('db_coins', $user->coinid);
$coinsym = $coin->symbol;
$coinimg = CHtml::image($coin->image, $coin->symbol, array('width'=>'16'));
$coinlink = CHtml::link($coin->name, '/site/coin?id='.$coin->id);
}
$name = empty($name) ? $user->login : $name;
$gift = $user->donation;
}
$dns = !empty($worker->dns)? $worker->dns: $worker->ip;
if(strlen($worker->dns) > 40)
$dns = '...'.substr($worker->dns, strlen($worker->dns) - 40);
echo "<tr class='ssrow'>";
echo '<td width="20">'.$coinimg.'</td>';
echo '<td><b>'.$coinlink.'</b>'.($coinsym ? '&nbsp;('.$coinsym.')':'-').'</td>';
echo "<td><a href='/?address=$worker->name'><b>$worker->name</b></a></td>";
echo "<td>$worker->password</td>";
echo "<td title='$worker->ip'>$dns</td>";
echo "<td>$worker->version</td>";
echo "<td data=\"$user_rate\">$user_rate_h</td>";
echo "<td>$worker->difficulty</td>";
$shares = dboscalar("SELECT COUNT(id) as shares FROM shares WHERE workerid=:worker AND algo=:algo", array(
':worker'=> $worker->id,
':algo'=> $algo
));
echo "<td>$shares</td>";
echo "<td>";
if ($user_bad > 0) {
if ($pct_bad > 50)
echo "<b> {$pct_bad}%</b>";
else
echo " {$pct_bad}%";
}
echo "</td>";
$worker_blocs = dboscalar("SELECT COUNT(id) as blocs FROM blocks WHERE workerid=:worker AND algo=:algo", array(
':worker'=> $worker->id,
':algo'=> $algo
));
$user_blocs = dboscalar("SELECT COUNT(id) as blocs FROM blocks WHERE userid=:user AND algo=:algo
AND time > (SELECT min(time) FROM workers WHERE algo=:algo)", array(
':user'=> $worker->userid,
':algo'=> $algo
));
echo '<td>'.number_format($percent,1,'.','').'%</td>';
echo '<td>'.$worker_blocs.' / '.$user_blocs.'</td>';
echo '<td>'.$name.'</td>';
echo '<td>'.(isset($gift) && $gift ? "$gift&nbsp;%" : '').'</td>';
echo '</tr>';
}
echo "</tbody></table>";