芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/status.pulsehost.co.uk/app/controllers/ServerMonitorUpdate.php
monitors_heartbeats->server_monitors_is_enabled) { redirect('not-found'); } \Altum\Authentication::guard(); /* Team checks */ if(\Altum\Teams::is_delegated() && !\Altum\Teams::has_access('update.server_monitors')) { Alerts::add_info(l('global.info_message.team_no_access')); redirect('server-monitors'); } $server_monitor_id = isset($this->params[0]) ? (int) $this->params[0] : null; if(!$server_monitor = db()->where('server_monitor_id', $server_monitor_id)->where('user_id', $this->user->user_id)->getOne('server_monitors')) { redirect('server-monitors'); } $server_monitor->settings = json_decode($server_monitor->settings ?? ''); $server_monitor->notifications = json_decode($server_monitor->notifications ?? ''); /* Get available projects */ $projects = (new \Altum\Models\Projects())->get_projects_by_user_id($this->user->user_id); /* Get available notification handlers */ $notification_handlers = (new \Altum\Models\NotificationHandlers())->get_notification_handlers_by_user_id($this->user->user_id); /* Monitors vars */ $server_monitor_check_intervals = require APP_PATH . 'includes/server_monitor_check_intervals.php'; if(!empty($_POST)) { $_POST['name'] = query_clean($_POST['name']); $_POST['target'] = query_clean($_POST['target']); $_POST['server_check_interval_seconds'] = in_array($_POST['server_check_interval_seconds'], $this->user->plan_settings->server_monitors_check_intervals ?? []) ? (int) $_POST['server_check_interval_seconds'] : reset($this->user->plan_settings->server_monitors_check_intervals); $_POST['project_id'] = !empty($_POST['project_id']) && array_key_exists($_POST['project_id'], $projects) ? (int) $_POST['project_id'] : null; $_POST['is_enabled'] = (int) isset($_POST['is_enabled']); $_POST['notifications'] = array_map( function($notification_handler_id) { return (int) $notification_handler_id; }, array_filter($_POST['notifications'] ?? [], function($notification_handler_id) use($notification_handlers) { return array_key_exists($notification_handler_id, $notification_handlers); }) ); /* Alerts */ if(!isset($_POST['alert_metric'])) { $_POST['alert_metric'] = []; $_POST['alert_rule'] = []; $_POST['alert_value'] = []; $_POST['alert_trigger'] = []; } $alerts = []; foreach($_POST['alert_metric'] as $key => $value) { if(empty(trim($value))) continue; $alerts[] = [ 'metric' => in_array($value, ['cpu_usage', 'disk_usage', 'ram_usage']) ? $value : 'cpu_usage', 'rule' => in_array($_POST['alert_rule'][$key], ['is_higher', 'is_lower']) ? $_POST['alert_rule'][$key] : 'is_higher', 'value' => in_array($_POST['alert_value'][$key], range(1, 99)) ? $_POST['alert_value'][$key] : 50, 'trigger' => in_array($_POST['alert_trigger'][$key], range(1, 10)) ? $_POST['alert_trigger'][$key] : 5, 'is_triggered' => 0, ]; } //ALTUMCODE:DEMO if(DEMO) if($this->user->user_id == 1) Alerts::add_error('Please create an account on the demo to test out this function.'); /* Check for any errors */ $required_fields = ['name', 'target']; foreach($required_fields as $field) { if(!isset($_POST[$field]) || (isset($_POST[$field]) && empty($_POST[$field]) && $_POST[$field] != '0')) { Alerts::add_field_error($field, l('global.error_message.empty_field')); } } if(!\Altum\Csrf::check()) { Alerts::add_error(l('global.error_message.invalid_csrf_token')); } if(!Alerts::has_field_errors() && !Alerts::has_errors()) { $settings = json_encode([ 'server_check_interval_seconds' => $_POST['server_check_interval_seconds'], 'alerts' => $alerts, ]); $notifications = json_encode($_POST['notifications']); /* Database query */ $server_monitor_id = db()->where('server_monitor_id', $server_monitor->server_monitor_id)->update('server_monitors', [ 'project_id' => $_POST['project_id'], 'name' => $_POST['name'], 'target' => $_POST['target'], 'settings' => $settings, 'notifications' => $notifications, 'is_enabled' => $_POST['is_enabled'], 'last_datetime' => get_date(), ]); /* Clear the cache */ cache()->deleteItemsByTag('server_monitor_id=' . $server_monitor->server_monitor_id); cache()->deleteItem('server_monitor?server_monitor_id=' . $server_monitor->server_monitor_id); /* Set a nice success message */ Alerts::add_success(sprintf(l('global.success_message.update1'), '
' . $_POST['name'] . '
')); redirect('server-monitor-update/' . $server_monitor->server_monitor_id); } } /* Set a custom title */ Title::set(sprintf(l('server_monitor_update.title'), $server_monitor->name)); /* Prepare the view */ $data = [ 'server_monitor' => $server_monitor, 'projects' => $projects, 'notification_handlers' => $notification_handlers, 'server_monitor_check_intervals' => $server_monitor_check_intervals, ]; $view = new \Altum\View('server-monitor-update/index', (array) $this); $this->add_view_content('content', $view->run($data)); } }