Files

125 lines
4.2 KiB
PHP
Raw Permalink Normal View History

2018-07-21 13:34:59 -06:00
<?php
/**
* alert-transports.inc.php
*
* LibreNMS alert-transports.inc.php for processor
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @link http://librenms.org
* @copyright 2018 Vivia Nguyen-Tran
* @author Vivia Nguyen-Tran <[email protected]>
*/
use Illuminate\Container\Container;
use Illuminate\Filesystem\Filesystem;
use Illuminate\Translation\FileLoader;
use Illuminate\Translation\Translator;
use Illuminate\Validation\Factory;
header('Content-type: application/json');
2020-09-21 15:40:17 +02:00
if (! Auth::user()->hasGlobalAdmin()) {
exit(json_encode([
2018-07-21 13:34:59 -06:00
'status' => 'error',
2020-09-21 15:40:17 +02:00
'message' => 'You need to be admin',
2018-07-21 13:34:59 -06:00
]));
}
$status = 'ok';
$message = '';
2020-09-21 15:40:17 +02:00
$transport_id = $vars['transport_id'];
$name = $vars['name'];
$is_default = (int) (isset($vars['is_default']) && $vars['is_default'] == 'on');
$transport_type = $vars['transport-type'];
2018-07-21 13:34:59 -06:00
if (empty($name)) {
$status = 'error';
$message = 'No transport name provided';
} elseif (empty($transport_type)) {
$status = 'error';
$message = 'Missing transport information';
} else {
2020-09-21 15:40:17 +02:00
$details = [
2018-07-21 13:34:59 -06:00
'transport_name' => $name,
2020-09-21 15:40:17 +02:00
'is_default' => $is_default,
];
2018-07-21 13:34:59 -06:00
if (is_numeric($transport_id) && $transport_id > 0) {
// Update the fields -- json config field will be updated later
dbUpdate($details, 'alert_transports', 'transport_id=?', [$transport_id]);
} else {
// Insert the new alert transport
$newEntry = true;
$transport_id = dbInsert($details, 'alert_transports');
}
if ($transport_id) {
2020-09-21 15:40:17 +02:00
$class = 'LibreNMS\\Alert\\Transport\\' . ucfirst($transport_type);
2018-07-21 13:34:59 -06:00
2020-09-21 15:40:17 +02:00
if (! method_exists($class, 'configTemplate')) {
exit(json_encode([
2018-07-21 13:34:59 -06:00
'status' => 'error',
2020-09-21 15:40:17 +02:00
'message' => 'This transport type is not yet supported',
2018-07-21 13:34:59 -06:00
]));
}
2020-09-21 15:40:17 +02:00
2018-07-21 13:34:59 -06:00
// Build config values
2020-09-21 15:40:17 +02:00
$result = call_user_func_array($class . '::configTemplate', []);
2018-07-21 13:34:59 -06:00
$loader = new FileLoader(new Filesystem, "$install_dir/resources/lang");
$translator = new Translator($loader, 'en');
$validation = new Factory($translator, new Container);
$validator = $validation->make($vars, $result['validation']);
if ($validator->fails()) {
$errors = $validator->errors();
foreach ($errors->all() as $error) {
$message .= "$error<br>";
}
$status = 'error';
} else {
2020-09-21 15:40:17 +02:00
$transport_config = (array) json_decode(dbFetchCell('SELECT transport_config FROM alert_transports WHERE transport_id=?', [$transport_id]), true);
2018-07-21 13:34:59 -06:00
foreach ($result['config'] as $tmp_config) {
if (isset($tmp_config['name']) && $tmp_config['type'] !== 'hidden') {
$transport_config[$tmp_config['name']] = $vars[$tmp_config['name']];
}
2018-07-21 13:34:59 -06:00
}
//Update the json config field
2019-06-26 09:47:03 -05:00
$detail = [
'transport_type' => $transport_type,
2020-09-21 15:40:17 +02:00
'transport_config' => json_encode($transport_config),
2019-06-26 09:47:03 -05:00
];
$where = 'transport_id=?';
2018-07-21 13:34:59 -06:00
2019-06-26 09:47:03 -05:00
dbUpdate($detail, 'alert_transports', $where, [$transport_id]);
2018-07-21 13:34:59 -06:00
2019-06-26 09:47:03 -05:00
$status = 'ok';
$message = 'Updated alert transports';
2018-07-21 13:34:59 -06:00
}
if ($status == 'error' && $newEntry) {
//If error, we will have to delete the new entry in alert_transports tbl
$where = '`transport_id`=?';
dbDelete('alert_transports', $where, [$transport_id]);
}
} else {
$status = 'error';
$message = 'Failed to update transport';
}
}
2020-09-21 15:40:17 +02:00
exit(json_encode([
2018-07-21 13:34:59 -06:00
'status' => $status,
2020-09-21 15:40:17 +02:00
'message' => $message,
2018-07-21 13:34:59 -06:00
]));