librenms-librenms/includes/html/forms/alert-transports.inc.php
Tony Murray 0b8b97bb68 Push Notifications (Mobile and PC) (#13277)
* Update manifest and add service worker
cleanup icons a bit

* Push notifications WIP

* navigate working

* cleanup

* acknowledge wired up

* Set VAPID keys on composer install

* Component to control notification permissions.

* Allow all user option to validate

* Enable on browser load if transport exists.

* Check for transport before showing user permissions
translations

* Documentation

* style fixes

* access via the attribute model

* fix alerting test

* update schema

* cleanup subscription on disable

* non-configurable db and table for webpush subscriptions (respect system connection)

* revert AlertTransport change
hopefully phpstan can figure it out

* phpstan fixes

* Support custom details display

* Match transport names to brand's preferred display

* less duplicate id errors

* Tests are done in Laravel code now so
remove legacy function usage... could be better, but ok

* Style fixes

* Style fixes 2

* Fix alert test

* Doc updates requires HTTPS and GMP

* unregister subscription when permission is set to denied

* cleanup after user deletion

* delete the right thing

* fix whitespace

* update install docs to include php-gmp

* suggest ext-gmp

* update javascript

* Update functions.php

Co-authored-by: Jellyfrog <Jellyfrog@users.noreply.github.com>
2021-10-06 07:29:47 -05:00

116 lines
3.9 KiB
PHP

<?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 <https://www.gnu.org/licenses/>.
*
* @link https://www.librenms.org
*
* @copyright 2018 Vivia Nguyen-Tran
* @author Vivia Nguyen-Tran <vivia@ualberta.ca>
*/
header('Content-type: application/json');
if (! Auth::user()->hasGlobalAdmin()) {
exit(json_encode([
'status' => 'error',
'message' => 'You need to be admin',
]));
}
$status = 'ok';
$message = '';
$transport_id = $vars['transport_id'];
$name = $vars['name'];
$is_default = (int) (isset($vars['is_default']) && $vars['is_default'] == 'on');
$transport_type = $vars['transport-type'];
if (empty($name)) {
$status = 'error';
$message = 'No transport name provided';
} elseif (empty($transport_type)) {
$status = 'error';
$message = 'Missing transport information';
} else {
$details = [
'transport_name' => $name,
'is_default' => $is_default,
];
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) {
$class = 'LibreNMS\\Alert\\Transport\\' . ucfirst($transport_type);
if (! method_exists($class, 'configTemplate')) {
exit(json_encode([
'status' => 'error',
'message' => 'This transport type is not yet supported',
]));
}
// Build config values
$result = call_user_func_array($class . '::configTemplate', []);
$validator = Validator::make($vars, $result['validation']);
if ($validator->fails()) {
$errors = $validator->errors();
foreach ($errors->all() as $error) {
$message .= "$error<br>";
}
$status = 'error';
} else {
$transport_config = (array) json_decode(dbFetchCell('SELECT transport_config FROM alert_transports WHERE transport_id=?', [$transport_id]), true);
foreach ($result['config'] as $tmp_config) {
if (isset($tmp_config['name']) && $tmp_config['type'] !== 'hidden') {
$transport_config[$tmp_config['name']] = $vars[$tmp_config['name']];
}
}
//Update the json config field
$detail = [
'transport_type' => $transport_type,
'transport_config' => json_encode($transport_config),
];
$where = 'transport_id=?';
dbUpdate($detail, 'alert_transports', $where, [$transport_id]);
$status = 'ok';
$message = 'Updated alert transports';
}
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';
}
}
exit(json_encode([
'status' => $status,
'message' => $message,
]));