mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
64 lines
2.2 KiB
PHP
64 lines
2.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* LibreNMS
|
|
*
|
|
* Copyright (c) 2014 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.
|
|
*/
|
|
|
|
use LibreNMS\Alerting\QueryBuilderParser;
|
|
use LibreNMS\Authentication\Auth;
|
|
|
|
if (!Auth::user()->hasGlobalAdmin()) {
|
|
header('Content-type: text/plain');
|
|
die('ERROR: You need to be admin');
|
|
}
|
|
|
|
$alert_id = $_POST['alert_id'];
|
|
$template_id = $_POST['template_id'];
|
|
|
|
if (is_numeric($alert_id) && $alert_id > 0) {
|
|
$rule = dbFetchRow('SELECT * FROM `alert_rules` WHERE `id` = ? LIMIT 1', [$alert_id]);
|
|
|
|
$maps = [];
|
|
|
|
$devices = dbFetchRows('SELECT `device_id`, `hostname`, `sysName` FROM `alert_device_map` LEFT JOIN `devices` USING (`device_id`) WHERE `rule_id`=?', [$alert_id]);
|
|
foreach ($devices as $device) {
|
|
$maps[] = ['id' => $device['device_id'], 'text' => format_hostname($device)];
|
|
}
|
|
|
|
$groups = dbFetchRows('SELECT `group_id`, `name` FROM `alert_group_map` LEFT JOIN `device_groups` ON `device_groups`.`id`=`alert_group_map`.`group_id` WHERE `rule_id`=?', [$alert_id]);
|
|
foreach ($groups as $group) {
|
|
$maps[] = ['id' => 'g' . $group['group_id'], 'text' => $group['name']];
|
|
}
|
|
} elseif (is_numeric($template_id) && $template_id >= 0) {
|
|
$tmp_rules = get_rules_from_json();
|
|
$rule = $tmp_rules[$template_id];
|
|
$maps = [];
|
|
}
|
|
|
|
if (is_array($rule)) {
|
|
if (empty($rule['builder'])) {
|
|
// convert old rules when editing
|
|
$builder = QueryBuilderParser::fromOld($rule['rule'])->toArray();
|
|
} else {
|
|
$builder = json_decode($rule['builder']);
|
|
}
|
|
|
|
header('Content-type: application/json');
|
|
echo json_encode([
|
|
'extra' => isset($rule['extra']) ? json_decode($rule['extra']) : null,
|
|
'maps' => $maps,
|
|
'name' => $rule['name'],
|
|
'proc' => $rule['proc'],
|
|
'builder' => $builder,
|
|
'severity' => $rule['severity'],
|
|
]);
|
|
}
|