<?php // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2010 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 Lesser General Public License // as published by the Free Software Foundation; version 2 // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. ui_require_css_file('tree'); ui_require_css_file('fixed-bottom-box'); global $config; $pure = get_parameter('pure', 0); $tab = get_parameter('tab', 'group'); $search_group = get_parameter('searchGroup', ''); $search_agent = get_parameter('searchAgent', ''); $status_agent = get_parameter('statusAgent', AGENT_STATUS_ALL); $search_module = get_parameter('searchModule', ''); $status_module = get_parameter('statusModule', -1); $show_not_init_agents = get_parameter('show_not_init_agents', true); $show_not_init_modules = get_parameter('show_not_init_modules', true); $group_id = (int) get_parameter('group_id'); $tag_id = (int) get_parameter('tag_id'); $strict_acl = (bool) db_get_value('strict_acl', 'tusuario', 'id_user', $config['id_user']); $serach_hirearchy = (bool) get_parameter('searchHirearchy', false); // ---------------------Tabs ------------------------------------------- $enterpriseEnable = false; if (enterprise_include_once('include/functions_policies.php') !== ENTERPRISE_NOT_HOOK) { $enterpriseEnable = true; } $url = 'index.php?'.'sec=estado&'.'sec2=operation/tree&'.'refr=0&'.'pure='.$pure.'&'.'tab=%s'; $tabs = []; if (!$strict_acl) { $tabs['tag'] = [ 'text' => "<a href='".sprintf($url, 'tag')."'>".html_print_image( 'images/tag.png', true, ['title' => __('Tags')] ).'</a>', 'active' => ($tab == 'tag'), ]; $tabs['os'] = [ 'text' => "<a href='".sprintf($url, 'os')."'>".html_print_image( 'images/operating_system.png', true, ['title' => __('OS')] ).'</a>', 'active' => ($tab == 'os'), ]; $tabs['group'] = [ 'text' => "<a href='".sprintf($url, 'group')."'>".html_print_image( 'images/group.png', true, ['title' => __('Groups')] ).'</a>', 'active' => ($tab == 'group'), ]; $tabs['module_group'] = [ 'text' => "<a href='".sprintf($url, 'module_group')."'>".html_print_image( 'images/module_group.png', true, ['title' => __('Module groups')] ).'</a>', 'active' => ($tab == 'module_group'), ]; $tabs['module'] = [ 'text' => "<a href='".sprintf($url, 'module')."'>".html_print_image( 'images/brick.png', true, ['title' => __('Modules')] ).'</a>', 'active' => ($tab == 'module'), ]; if ($enterpriseEnable) { $tabs['policies'] = [ 'text' => "<a href='".sprintf($url, 'policies')."'>".html_print_image( 'images/policies_mc.png', true, ['title' => __('Policies')] ).'</a>', 'active' => ($tab == 'policies'), ]; } } enterprise_hook('open_meta_frame'); $header_title = __('Tree view'); $header_sub_title = __('Sort the agents by %s'); switch ($tab) { case 'tag': $header_sub_title = sprintf($header_sub_title, __('tags')); break; case 'os': $header_sub_title = sprintf($header_sub_title, __('OS')); break; case 'group': $header_sub_title = sprintf($header_sub_title, __('groups')); break; case 'module_group': $header_sub_title = sprintf($header_sub_title, __('module groups')); break; case 'module': $header_sub_title = sprintf($header_sub_title, __('modules')); break; case 'policies': if ($enterpriseEnable) { $header_sub_title = sprintf($header_sub_title, __('policies')); } break; } if (!is_metaconsole()) { if (!$strict_acl) { $header_title = $header_title.' - '.$header_sub_title; } ui_print_page_header($header_title, 'images/extensions.png', false, 'tree_view', false, $tabs); } // ---------------------Tabs ------------------------------------------- // --------------------- form filter ----------------------------------- $table = new StdClass(); $table->width = '100%'; $table->class = 'databox filters'; $table->data = []; $table->rowspan = []; $table->style[0] = 'font-weight: bold;'; $table->style[2] = 'font-weight: bold;'; $table->size = []; $table->size[0] = '10%'; $table->size[1] = '20%'; $table->size[2] = '10%'; $table->size[3] = '5%'; $table->size[4] = '10%'; // Agent filter $agent_status_arr = []; $agent_status_arr[AGENT_STATUS_ALL] = __('All'); // default $agent_status_arr[AGENT_STATUS_NORMAL] = __('Normal'); $agent_status_arr[AGENT_STATUS_WARNING] = __('Warning'); $agent_status_arr[AGENT_STATUS_CRITICAL] = __('Critical'); $agent_status_arr[AGENT_STATUS_UNKNOWN] = __('Unknown'); $agent_status_arr[AGENT_STATUS_NOT_INIT] = __('Not init'); $row = []; $row[] = __('Search group'); $row[] = html_print_input_text('search_group', $search_group, '', is_metaconsole() ? 50 : 40, 30, true); if (is_metaconsole()) { $row[] = __('Show not init modules'); $row[] = html_print_checkbox('show_not_init_modules', $show_not_init_modules, true, true); } $table->data[] = $row; $row = []; $row[] = __('Search agent'); $row[] = html_print_input_text('search_agent', $search_agent, '', is_metaconsole() ? 50 : 40, 30, true); $row[] = __('Show not init agents'); $row[] = html_print_checkbox('show_not_init_agents', $show_not_init_agents, true, true); $row[] = __('Show full hirearchy'); $row[] = html_print_checkbox('serach_hirearchy', $serach_hirearchy, false, true); $row[] = __('Agent status'); $row[] = html_print_select($agent_status_arr, 'status_agent', $status_agent, '', '', 0, true); $row[] = html_print_input_hidden('show_not_init_modules_hidden', $show_not_init_modules, true); // Button $row[] = html_print_submit_button(__('Filter'), 'uptbutton', false, 'class="sub search"', true); $table->rowspan[][(count($row) - 1)] = 2; $table->data[] = $row; if (!is_metaconsole()) { // Module filter $module_status_arr = []; $module_status_arr[-1] = __('All'); // default $module_status_arr[AGENT_MODULE_STATUS_NORMAL] = __('Normal'); $module_status_arr[AGENT_MODULE_STATUS_WARNING] = __('Warning'); $module_status_arr[AGENT_MODULE_STATUS_CRITICAL_BAD] = __('Critical'); $module_status_arr[AGENT_MODULE_STATUS_UNKNOWN] = __('Unknown'); $module_status_arr[AGENT_MODULE_STATUS_NOT_INIT] = __('Not init'); $row = []; $row[] = __('Search module'); $row[] = html_print_input_text('search_module', $search_module, '', 40, 30, true); $row[] = __('Show not init modules'); $row[] = html_print_checkbox('show_not_init_modules', $show_not_init_modules, true, true); $row[] = ''; $row[] = ''; $row[] = __('Module status'); $row[] = html_print_select($module_status_arr, 'status_module', $status_module, '', '', 0, true); $table->data[] = $row; } if (is_metaconsole()) { $table->width = '96%'; $table->cellpadding = '0'; $table->cellspacing = '0'; $table->class = 'databox_filters'; $table->styleTable = 'padding:0px;margin-bottom:0px; '; } $form_html = '<form id="tree_search" method="post" action="index.php?sec=monitoring&sec2=operation/tree&refr=0&tab='.$tab.'&pure='.$config['pure'].'">'; $form_html .= html_print_table($table, true); $form_html .= '</form>'; if (is_metaconsole()) { echo "<div class='view_tree'>"; ui_toggle($form_html, __('Show Options')); echo '<br>'; } else { // echo "<br>"; ui_toggle($form_html, __('Tree search')); } html_print_input_hidden('group-id', $group_id); html_print_input_hidden('tag-id', $tag_id); // --------------------- form filter ----------------------------------- ui_include_time_picker(); ui_require_jquery_file('ui.datepicker-'.get_user_language(), 'include/javascript/i18n/'); ui_require_javascript_file('TreeController', 'include/javascript/tree/'); html_print_image( 'images/spinner.gif', false, [ 'class' => 'loading_tree', 'style' => 'display: none;', ] ); echo "<div id='tree-controller-recipient'>"; echo '</div>'; if (is_metaconsole()) { echo '</div>'; } enterprise_hook('close_meta_frame'); ?> <?php if (!is_metaconsole()) { ?> <script type="text/javascript" src="include/javascript/fixed-bottom-box.js"></script> <?php } else { ?> <script type="text/javascript" src="../../include/javascript/fixed-bottom-box.js"></script> <?php } ?> <script type="text/javascript"> var treeController = TreeController.getController(); processTreeSearch(); $("form#tree_search").submit(function(e) { e.preventDefault(); processTreeSearch(); }); function processTreeSearch () { // Clear the tree if (typeof treeController.recipient != 'undefined' && treeController.recipient.length > 0) treeController.recipient.empty(); $(".loading_tree").show(); var parameters = {}; parameters['page'] = "include/ajax/tree.ajax"; parameters['getChildren'] = 1; parameters['type'] = "<?php echo $tab; ?>"; parameters['filter'] = {}; parameters['filter']['searchGroup'] = $("input#text-search_group").val(); parameters['filter']['searchAgent'] = $("input#text-search_agent").val(); parameters['filter']['statusAgent'] = $("select#status_agent").val(); parameters['filter']['searchModule'] = $("input#text-search_module").val(); parameters['filter']['statusModule'] = $("select#status_module").val(); parameters['filter']['groupID'] = $("input#hidden-group-id").val(); parameters['filter']['tagID'] = $("input#hidden-tag-id").val(); if($("#checkbox-serach_hirearchy").is(':checked')){ parameters['filter']['searchHirearchy'] = 1; } else{ parameters['filter']['searchHirearchy'] = 0; } if($("#checkbox-show_not_init_agents").is(':checked')){ parameters['filter']['show_not_init_agents'] = 1; } else{ parameters['filter']['show_not_init_agents'] = 0; } if($("#checkbox-show_not_init_modules").is(':checked')){ parameters['filter']['show_not_init_modules'] = 1; $('#hidden-show_not_init_modules_hidden').val(1); } else{ parameters['filter']['show_not_init_modules'] = 0; $('#hidden-show_not_init_modules_hidden').val(0); } $.ajax({ type: "POST", url: "<?php echo ui_get_full_url('ajax.php', false, false, false); ?>", data: parameters, success: function(data) { if (data.success) { $(".loading_tree").hide(); treeController.init({ recipient: $("div#tree-controller-recipient"), detailRecipient: $.fixedBottomBox({ width: 400, height: window.innerHeight * 0.9 }), page: parameters['page'], emptyMessage: "<?php echo __('No data found'); ?>", foundMessage: "<?php echo __('Groups found'); ?>", tree: data.tree, baseURL: "<?php echo ui_get_full_url(false, false, false, is_metaconsole()); ?>", ajaxURL: "<?php echo ui_get_full_url('ajax.php', false, false, false); ?>", filter: parameters['filter'], counterTitles: { total: { agents: "<?php echo __('Total agents'); ?>", modules: "<?php echo __('Total modules'); ?>", none: "<?php echo __('Total'); ?>" }, alerts: { agents: "<?php echo __('Fired alerts'); ?>", modules: "<?php echo __('Fired alerts'); ?>", none: "<?php echo __('Fired alerts'); ?>" }, critical: { agents: "<?php echo __('Critical agents'); ?>", modules: "<?php echo __('Critical modules'); ?>", none: "<?php echo __('Critical'); ?>" }, warning: { agents: "<?php echo __('Warning agents'); ?>", modules: "<?php echo __('Warning modules'); ?>", none: "<?php echo __('Warning'); ?>" }, unknown: { agents: "<?php echo __('Unknown agents'); ?>", modules: "<?php echo __('Unknown modules'); ?>", none: "<?php echo __('Unknown'); ?>" }, not_init: { agents: "<?php echo __('Not init agents'); ?>", modules: "<?php echo __('Not init modules'); ?>", none: "<?php echo __('Not init'); ?>" }, ok: { agents: "<?php echo __('Normal agents'); ?>", modules: "<?php echo __('Normal modules'); ?>", none: "<?php echo __('Normal'); ?>" } } }); } }, dataType: "json" }); } // Show the modal window of an module var moduleDetailsWindow = $("<div></div>"); moduleDetailsWindow .hide() .prop("id", "module_details_window") .appendTo('body'); function show_module_detail_dialog(module_id, id_agent, server_name, offset, period, module_name) { var params = {}; var f = new Date(); period = $('#period').val(); params.selection_mode = $('input[name=selection_mode]:checked').val(); if (!params.selection_mode) { params.selection_mode='fromnow'; } params.date_from = $('#text-date_from').val(); if (!params.date_from) { params.date_from = f.getFullYear() + "/" + (f.getMonth() +1) + "/" + f.getDate(); } params.time_from = $('#text-time_from').val(); if (!params.time_from) { params.time_from = f.getHours() + ":" + f.getMinutes(); } params.date_to = $('#text-date_to').val(); if (!params.date_to) { params.date_to =f.getFullYear() + "/" + (f.getMonth() +1) + "/" + f.getDate(); } params.time_to = $('#text-time_to').val(); if (!params.time_to) { params.time_to = f.getHours() + ":" + f.getMinutes(); } params.page = "include/ajax/module"; params.get_module_detail = 1; params.server_name = server_name; params.id_agent = id_agent; params.id_module = module_id; params.offset = offset; params.period = period; title = <?php echo "'".__('Module: ')."'"; ?> ; $.ajax({ type: "POST", url: "<?php echo ui_get_full_url('ajax.php', false, false, false); ?>", data: params, dataType: "html", success: function(data) { $("#module_details_window").hide () .empty () .append (data) .dialog ({ resizable: true, draggable: true, modal: true, title: title + module_name, overlay: { opacity: 0.5, background: "black" }, width: 650, height: 500 }) .show (); refresh_pagination_callback(module_id, id_agent, server_name, module_name); datetime_picker_callback(); forced_title_callback(); } }); } function datetime_picker_callback() { $("#text-time_from, #text-time_to").timepicker({ showSecond: true, timeFormat: '<?php echo TIME_FORMAT_JS; ?>', timeOnlyTitle: '<?php echo __('Choose time'); ?>', timeText: '<?php echo __('Time'); ?>', hourText: '<?php echo __('Hour'); ?>', minuteText: '<?php echo __('Minute'); ?>', secondText: '<?php echo __('Second'); ?>', currentText: '<?php echo __('Now'); ?>', closeText: '<?php echo __('Close'); ?>'}); $.datepicker.setDefaults($.datepicker.regional[ "<?php echo get_user_language(); ?>"]); $("#text-date_from, #text-date_to").datepicker({dateFormat: "<?php echo DATE_FORMAT_JS; ?>"}); } function refresh_pagination_callback (module_id, id_agent, server_name,module_name) { $(".binary_dialog").click( function() { var classes = $(this).attr('class'); classes = classes.split(' '); var offset_class = classes[2]; offset_class = offset_class.split('_'); var offset = offset_class[1]; var period = $('#period').val(); show_module_detail_dialog(module_id, id_agent, server_name, offset, period,module_name); return false; }); } </script>