mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.8 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.
 | 
						|
 */
 | 
						|
 | 
						|
if (is_admin() === false) {
 | 
						|
	header('Content-type: text/plain');
 | 
						|
    die('ERROR: You need to be admin');
 | 
						|
}
 | 
						|
 | 
						|
$transport = mres($_POST['transport']);
 | 
						|
 | 
						|
require_once $config['install_dir'].'/includes/alerts.inc.php';
 | 
						|
$tmp = array(dbFetchRow('select device_id,hostname from devices order by device_id asc limit 1'));
 | 
						|
$tmp['contacts'] = GetContacts($tmp);
 | 
						|
$obj = array(
 | 
						|
    "hostname"  => $tmp[0]['hostname'],
 | 
						|
    "device_id" => $tmp[0]['device_id'],
 | 
						|
    "title"     => "Testing transport from ".$config['project_name'],
 | 
						|
    "elapsed"   => "11s",
 | 
						|
    "id"        => "000",
 | 
						|
    "faults"    => false,
 | 
						|
    "uid"       => "000",
 | 
						|
    "severity"  => "critical",
 | 
						|
    "rule"      => "%macros.device = 1",
 | 
						|
    "name"      => "Test-Rule",
 | 
						|
    "timestamp" => date("Y-m-d H:i:s"),
 | 
						|
    "contacts"  => $tmp['contacts'],
 | 
						|
    "state"     => "1",
 | 
						|
    "msg"       => "This is a test alert",
 | 
						|
);
 | 
						|
 | 
						|
$status = 'error';
 | 
						|
 | 
						|
if (file_exists($config['install_dir']."/includes/alerts/transport.".$transport.".php")) {
 | 
						|
    $opts = $config['alert']['transports'][$transport];
 | 
						|
    if ($opts) {
 | 
						|
        eval('$tmp = function($obj,$opts) { global $config; '.file_get_contents($config['install_dir'].'/includes/alerts/transport.'.$transport.'.php').' return false; };');
 | 
						|
        $tmp = $tmp($obj,$opts);
 | 
						|
        if ($tmp) {
 | 
						|
            $status = 'ok';
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
header('Content-type: application/json');
 | 
						|
echo _json_encode(array('status' => $status));
 |