mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Use Laravel for authentication Support legacy auth methods Always create DB entry for users (segregate by auth method) Port api auth to Laravel restrict poller errors to devices the user has access to Run checks on every page load. But set a 5 minute (configurable) timer. Only run some checks if the user is an admin Move toastr down a few pixels so it isn't as annoying. Fix menu not loaded on laravel pages when twofactor is enabled for the system, but disabled for the user. Add two missing menu entries in the laravel menu Rewrite 2FA code Simplify some and verify code before applying Get http-auth working Handle legacy $_SESSION differently. Allows Auth::once(), etc to work. * Fix tests and mysqli extension check * remove duplicate Toastr messages * Fix new items * Rename 266.sql to 267.sql
194 lines
7.4 KiB
PHP
194 lines
7.4 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.
|
|
*/
|
|
|
|
use LibreNMS\Authentication\LegacyAuth;
|
|
|
|
if (!LegacyAuth::user()->hasGlobalAdmin()) {
|
|
header('Content-type: text/plain');
|
|
die('ERROR: You need to be admin');
|
|
}
|
|
|
|
$sub_type = $_POST['sub_type'];
|
|
|
|
if ($sub_type == 'new-maintenance') {
|
|
// Defaults
|
|
$status = 'error';
|
|
$update = 0;
|
|
$message = '';
|
|
|
|
$schedule_id = mres($_POST['schedule_id']);
|
|
if ($schedule_id > 0) {
|
|
$update = 1;
|
|
}
|
|
|
|
$title = mres($_POST['title']);
|
|
$notes = mres($_POST['notes']);
|
|
$recurring = mres($_POST['recurring']);
|
|
$start_recurring_dt = mres($_POST['start_recurring_dt']);
|
|
$end_recurring_dt = mres($_POST['end_recurring_dt']);
|
|
$start_recurring_hr = mres($_POST['start_recurring_hr']);
|
|
$end_recurring_hr = mres($_POST['end_recurring_hr']);
|
|
$recurring_day = mres($_POST['recurring_day']);
|
|
$start = mres($_POST['start']);
|
|
$end = mres($_POST['end']);
|
|
$maps = mres($_POST['maps']);
|
|
|
|
if (empty($title)) {
|
|
$message = 'Missing title<br />';
|
|
}
|
|
|
|
if (!in_array($recurring, array(0,1))) {
|
|
$message .= 'Missing recurring choice<br />';
|
|
}
|
|
|
|
// check values if recurring is set to yes
|
|
if ($recurring == 1) {
|
|
if (empty($start_recurring_dt)) {
|
|
$message .= 'Missing start recurring date<br />';
|
|
} else {
|
|
// check if date is correct
|
|
list($ysrd, $msrd, $dsrd) = explode('-', $start_recurring_dt);
|
|
if (!checkdate($msrd, $dsrd, $ysrd)) {
|
|
$message .= 'Please check start recurring date<br />';
|
|
}
|
|
}
|
|
// end recurring dt not mandatory.. but if set, check if correct
|
|
if (!empty($end_recurring_dt) && $end_recurring_dt != '0000-00-00' && $end_recurring_dt != '') {
|
|
list($yerd, $merd, $derd) = explode('-', $end_recurring_dt);
|
|
if (!checkdate($merd, $derd, $yerd)) {
|
|
$message .= 'Please check end recurring date<br />';
|
|
}
|
|
} else {
|
|
$end_recurring_dt = null;
|
|
}
|
|
|
|
if (empty($start_recurring_hr)) {
|
|
$message .= 'Missing start recurring hour<br />';
|
|
}
|
|
|
|
if (empty($end_recurring_hr)) {
|
|
$message .= 'Missing end recurring hour<br />';
|
|
}
|
|
|
|
if (isset($_POST['recurring_day']) && is_array($_POST['recurring_day']) && !empty($_POST['recurring_day'])) {
|
|
$recurring_day = implode(',', $_POST['recurring_day']);
|
|
} else {
|
|
$recurring_day = null;
|
|
}
|
|
|
|
// recurring = 1 => empty no reccurency values to be sure.
|
|
$start = '0000-00-00 00:00:00';
|
|
$end = '0000-00-00 00:00:00';
|
|
} else {
|
|
if (empty($start)) {
|
|
$message .= 'Missing start date<br />';
|
|
}
|
|
|
|
if (empty($end)) {
|
|
$message .= 'Missing end date<br />';
|
|
}
|
|
|
|
// recurring = 0 => empty no reccurency values to be sure.
|
|
$start_recurring_dt = '1970-01-02';
|
|
$end_recurring_dt = '1970-01-02';
|
|
$start_recurring_hr = '00:00:00';
|
|
$end_recurring_hr = '00:00:00';
|
|
$recurring_day = null;
|
|
}
|
|
|
|
if (!is_array($_POST['maps'])) {
|
|
$message .= 'Not mapped to any groups or devices<br />';
|
|
}
|
|
|
|
if (empty($message)) {
|
|
if (empty($schedule_id)) {
|
|
$schedule_id = dbInsert(array('recurring' => $recurring, 'start' => $start, 'end' => $end, 'start_recurring_dt' => $start_recurring_dt, 'end_recurring_dt' => $end_recurring_dt, 'start_recurring_hr' => $start_recurring_hr, 'end_recurring_hr' => $end_recurring_hr, 'recurring_day' => $recurring_day, 'title' => $title, 'notes' => $notes), 'alert_schedule');
|
|
} else {
|
|
dbUpdate(array('recurring' => $recurring, 'start' => $start, 'end' => $end, 'start_recurring_dt' => $start_recurring_dt, 'end_recurring_dt' => $end_recurring_dt, 'start_recurring_hr' => $start_recurring_hr, 'end_recurring_hr' => $end_recurring_hr, 'recurring_day' => $recurring_day, 'title' => $title, 'notes' => $notes), 'alert_schedule', '`schedule_id`=?', array($schedule_id));
|
|
}
|
|
|
|
if ($schedule_id > 0) {
|
|
$items = array();
|
|
$fail = 0;
|
|
|
|
if ($update == 1) {
|
|
dbDelete('alert_schedule_items', '`schedule_id`=?', array($schedule_id));
|
|
}
|
|
|
|
foreach ($_POST['maps'] as $target) {
|
|
$target = target_to_id($target);
|
|
$item = dbInsert(array('schedule_id' => $schedule_id, 'target' => $target), 'alert_schedule_items');
|
|
if ($item > 0) {
|
|
array_push($items, $item);
|
|
} else {
|
|
$fail = 1;
|
|
}
|
|
}
|
|
|
|
if ($fail == 1 && $update == 0) {
|
|
foreach ($items as $item) {
|
|
dbDelete('alert_schedule_items', '`item_id`=?', array($item));
|
|
}
|
|
|
|
dbDelete('alert_schedule', '`schedule_id`=?', array($schedule_id));
|
|
$message = 'Issue scheduling maintenance';
|
|
} else {
|
|
$status = 'ok';
|
|
$message = 'Scheduling maintenance ok';
|
|
}
|
|
} else {
|
|
$message = 'Issue scheduling maintenance';
|
|
}//end if
|
|
}//end if
|
|
|
|
$response = array(
|
|
'status' => $status,
|
|
'message' => $message,
|
|
);
|
|
} elseif ($sub_type == 'parse-maintenance') {
|
|
$schedule_id = mres($_POST['schedule_id']);
|
|
$schedule = dbFetchRow('SELECT * FROM `alert_schedule` WHERE `schedule_id`=?', array($schedule_id));
|
|
$items = array();
|
|
foreach (dbFetchRows('SELECT `target` FROM `alert_schedule_items` WHERE `schedule_id`=?', array($schedule_id)) as $targets) {
|
|
$targets = id_to_target($targets['target']);
|
|
array_push($items, $targets);
|
|
}
|
|
|
|
$response = array(
|
|
'start' => $schedule['start'],
|
|
'end' => $schedule['end'],
|
|
'title' => $schedule['title'],
|
|
'notes' => $schedule['notes'],
|
|
'recurring' => $schedule['recurring'],
|
|
'start_recurring_dt' => ($schedule['start_recurring_dt'] != '0000-00-00' ? $schedule['start_recurring_dt']: '1970-01-02 00:00:01'),
|
|
'end_recurring_dt' => ($schedule['end_recurring_dt']!= '0000-00-00' ? $schedule['end_recurring_dt'] : '1970-01-02 00:00:01'),
|
|
'start_recurring_hr' => substr($schedule['start_recurring_hr'], 0, 5),
|
|
'end_recurring_hr' => substr($schedule['end_recurring_hr'], 0, 5),
|
|
'recurring_day' => $schedule['recurring_day'],
|
|
'targets' => $items,
|
|
);
|
|
} elseif ($sub_type == 'del-maintenance') {
|
|
$schedule_id = mres($_POST['del_schedule_id']);
|
|
dbDelete('alert_schedule_items', '`schedule_id`=?', array($schedule_id));
|
|
dbDelete('alert_schedule', '`schedule_id`=?', array($schedule_id));
|
|
$status = 'ok';
|
|
$message = 'Maintenance schedule has been removed';
|
|
$response = array(
|
|
'status' => $status,
|
|
'message' => $message,
|
|
);
|
|
}//end if
|
|
header('Content-type: application/json');
|
|
echo _json_encode($response);
|