2017-05-13 12:46:08 +01:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
|
2018-07-31 15:53:03 -05:00
|
|
|
$init_modules = ['alerts', 'laravel'];
|
2017-05-13 12:46:08 +01:00
|
|
|
require __DIR__ . '/../includes/init.php';
|
|
|
|
|
2018-07-17 00:58:14 +02:00
|
|
|
use LibreNMS\Alert\Template;
|
2018-07-17 22:14:08 +02:00
|
|
|
use LibreNMS\Alert\AlertData;
|
2018-07-17 00:58:14 +02:00
|
|
|
|
2017-06-19 07:58:52 +02:00
|
|
|
$options = getopt('t:h:r:p:s:d::');
|
2017-05-13 12:46:08 +01:00
|
|
|
|
2018-07-17 00:58:14 +02:00
|
|
|
if (isset($options['t']) && isset($options['h']) && isset($options['r'])) {
|
2018-07-13 17:08:00 -05:00
|
|
|
set_debug(isset($options['d']));
|
|
|
|
|
2017-05-13 12:46:08 +01:00
|
|
|
$template_id = $options['t'];
|
|
|
|
$device_id = ctype_digit($options['h']) ? $options['h'] : getidbyname($options['h']);
|
2018-08-27 15:02:36 -05:00
|
|
|
$rule_id = (int)$options['r'];
|
|
|
|
|
|
|
|
$where = 'alerts.device_id=' . $device_id . ' && alerts.rule_id=' . $rule_id;
|
2017-06-19 07:58:52 +02:00
|
|
|
if (isset($options['s'])) {
|
2018-08-27 15:02:36 -05:00
|
|
|
$where .= ' alerts.state=' . (int)$options['s'];
|
2017-06-19 07:58:52 +02:00
|
|
|
}
|
2018-08-27 15:02:36 -05:00
|
|
|
|
|
|
|
$alerts = loadAlerts($where);
|
|
|
|
if (empty($alerts)) {
|
|
|
|
echo "No alert found, make sure to select an active alert.\n";
|
|
|
|
exit(2);
|
2017-06-19 07:58:52 +02:00
|
|
|
}
|
2018-08-27 15:02:36 -05:00
|
|
|
|
|
|
|
$obj = DescribeAlert($alerts[0]);
|
2017-05-31 22:26:47 +02:00
|
|
|
if (isset($options['p'])) {
|
|
|
|
$obj['transport'] = $options['p'];
|
|
|
|
}
|
2018-07-17 00:58:14 +02:00
|
|
|
$type = new Template;
|
2018-07-17 22:14:08 +02:00
|
|
|
$obj['alert'] = new AlertData($obj);
|
2018-07-17 00:58:14 +02:00
|
|
|
$obj['title'] = $type->getTitle($obj);
|
|
|
|
$obj['msg'] = $type->getBody($obj);
|
|
|
|
unset($obj['template']);
|
2018-07-17 22:14:08 +02:00
|
|
|
unset($obj['alert']);
|
2018-07-17 00:58:14 +02:00
|
|
|
print_r($obj);
|
2017-05-13 12:46:08 +01:00
|
|
|
} else {
|
|
|
|
c_echo("
|
|
|
|
Usage:
|
|
|
|
-t Is the template ID.
|
|
|
|
-h Is the device ID or hostname
|
|
|
|
-r Is the rule ID
|
2017-05-31 22:26:47 +02:00
|
|
|
-p Is the transport name (optional)
|
2017-06-19 07:58:52 +02:00
|
|
|
-s Is the alert state <0|1|2|3|4> (optional - defaults to current state.)
|
|
|
|
0 = ok, 1 = alert, 2 = acknowledged, 3 = got worse, 4 = got better
|
2017-05-13 12:46:08 +01:00
|
|
|
-d Debug
|
2018-07-17 00:58:14 +02:00
|
|
|
|
2017-05-13 12:46:08 +01:00
|
|
|
Example:
|
2017-05-31 22:26:47 +02:00
|
|
|
./scripts/test-template.php -t 10 -d -h localhost -r 2 -p mail
|
2017-05-13 12:46:08 +01:00
|
|
|
|
|
|
|
");
|
|
|
|
exit(1);
|
|
|
|
}
|