芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/status.pulsehost.co.uk/app/controllers/DnsMonitorUpdate.php
monitors_heartbeats->dns_monitors_is_enabled) { redirect('not-found'); } \Altum\Authentication::guard(); /* Team checks */ if(\Altum\Teams::is_delegated() && !\Altum\Teams::has_access('update.dns_monitors')) { Alerts::add_info(l('global.info_message.team_no_access')); redirect('dns-monitors'); } $dns_monitor_id = isset($this->params[0]) ? (int) $this->params[0] : null; if(!$dns_monitor = db()->where('dns_monitor_id', $dns_monitor_id)->where('user_id', $this->user->user_id)->getOne('dns_monitors')) { redirect('dns-monitors'); } $dns_monitor->settings = json_decode($dns_monitor->settings ?? ''); $dns_monitor->notifications = json_decode($dns_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 */ $dns_monitor_check_intervals = require APP_PATH . 'includes/dns_monitor_check_intervals.php'; $dns_types = require APP_PATH . 'includes/dns_monitor_types.php'; if(!empty($_POST)) { $_POST['name'] = query_clean($_POST['name']); $_POST['target'] = query_clean($_POST['target']); $_POST['dns_check_interval_seconds'] = in_array($_POST['dns_check_interval_seconds'], $this->user->plan_settings->dns_monitors_check_intervals ?? []) ? (int) $_POST['dns_check_interval_seconds'] : reset($this->user->plan_settings->dns_monitors_check_intervals); $_POST['project_id'] = !empty($_POST['project_id']) && array_key_exists($_POST['project_id'], $projects) ? (int) $_POST['project_id'] : null; $_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); }) ); $_POST['dns_types'] = array_filter($_POST['dns_types'] ?? [], function($dns_type) use($dns_types) { return array_key_exists($dns_type, $dns_types); }); $_POST['is_enabled'] = (int) isset($_POST['is_enabled']); //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(filter_var($_POST['target'], FILTER_VALIDATE_URL)) { $_POST['target'] = get_domain_from_url($_POST['target']); } 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([ 'dns_check_interval_seconds' => $_POST['dns_check_interval_seconds'], 'dns_types' => $_POST['dns_types'], ]); $notifications = json_encode($_POST['notifications'] ?? ''); /* Next check recalculation */ $next_check_datetime = $dns_monitor->next_check_datetime; if((new \DateTime($dns_monitor->next_check_datetime)) > (new \DateTime())) { $next_check_datetime = (new \DateTime())->modify('+' . $_POST['dns_check_interval_seconds'] . ' seconds')->format('Y-m-d H:i:s'); } /* Database query */ $dns_monitor_id = db()->where('dns_monitor_id', $dns_monitor->dns_monitor_id)->update('dns_monitors', [ 'project_id' => $_POST['project_id'], 'name' => $_POST['name'], 'target' => $_POST['target'], 'settings' => $settings, 'notifications' => $notifications, 'is_enabled' => $_POST['is_enabled'], 'next_check_datetime' => $next_check_datetime, 'last_datetime' => get_date(), ]); /* Clear the cache */ cache()->deleteItemsByTag('dns_monitor_id=' . $dns_monitor->dns_monitor_id); /* Set a nice success message */ Alerts::add_success(sprintf(l('global.success_message.update1'), '
' . $_POST['name'] . '
')); redirect('dns-monitor-update/' . $dns_monitor->dns_monitor_id); } } /* Set a custom title */ Title::set(sprintf(l('dns_monitor_update.title'), $dns_monitor->name)); /* Prepare the view */ $data = [ 'dns_monitor' => $dns_monitor, 'projects' => $projects, 'notification_handlers' => $notification_handlers, 'dns_monitor_check_intervals' => $dns_monitor_check_intervals, 'dns_types' => $dns_types, ]; $view = new \Altum\View('dns-monitor-update/index', (array) $this); $this->add_view_content('content', $view->run($data)); } }