From 40b8bcf0eb5df426babd62ca2a6c775cc764482f Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Mon, 10 Apr 2023 10:48:51 +0200 Subject: [PATCH 1/3] minor fix --- .../godmode/massive/massive_edit_agents.php | 61 +++++++++---------- 1 file changed, 30 insertions(+), 31 deletions(-) diff --git a/pandora_console/godmode/massive/massive_edit_agents.php b/pandora_console/godmode/massive/massive_edit_agents.php index 41c8a9d816..1cb20e421a 100755 --- a/pandora_console/godmode/massive/massive_edit_agents.php +++ b/pandora_console/godmode/massive/massive_edit_agents.php @@ -1124,37 +1124,36 @@ $table->data[6][1] = html_print_select( true ); -if (is_metaconsole() === false) { - $table->data[7][0] = __('Safe operation mode').': '.ui_print_help_tip( - __( - 'This mode allow %s to disable all modules of this agent while the selected module is on CRITICAL status', - get_product_name() - ), - true - ); - $table->data[7][1] .= html_print_select( - [ - 1 => __('Enabled'), - 0 => __('Disabled'), - ], - 'safe_mode_change', - -1, - '', - __('No change'), - -1, - true - ).' '; - $table->data[7][1] .= __('Module').' '; - $table->data[7][1] .= html_print_select( - '', - 'safe_mode_module', - '', - '', - __('Any'), - -1, - true - ); -} +$table->data[7][0] = __('Safe operation mode').': '.ui_print_help_tip( + __( + 'This mode allow %s to disable all modules of this agent while the selected module is on CRITICAL status', + get_product_name() + ), + true +); +$table->data[7][1] .= html_print_select( + [ + 1 => __('Enabled'), + 0 => __('Disabled'), + ], + 'safe_mode_change', + -1, + '', + __('No change'), + -1, + true +).' '; + +$table->data[7][1] .= __('Module').' '; +$table->data[7][1] .= html_print_select( + '', + 'safe_mode_module', + '', + '', + __('Any'), + -1, + true +); ui_toggle(html_print_table($table, true), __('Advanced options')); unset($table); From c2a21a42cae7613c169942f9341d0a6b74cba073 Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Mon, 10 Apr 2023 12:31:49 +0200 Subject: [PATCH 2/3] implemented massive edition of safe operation mode --- .../godmode/massive/massive_edit_agents.php | 28 +++++++++++++++---- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/pandora_console/godmode/massive/massive_edit_agents.php b/pandora_console/godmode/massive/massive_edit_agents.php index 1cb20e421a..44f61be9a7 100755 --- a/pandora_console/godmode/massive/massive_edit_agents.php +++ b/pandora_console/godmode/massive/massive_edit_agents.php @@ -285,10 +285,28 @@ if ($update_agents) { $result = []; foreach ($id_agents as $id_agent) { if (is_metaconsole() === true) { + $array_id = explode('|', $id_agent); try { $node = new Node((int) $array_id[0]); $node->connect(); + + $id_agent = (int) $array_id[1]; + + // Get the id_agente_modulo to update the 'safe_operation_mode' field. + if (isset($values['safe_mode_module']) === true + && ($values['safe_mode_module'] != '0') + ) { + $id_module_safe[$id_agent] = db_get_value_filter( + 'id_agente_modulo', + 'tagente_modulo', + [ + 'id_agente' => $id_agent, + 'nombre' => $values['safe_mode_module'], + ] + ); + } + $result[$id_agent] = edit_massive_agent( (int) $array_id[1], $values, @@ -477,11 +495,7 @@ function edit_massive_agent( $agent = new Agent($id_agent); $disabled_old = $agent->disabled(); - foreach ($values as $key => $value) { - $agent->{$key}($value); - } - - if (is_metaconsole() === false) { + if (empty($id_module_safe) === false) { // Get the id_agent_module for this agent to update the 'safe_operation_mode' field. if (isset($values['safe_mode_module']) === true && ($values['safe_mode_module'] != '0') @@ -490,6 +504,10 @@ function edit_massive_agent( } } + foreach ($values as $key => $value) { + $agent->{$key}($value); + } + $result['db'] = $agent->save(); if (is_metaconsole() === false) { From 3b7e57c93fde561852d69cdec2753bb30c5ea49b Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Mon, 10 Apr 2023 12:33:18 +0200 Subject: [PATCH 3/3] implemented massive edition of safe operation mode --- pandora_console/godmode/massive/massive_edit_agents.php | 1 - 1 file changed, 1 deletion(-) diff --git a/pandora_console/godmode/massive/massive_edit_agents.php b/pandora_console/godmode/massive/massive_edit_agents.php index 44f61be9a7..a5a31f6685 100755 --- a/pandora_console/godmode/massive/massive_edit_agents.php +++ b/pandora_console/godmode/massive/massive_edit_agents.php @@ -285,7 +285,6 @@ if ($update_agents) { $result = []; foreach ($id_agents as $id_agent) { if (is_metaconsole() === true) { - $array_id = explode('|', $id_agent); try { $node = new Node((int) $array_id[0]);