kanoi
11 years ago
4 changed files with 240 additions and 59 deletions
@ -1,44 +0,0 @@ |
|||||||
<?php |
|
||||||
# |
|
||||||
function doworkers($data, $user) |
|
||||||
{ |
|
||||||
$pg = '<h1>Workers</h1>'; |
|
||||||
|
|
||||||
$rep = getWorkers($user); |
|
||||||
$ans = repDecode($rep); |
|
||||||
|
|
||||||
$pg .= "<table callpadding=0 cellspacing=0 border=0>\n"; |
|
||||||
$pg .= "<tr class=title>"; |
|
||||||
$pg .= "<td class=dl>Name</td>"; |
|
||||||
$pg .= "<td class=dl>Difficulty</td>"; |
|
||||||
$pg .= "<td class=dr>Idle Notifications</td>"; |
|
||||||
$pg .= "<td class=dr>Idle Notification Time</td>"; |
|
||||||
$pg .= "</tr>\n"; |
|
||||||
if ($ans['STATUS'] == 'ok') |
|
||||||
{ |
|
||||||
$count = $ans['rows']; |
|
||||||
for ($i = 0; $i < $count; $i++) |
|
||||||
{ |
|
||||||
if (($i % 2) == 0) |
|
||||||
$row = 'even'; |
|
||||||
else |
|
||||||
$row = 'odd'; |
|
||||||
|
|
||||||
$pg .= "<tr class=$row>"; |
|
||||||
$pg .= '<td class=dl>'.$ans['paydate'.$i].'</td>'; |
|
||||||
$pg .= '<td class=dl>'.$ans['payaddress'.$i].'</td>'; |
|
||||||
$pg .= '<td class=dr>'.btcfmt($ans['amount'.$i]).'</td>'; |
|
||||||
$pg .= "</tr>\n"; |
|
||||||
} |
|
||||||
} |
|
||||||
$pg .= "</table>\n"; |
|
||||||
|
|
||||||
return $pg; |
|
||||||
} |
|
||||||
# |
|
||||||
function show_workers($menu, $name, $user) |
|
||||||
{ |
|
||||||
gopage(NULL, 'doworkers', $menu, $name, $user); |
|
||||||
} |
|
||||||
# |
|
||||||
?> |
|
@ -0,0 +1,96 @@ |
|||||||
|
<?php |
||||||
|
# |
||||||
|
function doworkers($data, $user) |
||||||
|
{ |
||||||
|
$pg = '<h1>Workers</h1>'; |
||||||
|
|
||||||
|
$rep = getWorkers($user); |
||||||
|
$ans = repDecode($rep); |
||||||
|
|
||||||
|
$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>Last Share</td>"; |
||||||
|
$pg .= "<td class=dr>Hash Rate</td>"; |
||||||
|
$pg .= "</tr>\n"; |
||||||
|
if ($ans['STATUS'] == 'ok') |
||||||
|
{ |
||||||
|
$count = $ans['rows']; |
||||||
|
for ($i = 0; $i < $count; $i++) |
||||||
|
{ |
||||||
|
if (($i % 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>'; |
||||||
|
$lst = $ans['STAMP'] - $ans['w_lastshare'.$i]; |
||||||
|
if ($lst < 60) |
||||||
|
$lstdes = $lst.'s'; |
||||||
|
else |
||||||
|
{ |
||||||
|
$lst = round($lst/60); |
||||||
|
if ($lst < 60) |
||||||
|
$lstdes = $lst.'m'; |
||||||
|
else |
||||||
|
{ |
||||||
|
$lst = round($lst/60); |
||||||
|
if ($lst < 24) |
||||||
|
$lstdes = $lst.'hr'; |
||||||
|
else |
||||||
|
{ |
||||||
|
$lst = round($lst/24); |
||||||
|
if ($lst < 9999) |
||||||
|
$lstdes = $lst.'days'; |
||||||
|
else |
||||||
|
$lstdes = 'never'; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
$pg .= "<td class=dr>$lstdes</td>"; |
||||||
|
if ($ans['w_elapsed'.$i] > 3600) |
||||||
|
$uhr = $ans['w_hashrate1hr'.$i]; |
||||||
|
else |
||||||
|
$uhr = $ans['w_hashrate5m'.$i]; |
||||||
|
if ($uhr == '?') |
||||||
|
$uhr = '?GHs'; |
||||||
|
else |
||||||
|
{ |
||||||
|
$uhr /= 10000000; |
||||||
|
if ($uhr < 100000) |
||||||
|
$uhr = (round($uhr)/100).'GHs'; |
||||||
|
else |
||||||
|
$uhr = (round($uhr/1000)/100).'THs'; |
||||||
|
} |
||||||
|
$pg .= "<td class=dr>$uhr</td>"; |
||||||
|
$pg .= "</tr>\n"; |
||||||
|
} |
||||||
|
} |
||||||
|
$pg .= "</table>\n"; |
||||||
|
|
||||||
|
return $pg; |
||||||
|
} |
||||||
|
# |
||||||
|
function show_workers($menu, $name, $user) |
||||||
|
{ |
||||||
|
gopage(NULL, 'doworkers', $menu, $name, $user); |
||||||
|
} |
||||||
|
# |
||||||
|
?> |
Loading…
Reference in new issue