From b67f73539ff6cece292992fdcd40e933d138b4b3 Mon Sep 17 00:00:00 2001 From: Daniel Barbero Date: Thu, 15 Sep 2022 12:07:05 +0200 Subject: [PATCH 01/22] fixed tree view services pandora_enterprise#9493 --- pandora_console/include/functions_modules.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php index 6c265e8e0f..3f1644693d 100755 --- a/pandora_console/include/functions_modules.php +++ b/pandora_console/include/functions_modules.php @@ -4191,6 +4191,11 @@ function modules_get_counter_by_states($state) function modules_get_state_condition($state, $prefix='tae') { + // Not use empty state 0 -> AGENT_MODULE_STATUS_NORMAL. + if ($state === '') { + return '1=1'; + } + switch ($state) { case AGENT_MODULE_STATUS_CRITICAL_ALERT: case AGENT_MODULE_STATUS_CRITICAL_BAD: From 181a480b9d7b3a696622b312596d91081cc0ca00 Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Mon, 19 Sep 2022 10:44:25 +0200 Subject: [PATCH 02/22] fixed api methods for creating and deleting scheduled downtimes agents --- pandora_console/include/functions_api.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index d711432ef9..2eb053e83a 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -7685,8 +7685,7 @@ function api_set_planned_downtimes_delete_agents($id, $thrash1, $other, $thrash3 } if (!empty($other['data'][0])) { - $agents = io_safe_input($other['data']); - $agents = explode(';', $agents); + $agents = $other['data']; $results = false; foreach ($agents as $agent) { if (db_get_value_sql(sprintf('SELECT id from tplanned_downtime_agents WHERE id_agent = %d AND id_downtime = %d', $agent, $id)) !== false) { @@ -7762,8 +7761,7 @@ function api_set_planned_downtimes_add_agents($id, $thrash1, $other, $thrash3) } if (!empty($other['data'][0])) { - $agents = io_safe_input($other['data']); - $agents = explode(';', $agents); + $agents = $other['data']; $results = false; foreach ($agents as $agent) { if (db_get_value_sql(sprintf('SELECT id from tplanned_downtime_agents tpd WHERE tpd.id_agent = %d AND id_downtime = %d', $agent, $id)) === false) { From 9e90c8da07a2f361fc8c0649c8fc8e91d008d63d Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 20 Sep 2022 13:56:36 +0200 Subject: [PATCH 03/22] #9506 Changes in user profiles --- pandora_console/godmode/users/user_list.php | 113 +++++++++++++++----- 1 file changed, 85 insertions(+), 28 deletions(-) diff --git a/pandora_console/godmode/users/user_list.php b/pandora_console/godmode/users/user_list.php index efc3321c2c..b0dda31890 100644 --- a/pandora_console/godmode/users/user_list.php +++ b/pandora_console/godmode/users/user_list.php @@ -52,6 +52,8 @@ if (is_ajax()) { $method = get_parameter('method'); $group_id = get_parameter('group_id'); $group_recursion = (bool) get_parameter('group_recursion', 0); + $get_user_profile_group = (bool) get_parameter('get_user_profile_group', false); + $return_all = false; if ($group_id == -1) { @@ -93,6 +95,37 @@ if (is_ajax()) { echo json_encode($ret_id); return; } + + if ($get_user_profile_group === true) { + $id_user = get_parameter('id_user'); + + $user_profiles = []; + + // User profiles. + if (users_is_admin()) { + $user_profiles = db_get_all_rows_field_filter( + 'tusuario_perfil', + 'id_usuario', + $id_user + ); + } else { + $user_profiles_aux = users_get_user_profile($id_user); + foreach ($group_um as $key => $value) { + if (isset($user_profiles_aux[$key]) === true) { + $user_profiles[$key] = $user_profiles_aux[$key]; + unset($user_profiles_aux[$key]); + } + } + } + + foreach ($user_profiles as $key => $value) { + $user_profiles[$key]['id_perfil'] = profile_get_name($value['id_perfil']); + $user_profiles[$key]['id_grupo'] = groups_get_name($value['id_grupo'], true); + } + + echo json_encode($user_profiles); + return; + } } $sortField = get_parameter('sort_field'); @@ -588,10 +621,8 @@ $cont = 0; foreach ($info as $user_id => $user_info) { // User profiles. if ($user_is_admin || $user_id == $config['id_user'] || isset($group_um[0])) { - $user_profiles = db_get_all_rows_field_filter( - 'tusuario_perfil', - 'id_usuario', - $user_id + $user_profiles = db_get_all_rows_sql( + 'SELECT * FROM tusuario_perfil where id_usuario LIKE "'.$user_id.'" LIMIT 5' ); } else { $user_profiles_aux = users_get_user_profile($user_id); @@ -674,9 +705,9 @@ foreach ($info as $user_id => $user_info) { if ($user_profiles !== false) { $total_profile = 0; - $data[4] .= '
'; + $data[4] .= '
'; foreach ($user_profiles as $row) { - if ($total_profile <= 5) { + if ($total_profile < 5) { $data[4] .= "
"; $data[4] .= profile_get_name($row['id_perfil']); $data[4] .= ' /
'; @@ -685,8 +716,7 @@ foreach ($info as $user_id => $user_info) { $data[4] .= '
'; if ($total_profile == 0 && count($user_profiles) >= 5) { - $data[4] .= ' - '.html_print_image( + $data[4] .= ''.html_print_image( 'images/zoom.png', true, [ @@ -694,16 +724,15 @@ foreach ($info as $user_id => $user_info) { 'class' => 'invert_filter', ] ).''; + + $data[4] .= html_print_input_hidden( + 'show_groups_'.$row['id_usuario'], + -1, + true + ); } - $data[4] .= '
'; - $data[4] .= '
'; - $data[4] .= '
'; - } else { - $data[4] .= "'; enterprise_hook('close_meta_frame'); -echo ''; +; From 9b79ea79128db9cd8b19f9c49e0f9d5177d7f404 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 20 Sep 2022 16:05:27 +0200 Subject: [PATCH 04/22] #9506 Fixed um --- pandora_console/godmode/users/user_list.php | 14 ++++++++++---- pandora_console/include/functions_users.php | 7 ++++--- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/pandora_console/godmode/users/user_list.php b/pandora_console/godmode/users/user_list.php index b0dda31890..d282ff05af 100644 --- a/pandora_console/godmode/users/user_list.php +++ b/pandora_console/godmode/users/user_list.php @@ -99,10 +99,16 @@ if (is_ajax()) { if ($get_user_profile_group === true) { $id_user = get_parameter('id_user'); + $user_is_admin = users_is_admin(); + $user_profiles = []; + if ($user_is_admin === false) { + $group_um = users_get_groups_UM($config['id_user']); + } + // User profiles. - if (users_is_admin()) { + if ($user_is_admin || $id_user == $config['id_user'] || isset($group_um[0])) { $user_profiles = db_get_all_rows_field_filter( 'tusuario_perfil', 'id_usuario', @@ -625,7 +631,7 @@ foreach ($info as $user_id => $user_info) { 'SELECT * FROM tusuario_perfil where id_usuario LIKE "'.$user_id.'" LIMIT 5' ); } else { - $user_profiles_aux = users_get_user_profile($user_id); + $user_profiles_aux = users_get_user_profile($user_id, 'LIMIT 5'); $user_profiles = []; foreach ($group_um as $key => $value) { if (isset($user_profiles_aux[$key]) === true) { @@ -911,7 +917,7 @@ echo ''; enterprise_hook('close_meta_frame'); -?>; +?> ; + diff --git a/pandora_console/include/functions_users.php b/pandora_console/include/functions_users.php index f4e6e25be8..5db489377a 100755 --- a/pandora_console/include/functions_users.php +++ b/pandora_console/include/functions_users.php @@ -838,13 +838,14 @@ function users_has_profile_without_UM($id_user, $id_groups) } -function users_get_user_profile($id_user) +function users_get_user_profile($id_user, $limit='') { $sql = sprintf( "SELECT * FROM tusuario_perfil INNER JOIN tperfil ON tperfil.id_perfil = tusuario_perfil.id_perfil - WHERE tusuario_perfil.id_usuario like '%s'", - $id_user + WHERE tusuario_perfil.id_usuario like '%s' %s", + $id_user, + $limit ); $aux = db_get_all_rows_sql($sql); From 29c06a17f7c7b94d7de377d427feb0b228996cd0 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Wed, 21 Sep 2022 11:19:00 +0200 Subject: [PATCH 05/22] #9506 Fixed show profiles --- pandora_console/godmode/users/user_list.php | 59 ++++++++++----------- 1 file changed, 29 insertions(+), 30 deletions(-) diff --git a/pandora_console/godmode/users/user_list.php b/pandora_console/godmode/users/user_list.php index d282ff05af..85a95a8f22 100644 --- a/pandora_console/godmode/users/user_list.php +++ b/pandora_console/godmode/users/user_list.php @@ -711,37 +711,35 @@ foreach ($info as $user_id => $user_info) { if ($user_profiles !== false) { $total_profile = 0; - $data[4] .= '
'; + $data[4] .= '
'; foreach ($user_profiles as $row) { - if ($total_profile < 5) { - $data[4] .= "
"; - $data[4] .= profile_get_name($row['id_perfil']); - $data[4] .= ' /
'; - $data[4] .= "
"; - $data[4] .= groups_get_name($row['id_grupo'], true); - $data[4] .= '
'; + $data[4] .= "
"; + $data[4] .= profile_get_name($row['id_perfil']); + $data[4] .= ' /
'; + $data[4] .= "
"; + $data[4] .= groups_get_name($row['id_grupo'], true); + $data[4] .= '
'; - if ($total_profile == 0 && count($user_profiles) >= 5) { - $data[4] .= ''.html_print_image( - 'images/zoom.png', - true, - [ - 'title' => __('Show'), - 'class' => 'invert_filter', - ] - ).''; + if ($total_profile == 0 && count($user_profiles) >= 5) { + $data[4] .= ''.html_print_image( + 'images/zoom.png', + true, + [ + 'title' => __('Show profiles'), + 'class' => 'invert_filter', + ] + ).''; - $data[4] .= html_print_input_hidden( - 'show_groups_'.$row['id_usuario'], - -1, - true - ); - } - - $data[4] .= '
'; - $data[4] .= '
'; + $data[4] .= html_print_input_hidden( + 'show_groups_'.$row['id_usuario'], + -1, + true + ); } + $data[4] .= '
'; + $data[4] .= '
'; + $total_profile++; } @@ -754,6 +752,8 @@ foreach ($info as $user_id => $user_info) { } $data[4] .= '
'; + $data[4] .= ''; } else { $data[4] .= __('The user doesn\'t have any assigned profile/group'); } @@ -946,14 +946,13 @@ enterprise_hook('close_meta_frame'); } }); $(`#hidden-show_groups_${id_user}`).val('1'); + $(`#profiles_${id_user}`).show(); } else if ($(`#hidden-show_groups_${id_user}`).val() === '1') { $(`#hidden-show_groups_${id_user}`).val('0'); - $(`div[id^=left_${id_user}_]`).hide(); - $(`div[id^=right_${id_user}_]`).hide(); + $(`#profiles_${id_user}`).hide(); } else { $(`#hidden-show_groups_${id_user}`).val('1'); - $(`div[id^=left_${id_user}_]`).show(); - $(`div[id^=right_${id_user}_]`).show(); + $(`#profiles_${id_user}`).show(); } } From eed28bc668504e382d6800ec9d76954dc6770ff7 Mon Sep 17 00:00:00 2001 From: Calvo Date: Thu, 22 Sep 2022 17:07:43 +0200 Subject: [PATCH 06/22] Fix user form reset if profile fails --- pandora_console/godmode/users/configure_user.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 3ed36f8737..d98fc1d944 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -512,6 +512,14 @@ if ($create_user) { $result_profile = profile_create_user_profile($id, $profile2, $group2, false, $tags, $no_hierarchy); + if ($result_profile === false) { + $is_err = true; + $user_info = $values; + $password_new = ''; + $password_confirm = ''; + $new_user = true; + } + ui_print_result_message( $result_profile, __('Profile added successfully'), From 225646cd9dca32b59c56a092e254b95b2d81f79b Mon Sep 17 00:00:00 2001 From: Daniel Barbero Date: Fri, 23 Sep 2022 13:55:01 +0200 Subject: [PATCH 07/22] fixed response events pandora_enterprise#9423 --- pandora_console/include/ajax/events.php | 317 +++++----- pandora_console/include/functions_events.php | 105 +++- pandora_console/include/functions_ui.php | 7 +- .../include/javascript/pandora_events.js | 551 +++++++----------- pandora_console/include/styles/events.css | 33 ++ 5 files changed, 479 insertions(+), 534 deletions(-) diff --git a/pandora_console/include/ajax/events.php b/pandora_console/include/ajax/events.php index c902a6479a..0d9dbda151 100644 --- a/pandora_console/include/ajax/events.php +++ b/pandora_console/include/ajax/events.php @@ -64,7 +64,8 @@ $add_comment = (bool) get_parameter('add_comment'); $dialogue_event_response = (bool) get_parameter('dialogue_event_response'); $perform_event_response = (bool) get_parameter('perform_event_response'); $get_response = (bool) get_parameter('get_response'); -$get_response_target = (bool) get_parameter('get_response_target'); +$get_response_massive = (bool) get_parameter('get_response_massive'); +$get_row_response_action = (bool) get_parameter('get_row_response_action'); $get_response_params = (bool) get_parameter('get_response_params'); $get_response_description = (bool) get_parameter('get_response_description'); $meta = get_parameter('meta', 0); @@ -1090,50 +1091,6 @@ if ($get_response_params) { return; } -if ($get_response_target === true) { - if (! check_acl($config['id_user'], 0, 'EW')) { - echo 'unauthorized'; - return; - } - - $response_id = (int) get_parameter('response_id'); - $event_id = (int) get_parameter('event_id'); - $server_id = (int) get_parameter('server_id'); - - try { - if (is_metaconsole() === true - && $server_id > 0 - ) { - $node = new Node($server_id); - $node->connect(); - } - - $event_response = db_get_row('tevent_response', 'id', $response_id); - - if (empty($event_response) === true) { - return; - } - - echo events_get_response_target($event_id, $response_id); - } catch (\Exception $e) { - // Unexistent agent. - if (is_metaconsole() === true - && $server_id > 0 - ) { - $node->disconnect(); - } - - return; - } finally { - if (is_metaconsole() === true - && $server_id > 0 - ) { - $node->disconnect(); - } - } - - return; -} if ($get_response === true) { if (! check_acl($config['id_user'], 0, 'EW')) { @@ -1142,62 +1099,21 @@ if ($get_response === true) { } $response_id = get_parameter('response_id'); - $server_id = (int) get_parameter('server_id'); + $server_id = (int) get_parameter('server_id', 0); + $event_id = (int) get_parameter('event_id', 0); - try { - if (is_metaconsole() === true - && $server_id > 0 - ) { - $node = new Node($server_id); - $node->connect(); - } - - $event_response = db_get_row( - 'tevent_response', - 'id', - $response_id - ); - } catch (\Exception $e) { - // Unexistent agent. - if (is_metaconsole() === true - && $server_id > 0 - ) { - $node->disconnect(); - } - - return; - } finally { - if (is_metaconsole() === true - && $server_id > 0 - ) { - $node->disconnect(); - } - } + $event_response = db_get_row( + 'tevent_response', + 'id', + $response_id + ); if (empty($event_response) === true) { - return; + return []; } - echo json_encode($event_response); - return; -} - -if ($perform_event_response === true) { - global $config; - - if (! check_acl($config['id_user'], 0, 'EW')) { - echo 'unauthorized'; - return; - } - - $target = get_parameter('target', ''); - $response_id = get_parameter('response_id'); - $event_id = (int) get_parameter('event_id'); - $server_id = (int) get_parameter('server_id', 0); - - $event_response = false; - if (empty($target) === true) { + if (empty($event_id) === false) { try { if (is_metaconsole() === true && $server_id > 0 @@ -1206,20 +1122,9 @@ if ($perform_event_response === true) { $node->connect(); } - $event_response = db_get_row( - 'tevent_response', - 'id', - $response_id - ); - - if (empty($event_response) === true) { - return; - } - - $command = events_get_response_target( + $event_response['target'] = events_get_response_target( $event_id, - $response_id, - $server_id + $event_response ); } catch (\Exception $e) { // Unexistent agent. @@ -1237,10 +1142,121 @@ if ($perform_event_response === true) { $node->disconnect(); } } - } else { - $command = $target; } + echo json_encode($event_response); + + return; +} + + +if ($get_response_massive === true) { + if (! check_acl($config['id_user'], 0, 'EW')) { + echo 'unauthorized'; + return; + } + + $response_id = get_parameter('response_id'); + + $event_response = db_get_row( + 'tevent_response', + 'id', + $response_id + ); + + if (empty($event_response) === true) { + return []; + } + + + $events = json_decode( + io_safe_output( + get_parameter('events', '') + ), + true + ); + + $event_response_targets = []; + if (is_metaconsole() === true) { + foreach ($events as $server_id => $idEvents) { + foreach ($idEvents as $idEvent) { + $event_response_targets[$idEvent.'|'.$server_id]['target'] = get_events_get_response_target( + $idEvent, + $event_response, + $server_id + ); + } + } + } else { + foreach ($idEvents as $idEvent) { + $event_response_targets[$idEvent]['target'] = get_events_get_response_target( + $idEvent, + $event_response + ); + } + } + + $result = [ + 'event_response' => $event_response, + 'event_response_targets' => $event_response_targets, + ]; + + echo json_encode($result); + + return; +} + +if ($get_row_response_action === true) { + $response_id = get_parameter('response_id'); + $response = json_decode( + io_safe_output( + get_parameter('response', '') + ), + true + ); + + $end = (bool) get_parameter('end', false); + $index = $response['event_id']; + if (is_metaconsole() === true) { + $index .= '-'.$response['server_id']; + } + + echo get_row_response_action( + $response, + $response_id, + $end, + $index + ); + + return; +} + +if ($perform_event_response === true) { + global $config; + + if (! check_acl($config['id_user'], 0, 'EW')) { + echo __('unauthorized'); + return; + } + + $target = get_parameter('target', ''); + $response_id = get_parameter('response_id'); + $event_id = (int) get_parameter('event_id'); + $server_id = (int) get_parameter('server_id', 0); + $response = json_decode( + io_safe_output( + get_parameter('response', '') + ), + true + ); + + $event_response = $response; + if (empty($event_response) === true) { + echo __('No data'); + return; + } + + $command = $event_response['target']; $command_timeout = ($event_response !== false) ? $event_response['command_timeout'] : 90; if (enterprise_installed() === true) { if ($event_response !== false @@ -1320,7 +1336,7 @@ if ($perform_event_response === true) { break; } - system($timeout_bin.' '.$command_timeout.' '.io_safe_output($command).' 2>&1', $ret_val); + system($timeout_bin.' '.$command_timeout.' '.io_safe_output($command).' 2>&1', $ret_val); } if ($ret_val != 0) { @@ -1343,78 +1359,19 @@ if ($dialogue_event_response) { $event_id = get_parameter('event_id'); $response_id = get_parameter('response_id'); $command = get_parameter('target'); - $massive = get_parameter('massive'); - $end = get_parameter('end'); - $show_execute_again_btn = get_parameter('show_execute_again_btn'); - $out_iterator = get_parameter('out_iterator'); - $event_response = db_get_row('tevent_response', 'id', $response_id); - $server_id = get_parameter('server_id'); + $event_response = json_decode( + io_safe_output( + get_parameter('response', '') + ), + true + ); - $event = db_get_row('tevento', 'id_evento', $event_id); - - $prompt = '
> '; switch ($event_response['type']) { case 'command': - $display_command = (bool) $event_response['display_command']; - $command_str = ($display_command === true) ? $command : ''; - - if ($massive) { - echo "
"; - echo $prompt.sprintf( - '(Event #'.$event_id.') '.__( - 'Executing command: %s', - $command_str - ) - ); - echo '

'; - - echo "
'; - echo "



"; - - if ($end) { - echo "
'; - } - } else { - echo "
"; - - echo $prompt.'Executing command: '.$command_str; - echo '

'; - - echo "'; - echo "


"; - - echo "
'; - } + echo get_row_response_action( + $event_response, + $response_id + ); break; case 'url': diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index c36536348f..5537a7b521 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -3430,7 +3430,7 @@ function events_page_responses($event) __('Execute'), 'custom_response_button', false, - 'execute_response('.$event['id_evento'].','.$server_id.')', + 'execute_response('.$event['id_evento'].','.$server_id.',0)', "class='sub next w70p'", true ); @@ -3438,6 +3438,7 @@ function events_page_responses($event) $table_responses->data[] = $data; + // TODO quitar el async: false. get_response_params and get_response_description. $responses_js = ""; - $responses = '
'.html_print_table($table_responses, true).$responses_js.'
'; + $responses = '
'; + $responses .= html_print_table($table_responses, true); + $responses .= $responses_js; + $responses .= '
'; return $responses; } @@ -3471,14 +3458,16 @@ function events_page_responses($event) /** * Replace macros in the target of a response and return it. * - * @param integer $event_id Event identifier. - * @param integer $response_id Event response identifier. + * @param integer $event_id Event identifier. + * @param array $event_response Event Response. + * @param array|null $response_parameters If parameters response values. * * @return string The response text with the macros applied. */ function events_get_response_target( int $event_id, - array $event_response + array $event_response, + ?array $response_parameters=null ) { global $config; @@ -3492,6 +3481,35 @@ function events_get_response_target( $event = db_get_row('tevento', 'id_evento', $event_id); $target = io_safe_output($event_response['target']); + + // Replace parameters response. + if (isset($response_parameters) === true + && empty($response_parameters) === false + ) { + $response_parameters = array_reduce( + $response_parameters, + function ($carry, $item) { + $carry[$item['name']] = $item['value']; + return $carry; + } + ); + } + + if (empty($event_response['params']) === false) { + $response_params = explode(',', $event_response['params']); + if (is_array($response_params) === true) { + foreach ($response_params as $param) { + $param = trim(io_safe_output($param)); + $target = str_replace( + '_'.$param.'_', + $response_parameters['values_params_'.$param], + $target + ); + } + } + } + + // Replace macros. if (strpos($target, '_agent_alias_') !== false) { $agente_table_name = 'tagente'; $filter = ['id_agente' => $event['id_agente']]; @@ -5465,7 +5483,16 @@ function events_get_criticity_class($criticity) } -// TODO +/** + * Draw row response events. + * + * @param array $event_response Response. + * @param integer|null $response_id Id . + * @param boolean $end End block. + * @param integer|null $index Index block. + * + * @return string Html output. + */ function get_row_response_action( array $event_response, ?int $response_id, @@ -5530,7 +5557,8 @@ function get_row_response_action( function get_events_get_response_target( $event_id, $event_response, - $server_id=0 + $server_id=0, + $response_parameters=[] ) { try { if (is_metaconsole() === true @@ -5542,7 +5570,8 @@ function get_events_get_response_target( return events_get_response_target( $event_id, - $event_response + $event_response, + $response_parameters ); } catch (\Exception $e) { // Unexistent agent. diff --git a/pandora_console/include/javascript/pandora_events.js b/pandora_console/include/javascript/pandora_events.js index 5e0ec83920..17fac351f3 100644 --- a/pandora_console/include/javascript/pandora_events.js +++ b/pandora_console/include/javascript/pandora_events.js @@ -96,12 +96,28 @@ function show_event_dialog(event, dialog_page) { function execute_response(event_id, server_id) { var response_id = $("#select_custom_response option:selected").val(); + var response_parameters_list = $('input[name^="values_params_"]'); + var response_parameters = []; + if (response_parameters_list.length > 0) { + response_parameters_list.each(function() { + var acum = { + name: $(this).attr("name"), + value: $(this).val() + }; + response_parameters.push(acum); + }); + } + var params = []; params.push({ name: "page", value: "include/ajax/events" }); params.push({ name: "get_response", value: 1 }); params.push({ name: "response_id", value: response_id }); params.push({ name: "server_id", value: server_id }); params.push({ name: "event_id", value: event_id }); + params.push({ + name: "response_parameters", + value: JSON.stringify(response_parameters) + }); jQuery.ajax({ data: params, @@ -126,12 +142,13 @@ function execute_response(event_id, server_id) { } // Check the response type and open it in a modal dialog or new window -function execute_response_massive(events, response_id) { +function execute_response_massive(events, response_id, response_parameters) { var params = []; params.push({ name: "page", value: "include/ajax/events" }); params.push({ name: "get_response_massive", value: 1 }); params.push({ name: "response_id", value: response_id }); params.push({ name: "events", value: JSON.stringify(events) }); + params.push({ name: "response_parameters", value: response_parameters }); jQuery.ajax({ data: params, @@ -193,10 +210,16 @@ function execute_response_massive(events, response_id) { response["event_id"] = event_id; response["server_id"] = server_id; response["target"] = target; + + var indexstr = event_id; + if (meta != 0) { + indexstr += "-" + server_id; + } + perform_response( btoa(JSON.stringify(response)), response_id, - event_id + "-" + server_id + indexstr ); } }); @@ -236,71 +259,14 @@ function show_response_dialog(response_id, response) { perform_response(btoa(JSON.stringify(response)), response_id, ""); }, width: response["modal_width"], - height: response["modal_height"] + height: response["modal_height"], + buttons: [] }) .show(); } }); } -// Get an event response params from db -function get_response_params(response_id) { - var response_params; - - var params = []; - params.push("page=include/ajax/events"); - params.push("get_response_params=1"); - params.push("response_id=" + response_id); - - jQuery.ajax({ - data: params.join("&"), - type: "POST", - url: $("#hidden-ajax_file").val(), - async: false, - dataType: "json", - success: function(data) { - response_params = data; - } - }); - - return response_params; -} - -// Get an event response description from db -function get_response_description(response_id) { - var response_description = ""; - - var params = []; - params.push("page=include/ajax/events"); - params.push("get_response_description=1"); - params.push("response_id=" + response_id); - - jQuery.ajax({ - data: params.join("&"), - type: "POST", - url: $("#hidden-ajax_file").val(), - async: false, - dataType: "html", - success: function(data) { - response_description = data; - } - }); - - return response_description; -} - -function add_row_param(id_table, param) { - $("#" + id_table).append( - '' + - param + - '' - ); -} - // Perform a response and put the output into a div function perform_response(response, response_id, index) { $("#re_exec_command" + index).hide(); @@ -670,8 +636,13 @@ function execute_delete_event_reponse( // Imported from old files. function execute_event_response(event_list_btn) { + var response_id = $("select[name=response_id]").val(); + if (!isNaN(response_id)) { + table_info_response_event(response_id, 0, 0, true); + } + var message = - "

Are you sure?

"; + "

Are you sure?

"; confirmDialog({ title: "ATTENTION", message: message, @@ -683,8 +654,6 @@ function execute_event_response(event_list_btn) { $("#max_custom_event_resp_msg").hide(); $("#max_custom_selected").hide(); - var response_id = $("select[name=response_id]").val(); - var total_checked = $(".chk_val:checked").length; // Check select an event. @@ -694,14 +663,28 @@ function execute_event_response(event_list_btn) { } if (!isNaN(response_id)) { + var response_parameters_list = $('input[name^="values_params_"]'); + var response_parameters = []; + if (response_parameters_list.length > 0) { + response_parameters_list.each(function() { + var acum = { + name: $(this).attr("name"), + value: $(this).val() + }; + response_parameters.push(acum); + }); + } + + response_parameters = JSON.stringify(response_parameters); + if (event_list_btn) { $("#button-submit_event_response").hide(function() { $("#response_loading_dialog").show(function() { - show_response_dialog_massive(response_id); + show_response_dialog_massive(response_id, response_parameters); }); }); } else { - check_execute_response_massive(response_id); + check_execute_response_massive(response_id, response_parameters); } } else { // It is not a custom response @@ -776,7 +759,7 @@ function execute_event_response(event_list_btn) { }); } -function show_response_dialog_massive(response_id) { +function show_response_dialog_massive(response_id, response_parameters) { var params = []; params.push({ name: "page", value: "include/ajax/events" }); params.push({ name: "get_response", value: 1 }); @@ -803,7 +786,7 @@ function show_response_dialog_massive(response_id) { draggable: true, modal: false, open: function() { - check_execute_response_massive(response_id); + check_execute_response_massive(response_id, response_parameters); }, close: function() { $("#checkbox-all_validate_box").prop("checked", false); @@ -830,7 +813,7 @@ function show_response_dialog_massive(response_id) { }); } -function check_execute_response_massive(response_id) { +function check_execute_response_massive(response_id, response_parameters) { var events = []; $(".container-massive-events-response").empty(); $(".chk_val:checked").each(function() { @@ -852,7 +835,7 @@ function check_execute_response_massive(response_id) { } }); - execute_response_massive(events, response_id); + execute_response_massive(events, response_id, response_parameters); } function event_widget_options() { @@ -1136,3 +1119,43 @@ function check_event_sound(settings) { "json" ); } + +function table_info_response_event(response_id, event_id, server_id, massive) { + var params = []; + params.push({ name: "page", value: "include/ajax/events" }); + params.push({ name: "get_response", value: 1 }); + params.push({ name: "response_id", value: response_id }); + params.push({ name: "server_id", value: server_id }); + params.push({ name: "event_id", value: event_id }); + + jQuery.ajax({ + data: params, + type: "POST", + url: $("#hidden-ajax_file").val(), + dataType: "json", + success: function(response) { + if (response) { + var params = []; + params.push({ name: "page", value: "include/ajax/events" }); + params.push({ name: "draw_row_response_info", value: 1 }); + params.push({ name: "massive", value: massive === true ? 1 : 0 }); + params.push({ name: "response", value: JSON.stringify(response) }); + + jQuery.ajax({ + data: params, + type: "POST", + url: $("#hidden-ajax_file").val(), + dataType: "html", + success: function(output) { + if (massive === true) { + $("#massive-parameters-response").append(output); + } else { + $(".params_rows").remove(); + $("#responses_table").append(output); + } + } + }); + } + } + }); +} diff --git a/pandora_console/include/styles/events.css b/pandora_console/include/styles/events.css index 5ad4579f61..a235861c27 100644 --- a/pandora_console/include/styles/events.css +++ b/pandora_console/include/styles/events.css @@ -429,3 +429,26 @@ div.multi-response-buttons { justify-content: flex-end; align-items: center; } + +#massive-parameters-response { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +#massive-parameters-response > div { + width: 80%; +} + +#massive-parameters-response > div h5 { + text-align: center; +} + +#massive-parameters-response > div div { + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: center; + margin-bottom: 5px; +} diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php index 42d325e7f0..91714803f9 100755 --- a/pandora_console/operation/agentes/estado_generalagente.php +++ b/pandora_console/operation/agentes/estado_generalagente.php @@ -564,7 +564,10 @@ for ($i = 0; $i < $custom_fields_count; $i++) { $columns = array_merge($first_column, $second_column); } else { $columns = $first_column; - $filas = count($table_data->data); + if ($table_data->data !== null) { + $filas = count($table_data->data); + } + $table_data->colspan[$filas][1] = 3; } From 8d8140faa46149f932de170ea6309ccbe27a3d38 Mon Sep 17 00:00:00 2001 From: Daniel Barbero Date: Wed, 28 Sep 2022 09:30:30 +0200 Subject: [PATCH 10/22] add new macros response events pandora_enterprise#9423 --- pandora_console/include/ajax/events.php | 4 ++- pandora_console/include/functions_events.php | 36 +++++++++++++++++--- 2 files changed, 34 insertions(+), 6 deletions(-) diff --git a/pandora_console/include/ajax/events.php b/pandora_console/include/ajax/events.php index dbb7924517..7075016c64 100644 --- a/pandora_console/include/ajax/events.php +++ b/pandora_console/include/ajax/events.php @@ -1093,7 +1093,9 @@ if ($get_response === true) { $event_response['target'] = events_get_response_target( $event_id, $event_response, - $response_parameters + $response_parameters, + $server_id, + ($server_id !== 0) ? $node->server_name() : 'Metaconsole' ); } catch (\Exception $e) { // Unexistent agent. diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index a91868a2c2..cdbd930972 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -3522,16 +3522,20 @@ function events_page_responses($event) /** * Replace macros in the target of a response and return it. * - * @param integer $event_id Event identifier. - * @param array $event_response Event Response. - * @param array|null $response_parameters If parameters response values. + * @param integer $event_id Event identifier. + * @param array $event_response Event Response. + * @param array|null $response_parameters If parameters response values. + * @param integer|null $server_id Server Id. + * @param string|null $server_name Name server. * * @return string The response text with the macros applied. */ function events_get_response_target( int $event_id, array $event_response, - ?array $response_parameters=null + ?array $response_parameters=null, + ?int $server_id=0, + ?string $server_name='' ) { global $config; @@ -3899,6 +3903,26 @@ function events_get_response_target( ); } + if (is_metaconsole() === true + && strpos($target, '_node_id_') !== false + ) { + $target = str_replace( + '_node_id_', + $server_id, + $target + ); + } + + if (is_metaconsole() === true + && strpos($target, '_node_name_') !== false + ) { + $target = str_replace( + '_node_name_', + $server_name, + $target + ); + } + return $target; } @@ -5635,7 +5659,9 @@ function get_events_get_response_target( return events_get_response_target( $event_id, $event_response, - $response_parameters + $response_parameters, + $server_id, + ($server_id !== 0) ? $node->server_name() : 'Metaconsole' ); } catch (\Exception $e) { // Unexistent agent. From 429cefcf2be2e5dcaf9bb83d51e7eb5a9b993149 Mon Sep 17 00:00:00 2001 From: sergio Date: Fri, 30 Sep 2022 09:59:53 +0200 Subject: [PATCH 11/22] #9300 label change --- pandora_console/include/lib/Dashboard/Widgets/service_map.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/service_map.php b/pandora_console/include/lib/Dashboard/Widgets/service_map.php index 0fa8d13f10..9dfe181fd8 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/service_map.php +++ b/pandora_console/include/lib/Dashboard/Widgets/service_map.php @@ -328,7 +328,7 @@ class ServiceMapWidget extends Widget ]; $inputs[] = [ - 'label' => __('Enable sunburst'), + 'label' => __('Show sunburst by default'), 'arguments' => [ 'type' => 'switch', 'name' => 'sunburst', From 9f800df03465522e1fea8c1199743bc0f047ae6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Mon, 3 Oct 2022 12:41:55 +0200 Subject: [PATCH 12/22] Added default definition for SNMP Interface Wizard --- pandora_console/godmode/setup/performance.php | 27 ++++++++ .../include/class/AgentWizard.class.php | 62 +++++++++++-------- pandora_console/include/functions_config.php | 36 +++++++++++ 3 files changed, 98 insertions(+), 27 deletions(-) diff --git a/pandora_console/godmode/setup/performance.php b/pandora_console/godmode/setup/performance.php index 89b745cfca..ba965f026f 100644 --- a/pandora_console/godmode/setup/performance.php +++ b/pandora_console/godmode/setup/performance.php @@ -701,6 +701,28 @@ if (enterprise_installed() === true) { ); } +// Agent Wizard defaults. +$defaultAgentWizardOptions = json_decode(io_safe_output($config['agent_wizard_defaults'])); +$tableSnmpWizard = new stdClass(); +$tableSnmpWizard->width = '100%'; +$tableSnmpWizard->class = 'databox filters'; +$tableSnmpWizard->data = []; +$tableSnmpWizard->style[0] = 'font-weight: bold'; +$tableSnmpWizard->style[2] = 'font-weight: bold'; +$tableSnmpWizard->size[0] = '30%'; +$tableSnmpWizard->size[2] = '30%'; + +$i = 0; +$j = 0; +foreach ($defaultAgentWizardOptions as $key => $value) { + $tableSnmpWizard->data[$i][$j++] = $key; + $tableSnmpWizard->data[$i][$j++] = html_print_checkbox_switch('agent_wizard_defaults_'.$key, 1, $value, true); + if ($j >= 3) { + $j = 0; + $i++; + } +} + echo '
'; echo '
'; @@ -725,6 +747,11 @@ echo '
'; html_print_table($table_other); echo '
'; +echo '
'; + echo ''.__('Agent SNMP Interface Wizard defaults').' '.ui_print_help_icon('agent_snmp_wizard_options_tab', true).''; + html_print_table($tableSnmpWizard); +echo '
'; + echo '
'; html_print_input_hidden('update_config', 1); html_print_submit_button( diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php index f97324dfc4..46a974a0d5 100644 --- a/pandora_console/include/class/AgentWizard.class.php +++ b/pandora_console/include/class/AgentWizard.class.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -285,6 +285,13 @@ class AgentWizard extends HTML */ private $wmiBinary = ''; + /** + * Default values for SNMP Interfaces. + * + * @var string + */ + private $defaultSNMPValues = []; + /** * Constructor @@ -319,6 +326,7 @@ class AgentWizard extends HTML $this->idPolicy = get_parameter('id', ''); $this->targetIp = get_parameter('targetIp', ''); $this->wmiBinary = $config['wmiBinary']; + $this->defaultSNMPValues = (array) json_decode(io_safe_output($config['agent_wizard_defaults'])); if (empty($this->idAgent) === false) { $array_aux = db_get_all_rows_sql( @@ -330,7 +338,7 @@ class AgentWizard extends HTML ) ); - if (!empty($array_aux)) { + if (empty($array_aux) === false) { $this->datalist = []; foreach ($array_aux as $key => $value) { $this->datalist[] = $value['ip']; @@ -547,7 +555,7 @@ class AgentWizard extends HTML // Fill with servers to perform the discover. $fieldsServers = []; $fieldsServers[0] = __('Local console'); - if (enterprise_installed()) { + if (enterprise_installed() === true) { enterprise_include_once('include/functions_satellite.php'); // Get the servers. $rows = get_proxy_servers(); @@ -607,7 +615,7 @@ class AgentWizard extends HTML ], ]; - if (!empty($this->datalist)) { + if (empty($this->datalist) === false) { $inputs[] = [ 'id' => 'li_address_list', 'arguments' => [ @@ -4701,7 +4709,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.2.2.1.8.'.$value, 'module_unit' => '', - 'default_enabled' => true, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifOperStatus'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => $min_warning, @@ -4758,7 +4766,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.4.1.9.2.2.1.1.12.'.$value, 'module_unit' => 'packets/s', - 'default_enabled' => true, + 'default_enabled' => (bool) $this->defaultSNMPValues['locIfInCRC'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -4812,7 +4820,7 @@ class AgentWizard extends HTML 'module_info' => 'Indicates whether the port is operating in half-duplex, full-duplex, disagree or auto negotiation mode. If the port could not agree with the far end on port duplex, the port will be in disagree(3) mode.', 'execution_type' => 'network', 'value' => $duplexMismatchOID, - 'default_enabled' => true, + 'default_enabled' => (bool) $this->defaultSNMPValues['DuplexMismatch'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -4901,7 +4909,7 @@ class AgentWizard extends HTML 'id_plugin' => $plugin_id, 'id_modulo' => MODULE_PLUGIN, 'macros' => json_encode($macros), - 'default_enabled' => true, + 'default_enabled' => (bool) $this->defaultSNMPValues['Bandwidth'], 'module_enabled' => false, 'module_unit' => '%', 'module_thresholds' => [ @@ -4940,7 +4948,7 @@ class AgentWizard extends HTML 'id_plugin' => $plugin_id, 'id_modulo' => MODULE_PLUGIN, 'macros' => json_encode($macros), - 'default_enabled' => true, + 'default_enabled' => (bool) $this->defaultSNMPValues['inUsage'], 'module_enabled' => false, 'module_unit' => '%', 'module_thresholds' => [ @@ -4979,7 +4987,7 @@ class AgentWizard extends HTML 'id_plugin' => $plugin_id, 'id_modulo' => MODULE_PLUGIN, 'macros' => json_encode($macros), - 'default_enabled' => true, + 'default_enabled' => (bool) $this->defaultSNMPValues['outUsage'], 'module_enabled' => false, 'module_unit' => '%', 'module_thresholds' => [ @@ -5011,7 +5019,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.2.2.1.7.'.$value, 'module_unit' => '', - 'default_enabled' => false, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifAdminStatus'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5038,7 +5046,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.2.2.1.13.'.$value, 'module_unit' => 'packets/s', - 'default_enabled' => false, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifInDiscards'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5065,7 +5073,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.2.2.1.19.'.$value, 'module_unit' => 'packets/s', - 'default_enabled' => false, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifOutDiscards'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5092,7 +5100,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.2.2.1.14.'.$value, 'module_unit' => 'packets/s', - 'default_enabled' => false, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifInErrors'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5119,7 +5127,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.2.2.1.20.'.$value, 'module_unit' => 'packets/s', - 'default_enabled' => false, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifOutErrors'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5189,7 +5197,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.2.2.1.10.'.$value, 'module_unit' => 'bytes/s', - 'default_enabled' => true, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifInOctets'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5217,7 +5225,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.2.2.1.16.'.$value, 'module_unit' => 'bytes/s', - 'default_enabled' => true, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifOutOctets'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5245,7 +5253,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.2.2.1.11.'.$value, 'module_unit' => 'packets/s', - 'default_enabled' => false, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifInUcastPkts'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5272,7 +5280,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.2.2.1.17.'.$value, 'module_unit' => 'packets/s', - 'default_enabled' => false, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifOutUcastPkts'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5299,7 +5307,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.2.2.1.12.'.$value, 'module_unit' => 'packets/s', - 'default_enabled' => false, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifInNUcastPkts'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5326,7 +5334,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.2.2.1.18.'.$value, 'module_unit' => 'packets/s', - 'default_enabled' => false, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifOutNUcastPkts'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5396,7 +5404,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.31.1.1.1.6.'.$value, 'module_unit' => 'bytes/s', - 'default_enabled' => true, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifHCInOctets'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5424,7 +5432,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.31.1.1.1.10.'.$value, 'module_unit' => 'bytes/s', - 'default_enabled' => true, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifHCOutOctets'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5452,7 +5460,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.31.1.1.1.7.'.$value, 'module_unit' => 'packets/s', - 'default_enabled' => false, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifHCInUcastPkts'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5480,7 +5488,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.31.1.1.1.11.'.$value, 'module_unit' => 'packets/s', - 'default_enabled' => false, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifHCOutUcastPkts'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5507,7 +5515,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.31.1.1.1.7.'.$value, 'module_unit' => 'packets/s', - 'default_enabled' => false, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifHCInNUcastPkts'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', @@ -5534,7 +5542,7 @@ class AgentWizard extends HTML 'execution_type' => 'network', 'value' => '1.3.6.1.2.1.31.1.1.1.11.'.$value, 'module_unit' => 'packets/s', - 'default_enabled' => false, + 'default_enabled' => (bool) $this->defaultSNMPValues['ifHCOutNUcastPkts'], 'module_enabled' => false, 'module_thresholds' => [ 'min_warning' => '0', diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index 647b719ae3..8793784147 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -916,6 +916,16 @@ function config_update_config() $error_update[] = __('Default WMI Binary'); } + // Walk the array with defaults. + $defaultAgentWizardOptions = json_decode(io_safe_output($config['agent_wizard_defaults'])); + foreach ($defaultAgentWizardOptions as $key => $value) { + $selectedAgentWizardOptions[$key] = get_parameter_switch('agent_wizard_defaults_'.$key); + } + + if (config_update_value('agent_wizard_defaults', json_encode($selectedAgentWizardOptions), true) === false) { + $error_update[] = __('SNMP Interface Agent Wizard'); + } + $pjs = get_parameter('phantomjs_cache_interval'); switch ($pjs) { case $config['phantomjs_cache_interval']: @@ -2255,6 +2265,32 @@ function config_process_config() config_update_value('2Fa_auth', ''); } + if (isset($config['agent_wizard_defaults']) === false) { + config_update_value( + 'agent_wizard_defaults', + json_encode( + [ + 'ifOperStatus' => 1, + 'ifInOctets' => 1, + 'ifOutOctets' => 1, + 'ifInUcastPkts' => 0, + 'ifOutUcastPkts' => 0, + 'ifInNUcastPkts' => 0, + 'ifOutNUcastPkts' => 0, + 'locIfInCRC' => 1, + 'Bandwidth' => 1, + 'inUsage' => 1, + 'outUsage' => 1, + 'ifAdminStatus' => 0, + 'ifInDiscards' => 0, + 'ifOutDiscards' => 0, + 'ifInErrors' => 0, + 'ifOutErrors' => 0, + ], + ) + ); + } + /* * Parse the ACL IP list for access API */ From b5dcc5936e214bcb729f9d09d013a10fb43dc057 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Tue, 4 Oct 2022 16:59:25 +0200 Subject: [PATCH 13/22] Fix issue --- pandora_console/include/functions_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index 647b719ae3..f333b77680 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -467,7 +467,7 @@ function config_update_config() break; case 'pass': - if (isset($config['enterprise_installed']) === true && (bool) $config['enterprise_installed'] === 1) { + if (isset($config['enterprise_installed']) === true && (bool) $config['enterprise_installed'] === true) { if (config_update_value('enable_pass_policy', get_parameter('enable_pass_policy'), true) === false) { $error_update[] = __('Enable password policy'); } From 83ac81ab2336a7182c1f905e341eeb6b9d5b4ccb Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Fri, 7 Oct 2022 10:56:12 +0200 Subject: [PATCH 14/22] #9506 Fixed meta --- pandora_console/godmode/users/user_list.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/users/user_list.php b/pandora_console/godmode/users/user_list.php index 85a95a8f22..e99a5648b1 100644 --- a/pandora_console/godmode/users/user_list.php +++ b/pandora_console/godmode/users/user_list.php @@ -31,8 +31,6 @@ global $config; check_login(); -enterprise_hook('open_meta_frame'); - require_once $config['homedir'].'/include/functions_profile.php'; require_once $config['homedir'].'/include/functions_users.php'; require_once $config['homedir'].'/include/functions_groups.php'; @@ -134,6 +132,8 @@ if (is_ajax()) { } } +enterprise_hook('open_meta_frame'); + $sortField = get_parameter('sort_field'); $sort = get_parameter('sort', 'none'); $tab = get_parameter('tab', 'user'); @@ -924,7 +924,7 @@ enterprise_hook('close_meta_frame'); var request = $.ajax({ url: "", type: 'GET', - dataType: 'JSON', + dataType: 'json', data: { page: 'godmode/users/user_list', get_user_profile_group: 1, @@ -943,6 +943,9 @@ enterprise_hook('close_meta_frame'); } count ++; }); + }, + error: function (e, textStatus) { + console.error(textStatus); } }); $(`#hidden-show_groups_${id_user}`).val('1'); From 1c157ba2e4349b5448da9ee3f21146f9e151a85f Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 7 Oct 2022 13:15:44 +0200 Subject: [PATCH 15/22] Fix reset user creation form on error --- .../godmode/users/configure_user.php | 6 ++--- pandora_console/include/functions_profile.php | 23 ++++++++++++++++--- 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index d98fc1d944..800f738394 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -1444,7 +1444,7 @@ html_print_input_hidden('json_profile', ''); echo ''; -profile_print_profile_table($id); +profile_print_profile_table($id, io_safe_output($json_profile)); echo '
'; @@ -1560,11 +1560,11 @@ $(document).ready (function () { switch_ehorus_conf(); }); $('#checkbox-ehorus_user_level_enabled').trigger('change'); - var img_delete = ''; var id_user = ''; var is_metaconsole = ''; var user_is_global_admin = ''; + var is_err = ''; var data = []; $('input:image[name="add"]').click(function (e) { @@ -1588,7 +1588,7 @@ $(document).ready (function () { return; } - if (id_user === '') { + if (id_user === '' || is_err === 1) { let new_json = `{"profile":${profile},"group":${group},"tags":[${tags}],"hierarchy":${hierarchy}}`; data.push(new_json); json_profile.val('['+data+']'); diff --git a/pandora_console/include/functions_profile.php b/pandora_console/include/functions_profile.php index a16772c49e..c6a62c4c9d 100644 --- a/pandora_console/include/functions_profile.php +++ b/pandora_console/include/functions_profile.php @@ -181,7 +181,7 @@ function profile_delete_profile_and_clean_users($id_profile) * @param int User id * @param bool Show the tags select or not */ -function profile_print_profile_table($id) +function profile_print_profile_table($id, $json_profile=false) { global $config; @@ -243,7 +243,19 @@ function profile_print_profile_table($id) } if ($result === false) { - $result = []; + if ($json_profile !== false && empty($json_profile) !== true) { + $profile_decoded = json_decode($json_profile); + foreach ($profile_decoded as $profile) { + $result[] = [ + 'id_grupo' => $profile->group, + 'id_perfil' => $profile->profile, + 'tags' => $profile->tags, + 'hierarchy' => $profile->hierarchy, + ]; + } + } else { + $result = []; + } } foreach ($result as $profile) { @@ -268,7 +280,12 @@ function profile_print_profile_table($id) if (empty($profile['tags'])) { $data['tags'] = ''; } else { - $tags_ids = explode(',', $profile['tags']); + if (is_array($profile['tags'] === false)) { + $tags_ids = explode(',', $profile['tags']); + } else { + $tags_ids = $profile['tags']; + } + $tags = tags_get_tags($tags_ids); $data['tags'] = tags_get_tags_formatted($tags); } From fc37d9919c7dadf34ad4cb2811467d988271b894 Mon Sep 17 00:00:00 2001 From: "jose.gonzalez@pandorafms.com" Date: Thu, 13 Oct 2022 12:06:04 +0200 Subject: [PATCH 16/22] Fix javascript injection in agent names --- pandora_console/godmode/agentes/configurar_agente.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index af29579055..f71ead533b 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -181,7 +181,7 @@ $module_macros = []; // Create agent. if ($create_agent) { $mssg_warning = 0; - $alias_safe_output = io_safe_output(get_parameter('alias', '')); + $alias_safe_output = strip_tags(io_safe_output(get_parameter('alias', ''))); $alias = io_safe_input(trim(preg_replace('/[\/\\\|%#&$]/', '', $alias_safe_output))); $alias_as_name = (int) get_parameter_post('alias_as_name', 0); $direccion_agente = (string) get_parameter_post('direccion', ''); @@ -935,7 +935,7 @@ if ($update_agent) { $mssg_warning = 0; $id_agente = (int) get_parameter_post('id_agente'); $nombre_agente = str_replace('`', '‘', (string) get_parameter_post('agente', '')); - $alias_safe_output = io_safe_output(get_parameter('alias', '')); + $alias_safe_output = strip_tags(io_safe_output(get_parameter('alias', ''))); $alias = io_safe_input(trim(preg_replace('/[\/\\\|%#&$]/', '', $alias_safe_output))); $alias_as_name = (int) get_parameter_post('alias_as_name', 0); $direccion_agente = (string) get_parameter_post('direccion', ''); From f3bc5427baee7575a38a42db35a75e56ee9b8ec0 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 13 Oct 2022 13:22:36 +0200 Subject: [PATCH 17/22] #9506 Fixed meta ajax --- pandora_console/godmode/users/user_list.php | 74 ++++++++++----------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/pandora_console/godmode/users/user_list.php b/pandora_console/godmode/users/user_list.php index e99a5648b1..a5ec875334 100644 --- a/pandora_console/godmode/users/user_list.php +++ b/pandora_console/godmode/users/user_list.php @@ -54,6 +54,43 @@ if (is_ajax()) { $return_all = false; + if ($get_user_profile_group === true) { + $id_user = get_parameter('id_user'); + + $user_is_admin = users_is_admin(); + + $user_profiles = []; + + if ($user_is_admin === false) { + $group_um = users_get_groups_UM($config['id_user']); + } + + // User profiles. + if ($user_is_admin || $id_user == $config['id_user'] || isset($group_um[0])) { + $user_profiles = db_get_all_rows_field_filter( + 'tusuario_perfil', + 'id_usuario', + $id_user + ); + } else { + $user_profiles_aux = users_get_user_profile($id_user); + foreach ($group_um as $key => $value) { + if (isset($user_profiles_aux[$key]) === true) { + $user_profiles[$key] = $user_profiles_aux[$key]; + unset($user_profiles_aux[$key]); + } + } + } + + foreach ($user_profiles as $key => $value) { + $user_profiles[$key]['id_perfil'] = profile_get_name($value['id_perfil']); + $user_profiles[$key]['id_grupo'] = groups_get_name($value['id_grupo'], true); + } + + echo json_encode($user_profiles); + return; + } + if ($group_id == -1) { $sql = 'SELECT tusuario.id_user FROM tusuario LEFT OUTER JOIN tusuario_perfil @@ -93,43 +130,6 @@ if (is_ajax()) { echo json_encode($ret_id); return; } - - if ($get_user_profile_group === true) { - $id_user = get_parameter('id_user'); - - $user_is_admin = users_is_admin(); - - $user_profiles = []; - - if ($user_is_admin === false) { - $group_um = users_get_groups_UM($config['id_user']); - } - - // User profiles. - if ($user_is_admin || $id_user == $config['id_user'] || isset($group_um[0])) { - $user_profiles = db_get_all_rows_field_filter( - 'tusuario_perfil', - 'id_usuario', - $id_user - ); - } else { - $user_profiles_aux = users_get_user_profile($id_user); - foreach ($group_um as $key => $value) { - if (isset($user_profiles_aux[$key]) === true) { - $user_profiles[$key] = $user_profiles_aux[$key]; - unset($user_profiles_aux[$key]); - } - } - } - - foreach ($user_profiles as $key => $value) { - $user_profiles[$key]['id_perfil'] = profile_get_name($value['id_perfil']); - $user_profiles[$key]['id_grupo'] = groups_get_name($value['id_grupo'], true); - } - - echo json_encode($user_profiles); - return; - } } enterprise_hook('open_meta_frame'); From b31240a3cc06553eee5f88bfe2e6dfa03103e13e Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 15 Oct 2022 01:00:23 +0200 Subject: [PATCH 18/22] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 4018039f20..963f9e92d1 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.765-221014 +Version: 7.0NG.765-221015 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 44889d501d..e3fea972e1 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.765-221014" +pandora_version="7.0NG.765-221015" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 2f5e6417a9..c152c996de 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.765'; -use constant AGENT_BUILD => '221014'; +use constant AGENT_BUILD => '221015'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 2fffcc1d23..b4b02b5113 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.765 -%define release 221014 +%define release 221015 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 51c0844ab9..db992fdae3 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.765 -%define release 221014 +%define release 221015 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 4221c2f2b2..c8a6306ffe 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.765" -PI_BUILD="221014" +PI_BUILD="221015" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 2f669dbbf9..9f17f24e64 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{221014} +{221015} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 30860fc1d2..e9af8777f2 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.765 Build 221014") +#define PANDORA_VERSION ("7.0NG.765 Build 221015") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index b6193a0aed..d946eeb14d 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.765(Build 221014))" + VALUE "ProductVersion", "(7.0NG.765(Build 221015))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 3019355c3f..adaf607dc9 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.765-221014 +Version: 7.0NG.765-221015 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index f532ec4147..340a8ef6f6 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.765-221014" +pandora_version="7.0NG.765-221015" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index ad8c93d54a..4c8bdbc88d 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC221014'; +$build_version = 'PC221015'; $pandora_version = 'v7.0NG.765'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index d7d1442226..83d0e95ae1 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index b26554742d..60090c75de 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.765 -%define release 221014 +%define release 221015 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 1c705de963..90b3c86c99 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.765 -%define release 221014 +%define release 221015 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 7aa8c6f4de..967e304f3f 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.765" -PI_BUILD="221014" +PI_BUILD="221015" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 21efbbd6a4..ed707ec9d8 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.765 Build 221014"; +my $version = "7.0NG.765 Build 221015"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index f7c72111b2..bc6562221f 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.765 Build 221014"; +my $version = "7.0NG.765 Build 221015"; # save program name for logging my $progname = basename($0); From 92f0e4b709e9f5cd8907cece0e282fd4f60f1f31 Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 16 Oct 2022 01:00:17 +0200 Subject: [PATCH 19/22] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 963f9e92d1..76d7898ad8 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.765-221015 +Version: 7.0NG.765-221016 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index e3fea972e1..de627a9852 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.765-221015" +pandora_version="7.0NG.765-221016" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index c152c996de..42496307c4 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.765'; -use constant AGENT_BUILD => '221015'; +use constant AGENT_BUILD => '221016'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index b4b02b5113..9ad80766f8 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.765 -%define release 221015 +%define release 221016 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index db992fdae3..4e502da95c 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.765 -%define release 221015 +%define release 221016 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index c8a6306ffe..c9e2bf612b 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.765" -PI_BUILD="221015" +PI_BUILD="221016" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 9f17f24e64..d163f8892c 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{221015} +{221016} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index e9af8777f2..caed117ba1 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.765 Build 221015") +#define PANDORA_VERSION ("7.0NG.765 Build 221016") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index d946eeb14d..e86d6bc5f4 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.765(Build 221015))" + VALUE "ProductVersion", "(7.0NG.765(Build 221016))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index adaf607dc9..b49afec11f 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.765-221015 +Version: 7.0NG.765-221016 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 340a8ef6f6..7a175debaa 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.765-221015" +pandora_version="7.0NG.765-221016" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 4c8bdbc88d..784d3b7750 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC221015'; +$build_version = 'PC221016'; $pandora_version = 'v7.0NG.765'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 83d0e95ae1..c061d760bb 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 60090c75de..30241fc5a4 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.765 -%define release 221015 +%define release 221016 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 90b3c86c99..b87320bd03 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.765 -%define release 221015 +%define release 221016 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 967e304f3f..f0d822337b 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.765" -PI_BUILD="221015" +PI_BUILD="221016" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index ed707ec9d8..d1d9f82626 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.765 Build 221015"; +my $version = "7.0NG.765 Build 221016"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index bc6562221f..e1506f7cf2 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.765 Build 221015"; +my $version = "7.0NG.765 Build 221016"; # save program name for logging my $progname = basename($0); From b79b7e5d57a02f5e7ea91e3450100ab6ad500deb Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 17 Oct 2022 01:00:17 +0200 Subject: [PATCH 20/22] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 76d7898ad8..c0a043b65f 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.765-221016 +Version: 7.0NG.765-221017 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index de627a9852..376ee10fb8 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.765-221016" +pandora_version="7.0NG.765-221017" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 42496307c4..45dbf33561 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.765'; -use constant AGENT_BUILD => '221016'; +use constant AGENT_BUILD => '221017'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 9ad80766f8..611d497c2e 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.765 -%define release 221016 +%define release 221017 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 4e502da95c..7c0f1de9c9 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.765 -%define release 221016 +%define release 221017 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index c9e2bf612b..a9a7fb7350 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.765" -PI_BUILD="221016" +PI_BUILD="221017" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index d163f8892c..164fdc29e5 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{221016} +{221017} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index caed117ba1..42a66fda57 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.765 Build 221016") +#define PANDORA_VERSION ("7.0NG.765 Build 221017") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index e86d6bc5f4..55b05dbc59 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.765(Build 221016))" + VALUE "ProductVersion", "(7.0NG.765(Build 221017))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index b49afec11f..64689dd755 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.765-221016 +Version: 7.0NG.765-221017 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 7a175debaa..94ff4318f3 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.765-221016" +pandora_version="7.0NG.765-221017" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 784d3b7750..0823f278b7 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC221016'; +$build_version = 'PC221017'; $pandora_version = 'v7.0NG.765'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index c061d760bb..11cd881e99 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 30241fc5a4..c2d2d779f8 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.765 -%define release 221016 +%define release 221017 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index b87320bd03..84cc39b429 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.765 -%define release 221016 +%define release 221017 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index f0d822337b..ddd4b97d4e 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.765" -PI_BUILD="221016" +PI_BUILD="221017" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index d1d9f82626..e6e49316ab 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.765 Build 221016"; +my $version = "7.0NG.765 Build 221017"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index e1506f7cf2..ba59b8b2c1 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.765 Build 221016"; +my $version = "7.0NG.765 Build 221017"; # save program name for logging my $progname = basename($0); From 2251062d3060a239c4e9cc1bfd366f262fba51f4 Mon Sep 17 00:00:00 2001 From: Calvo Date: Mon, 17 Oct 2022 12:26:38 +0200 Subject: [PATCH 21/22] Fix user profile add bugs --- .../godmode/users/configure_user.php | 27 ++++++++++++++++--- pandora_console/include/functions_profile.php | 11 +++++--- .../include/javascript/pandora_ui.js | 23 ++++++++++++++++ 3 files changed, 54 insertions(+), 7 deletions(-) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 800f738394..945bea5edd 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -489,6 +489,10 @@ if ($create_user) { if (!empty($json_profile)) { $json_profile = json_decode(io_safe_output($json_profile), true); foreach ($json_profile as $key => $profile) { + if (is_array($profile) === false) { + $profile = json_decode($profile, true); + } + if (!empty($profile)) { $group2 = $profile['group']; $profile2 = $profile['profile']; @@ -806,6 +810,10 @@ if ($add_profile && empty($json_profile)) { 'Profile: '.$profile2.' Group: '.$group2.' Tags: '.$tags ); $return = profile_create_user_profile($id2, $profile2, $group2, false, $tags, $no_hierarchy); + if ($return === false) { + $is_err = true; + } + ui_print_result_message( $return, __('Profile added successfully'), @@ -1439,7 +1447,7 @@ if ($config['admin_can_add_user']) { echo '
'; -html_print_input_hidden('json_profile', ''); +html_print_input_hidden('json_profile', $json_profile); echo ''; @@ -1566,7 +1574,12 @@ $(document).ready (function () { var user_is_global_admin = ''; var is_err = ''; var data = []; + var aux = 0; + if(json_profile.val() != '') { + var data = JSON.parse(json_profile.val()); + } + $('input:image[name="add"]').click(function (e) { e.preventDefault(); var profile = $('#assign_profile').val(); @@ -1588,10 +1601,14 @@ $(document).ready (function () { return; } - if (id_user === '' || is_err === 1) { + if (id_user == '' || is_err == 1) { let new_json = `{"profile":${profile},"group":${group},"tags":[${tags}],"hierarchy":${hierarchy}}`; data.push(new_json); - json_profile.val('['+data+']'); + json_profile.val(JSON.stringify(data)); + profile_text = `${profile_text}`; + group_img = `${group_text}`; + group_text = `${group_img}${group_text}`; + $('#table_profiles tr:last').before( ` ${profile_text} @@ -1601,6 +1618,10 @@ $(document).ready (function () { ${img_delete} ` ); + + getGroupIcon(group, $(`#img_group_${aux}`)); + aux++; + } else { this.form.submit(); } diff --git a/pandora_console/include/functions_profile.php b/pandora_console/include/functions_profile.php index c6a62c4c9d..ad052dadbd 100644 --- a/pandora_console/include/functions_profile.php +++ b/pandora_console/include/functions_profile.php @@ -181,7 +181,7 @@ function profile_delete_profile_and_clean_users($id_profile) * @param int User id * @param bool Show the tags select or not */ -function profile_print_profile_table($id, $json_profile=false) +function profile_print_profile_table($id, $json_profile=false, $return=false) { global $config; @@ -246,6 +246,10 @@ function profile_print_profile_table($id, $json_profile=false) if ($json_profile !== false && empty($json_profile) !== true) { $profile_decoded = json_decode($json_profile); foreach ($profile_decoded as $profile) { + if (is_object($profile) === false) { + $profile = json_decode($profile); + } + $result[] = [ 'id_grupo' => $profile->group, 'id_perfil' => $profile->profile, @@ -293,10 +297,10 @@ function profile_print_profile_table($id, $json_profile=false) $data['hierarchy'] = $profile['no_hierarchy'] ? __('Yes') : __('No'); $data['actions'] = '
'; + $data['actions'] .= html_print_input_image('del', 'images/cross.png', 1, ['class' => 'invert_filter'], true); $data['actions'] .= html_print_input_hidden('delete_profile', 1, true); $data['actions'] .= html_print_input_hidden('id_user_profile', $profile['id_up'], true); $data['actions'] .= html_print_input_hidden('id_user', $id, true); - $data['actions'] .= html_print_input_image('del', 'images/cross.png', 1, ['class' => 'invert_filter'], true); $data['actions'] .= '
'; array_push($table->data, $data); @@ -362,8 +366,7 @@ function profile_print_profile_table($id, $json_profile=false) $data['actions'] .= ''; array_push($table->data, $data); - - html_print_table($table); + html_print_table($table, $return); if (!is_metaconsole()) { echo '
'; } diff --git a/pandora_console/include/javascript/pandora_ui.js b/pandora_console/include/javascript/pandora_ui.js index eeeb5fcfd5..ecb23827d9 100644 --- a/pandora_console/include/javascript/pandora_ui.js +++ b/pandora_console/include/javascript/pandora_ui.js @@ -740,3 +740,26 @@ function reveal_password(name) { revealElement.attr("src", imagesPath + "eye_show.png"); } } + +/** + * Returns html img group icon. + * @param {int} $id_group + */ +function getGroupIcon(id_group, img_container) { + $.ajax({ + type: "POST", + url: "ajax.php", + dataType: "json", + data: { + page: "godmode/groups/group_list", + get_group_json: 1, + id_group: id_group + }, + success: function(data) { + img_container.attr("src", "images/groups_small/" + data["icon"] + ".png"); + }, + error: function() { + img_container.attr("src", ""); + } + }); +} From ed8b6678cd2a9439d5bdf45d6cf0ea7c5e7cfb9f Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 18 Oct 2022 01:00:21 +0200 Subject: [PATCH 22/22] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index c0a043b65f..1e38797198 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.765-221017 +Version: 7.0NG.765-221018 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 376ee10fb8..e7662144c6 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.765-221017" +pandora_version="7.0NG.765-221018" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 45dbf33561..bf7572f67c 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.765'; -use constant AGENT_BUILD => '221017'; +use constant AGENT_BUILD => '221018'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 611d497c2e..6074ba5280 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.765 -%define release 221017 +%define release 221018 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 7c0f1de9c9..b4081b677d 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.765 -%define release 221017 +%define release 221018 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index a9a7fb7350..c7c2027a81 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.765" -PI_BUILD="221017" +PI_BUILD="221018" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 164fdc29e5..9af1e6a8c9 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{221017} +{221018} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 42a66fda57..04eea8f5e8 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.765 Build 221017") +#define PANDORA_VERSION ("7.0NG.765 Build 221018") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 55b05dbc59..3192279b81 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.765(Build 221017))" + VALUE "ProductVersion", "(7.0NG.765(Build 221018))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 64689dd755..fce3f648cf 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.765-221017 +Version: 7.0NG.765-221018 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 94ff4318f3..bb0fe38433 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.765-221017" +pandora_version="7.0NG.765-221018" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 0823f278b7..28a11a0f1c 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC221017'; +$build_version = 'PC221018'; $pandora_version = 'v7.0NG.765'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 11cd881e99..0d925f107e 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index c2d2d779f8..cfcfd49b42 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.765 -%define release 221017 +%define release 221018 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 84cc39b429..d90c6cf9fc 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.765 -%define release 221017 +%define release 221018 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index ddd4b97d4e..52487caa93 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.765" -PI_BUILD="221017" +PI_BUILD="221018" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index e6e49316ab..e4a5c8b726 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.765 Build 221017"; +my $version = "7.0NG.765 Build 221018"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index ba59b8b2c1..3ec677ac1f 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.765 Build 221017"; +my $version = "7.0NG.765 Build 221018"; # save program name for logging my $progname = basename($0);