2017-03-03 07:07:12 -08:00
|
|
|
<?php
|
|
|
|
|
2018-03-25 22:50:09 +02:00
|
|
|
$device_id = mres($vars['device_id']);
|
2017-03-03 07:07:12 -08:00
|
|
|
|
|
|
|
$sql = " FROM `mempools` AS `M` LEFT JOIN `devices` AS `D` ON `M`.`device_id` = `D`.`device_id` WHERE `D`.`device_id`=?";
|
|
|
|
$param[] = $device_id;
|
|
|
|
|
|
|
|
if (isset($searchPhrase) && !empty($searchPhrase)) {
|
2020-07-10 16:17:09 +02:00
|
|
|
$sql .= " AND (`D`.`hostname` LIKE ? OR `M`.`mempool_descr` LIKE ? OR `S`.`mempool_perc` LIKE ? OR `M`.`mempool_perc_warn` LIKE ?)";
|
|
|
|
$param[] = "%$searchPhrase%";
|
|
|
|
$param[] = "%$searchPhrase%";
|
|
|
|
$param[] = "%$searchPhrase%";
|
|
|
|
$param[] = "%$searchPhrase%";
|
2017-03-03 07:07:12 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
$count_sql = "SELECT COUNT(`mempool_id`) $sql";
|
|
|
|
|
|
|
|
$total = dbFetchCell($count_sql, $param);
|
|
|
|
if (empty($total)) {
|
|
|
|
$total = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($sort) || empty($sort)) {
|
|
|
|
$sort = '`D`.`hostname`, `M`.`mempool_descr`';
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql .= " ORDER BY $sort";
|
|
|
|
|
|
|
|
if (isset($current)) {
|
|
|
|
$limit_low = ($current * $rowCount) - ($rowCount);
|
|
|
|
$limit_high = $rowCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($rowCount != -1) {
|
|
|
|
$sql .= " LIMIT $limit_low,$limit_high";
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql = "SELECT * $sql";
|
|
|
|
|
|
|
|
foreach (dbFetchRows($sql, $param) as $drive) {
|
|
|
|
$perc = round($drive['mempool_perc'], 0);
|
|
|
|
$perc_warn = round($drive['mempool_perc_warn'], 0);
|
|
|
|
$response[] = array(
|
|
|
|
'mempool_id' => $drive['mempool_id'],
|
|
|
|
'hostname' => generate_device_link($drive),
|
|
|
|
'mempool_descr' => $drive['mempool_descr'],
|
|
|
|
'mempool_perc' => $perc . "%",
|
|
|
|
'mempool_perc_warn' => $perc_warn);
|
|
|
|
}
|
|
|
|
|
|
|
|
$output = array('current'=>$current,'rowCount'=>$rowCount,'rows'=>$response,'total'=>$total);
|
|
|
|
echo _json_encode($output);
|