librenms-librenms/includes/html/forms/application-update.inc.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
2.4 KiB
PHP
Raw Normal View History

<?php
/**
* application-update.php
*
* Handle application enable disable from ajax
*
* 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
2021-09-10 20:09:53 +02:00
*
* @copyright 2017 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
2023-09-06 16:34:39 -05:00
use App\Models\Application;
if (! Auth::user()->hasGlobalAdmin()) {
$status = ['status' => 1, 'message' => 'You need to be admin'];
} else {
$device_id = $_POST['device_id'];
$app = $_POST['application'];
if (! isset($app) && validate_device_id($device_id) === false) {
$status = ['status' => 1, 'message' => 'Error with data'];
} else {
$status = ['status' => 1, 'message' => 'Database update failed'];
2023-09-06 16:34:39 -05:00
$app = Application::withTrashed()->firstOrNew(['device_id' => $device_id, 'app_type' => $app]);
if ($_POST['state'] == 'true') {
2023-09-06 16:34:39 -05:00
if ($app->trashed()) {
$app->restore();
}
if ($app->save()) {
log_event("Application enabled by user: $app", $device_id, 'application', 1);
$status = ['status' => 0, 'message' => 'Application enabled'];
2023-09-06 16:34:39 -05:00
} else {
$status = ['status' => 1, 'message' => 'Database update for enabling the application failed'];
}
} else {
2023-09-06 16:34:39 -05:00
$app->delete();
if ($app->save()) {
log_event("Application disabled by user: $app", $device_id, 'application', 3);
$status = ['status' => 0, 'message' => 'Application disabled'];
2023-09-06 16:34:39 -05:00
} else {
$status = ['status' => 1, 'message' => 'Database update for disabling the application failed'];
}
}
}
}
header('Content-Type: application/json');
echo json_encode($status, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);