$id_agent, 'id_tipo_modulo' => $module_type, 'delete_pending' => 0), 'nombre'); if ($module_name == false) { $module_name = array(); } foreach ($module_name as $mod_name) { $result = process_manage_edit($mod_name['nombre'], $id_agent['id_agente']); $count++; $success += (int)$result; } } } else if ($force == 'group') { $agents_ = array_keys(agents_get_group_agents($group_select, false, "none")); foreach ($agents_ as $id_agent) { $module_name = db_get_all_rows_filter('tagente_modulo', array('id_agente' => $id_agent),'nombre'); if ($module_name == false) { $module_name = array(); } foreach($module_name as $mod_name) { $result = process_manage_edit($mod_name['nombre'], $id_agent); $count ++; $success += (int)$result; } } } // We empty the agents array to skip the standard procedure $agents_ = array(); } foreach ($agents_ as $agent_) { if ($modules_ == false) { $modules_ = array(); } foreach ($modules_ as $module_) { $result = process_manage_edit ($module_, $agents_); $count ++; $success += (int)$result; } } ui_print_result_message ($success > 0, __('Successfully updated') . "(" . $success . "/" . $count . ")", __('Could not be updated')); $info = 'Modules: ' . json_encode($modules_) . ' Agents: ' . json_encode($agents_); if ($success > 0) { db_pandora_audit("Massive management", "Edit module", false, false, $info); } else { db_pandora_audit("Massive management", "Fail try to edit module", false, false, $info); } } $table->id = 'delete_table'; $table->width = '98%'; $table->data = array (); $table->style = array (); $table->style[0] = 'font-weight: bold; vertical-align:top'; $table->style[2] = 'font-weight: bold'; $table->rowstyle = array (); $table->size = array (); $table->size[0] = '15%'; $table->size[1] = '35%'; $table->size[2] = '15%'; $table->size[3] = '35%'; if (! $module_type) { $table->rowstyle['edit1'] = 'display: none'; $table->rowstyle['edit1_1'] = 'display: none'; $table->rowstyle['edit2'] = 'display: none'; $table->rowstyle['edit3'] = 'display: none'; $table->rowstyle['edit35'] = 'display: none'; $table->rowstyle['edit4'] = 'display: none'; $table->rowstyle['edit5'] = 'display: none'; $table->rowstyle['edit6'] = 'display: none'; $table->rowstyle['edit7'] = 'display: none'; } $agents = agents_get_group_agents (array_keys (users_get_groups ()), false, "none"); switch ($config["dbtype"]) { case "mysql": case "oracle": $module_types = db_get_all_rows_filter ('tagente_modulo,ttipo_modulo', array ('tagente_modulo.id_tipo_modulo = ttipo_modulo.id_tipo', 'id_agente' => array_keys ($agents), 'disabled' => 0, 'order' => 'ttipo_modulo.nombre'), array ('DISTINCT(id_tipo)', 'CONCAT(ttipo_modulo.descripcion," (",ttipo_modulo.nombre,")") AS description')); break; case "postgresql": $module_types = db_get_all_rows_filter ('tagente_modulo,ttipo_modulo', array ('tagente_modulo.id_tipo_modulo = ttipo_modulo.id_tipo', 'id_agente' => array_keys ($agents), 'disabled' => 0, 'order' => 'description'), array ('DISTINCT(id_tipo)', 'ttipo_modulo.descripcion || \' (\' || ttipo_modulo.nombre || \')\' AS description')); break; } if ($module_types === false) $module_types = array (); $types = ''; foreach ($module_types as $type) { $types[$type['id_tipo']] = $type['description']; } $snmp_versions['1'] = 'v. 1'; $snmp_versions['2'] = 'v. 2'; $snmp_versions['2c'] = 'v. 2c'; $snmp_versions['3'] = 'v. 3'; $table->width = '100%'; $table->data = array (); $table->data['selection_mode'][0] = __('Selection mode'); $table->data['selection_mode'][1] = __('Select modules first') . ' ' . html_print_radio_button_extended ("selection_mode", 'modules', '', $selection_mode, false, '', 'style="margin-right: 40px;"', true); $table->data['selection_mode'][2] = ''; $table->data['selection_mode'][3] = __('Select agents first') . ' ' . html_print_radio_button_extended ("selection_mode", 'agents', '', $selection_mode, false, '', 'style="margin-right: 40px;"', true); $table->rowclass['form_modules_1'] = 'select_modules_row'; $table->data['form_modules_1'][0] = __('Module type'); $table->data['form_modules_1'][0] .= ''; $types[0] = __('All'); $table->colspan['form_modules_1'][1] = 2; $table->data['form_modules_1'][1] = html_print_select ($types, 'module_type', '', false, __('Select'), -1, true, false, true); $table->data['form_modules_1'][3] = __('Select all modules of this type') . ' ' . html_print_checkbox_extended ("force_type", 'type', '', '', false, '', 'style="margin-right: 40px;"', true); $modules = array (); if ($module_type != '') { $filter = array ('id_tipo_modulo' => $module_type); } else { $filter = false; } $names = agents_get_modules (array_keys ($agents), 'DISTINCT(nombre)', $filter, false); foreach ($names as $name) { $modules[$name['nombre']] = $name['nombre']; } $table->rowclass['form_agents_1'] = 'select_agents_row'; $table->data['form_agents_1'][0] = __('Agent group'); $groups = groups_get_all(true); $groups[0] = __('All'); $table->colspan['form_agents_1'][1] = 2; $table->data['form_agents_1'][1] = html_print_select ($groups, 'groups_select', '', true, __('Select'), -1, true, false, true) . ' ' . __('Group recursion') . ' ' . html_print_checkbox ("recursion", 1, false, true, false); $table->data['form_agents_1'][3] = __('Select all modules of this group') . ' ' . html_print_checkbox_extended ("force_group", 'group', '', '', false, '', 'style="margin-right: 40px;"', true); $table->rowstyle['form_modules_2'] = 'vertical-align: top;'; $table->rowclass['form_modules_2'] = 'select_modules_row select_modules_row_2'; $table->data['form_modules_2'][0] = __('Modules'); $table->data['form_modules_2'][1] = html_print_select ($modules, 'module_name[]', $module_name, false, __('Select'), -1, true, true, true); $table->data['form_modules_2'][2] = __('When select modules'); $table->data['form_modules_2'][2] .= '
'; $table->data['form_modules_2'][2] .= html_print_select ( array('common' => __('Show common agents'), 'all' => __('Show all agents')), 'agents_selection_mode', 'common', false, '', '', true); $table->data['form_modules_2'][3] = html_print_select (array(), 'agents[]', $agents_select, false, __('None'), 0, true, true, false); $table->rowclass['form_agents_2'] = 'select_agents_row'; $table->data['form_agents_2'][0] = __('Status'); $table->colspan['form_agents_2'][1] = 2; $status_list = array (); $status_list[AGENT_STATUS_NORMAL] = __('Normal'); $status_list[AGENT_STATUS_WARNING] = __('Warning'); $status_list[AGENT_STATUS_CRITICAL] = __('Critical'); $status_list[AGENT_STATUS_UNKNOWN] = __('Unknown'); $status_list[AGENT_STATUS_NOT_NORMAL] = __('Not normal'); $status_list[AGENT_STATUS_NOT_INIT] = __('Not init'); $table->data['form_agents_2'][1] = html_print_select($status_list, 'status_agents', 'selected', '', __('All'), AGENT_STATUS_ALL, true); $table->data['form_agents_2'][3] = ''; $table->rowstyle['form_agents_3'] = 'vertical-align: top;'; $table->rowclass['form_agents_3'] = 'select_agents_row select_agents_row_2'; $table->data['form_agents_3'][0] = __('Agents'); $table->data['form_agents_3'][1] = html_print_select ($agents, 'id_agents[]', $agents_id, false, '', '', true, true, false); $table->data['form_agents_3'][2] = __('When select agents'); $table->data['form_agents_3'][2] .= '
'; $table->data['form_agents_3'][2] .= html_print_select ( array('common' => __('Show common modules'), 'all' => __('Show all modules')), 'modules_selection_mode', 'common', false, '', '', true); $table->data['form_agents_3'][3] = html_print_select (array(), 'module[]', $modules_select, false, '', '', true, true, false); $table->data['edit1'][0] = __('Warning status'); $table->data['edit1'][1] = ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= '
'; $table->data['edit1'][1] .= '' . __('Min.') . ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= html_print_input_text('min_warning', '', '', 5, 15, true); $table->data['edit1'][1] .= '
'; $table->data['edit1'][1] .= '' . __('Max.') . ''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= html_print_input_text ('max_warning', '', '', 5, 15, true); $table->data['edit1'][1] .= '
'; $table->data['edit1'][1] .= ''.__('Str.').''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= html_print_input_text ('str_warning', '', '', 5, 15, true); $table->data['edit1'][1] .= '
'; $table->data['edit1'][1] .= ''.__('Inverse interval').''; $table->data['edit1'][1] .= ''; $table->data['edit1'][1] .= html_print_select( array('' => __('No change'), '1' => __('Yes'), '0' => __('No')), 'warning_inverse','','','', '', true); $table->data['edit1'][1] .= '
'; $table->data['edit1'][2] = __('Critical status'); $table->data['edit1'][3] = ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= '
'; $table->data['edit1'][3] .= '' . __('Min.') . ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= html_print_input_text('min_critical', '', '', 5, 15, true); $table->data['edit1'][3] .= '
'; $table->data['edit1'][3] .= '' . __('Max.') . ''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= html_print_input_text ('max_critical', '', '', 5, 15, true); $table->data['edit1'][3] .= '
'; $table->data['edit1'][3] .= ''.__('Str.').''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= html_print_input_text ('str_critical', '', '', 5, 15, true); $table->data['edit1'][3] .= '
'; $table->data['edit1'][3] .= ''.__('Inverse interval').''; $table->data['edit1'][3] .= ''; $table->data['edit1'][3] .= html_print_select( array('' => __('No change'), '1' => __('Yes'), '0' => __('No')), 'critical_inverse','','','', '', true); $table->data['edit1'][3] .= '
'; $table->data['edit1_1'][0] = ''.__('Description'). ''; $table->data['edit1_1'][1] = html_print_textarea ('descripcion', 2, 50, '', '', true); $table->colspan['edit1_1'][1] = 3; $table->data['edit2'][0] = __('Interval'); $table->data['edit2'][1] = html_print_extended_select_for_time ('module_interval', 0, '', __('No change'), '0', 10, true, 'width: 150px'); $table->data['edit2'][2] = __('Disabled'); $table->data['edit2'][3] = html_print_select(array('' => __('No change'), '1' => __('Yes'), '0' => __('No')),'disabled','','','', '', true); $table->data['edit3'][0] = __('Post process') . ui_print_help_icon ('postprocess', true); $table->data['edit3'][1] = html_print_input_text ('post_process', '', '', 10, 15, true); $table->data['edit3'][2] = __('SMNP community'); $table->data['edit3'][3] = html_print_input_text ('snmp_community', '', '', 10, 15, true); $table->data['edit35'][0] = __('Target IP'); $table->data['edit35'][1] = html_print_input_text ('ip_target', '', '', 15, 60, true); $table->data['edit35'][2] = __('SNMP version'); $table->data['edit35'][3] = html_print_select ($snmp_versions, 'tcp_send', '', '', __('No change'), '', true, false, false, ''); $table->data['edit36'][0] = __('Auth user'); $table->data['edit36'][1] = html_print_input_text ('plugin_user_snmp', '', '', 15, 60, true); $table->data['edit36'][2] = __('Auth password') . ui_print_help_tip(__("The pass length must be eight character minimum."), true); $table->data['edit36'][3] = html_print_input_text ('plugin_pass_snmp', '', '', 15, 60, true); $table->data['edit37'][0] = __('Privacy method'); $table->data['edit37'][1] = html_print_select(array('DES' => __('DES'), 'AES' => __('AES')), 'custom_string_1', '', '', __('No change'), '', true); $table->data['edit37'][2] = __('Privacy pass') . ui_print_help_tip(__("The pass length must be eight character minimum."), true); $table->data['edit37'][3] = html_print_input_text ('custom_string_2', '', '', 15, 60, true); $table->data['edit38'][0] = __('Auth method'); $table->data['edit38'][1] = html_print_select(array('MD5' => __('MD5'), 'SHA' => __('SHA')), 'plugin_parameter', '', '', __('No change'), '', true); $table->data['edit38'][2] = __('Security level'); $table->data['edit38'][3] = html_print_select(array('noAuthNoPriv' => __('Not auth and not privacy method'), 'authNoPriv' => __('Auth and not privacy method'), 'authPriv' => __('Auth and privacy method')), 'custom_string_3', '', '', __('No change'), '', true); $table->data['edit4'][0] = __('Value'); $table->data['edit4'][1] = ''.__('Min.').''; $table->data['edit4'][1] .= html_print_input_text ('min', '', '', 5, 15, true); $table->data['edit4'][1] .= '
'.__('Max.').''; $table->data['edit4'][1] .= html_print_input_text ('max', '', '', 5, 15, true); $table->data['edit4'][2] = __('Module group'); // Create module groups values for select $module_groups = modules_get_modulegroups(); $module_groups[0] = __('Not assigned'); $table->data['edit4'][3] = html_print_select ($module_groups, 'id_module_group', '', '', __('No change'), '', true, false, false); $table->data['edit5'][0] = __('Username'); $table->data['edit5'][1] = html_print_input_text ('plugin_user', '', '', 15, 60, true); $table->data['edit5'][2] = __('Password'); $table->data['edit5'][3] = html_print_input_password ('plugin_pass', '', '', 15, 60, true); // Export target $table->data['edit6'][0] = __('Export target'); $targets2 = db_get_all_rows_sql ("SELECT id, name FROM tserver_export ORDER by name"); if ($targets2 === false) $targets2 = array(); $targets = array_merge(array(0 => __('None')), $targets2 ); $table->data['edit6'][1] = html_print_select ($targets, 'id_export', '','', __('No change'), '', true, false, false); $table->data['edit6'][2] = __('Unit'); $table->data['edit6'][3] = html_print_input_text ('unit', '', '', 15, 60, true); /* FF stands for Flip-flop */ $table->data['edit7'][0] = __('FF threshold') . ' ' . ui_print_help_icon ('ff_threshold', true); $table->colspan['edit7'][1] = 3; $table->data['edit7'][1] = __('Mode') . ' ' . html_print_select(array('' => __('No change'), '1' => __('Each state changing'), '0' => __('All state changing')),'each_ff','','','', '', true) . '
'; $table->data['edit7'][1] .= __('All state changing') . ' : ' . html_print_input_text ('min_ff_event', '', '', 5, 15, true) . '
'; $table->data['edit7'][1] .= __('Each state changing') . ' : '; $table->data['edit7'][1] .= __('To normal') . html_print_input_text ('min_ff_event_normal', '', '', 5, 15, true) . ' '; $table->data['edit7'][1] .= __('To warning') . html_print_input_text ('min_ff_event_warning', '', '', 5, 15, true) . ' '; $table->data['edit7'][1] .= __('To critical') . html_print_input_text ('min_ff_event_critical', '', '', 5, 15, true) . ' '; $table->data['edit8'][0] = __('FF interval'); $table->data['edit8'][1] = html_print_input_text ('module_ff_interval', '', '', 5, 10, true) . ui_print_help_tip (__('Module execution flip flop time interval (in secs).'), true); $table->data['edit8'][2] = __('FF timeout'); $table->data['edit8'][3] = html_print_input_text ('ff_timeout', '', '', 5, 10, true).ui_print_help_tip (__('Timeout in secs from start of flip flop counting. If this value is exceeded, FF counter is reset. Set to 0 for no timeout.'), true); $table->data['edit9'][0] = __('Historical data'); $table->data['edit9'][1] = html_print_select(array('' => __('No change'), '1' => __('Yes'), '0' => __('No')),'history_data','','','', '', true); /* Tags avalaible */ $id_tag = array(); $table->data['edit10'][0] = __('Tags'); $table->data['edit10'][1] = html_print_select_from_sql ('SELECT id_tag, name FROM ttag ORDER BY name', 'id_tag[]', $id_tag, '',__('None'),'0', true, true, false, false); $table->data['edit10'][2] = __('Category'); $table->data['edit10'][3] = html_print_select (categories_get_all_categories('forselect'), 'id_category', '','', __('No change'), '', true, false, false); if (enterprise_installed()) { $table->rowspan['edit10'][0] = $table->rowspan['edit10'][1] = 2; $table->data['edit101'][2] = __('Policy linking status') . ui_print_help_tip(__("This field only has sense in modules adopted by a policy."), true); $table->data['edit101'][3] = html_print_select (array(MODULE_PENDING_LINK => __('Linked'), MODULE_PENDING_UNLINK => __('Unlinked')), 'policy_linked', '','', __('No change'), '', true, false, false); } if ($table->rowspan['edit10'][0] == 2) { $table->rowspan['edit10'][0] = $table->rowspan['edit10'][1] = 3; } else { $table->rowspan['edit10'][0] = $table->rowspan['edit10'][1] = 2; } $table->data['edit102'][2] = __('Throw unknown events'); $table->data['edit102'][3] = html_print_select( array('' => __('No change'), '1' => __('Yes'), '0' => __('No')), 'throw_unknown_events','','','', '', true); $table->data['edit12'][0] = ''.__('Critical instructions'). ''. ui_print_help_tip(__("Instructions when the status is critical"), true); $table->data['edit12'][1] = html_print_textarea ('critical_instructions', 2, 50, '', '', true); $table->colspan['edit12'][1] = 3; $table->data['edit13'][0] = ''.__('Warning instructions'). ''. ui_print_help_tip(__("Instructions when the status is warning"), true); $table->data['edit13'][1] = html_print_textarea ('warning_instructions', 2, 50, '', '', true); $table->colspan['edit13'][1] = 3; $table->data['edit14'][0] = ''.__('Unknown instructions').''. ui_print_help_tip(__("Instructions when the status is unknown"), true); $table->data['edit14'][1] = html_print_textarea ('unknown_instructions', 2, 50, '', '', true); $table->colspan['edit14'][1] = 3; $table->data['edit11'][0] = __('Quiet'); $table->data['edit11'][0] .= ui_print_help_tip(__('The module still store data but the alerts and events will be stop'), true); $table->data['edit11'][1] = html_print_select(array(-1 => __('No change'), 1 => __('Yes'), 0 => __('No')), "quiet_select", -1, "", '', 0, true); $table->data['edit11'][2] = __('Timeout'); $table->data['edit11'][3] = html_print_input_text( 'max_timeout', '', '', 5, 10, true) . ' ' . ui_print_help_tip ( __('Seconds that agent will wait for the execution of the module.'), true); echo '
'; html_print_table ($table); echo '
'; html_print_input_hidden ('update', 1); html_print_submit_button (__('Update'), 'go', false, 'class="sub upd"'); echo '
'; echo '
'; echo ''; //Hack to translate text "none" in PHP to javascript echo ''; ui_require_jquery_file ('pandora.controls'); if ($selection_mode == 'modules') { $modules_row = ''; $agents_row = 'none'; } else { $modules_row = 'none'; $agents_row = ''; } ?> (int)!$throw_unknown_events); $values['disabled_types_event'] = json_encode($disabled_types_event); } if (strlen(get_parameter('history_data')) > 0) { $values['history_data'] = get_parameter('history_data'); } if (get_parameter('quiet_select', -1) != -1) { $values['quiet'] = get_parameter('quiet_select'); } $filter_modules = false; if (!is_numeric($module_name) or ($module_name != 0)) $filter_modules['nombre'] = $module_name; // Whether to update module tag info $update_tags = get_parameter('id_tag', false); if (array_search(0, $agents_select) !== false) { //Apply at All agents. $modules = db_get_all_rows_filter ('tagente_modulo', $filter_modules, array ('id_agente_modulo')); } else { if ($module_name == "0") { //Any module $modules = db_get_all_rows_filter ('tagente_modulo', array ('id_agente' => $agents_select), array ('id_agente_modulo')); } else { $modules = db_get_all_rows_filter ('tagente_modulo', array ('id_agente' => $agents_select, 'nombre' => io_safe_input($module_name)), array ('id_agente_modulo')); } } if ($modules === false) return false; foreach ($modules as $module) { $result = modules_update_agent_module( $module['id_agente_modulo'], $values, true, $update_tags); if (is_error($result)) { return false; } } return true; } ?>