芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/status.pulsehost.co.uk/app/controllers/DnsMonitors.php
monitors_heartbeats->dns_monitors_is_enabled) { redirect('not-found'); } \Altum\Authentication::guard(); /* Prepare the filtering system */ $filters = (new \Altum\Filters(['is_enabled', 'project_id'], ['name', 'target'], ['dns_monitor_id', 'total_checks', 'total_changes', 'last_datetime', 'datetime', 'last_check_datetime', 'name', 'last_change_datetime'])); $filters->set_default_order_by($this->user->preferences->dns_monitors_default_order_by, $this->user->preferences->default_order_type ?? settings()->main->default_order_type); $filters->set_default_results_per_page($this->user->preferences->default_results_per_page ?? settings()->main->default_results_per_page); /* Prepare the paginator */ $total_rows = database()->query("SELECT COUNT(*) AS `total` FROM `dns_monitors` WHERE `user_id` = {$this->user->user_id} {$filters->get_sql_where()}")->fetch_object()->total ?? 0; $paginator = (new \Altum\Paginator($total_rows, $filters->get_results_per_page(), $_GET['page'] ?? 1, url('dns-monitors?' . $filters->get_get() . '&page=%d'))); /* Get the dns_monitors */ $dns_monitors = []; $dns_monitors_result = database()->query(" SELECT * FROM `dns_monitors` WHERE `user_id` = {$this->user->user_id} {$filters->get_sql_where()} {$filters->get_sql_order_by()} {$paginator->get_sql_limit()} "); while($row = $dns_monitors_result->fetch_object()) { $dns_monitors[] = $row; } /* Export handler */ process_export_csv($dns_monitors, 'include', ['dns_monitor_id', 'project_id', 'name', 'target', 'total_checks', 'total_changes', 'total_dns_types_found', 'total_dns_records_found', 'last_check_datetime', 'next_check_datetime', 'last_change_datetime', 'is_enabled', 'last_datetime', 'datetime'], sprintf(l('dns_monitors.title'))); process_export_json($dns_monitors, 'include', ['dns_monitor_id', 'project_id', 'name', 'target', 'settings', 'notifications', 'dns', 'total_checks', 'total_changes', 'total_dns_types_found', 'total_dns_records_found', 'last_check_datetime', 'next_check_datetime', 'last_change_datetime', 'is_enabled', 'last_datetime', 'datetime'], sprintf(l('dns_monitors.title'))); /* Prepare the pagination view */ $pagination = (new \Altum\View('partials/pagination', (array) $this))->run(['paginator' => $paginator]); $projects = (new \Altum\Models\Projects())->get_projects_by_user_id($this->user->user_id); /* Prepare the view */ $data = [ 'projects' => $projects, 'dns_monitors' => $dns_monitors, 'total_dns_monitors' => $total_rows, 'pagination' => $pagination, 'filters' => $filters, ]; $view = new \Altum\View('dns-monitors/index', (array) $this); $this->add_view_content('content', $view->run($data)); } public function duplicate() { \Altum\Authentication::guard(); if(!settings()->monitors_heartbeats->dns_monitors_is_enabled) { redirect('not-found'); } /* Team checks */ if(\Altum\Teams::is_delegated() && !\Altum\Teams::has_access('create.dns_monitors')) { Alerts::add_info(l('global.info_message.team_no_access')); redirect('dns-monitors'); } if(empty($_POST)) { redirect('dns-monitors'); } /* Make sure that the user didn't exceed the limit */ $total_rows = db()->where('user_id', $this->user->user_id)->getValue('dns_monitors', 'COUNT(*)') ?? 0; if($this->user->plan_settings->dns_monitors_limit != -1 && $total_rows >= $this->user->plan_settings->dns_monitors_limit) { Alerts::add_info(l('global.info_message.plan_feature_limit')); redirect('dns-monitors'); } $dns_monitor_id = (int) $_POST['dns_monitor_id']; //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.'); if(!\Altum\Csrf::check()) { Alerts::add_error(l('global.error_message.invalid_csrf_token')); redirect('dns-monitors'); } /* Verify the main resource */ if(!$dns_monitor = db()->where('dns_monitor_id', $dns_monitor_id)->where('user_id', $this->user->user_id)->getOne('dns_monitors')) { redirect('dns-monitors'); } if(!Alerts::has_field_errors() && !Alerts::has_errors()) { /* Insert to database */ $dns_monitor_id = db()->insert('dns_monitors', [ 'user_id' => $this->user->user_id, 'project_id' => $dns_monitor->project_id, 'name' => string_truncate($dns_monitor->name . ' - ' . l('global.duplicated'), 64, null), 'target' => $dns_monitor->target, 'settings' => $dns_monitor->settings, 'notifications' => $dns_monitor->notifications, 'is_enabled' => 0, 'next_check_datetime' => $dns_monitor->next_check_datetime, 'datetime' => get_date(), ]); /* Set a nice success message */ Alerts::add_success(sprintf(l('global.success_message.create1'), '
' . input_clean($dns_monitor->name) . '
')); /* Redirect */ redirect('dns-monitor-update/' . $dns_monitor_id); } redirect('dns-monitors'); } public function bulk() { if(!settings()->monitors_heartbeats->dns_monitors_is_enabled) { redirect('not-found'); } \Altum\Authentication::guard(); /* Check for any errors */ if(empty($_POST)) { redirect('dns-monitors'); } if(empty($_POST['selected'])) { redirect('dns-monitors'); } if(!isset($_POST['type'])) { redirect('dns-monitors'); } //ALTUMCODE:DEMO if(DEMO) Alerts::add_error('This command is blocked on the demo.'); if(!\Altum\Csrf::check()) { Alerts::add_error(l('global.error_message.invalid_csrf_token')); } if(!Alerts::has_field_errors() && !Alerts::has_errors()) { set_time_limit(0); switch($_POST['type']) { case 'delete': /* Team checks */ if(\Altum\Teams::is_delegated() && !\Altum\Teams::has_access('delete.dns_monitors')) { Alerts::add_info(l('global.info_message.team_no_access')); redirect('dns-monitors'); } foreach($_POST['selected'] as $dns_monitor_id) { if($dns_monitor = db()->where('dns_monitor_id', $dns_monitor_id)->where('user_id', $this->user->user_id)->getOne('dns_monitors', ['dns_monitor_id'])) { /* Delete the resource */ db()->where('dns_monitor_id', $dns_monitor->dns_monitor_id)->delete('dns_monitors'); /* Clear cache */ cache()->deleteItemsByTag('dns_monitor_id=' . $dns_monitor->dns_monitor_id); } } break; } /* Set a nice success message */ Alerts::add_success(l('bulk_delete_modal.success_message')); } redirect('dns-monitors'); } public function delete() { if(!settings()->monitors_heartbeats->dns_monitors_is_enabled) { redirect('not-found'); } \Altum\Authentication::guard(); /* Team checks */ if(\Altum\Teams::is_delegated() && !\Altum\Teams::has_access('delete.dns_monitors')) { Alerts::add_info(l('global.info_message.team_no_access')); redirect('dns-monitors'); } if(empty($_POST)) { redirect('dns-monitors'); } $dns_monitor_id = (int) query_clean($_POST['dns_monitor_id']); //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.'); if(!\Altum\Csrf::check()) { Alerts::add_error(l('global.error_message.invalid_csrf_token')); redirect('dns-monitors'); } /* Make sure the dns_monitor id is created by the logged in user */ if(!$dns_monitor = db()->where('dns_monitor_id', $dns_monitor_id)->where('user_id', $this->user->user_id)->getOne('dns_monitors', ['dns_monitor_id', 'name'])) { redirect('dns-monitors'); } if(!Alerts::has_field_errors() && !Alerts::has_errors()) { /* Delete the dns_monitor */ db()->where('dns_monitor_id', $dns_monitor->dns_monitor_id)->delete('dns_monitors'); /* Clear cache */ cache()->deleteItemsByTag('dns_monitor_id=' . $dns_monitor->dns_monitor_id); /* Set a nice success message */ Alerts::add_success(sprintf(l('global.success_message.delete1'), '
' . $dns_monitor->name . '
')); redirect('dns-monitors'); } redirect('dns-monitors'); } }