41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php
|
|
|
|
require_once 'common.php';
|
|
|
|
$db = Db::getInstance();
|
|
$rows = $db->getRows($db->q("SELECT status, count(*) as cnt FROM beathaven.queue GROUP BY status"));
|
|
$info = array_fill(0, 3, 0);
|
|
foreach ($rows as $row) {
|
|
$info[$row['status']] = $row['cnt'];
|
|
}
|
|
$pid = @file_get_contents('/www/parser_data/pid');
|
|
$tmp = exec("ps ". $pid);
|
|
$running = (strpos($tmp, '/opt/local/bin/php') !== false) ? 1 : 0;
|
|
|
|
?>
|
|
<html>
|
|
<head>
|
|
<title>BeatHaven</title>
|
|
<meta http-equiv="refresh" content="15" />
|
|
<style>
|
|
body, td {padding:0;margin:0;}
|
|
body {background-color:#112;}
|
|
.status-1 {font: 10em Georgia; color: #FFF;}
|
|
.status-02 {font: 0.8em Georgia; color: #AAA;}
|
|
.running-1 {font: 0.8em Georgia; color: #8A8;}
|
|
.running-0 {font: 0.8em Georgia; color: #A88;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table width="100%" height="100%">
|
|
<tr>
|
|
<td align="center" valign="middle">
|
|
<div style="float:left;width:100px;height:1;"> </div>
|
|
<span class="status-1"><?= $info[1] ?></span>
|
|
<span class="status-02"> / <?= $info[0] ?> / <?= $info[2] ?></span>
|
|
<span class="running-<?= $running ?>"><?= ($running ? 'running' : 'stopped') ?></span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|