|
|
|
@ -1,62 +1,47 @@
|
|
|
|
|
<?php |
|
|
|
|
# |
|
|
|
|
function doworker($data, $user) |
|
|
|
|
function worktitle($data, $user) |
|
|
|
|
{ |
|
|
|
|
$pg = '<tr class=title>'; |
|
|
|
|
$pg .= '<td class=dl>Worker Name</td>'; |
|
|
|
|
$pg .= '<td class=dr>Work Diff</td>'; |
|
|
|
|
$pg .= '<td class=dr>Last Share</td>'; |
|
|
|
|
$pg .= '<td class=dr>Shares</td>'; |
|
|
|
|
$pg .= '<td class=dr>Diff</td>'; |
|
|
|
|
$pg .= '<td class=dr>Invalid</td>'; |
|
|
|
|
$pg .= '<td class=dr>Hash Rate</td>'; |
|
|
|
|
$pg .= "</tr>\n"; |
|
|
|
|
return $pg; |
|
|
|
|
} |
|
|
|
|
# |
|
|
|
|
function workuser($data, $user, &$offset, &$totshare, &$totdiff, |
|
|
|
|
&$totinvalid, &$totrate, $old = false) |
|
|
|
|
{ |
|
|
|
|
$pg = '<h1>Workers</h1>'; |
|
|
|
|
|
|
|
|
|
$ans = getWorkers($user); |
|
|
|
|
|
|
|
|
|
$pg .= "<table callpadding=0 cellspacing=0 border=0>\n"; |
|
|
|
|
$pg .= "<tr class=title>"; |
|
|
|
|
$pg .= "<td class=dl>Worker Name</td>"; |
|
|
|
|
// $pg .= "<td class=dr>Difficulty</td>"; |
|
|
|
|
// $pg .= "<td class=dc>Idle Notifications</td>"; |
|
|
|
|
// $pg .= "<td class=dr>Idle Notification Time</td>"; |
|
|
|
|
$pg .= "<td class=dr>Work Diff</td>"; |
|
|
|
|
$pg .= "<td class=dr>Last Share</td>"; |
|
|
|
|
$pg .= "<td class=dr>Shares</td>"; |
|
|
|
|
$pg .= "<td class=dr>Diff</td>"; |
|
|
|
|
$pg .= "<td class=dr>Invalid</td>"; |
|
|
|
|
$pg .= "<td class=dr>Hash Rate</td>"; |
|
|
|
|
$pg .= "</tr>\n"; |
|
|
|
|
$tsh = 0; |
|
|
|
|
$tdif = 0; |
|
|
|
|
$tinv = 0; |
|
|
|
|
$thr = 0; |
|
|
|
|
$i = 0; |
|
|
|
|
$pg = ''; |
|
|
|
|
if ($ans['STATUS'] == 'ok') |
|
|
|
|
{ |
|
|
|
|
$count = $ans['rows']; |
|
|
|
|
for ($i = 0; $i < $count; $i++) |
|
|
|
|
{ |
|
|
|
|
if (($i % 2) == 0) |
|
|
|
|
$lst = $ans['STAMP'] - $ans['w_lastshare:'.$i]; |
|
|
|
|
if ($old !== false && $lst > $old) |
|
|
|
|
continue; |
|
|
|
|
|
|
|
|
|
if ((($offset) % 2) == 0) |
|
|
|
|
$row = 'even'; |
|
|
|
|
else |
|
|
|
|
$row = 'odd'; |
|
|
|
|
|
|
|
|
|
$pg .= "<tr class=$row>"; |
|
|
|
|
$pg .= '<td class=dl>'.$ans['workername:'.$i].'</td>'; |
|
|
|
|
/* |
|
|
|
|
$pg .= '<td class=dr>'.$ans['difficultydefault:'.$i].'</td>'; |
|
|
|
|
$nots = $ans['idlenotificationenabled:'.$i]; |
|
|
|
|
switch ($nots) |
|
|
|
|
{ |
|
|
|
|
case 'Y': |
|
|
|
|
case 'y': |
|
|
|
|
$nots = 'Y'; |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
|
$nots = 'N'; |
|
|
|
|
} |
|
|
|
|
$pg .= '<td class=dc>'.$nots.'</td>'; |
|
|
|
|
$pg .= '<td class=dr>'.$ans['idlenotificationtime:'.$i].'</td>'; |
|
|
|
|
*/ |
|
|
|
|
if ($ans['w_lastdiff:'.$i] > 0) |
|
|
|
|
$ld = difffmt($ans['w_lastdiff:'.$i]); |
|
|
|
|
else |
|
|
|
|
$ld = ' '; |
|
|
|
|
$pg .= "<td class=dr>$ld</td>"; |
|
|
|
|
$lst = $ans['STAMP'] - $ans['w_lastshare:'.$i]; |
|
|
|
|
|
|
|
|
|
if ($lst < 60) |
|
|
|
|
$lstdes = $lst.'s'; |
|
|
|
|
else |
|
|
|
@ -90,9 +75,9 @@ function doworker($data, $user)
|
|
|
|
|
$pg .= "<td class=dr>$lstdes</td>"; |
|
|
|
|
|
|
|
|
|
$shareacc = number_format($ans['w_shareacc:'.$i], 0); |
|
|
|
|
$tsh += $ans['w_shareacc:'.$i]; |
|
|
|
|
$totshare += $ans['w_shareacc:'.$i]; |
|
|
|
|
$diffacc = number_format($ans['w_diffacc:'.$i], 0); |
|
|
|
|
$tdif += $ans['w_diffacc:'.$i]; |
|
|
|
|
$totdiff += $ans['w_diffacc:'.$i]; |
|
|
|
|
$pg .= "<td class=dr>$shareacc</td>"; |
|
|
|
|
$pg .= "<td class=dr>$diffacc</td>"; |
|
|
|
|
|
|
|
|
@ -101,7 +86,7 @@ function doworker($data, $user)
|
|
|
|
|
$rej = number_format(100.0 * $ans['w_diffinv:'.$i] / $dtot, 3); |
|
|
|
|
else |
|
|
|
|
$rej = '0'; |
|
|
|
|
$tinv += $ans['w_diffinv:'.$i]; |
|
|
|
|
$totinvalid += $ans['w_diffinv:'.$i]; |
|
|
|
|
|
|
|
|
|
$pg .= "<td class=dr>$rej%</td>"; |
|
|
|
|
|
|
|
|
@ -113,7 +98,7 @@ function doworker($data, $user)
|
|
|
|
|
$uhr = '?GHs'; |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
$thr += $uhr; |
|
|
|
|
$totrate += $uhr; |
|
|
|
|
$uhr /= 10000000; |
|
|
|
|
if ($uhr < 0.01) |
|
|
|
|
$uhr = '0GHs'; |
|
|
|
@ -128,34 +113,62 @@ function doworker($data, $user)
|
|
|
|
|
$pg .= "<td class=dr>$uhr</td>"; |
|
|
|
|
|
|
|
|
|
$pg .= "</tr>\n"; |
|
|
|
|
|
|
|
|
|
$offset++; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$thr /= 10000000; |
|
|
|
|
if ($thr < 0.01) |
|
|
|
|
$thr = '0GHs'; |
|
|
|
|
return $pg; |
|
|
|
|
} |
|
|
|
|
# |
|
|
|
|
function worktotal($offset, $totshare, $totdiff, $totinvalid, $totrate) |
|
|
|
|
{ |
|
|
|
|
$pg = ''; |
|
|
|
|
$totrate /= 10000000; |
|
|
|
|
if ($totrate < 0.01) |
|
|
|
|
$totrate = '0GHs'; |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
if ($thr < 100000) |
|
|
|
|
$thr = number_format(round($thr)/100,2).'GHs'; |
|
|
|
|
if ($totrate < 100000) |
|
|
|
|
$totrate = number_format(round($totrate)/100,2).'GHs'; |
|
|
|
|
else |
|
|
|
|
$thr = number_format(round($thr/1000)/100,2).'THs'; |
|
|
|
|
$totrate = number_format(round($totrate/1000)/100,2).'THs'; |
|
|
|
|
} |
|
|
|
|
if (($i % 2) == 0) |
|
|
|
|
if (($offset % 2) == 0) |
|
|
|
|
$row = 'even'; |
|
|
|
|
else |
|
|
|
|
$row = 'odd'; |
|
|
|
|
$pg .= "<tr class=$row><td class=dl>Total:</td><td colspan=2 class=dl></td>"; |
|
|
|
|
$shareacc = number_format($tsh, 0); |
|
|
|
|
$shareacc = number_format($totshare, 0); |
|
|
|
|
$pg .= "<td class=dr>$shareacc</td>"; |
|
|
|
|
$diffacc = number_format($tdif, 0); |
|
|
|
|
$diffacc = number_format($totdiff, 0); |
|
|
|
|
$pg .= "<td class=dr>$diffacc</td>"; |
|
|
|
|
$dtot = $tdif + $tinv; |
|
|
|
|
$dtot = $totdiff + $totinvalid; |
|
|
|
|
if ($dtot > 0) |
|
|
|
|
$rej = number_format(100.0 * $tinv / $dtot, 3); |
|
|
|
|
$rej = number_format(100.0 * $totinvalid / $dtot, 3); |
|
|
|
|
else |
|
|
|
|
$rej = '0'; |
|
|
|
|
$pg .= "<td class=dr>$rej%</td>"; |
|
|
|
|
$pg .= "<td class=dr>$thr</td></tr>\n"; |
|
|
|
|
$pg .= "<td class=dr>$totrate</td></tr>\n"; |
|
|
|
|
return $pg; |
|
|
|
|
} |
|
|
|
|
# |
|
|
|
|
function doworker($data, $user) |
|
|
|
|
{ |
|
|
|
|
$pg = '<h1>Workers</h1>'; |
|
|
|
|
|
|
|
|
|
$pg .= "<table callpadding=0 cellspacing=0 border=0>\n"; |
|
|
|
|
|
|
|
|
|
$totshare = 0; |
|
|
|
|
$totdiff = 0; |
|
|
|
|
$totinvalid = 0; |
|
|
|
|
$totrate = 0; |
|
|
|
|
$offset = 0; |
|
|
|
|
|
|
|
|
|
$pg .= worktitle($data, $user); |
|
|
|
|
$pg .= workuser($data, $user, $offset, $totshare, $totdiff, $totinvalid, |
|
|
|
|
$totrate, false); |
|
|
|
|
$pg .= worktotal($offset, $totshare, $totdiff, $totinvalid, $totrate); |
|
|
|
|
|
|
|
|
|
$pg .= "</table>\n"; |
|
|
|
|
|
|
|
|
|
return $pg; |
|
|
|
|