'', 'label' => __('Configure alert template'), ], ] ); } } else { // If user tries to duplicate/edit a template of others groups. $own_info = get_user_info($config['id_user']); if ($own_info['is_admin'] || check_acl($config['id_user'], 0, 'PM')) { $own_groups = array_keys(users_get_groups($config['id_user'], 'LM')); } else { $own_groups = array_keys(users_get_groups($config['id_user'], 'LM', false)); } $is_in_group = in_array($a_template['id_group'], $own_groups); // Then template group have to be in his own groups. if ($is_in_group) { // Header. if (is_metaconsole() === true) { alerts_meta_print_header(); } else { ui_print_standard_header( __('Alerts'), 'images/gm_alerts.png', false, 'conf_alert_template', true, [], [ [ 'link' => '', 'label' => __('Configure alert template'), ], ] ); } } else { db_pandora_audit( AUDIT_LOG_ACL_VIOLATION, 'Trying to access Alert Management' ); include 'general/noaccess.php'; exit; } } // This prevents to duplicate the header in case duplicate/edit_template action is performed. } else { // Header. if (is_metaconsole() === true) { alerts_meta_print_header(); } else { if ($step == 1) { $help_header = ''; } else if ($step == 2) { $help_header = 'configure_alert_template_step_2'; } else if ($step == 3) { $help_header = ''; } ui_print_standard_header( __('Alerts'), 'images/gm_alerts.png', false, $help_header, true, [], [ [ 'link' => '', 'label' => __('Configure alert template'), ], ] ); } } if ($duplicate_template) { $source_id = (int) get_parameter('source_id'); // If user doesn't have the permission to access // All group and source template is All group, // then group is changed to the first group of user. if ($can_edit_all == false && $a_template['id_group'] == 0) { $a_template['id_group'] = users_get_first_group(false, 'LM', false); } $id = alerts_duplicate_alert_template($source_id, $a_template['id_group']); if ($id) { db_pandora_audit( AUDIT_LOG_ALERT_MANAGEMENT, 'Duplicate alert template '.$source_id.' clone to '.$id ); } else { db_pandora_audit( AUDIT_LOG_ALERT_MANAGEMENT, 'Fail try to duplicate alert template '.$source_id ); } ui_print_result_message( $id, __('Successfully created from %s', alerts_get_alert_template_name($source_id)), __('Could not be created') ); } /** * Build navbar steps. * * @param integer $step Step. * @param integer $id Id template. * * @return void Html output. */ function print_alert_template_steps($step, $id) { echo '
    '; if (is_metaconsole() === true) { $sec = 'advanced'; } else { $sec = 'galertas'; } $pure = get_parameter('pure', 0); // Step 1. if ($step == 1) { echo '
  1. '; } else if ($step > 1) { echo '
  2. '; } else { echo '
  3. '; } if ($id) { echo ''; echo __('Step').' 1 » '; echo ''.__('General').''; echo ''; } else { echo __('Step').' 1 » '; echo ''.__('General').''; } echo '
  4. '; // Step 2. if ($step == 2) { echo '
  5. '; } else if ($step > 2) { echo '
  6. '; } else { echo '
  7. '; } if ($id) { echo ''; echo __('Step').' 2 » '; echo ''.__('Conditions').''; echo ''; } else { echo __('Step').' 2 » '; echo ''.__('Conditions').''; } echo '
  8. '; // Step 3. if ($step == 3) { echo '
  9. '; } else if ($step > 3) { echo '
  10. '; } else { echo '
  11. '; } if ($id) { echo ''; echo __('Step').' 3 » '; echo ''.__('Advanced fields').''; echo ''; } else { echo __('Step').' 3 » '; echo ''.__('Advanced fields').''; } echo '
'; echo '
'; } /** * Update template * * @param integer $step Step. * * @return boolean result to update. */ function update_template($step) { global $config; $id = (int) get_parameter('id'); if (empty($id) === true) { return false; } if (is_metaconsole() === true) { $sec = 'advanced'; } else { $sec = 'galertas'; } if ($step == 1) { $name = (string) get_parameter('name'); $name = trim(io_safe_output($name)); if (strlen($name) === 0) { ui_print_warning_message(__('You can\'t named a template with spaces')); return false; } $name = io_safe_input($name); $description = (string) get_parameter('description'); $wizard_level = (string) get_parameter('wizard_level'); $priority = (int) get_parameter('priority'); $id_group = get_parameter('id_group'); $name_check = db_get_value('name', 'talert_templates', 'name', $name); // Only for Metaconsole. Save the previous name for synchronizing. if (is_metaconsole() === true) { $previous_name = db_get_value('name', 'talert_templates', 'id', $id); } else { $previous_name = ''; } $values = [ 'name' => $name, 'description' => $description, 'id_group' => $id_group, 'priority' => $priority, 'wizard_level' => $wizard_level, 'previous_name' => $previous_name, ]; if ($name_check === false) { $result = alerts_update_alert_template($id, $values); } else { ui_print_warning_message(__('Another template with the same name already exists')); $result = false; } } else if ($step == 2) { $schedule = io_safe_output(get_parameter('schedule', [])); json_decode($schedule, true); if (json_last_error() !== JSON_ERROR_NONE) { return false; } $special_day = (int) get_parameter('special_day'); $threshold = (int) get_parameter('threshold'); $max_alerts = (int) get_parameter('max_alerts'); $min_alerts = (int) get_parameter('min_alerts'); $min_alerts_reset_counter = (int) get_parameter('min_alerts_reset_counter'); $disable_event = (int) get_parameter('disable_event'); $type = (string) get_parameter('type'); $value = (string) html_entity_decode(get_parameter('value')); $max = (float) get_parameter('max'); $min = (float) get_parameter('min'); $matches = (bool) get_parameter('matches_value'); $default_action = (int) get_parameter('default_action'); if (empty($default_action) === true) { $default_action = null; } $values = [ 'schedule' => $schedule, 'special_day' => $special_day, 'time_threshold' => $threshold, 'id_alert_action' => $default_action, 'max_alerts' => $max_alerts, 'min_alerts' => $min_alerts, 'min_alerts_reset_counter' => $min_alerts_reset_counter, 'type' => $type, 'value' => $value, 'max_value' => $max, 'min_value' => $min, 'matches_value' => $matches, 'disable_event' => $disable_event, ]; $result = alerts_update_alert_template($id, $values); } else if ($step == 3) { $recovery_notify = (bool) get_parameter('recovery_notify'); for ($i = 1; $i <= $config['max_macro_fields']; $i++) { $values['field'.$i] = (string) get_parameter('field'.$i); $values['field'.$i.'_recovery'] = ($recovery_notify) ? (string) get_parameter('field'.$i.'_recovery') : ''; } $values['recovery_notify'] = $recovery_notify; $result = alerts_update_alert_template($id, $values); } else { return false; } if ($result) { db_pandora_audit( AUDIT_LOG_ALERT_MANAGEMENT, 'Update alert template #'.$id, false, false, json_encode($values) ); } else { db_pandora_audit( AUDIT_LOG_ALERT_MANAGEMENT, 'Fail try to update alert template #'.$id, false, false, json_encode($values) ); } return $result; } $is_management_allowed = is_management_allowed(); if ($is_management_allowed === false) { if (is_metaconsole() === false) { $url = ''.__('metaconsole').''; } else { $url = __('any node'); } ui_print_warning_message( __( 'This node is configured with centralized mode. All alerts templates information is read only. Go to Go to %s to manage it.', $url ) ); } $step = (int) get_parameter('step', 1); $create_alert = (bool) get_parameter('create_alert'); $create_template = (bool) get_parameter('create_template'); $update_template = (bool) get_parameter('update_template'); $disabled = false; if (!$create_alert && !$create_template) { // When user edits a template with All group, user must have "LM" access privileges againt All group. if ($a_template['id_group'] == 0 && !$can_edit_all) { $disabled = true; } } $name = ''; $description = ''; $type = ''; $value = ''; $max = ''; $min = ''; $schedule = json_encode( $default_events_calendar ); $special_day = 0; $default_action = 0; $fields = []; for ($i = 1; $i <= $config['max_macro_fields']; $i++) { $fields[$i] = ''; } for ($i = 1; $i <= $config['max_macro_fields']; $i++) { $fields_recovery[$i] = ''; } $priority = 1; $min_alerts = 0; $min_alerts_reset_counter = 0; $max_alerts = 1; $threshold = SECONDS_1DAY; $recovery_notify = false; $field2_recovery = ''; $field3_recovery = ''; $matches = true; $id_group = 0; $wizard_level = 'nowizard'; if ($create_template) { $name = (string) get_parameter('name'); $name = trim(io_safe_output($name)); if (strlen($name) === 0) { ui_print_warning_message(__('You can\'t named a template with spaces')); } $name = io_safe_input($name); $description = (string) get_parameter('description'); $type = (string) get_parameter('type', 'critical'); $value = (string) get_parameter('value'); $max = (float) get_parameter('max'); $min = (float) get_parameter('min'); $matches = (bool) get_parameter('matches_value'); $priority = (int) get_parameter('priority'); $wizard_level = (string) get_parameter('wizard_level'); $id_group = get_parameter('id_group'); $name_check = db_get_value('name', 'talert_templates', 'name', $name); $values = [ 'description' => $description, 'value' => $value, 'max_value' => $max, 'min_value' => $min, 'id_group' => $id_group, 'matches_value' => $matches, 'priority' => $priority, 'wizard_level' => $wizard_level, 'schedule' => $schedule, ]; if ($config['dbtype'] == 'oracle') { $values['field3'] = ' '; $values['field3_recovery'] = ' '; } if ($name_check === false) { $result = alerts_create_alert_template($name, $type, $values); } else { ui_print_warning_message(__('Another template with the same name already exists')); $result = false; } if ($result) { db_pandora_audit( AUDIT_LOG_ALERT_MANAGEMENT, 'Create alert template #'.$result, false, false, json_encode($values) ); } else { db_pandora_audit( AUDIT_LOG_ALERT_MANAGEMENT, 'Fail try to create alert template', false, false, json_encode($values) ); } // Show errors. if (!isset($messageAction)) { $messageAction = __('Could not be created'); } if ($name == '') { $messageAction = __('No template name specified'); } $messageAction = ui_print_result_message( $result, __('Successfully created'), $messageAction ); // Go to previous step in case of error. if ($result === false) { $step--; } else { $id = $result; } } if ($update_template) { $result = update_template($step - 1); ui_print_result_message( $result, __('Successfully updated'), __('Could not be updated') ); // Go to previous step in case of error. if ($result === false) { $step--; } } if ($id && ! $create_template) { $template = alerts_get_alert_template($id); $name = $template['name']; $description = $template['description']; $type = $template['type']; $value = $template['value']; $max = $template['max_value']; $min = $template['min_value']; $matches = $template['matches_value']; $schedule = json_encode( $default_events_calendar ); $special_day = (int) $template['special_day']; $max_alerts = $template['max_alerts']; $min_alerts = $template['min_alerts']; $min_alerts_reset_counter = $template['min_alerts_reset_counter']; $disable_event = $template['disable_event']; $threshold = $template['time_threshold']; $fields = []; for ($i = 1; $i <= $config['max_macro_fields']; $i++) { $fields[$i] = $template['field'.$i]; } $recovery_notify = $template['recovery_notify']; $fields_recovery = []; for ($i = 1; $i <= $config['max_macro_fields']; $i++) { $fields_recovery[$i] = $template['field'.$i.'_recovery']; } $default_action = $template['id_alert_action']; $priority = $template['priority']; $id_group = $template['id_group']; $wizard_level = $template['wizard_level']; } print_alert_template_steps($step, $id); $table = new stdClass(); $table->id = 'template'; $table->width = '100%'; $table->class = 'databox filters w100p filter-table-adv'; $table->style = []; $table->size = []; $table->size[0] = '50%'; $table->size[2] = '50%'; $table->colspan = []; $table->colspan[1][0] = 2; if ($step == 2) { if (!isset($show_matches)) { $show_matches = false; } $data_special_days = Calendar::calendars( // Fields. [ '`talert_calendar`.*' ], // Filter. [], // Count. false, // Offset. null, // Limit. null, // Order. null, // Sort field. null, // Reduce to a select. true ); $table->data[0][0] = html_print_label_input_block( __('Use special days list'), html_print_select( $data_special_days, 'special_day', $special_day, '', __('None'), 0, true, false, false, 'w100p', (!$is_management_allowed | $disabled), 'width: 100%' ) ); $table->data[0][1] = ' '; // Firing conditions and events. $table->data[1][0] = html_print_label_input_block( __('Schedule'), ui_print_warning_message( [ 'message' => __('No alert has been scheduled yet'), 'force_style' => 'display:none;', 'force_class' => 'alert_schedule', ], '', true ).'
'.html_print_input_hidden('schedule', $schedule, true) ); $table->data[2][0] = html_print_label_input_block( __('Time threshold').ui_print_help_tip(__('Reset the alert counter within the configured period if there is no manual recovery or validation of the alert.'), true), html_print_extended_select_for_time( 'threshold', $threshold, '', '', '', false, true, false, true, 'w100p', (!$is_management_allowed | $disabled) ) ); $usr_groups = implode( ',', array_keys(users_get_groups($config['id_user'], 'LM', true)) ); $sql_query = sprintf( 'SELECT id, name FROM talert_actions WHERE id_group IN (%s) ORDER BY name', $usr_groups ); $table->data[2][1] = html_print_label_input_block( __('Default action').ui_print_help_tip( __('Unless they\'re left blank, the fields from the action will override those set on the template.'), true ), html_print_select_from_sql( $sql_query, 'default_action', $default_action, '', __('None'), 0, true, false, false, (!$is_management_allowed | $disabled), false, false, 0, 'w100p' ) ); $table->data[3][0] = html_print_label_input_block( __('Min. number of alerts'), html_print_input_text( 'min_alerts', $min_alerts, '', 5, 7, true, false, false, '', 'w100p', '', '', false, '', '', '', (!$is_management_allowed | $disabled) ) ); $table->data[3][1] = html_print_label_input_block( __('Reset counter for non-sustained alerts').ui_print_help_tip( __('Enable this option if you want the counter to be reset when the alert is not being fired consecutively, even if it\'s within the time threshold'), true ), html_print_checkbox( 'min_alerts_reset_counter', 1, $min_alerts_reset_counter, true, (!$is_management_allowed | $disabled), '', false, ($create_template == 1) ? 'checked=checked' : '' ) ); $table->data[4][0] = html_print_label_input_block( __('Max. number of alerts'), html_print_input_text( 'max_alerts', $max_alerts, '', 5, 7, true, false, false, '', 'w100p', '', '', false, '', '', '', (!$is_management_allowed | $disabled) ) ); $table->data[4][1] = html_print_label_input_block( __('Disable event'), html_print_checkbox( 'disable_event', 1, $disable_event, true, (!$is_management_allowed | $disabled) ) ); $table->data[5][0] = html_print_label_input_block( __('Condition type'), html_print_select( alerts_get_alert_templates_types(), 'type', $type, '', __('None'), 0, true, false, false, 'w100p', (!$is_management_allowed | $disabled) ).''.' '.html_print_checkbox('matches_value', 1, $matches, true).html_print_label( __('Trigger when matches the value'), 'checkbox-matches_value', true ).'' ); $table->data['value'][1] = html_print_label_input_block( __('Value'), html_print_input_text( 'value', $value, '', 35, 255, true ).' '.html_print_image( 'images/suc.png', true, [ 'style' => 'display:none', 'id' => 'regex_good', 'title' => __('The regular expression is valid'), 'width' => '20px', ] ).html_print_image( 'images/err.png', true, [ 'style' => 'display:none', 'id' => 'regex_bad', 'title' => __('The regular expression is not valid'), 'width' => '20px', ] ).'' ); // Min first, then max, that's more logical. $table->data['min'][0] = html_print_label_input_block( __('Min.'), html_print_input_text( 'min', $min, '', 5, 255, true, $disabled ) ); $table->data['max'][1] = html_print_label_input_block( __('Max.'), html_print_input_text( 'max', $max, '', 5, 255, true, $disabled ) ); $table->data['example'][0] = ui_print_alert_template_example( $id, true, false ); } else if ($step == 3) { $table->style[1] = 'font-weight: bold; vertical-align: top;'; $table->style[2] = 'font-weight: bold; vertical-align: top;'; $table->size = []; $table->size[1] = '50%'; $table->size[2] = '50%'; $table->colspan[0][0] = 2; $table->class = 'databox filters w100p filter-table-adv alert-template-fields'; // Alert recover. if (! $recovery_notify) { $table->cellstyle['label_fields'][2] = 'display:none;'; for ($i = 1; $i <= $config['max_macro_fields']; $i++) { $table->cellstyle['field'.$i][2] = 'display:none;'; } } $values = [ false => __('Disabled'), true => __('Enabled'), ]; $table->data[0][0] = html_print_label_input_block( __('Alert recovery'), html_print_select( $values, 'recovery_notify', $recovery_notify, '', '', '', true, false, false, 'w25p', (!$is_management_allowed | $disabled) ) ); $table->data['label_fields'][1] = ''.__('Firing fields').''; $table->data['label_fields'][2] = ''.__('Recovery fields').''; for ($i = 1; $i <= $config['max_macro_fields']; $i++) { if (isset($template[$name]) === true) { $value = $template[$name]; } else { $value = ''; } // $table->data['field'.$i][0] = sprintf(__('Field %s'), $i); // TinyMCE. // triggering fields. // Basic. $col1 = '
'; $col1 .= __('Basic').'  '; $col1 .= html_print_radio_button_extended( 'editor_type_value_'.$i, 0, '', false, (!$is_management_allowed | $disabled), "UndefineTinyMCE('#textarea_field".$i."')", 'style="height: 15px !important;"', true ); // Advanced. $col1 .= '    '; $col1 .= __('Advanced').'  '; $col1 .= html_print_radio_button_extended( 'editor_type_value_'.$i, 0, '', true, (!$is_management_allowed | $disabled), "defineTinyMCE('#textarea_field".$i."')", 'style="height: 15px !important;"', true ); $col1 .= '
'; // Texarea. $col1 .= html_print_textarea( 'field'.$i, 1, 1, isset($fields[$i]) ? $fields[$i] : '', 'class="fields w100p" style="min-height: 100px !important;"', true, '', (!$is_management_allowed | $disabled) ); $table->data['field'.$i][1] = html_print_label_input_block( sprintf(__('Field %s'), $i), $col1 ); // Recovery. // Basic. $col2 = '
'; $col2 .= __('Basic').'  '; $col2 .= html_print_radio_button_extended( 'editor_type_recovery_value_'.$i, 0, '', false, (!$is_management_allowed | $disabled), "UndefineTinyMCE('#textarea_field".$i."_recovery')", 'style="height: 15px !important;"', true ); // Advanced. $col2 .= '    '; $col2 .= __('Advanced').'  '; $col2 .= html_print_radio_button_extended( 'editor_type_recovery_value_'.$i, 0, '', true, (!$is_management_allowed | $disabled), "defineTinyMCE('#textarea_field".$i."_recovery')", 'style="height: 15px !important;"', true ); $col2 .= '
'; // Texarea. $col2 .= html_print_textarea( 'field'.$i.'_recovery', 1, 1, isset($fields_recovery[$i]) ? $fields_recovery[$i] : '', 'class="fields w100p" style="min-height: 100px !important;"', true, '', (!$is_management_allowed | $disabled) ); $table->data['field'.$i][2] = html_print_label_input_block( ' ', $col2 ); } } else { // Step 1 by default. $table->size = []; $table->size[0] = '50%'; $table->size[1] = '50%'; $table->colspan = []; $table->colspan[1][0] = 2; $table->data = []; $show_matches = false; switch ($type) { case 'equal': case 'not_equal': case 'regex': $show_matches = true; $table->rowstyle['value'] = ''; break; case 'max_min': $show_matches = true; case 'max': $table->rowstyle['max'] = ''; if ($type == 'max') { break; } case 'min': $table->rowstyle['min'] = ''; break; case 'onchange': $show_matches = true; break; default: // Not possible. break; } $table->data[0][0] = html_print_label_input_block( __('Name'), html_print_input_text( 'name', $name, '', 35, 255, true, false, false, '', '', '', '', false, '', '', '', (!$is_management_allowed | $disabled) ) ); $groups = users_get_groups(); $own_info = get_user_info($config['id_user']); $return_all_group = false; if (users_can_manage_group_all('LM') === true || $disabled) { $return_all_group = true; } else { if ($id_group == 0) { $id_group = users_get_first_group(false, 'LM', false); } } $table->data[0][1] = html_print_label_input_block( __('Group'), html_print_select_groups( false, 'AR', $return_all_group, 'id_group', $id_group, '', '', 0, true, false, true, '', (!$is_management_allowed | $disabled) ) ); $table->data[1][0] = html_print_label_input_block( __('Description'), html_print_textarea( 'description', 10, 30, $description, '', true, '', (!$is_management_allowed | $disabled) ) ); $table->data[2][0] = html_print_label_input_block( __('Priority'), html_print_select( get_priorities(), 'priority', $priority, '', 0, 0, true, false, false, '', (!$is_management_allowed | $disabled) ) ); if (is_metaconsole() === true) { $wizard_levels = [ 'nowizard' => __('No wizard'), 'basic' => __('Basic'), 'advanced' => __('Advanced'), ]; $table->data[2][1] = html_print_label_input_block( __('Wizard level'), html_print_select( $wizard_levels, 'wizard_level', $wizard_level, '', '', -1, true, false, false ) ); } else { $table->data[2][1] .= html_print_input_hidden('wizard_level', $wizard_level, true); } } if ($step == 2) { echo ui_get_using_system_timezone_warning(); } $offset = (int) get_parameter('offset'); // If it's the last step it will redirect to template lists. if ($step >= LAST_STEP) { echo '
'; } else { echo ''; } html_print_table($table); echo '
'; if ($id) { html_print_input_hidden('id', $id); html_print_input_hidden('update_template', 1); } else { html_print_input_hidden('create_template', 1); } if (!$disabled) { if ($is_management_allowed === true) { if ($step >= LAST_STEP) { $actionButtons = html_print_submit_button( __('Finish'), 'finish', false, ['icon' => 'wand'], true ); } else { html_print_input_hidden('step', ($step + 1)); if ($step == 2) { // Javascript onsubmit to avoid min = 0 and max = 0. $actionButtons = html_print_submit_button( __('Next'), 'next', false, [ 'class' => 'submitButton', 'onclick' => 'return check_fields_step2();', 'icon' => 'next', ], true ); } else { $actionButtons = html_print_submit_button( __('Next'), 'next', false, ['icon' => 'next'], true ); } } } html_print_action_buttons($actionButtons, ['type' => 'form_action']); } echo '
'; echo '
'; ui_require_javascript_file('pandora_alerts'); ui_include_time_picker(); ui_require_jquery_file('ui.datepicker-'.get_user_language(), 'include/javascript/i18n/'); ui_require_javascript_file('tinymce', 'vendor/tinymce/tinymce/'); ui_require_css_file('main.min', 'include/javascript/fullcalendar/'); ui_require_javascript_file('main.min', 'include/javascript/fullcalendar/'); ui_require_javascript_file('pandora_fullcalendar'); ?>