* * 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; if (!Auth::user()->hasGlobalAdmin()) { header('Content-type: text/plain'); die('ERROR: You need to be admin'); } $alert_id = $vars['alert_id']; $template_id = $vars['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']]; } $locations = dbFetchRows('SELECT `location_id`, `location` FROM `alert_location_map` LEFT JOIN `locations` ON `locations`.`id`=`alert_location_map`.`location_id` WHERE `rule_id`=?', [$alert_id]); foreach ($locations as $location) { $maps[] = ['id' => 'l' . $location['location_id'], 'text' => $location['location']]; } $transports = []; $members = dbFetchRows('SELECT `transport_or_group_id`, `transport_name`, `transport_type` FROM `alert_transport_map` LEFT JOIN `alert_transports` ON `transport_or_group_id` = `transport_id` WHERE `target_type`="single" AND `rule_id`=?', [$alert_id]); foreach ($members as $member) { $transports[] = [ 'id' => $member['transport_or_group_id'], 'text' => ucfirst($member['transport_type']).": ".$member['transport_name'] ]; } $t_groups = dbFetchRows('SELECT `transport_or_group_id`, `transport_group_name` FROM `alert_transport_map` LEFT JOIN `alert_transport_groups` ON `transport_or_group_id`=`transport_group_id` WHERE `target_type`="group" AND `rule_id`=?', [$alert_id]); foreach ($t_groups as $group) { $transports[] = [ 'id' => 'g'.$group['transport_or_group_id'], 'text' => 'Group: '.$group['transport_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, 'transports' => $transports, 'name' => $rule['name'], 'proc' => $rule['proc'], 'builder' => $builder, 'severity' => $rule['severity'], 'adv_query' => $rule['query'], 'invert_map' => $rule['invert_map'], ]); }