setBreadcrum([]); $this->task = []; $this->msg = $msg; $this->icon = $icon; $this->label = __($label); $this->page = $page; $this->url = ui_get_full_url( 'index.php?sec=gservers&sec2=godmode/servers/discovery&wiz=tasklist' ); return $this; } /** * Implements run method. * * @param string $message Redirected input. * @param boolean $status Redirected input. * * @return mixed Returns null if wizard is ongoing. Result if done. */ public function run($message='', $status=null) { global $config; // Load styles. parent::run(); $this->prepareBreadcrum( [ [ 'link' => 'index.php?sec=gservers&sec2=godmode/servers/discovery', 'label' => 'Discovery', ], ] ); // Header. ui_print_page_header( __('Task list'), '', false, '', true, '', false, '', GENERIC_SIZE_TEXT, '', $this->printHeader(true) ); // Show redirected messages from discovery.php. if ($status === 0) { ui_print_success_message($message); } else if ($status !== null) { ui_print_error_message($message); } $force_run = (bool) get_parameter('force_run'); $force = (bool) get_parameter('force'); if ($force_run === true || $force === true) { return $this->forceTask(); } $delete_console_task = (bool) get_parameter('delete_console_task'); if ($delete_console_task === true) { return $this->deleteConsoleTask(); } $toggle_console_task = (int) get_parameter('toggle_console_task', -1); if ($toggle_console_task === 1 || $toggle_console_task === 0) { return $this->toggleConsoleTask($toggle_console_task); } $delete = (bool) get_parameter('delete', false); if ($delete === true) { return $this->deleteTask(); } $disable = (bool) get_parameter('disabled', false); if ($disable === true) { return $this->disableTask(); } $enable = (bool) get_parameter('enabled', false); if ($enable === true) { return $this->enableTask(); } if (enterprise_installed()) { // This check only applies to enterprise users. enterprise_hook('tasklist_checkrunning'); $ret = $this->showListConsoleTask(); } else { $ret = false; } if (is_reporting_console_node() === false) { $ret2 = $this->showList(); } if ($ret === false && $ret2 === false) { include_once $config['homedir'].'/general/first_task/recon_view.php'; } else { $form = [ 'form' => [ 'method' => 'POST', 'action' => ui_get_full_url( 'index.php?sec=gservers&sec2=godmode/servers/discovery' ), 'class' => 'flex_center', ], 'inputs' => [ [ 'arguments' => [ 'name' => 'submit', 'label' => __('Go back'), 'type' => 'submit', 'attributes' => [ 'icon' => 'back', 'mode' => 'secondary', ], 'return' => true, ], ], [ 'arguments' => [ 'name' => 'refresh', 'label' => __('Refresh'), 'type' => 'button', 'attributes' => [ 'icon' => 'cog'], 'return' => true, 'script' => 'location.href = "'.$this->url.'";', ], ], ], ]; html_print_action_buttons($this->printForm($form, true)); } return $ret; } /** * Implements load method. * * @return mixed Skeleton for button. */ public function load() { return [ 'icon' => $this->icon, 'label' => $this->label, 'url' => $this->url, ]; } /** * Delete a recon task. * * @return void */ public function deleteTask() { global $config; if (! check_acl($config['id_user'], 0, 'AW')) { db_pandora_audit( AUDIT_LOG_ACL_VIOLATION, 'Trying to access recon task viewer' ); include 'general/noaccess.php'; return; } $task = get_parameter('task', null); if ($task !== null) { $result = db_process_sql_delete( 'trecon_task', ['id_rt' => $task] ); if ($result == 1) { return [ 'result' => 0, 'msg' => __('Task successfully deleted'), 'id' => false, ]; } // Trick to avoid double execution. header('Location: '.$this->url); } } /** * Force console task. * * @return void */ public function forceTask() { global $config; if (!$this->aclMulticheck('RR|RW|RM|PM')) { db_pandora_audit( AUDIT_LOG_ACL_VIOLATION, 'Trying to access recon task viewer' ); include 'general/noaccess.php'; return; } $id_console_task = (int) get_parameter('id_console_task'); if ($id_console_task != null) { // -------------------------------- // FORCE A CONSOLE TASK // -------------------------------- enterprise_hook('cron_task_run', [$id_console_task, true]); // Trick to avoid double execution. header('Location: '.$this->url); } else { // -------------------------------- // FORCE A RECON TASK // -------------------------------- if (check_acl($config['id_user'], 0, 'AW')) { if (isset($_GET['force'])) { $id = (int) get_parameter_get('force', 0); // Schedule execution. $review_mode = db_get_value( 'review_mode', 'trecon_task', 'id_rt', $id ); if ($review_mode != DISCOVERY_STANDARD) { // Force re-scan for supervised tasks. $review_mode = DISCOVERY_REVIEW; } db_process_sql_update( 'trecon_task', [ 'utimestamp' => 0, 'status' => 1, 'review_mode' => $review_mode, ], ['id_rt' => $id] ); header('Location: '.$this->url); } } } } /** * Toggle enable/disable status of selected Console Task. * * @param integer $enable If 1 enable the console task. * * @return void */ public function toggleConsoleTask(int $enable) { global $config; if ((bool) check_acl($config['id_user'], 0, 'RM') === false) { db_pandora_audit( AUDIT_LOG_ACL_VIOLATION, 'Trying to access recon task viewer' ); include 'general/noaccess.php'; return; } $id_console_task = (int) get_parameter('id_console_task'); if ($id_console_task > 0) { $result = db_process_sql_update( 'tuser_task_scheduled', ['enabled' => $enable], ['id' => $id_console_task] ); if ((int) $result === 1) { return [ 'result' => 0, 'msg' => ((bool) $enable === true) ? __('Task successfully enabled') : __('Task succesfully disabled'), 'id' => false, ]; } // Trick to avoid double execution. header('Location: '.$this->url); } } /** * Delete a Console task. * * @return void */ public function deleteConsoleTask() { global $config; if (! check_acl($config['id_user'], 0, 'RM')) { db_pandora_audit( AUDIT_LOG_ACL_VIOLATION, 'Trying to access recon task viewer' ); include 'general/noaccess.php'; return; } $id_console_task = (int) get_parameter('id_console_task'); if ($id_console_task !== null) { $result = db_process_sql_delete( 'tuser_task_scheduled', ['id' => $id_console_task] ); if ($result == 1) { return [ 'result' => 0, 'msg' => __('Console Task successfully deleted'), 'id' => false, ]; } // Trick to avoid double execution. header('Location: '.$this->url); } } /** * Disable a recon task. * * @return void */ public function disableTask() { global $config; if (! check_acl($config['id_user'], 0, 'AW')) { db_pandora_audit( AUDIT_LOG_ACL_VIOLATION, 'Trying to access recon task viewer' ); include 'general/noaccess.php'; return; } $task = get_parameter('task', null); if ($task !== null) { $result = db_process_sql_update( 'trecon_task', ['disabled' => 1], ['id_rt' => $task] ); if ($result == 1) { return [ 'result' => 0, 'msg' => __('Task successfully disabled'), 'id' => false, ]; } // Trick to avoid double execution. header('Location: '.$this->url); } } /** * Enable a recon task. * * @return void */ public function enableTask() { global $config; if (! check_acl($config['id_user'], 0, 'AW')) { db_pandora_audit( AUDIT_LOG_ACL_VIOLATION, 'Trying to access recon task viewer' ); include 'general/noaccess.php'; return; } $task = get_parameter('task', null); if ($task !== null) { $result = db_process_sql_update( 'trecon_task', [ 'disabled' => 0, 'status' => 0, ], ['id_rt' => $task] ); if ($result == 1) { return [ 'result' => 0, 'msg' => __('Task successfully enabled'), 'id' => false, ]; } // Trick to avoid double execution. header('Location: '.$this->url); } } /** * Show complete list of running tasks. * * @return boolean Success or not. */ public function showList() { global $config; check_login(); if (!$this->aclMulticheck('AR|AW|AM')) { // Tasklist are allowed only of agent managers. return ''; } // Get all discovery servers. $servers = db_get_all_rows_sql('SELECT * FROM tserver WHERE server_type = 3'); if ($servers === false) { $servers = []; ui_print_error_message(__('Discovery Server is disabled')); $check = db_get_all_rows_sql('SELECT * FROM trecon_task'); return (bool) $check; } else { include_once $config['homedir'].'/include/functions_graph.php'; include_once $config['homedir'].'/include/functions_servers.php'; include_once $config['homedir'].'/include/functions_network_profiles.php'; if (users_is_admin()) { $recon_tasks = db_get_all_rows_sql('SELECT * FROM trecon_task'); } else { $user_groups = implode( ',', array_keys(users_get_groups()) ); $recon_tasks = db_get_all_rows_sql( sprintf( 'SELECT * FROM trecon_task WHERE id_group IN (%s)', $user_groups ) ); } // Show network tasks for Recon Server. if ($recon_tasks === false) { $recon_tasks = []; } $url_ajax = $config['homeurl'].'ajax.php'; $table = new StdClass(); $table->cellpadding = 0; $table->cellspacing = 0; $table->width = '100%'; $table->class = 'info_table'; $table->head = []; $table->data = []; $table->align = []; $table->headstyle = []; $table->style = []; $table->style[4] = 'word-break: break-word;'; for ($i = 0; $i < 9; $i++) { $table->headstyle[$i] = 'text-align: left;'; } // Task name. $table->headstyle[1] .= 'min-width: 170px; width: 300px;'; // Server Name. $table->headstyle[2] .= 'min-width: 130px; width: 400px;'; // Name. $table->headstyle[4] .= 'min-width: 100px; width: 350px;'; // Status. $table->headstyle[5] .= 'min-width: 70px; width: 190px;'; // Task type. $table->headstyle[6] .= 'min-width: 190px; width: 200px;'; // Progress. $table->headstyle[7] .= 'min-width: 60px; width: 150px;'; // Updated at. $table->headstyle[8] .= 'min-width: 50px; width: 150px;'; // Operations. $table->headstyle[9] .= 'min-width: 150px; width: 250px;'; if (check_acl($config['id_user'], 0, 'AW')) { $table->head[0] = __('Force'); $table->align[0] = 'left'; } $table->head[1] = __('Task name'); $table->align[1] = 'left'; $table->head[2] = __('Server name'); $table->align[2] = 'left'; $table->head[3] = __('Interval'); $table->align[3] = 'left'; $table->head[4] = __('Network'); $table->align[4] = 'left'; $table->head[5] = __('Status'); $table->align[5] = 'left'; $table->head[6] = __('Task type'); $table->align[6] = 'left'; $table->head[7] = __('Progress'); $table->align[7] = 'left'; $table->head[8] = __('Updated at'); $table->align[8] = 'left'; $table->head[9] = __('Operations'); $table->align[9] = 'left'; foreach ($recon_tasks as $task) { if ($this->aclMulticheck('AR|AW|AM', $task['id_group']) === false) { continue; } $no_operations = false; $data = []; $server_name = servers_get_name($task['id_recon_server']); // By default. $subnet = $task['subnet']; // Exceptions: IPAM. $ipam = false; if ($task['id_recon_script'] != null) { $recon_script_data = db_get_row( 'trecon_script', 'id_recon_script', $task['id_recon_script'] ); if ($recon_script_data !== false) { $recon_script_name = $recon_script_data['name']; if (io_safe_output($recon_script_name) == 'IPAM Recon' && enterprise_installed() ) { $subnet_obj = json_decode($task['macros'], true); $subnet = $subnet_obj['1']['value']; $tipam_task_id = db_get_value( 'id', 'tipam_network', 'id_recon_task', $task['id_rt'] ); $ipam = true; } } } else { $recon_script_data = false; $recon_script_name = false; } if ($task['disabled'] == 0 && $server_name !== '') { if (check_acl($config['id_user'], 0, 'AW')) { $data[0] = ''; $data[0] .= html_print_image( 'images/force@svg.svg', true, [ 'title' => __('Force'), 'class' => 'main_menu_icon invert_filter', ] ); $data[0] .= ''; } } else if ($task['disabled'] == 2) { $data[0] = ui_print_help_tip( __('This task has not been completely defined, please edit it'), true ); } else { $data[0] = ''; } // Name task. $data[1] = ''; if ($task['disabled'] != 2) { $data[1] .= ''; } if ($task['disabled'] == 1) { $data[1] .= ''.$task['name'].''; } else { $data[1] .= ''.$task['name'].''; } if ($task['disabled'] != 2) { $data[1] .= ''; } $data[2] = $server_name; if ($task['interval_sweep'] > 0) { $data[3] = human_time_description_raw( $task['interval_sweep'] ); } else { $data[3] = __('Manual'); } if ($task['id_recon_script'] == 0 || $ipam === true) { $data[4] = ui_print_truncate_text($subnet, 50, true, true, true, '[…]'); } else { $data[4] = '-'; } $_rs = $this->getStatusMessage($task); $can_be_reviewed = $_rs['can_be_reviewed']; $data[5] = $_rs['message']; switch ($task['type']) { case DISCOVERY_CLOUD_AZURE_COMPUTE: // Discovery Applications MySQL. $data[6] = html_print_image( 'images/plugins@svg.svg', true, [ 'title' => __('Discovery Cloud Azure Compute'), 'class' => 'main_menu_icon invert_filter', ] ).' '; $data[6] .= __('Cloud.Azure.Compute'); break; case DISCOVERY_CLOUD_AWS_EC2: // Discovery Applications MySQL. $data[6] = html_print_image( 'images/plugins@svg.svg', true, [ 'title' => __('Discovery Cloud AWS EC2'), 'class' => 'main_menu_icon invert_filter', ] ).' '; $data[6] .= __('Cloud.AWS.EC2'); break; case DISCOVERY_CLOUD_AWS_RDS: // Discovery Cloud RDS. $data[6] = html_print_image( 'images/cluster@os.svg', true, [ 'title' => __('Discovery Cloud RDS'), 'class' => 'main_menu_icon invert_filter', ] ).' '; $data[6] .= __('Discovery.Cloud.Aws.RDS'); break; case DISCOVERY_CLOUD_AWS_S3: // Discovery Cloud S3. $data[6] = html_print_image( 'images/cluster@os.svg', true, [ 'title' => __('Discovery Cloud S3'), 'class' => 'main_menu_icon invert_filter', ] ).' '; $data[6] .= __('Discovery.Cloud.Aws.S3'); break; case DISCOVERY_APP_MYSQL: // Discovery Applications MySQL. $data[6] = html_print_image( 'images/cluster@os.svg', true, [ 'title' => __('Discovery Applications MySQL'), 'class' => 'main_menu_icon invert_filter', ] ).' '; $data[6] .= __('Discovery.App.MySQL'); break; case DISCOVERY_APP_ORACLE: // Discovery Applications Oracle. $data[6] = html_print_image( 'images/cluster@os.svg', true, [ 'title' => __('Discovery Applications Oracle'), 'class' => 'main_menu_icon invert_filter', ] ).' '; $data[6] .= __('Discovery.App.Oracle'); break; case DISCOVERY_APP_DB2: // Discovery Applications DB2. $data[6] = html_print_image( 'images/cluster@os.svg', true, [ 'title' => __('Discovery Applications DB2'), 'class' => 'main_menu_icon invert_filter', ] ).' '; $data[6] .= __('Discovery.App.DB2'); break; case DISCOVERY_DEPLOY_AGENTS: // Internal deployment task. $no_operations = true; $data[6] = html_print_image( 'images/osx-terminal@groups.svg', true, ['title' => __('Agent deployment')] ).' '; $data[6] .= __('Discovery.Agent.Deployment'); break; case DISCOVERY_APP_MICROSOFT_SQL_SERVER: // Discovery Applications Oracle. $data[6] = html_print_image( 'images/cluster@os.svg', true, [ 'title' => __('Discovery Applications Microsoft SQL Server'), 'class' => 'main_menu_icon invert_filter', ] ).' '; $data[6] .= __('Discovery.App.Microsoft SQL Server'); break; case DISCOVERY_HOSTDEVICES: default: if ($task['id_recon_script'] == 0) { // Discovery NetScan. $data[6] = html_print_image( 'images/cluster@os.svg', true, [ 'title' => __('Discovery NetScan'), 'class' => 'main_menu_icon invert_filter', ] ).' '; $data[6] .= __('Discovery.NetScan'); } else { // APP or external script recon task. $data[6] = html_print_image( 'images/plugins@svg.svg', true, ['class' => 'main_menu_icon invert_filter'] ).' '; $data[6] .= $recon_script_name; } break; } if ($task['status'] <= 0 || $task['status'] > 100) { $data[7] = '-'; } else { $data[7] = ui_progress( $task['status'], '100%', 1.2, // Color. '#ececec', // Return. true, // Text. '', // Ajax. [ 'page' => 'godmode/servers/discovery', 'interval' => 10, 'simple' => 1, 'data' => [ 'wiz' => 'tasklist', 'id' => $task['id_rt'], 'method' => 'taskProgress', ], ], '' ); } if ($task['utimestamp'] > 0) { $data[8] = ui_print_timestamp( $task['utimestamp'], true ); } else { $data[8] = __('Not executed yet'); } if (!$no_operations) { if ($task['disabled'] != 2) { $data[9] = ''; if ($can_be_reviewed) { $data[9] .= ''; $data[9] .= html_print_image( 'images/expand.png', true, [ 'title' => __('Review results'), 'class' => 'main_menu_icon invert_filter', ] ); $data[9] .= ''; } $data[9] .= ''; $data[9] .= html_print_image( 'images/details.svg', true, [ 'title' => __('View summary'), 'class' => 'main_menu_icon invert_filter', ] ); $data[9] .= ''; } if ($task['disabled'] != 2 && $task['utimestamp'] > 0 && $task['type'] != DISCOVERY_APP_MYSQL && $task['type'] != DISCOVERY_APP_ORACLE && $task['type'] != DISCOVERY_APP_DB2 && $task['type'] != DISCOVERY_APP_SAP && $task['type'] != DISCOVERY_CLOUD_AWS_RDS && $task['type'] != DISCOVERY_CLOUD_AWS_S3 ) { if (check_acl($config['id_user'], 0, 'MR')) { $data[9] .= ''; $data[9] .= html_print_image( 'images/web@groups.svg', true, [ 'title' => __('View map'), 'class' => 'main_menu_icon invert_filter', ] ); $data[9] .= ''; } } if (check_acl( $config['id_user'], $task['id_group'], 'AW' ) ) { if ($ipam === true) { if (empty($tipam_task_id) === false) { $data[9] .= ''.html_print_image( 'images/edit.svg', true, [ 'title' => __('Edit task'), 'class' => 'main_menu_icon invert_filter', ] ).''; $data[9] .= ''.html_print_image( 'images/delete.svg', true, [ 'title' => __('Delete task'), 'class' => 'main_menu_icon invert_filter', ] ).''; } else { $data[9] .= ''.html_print_image( 'images/delete.svg', true, [ 'title' => __('Delete task'), 'class' => 'main_menu_icon invert_filter', ] ).''; } } else { // Check if is a H&D, Cloud or Application or IPAM. $data[9] .= ''.html_print_image( 'images/edit.svg', true, [ 'title' => __('Edit task'), 'class' => 'main_menu_icon invert_filter', ] ).''; $data[9] .= ''.html_print_image( 'images/delete.svg', true, [ 'title' => __('Delete task'), 'class' => 'main_menu_icon invert_filter', ] ).''; } if ($task['disabled'] == 1) { $data[9] .= ''.html_print_image( 'images/lightbulb_off.png', true, [ 'title' => __('enable task'), 'class' => 'filter_none', ] ).''; } else if ($task['disabled'] == 0) { $data[9] .= ''.html_print_image( 'images/lightbulb.png', true, ['title' => __('Disable task')] ).''; } } else { $data[9] = ''; } } else { $data[9] = '-'; } $table->cellclass[][9] = 'table_action_buttons'; // Div neccesary for modal progress task. echo '
'; array_push($table->data, $data); } if (empty($table->data)) { $content = '