librenms-librenms/includes/html/forms/mempool-update.inc.php

54 lines
1.5 KiB
PHP
Raw Normal View History

<?php
/*
* LibreNMS
*
* Copyright (c) 2015 Neil Lathwood <https://github.com/laf/ http://www.lathwood.co.uk/fa>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
header('Content-type: application/json');
2020-09-21 15:40:17 +02:00
if (! Auth::user()->hasGlobalAdmin()) {
$response = [
'status' => 'error',
'message' => 'Need to be admin',
2020-09-21 15:40:17 +02:00
];
echo _json_encode($response);
exit;
}
2020-09-21 15:40:17 +02:00
$status = 'error';
$message = 'Error updating mempool information';
$device_id = mres($_POST['device_id']);
$mempool_id = mres($_POST['mempool_id']);
$data = mres($_POST['data']);
2020-09-21 15:40:17 +02:00
if (! is_numeric($device_id)) {
$message = 'Missing device id';
2020-09-21 15:40:17 +02:00
} elseif (! is_numeric($mempool_id)) {
$message = 'Missing mempool id';
2020-09-21 15:40:17 +02:00
} elseif (! is_numeric($data)) {
$message = 'Missing value';
} else {
2020-09-21 15:40:17 +02:00
if (dbUpdate(['mempool_perc_warn'=>$data], 'mempools', '`mempool_id`=? AND `device_id`=?', [$mempool_id, $device_id]) >= 0) {
$message = 'Memory information updated';
$status = 'ok';
} else {
$message = 'Could not update mempool information';
}
}
2020-09-21 15:40:17 +02:00
$response = [
'status' => $status,
'message' => $message,
'extra' => $extra,
2020-09-21 15:40:17 +02:00
];
echo _json_encode($response);