<?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.

global $config;

$pure = get_parameter('pure', 0);
$tab = get_parameter('tab', 'group');
$search_agent = get_parameter('searchAgent', '');
$status_agent = get_parameter('statusAgent', AGENT_STATUS_ALL);
$search_module = get_parameter('searchModule', '');
$status_module = get_parameter('statusModule', -1);
$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']);

// ---------------------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 = array();

if (!$strict_acl) {
	$tabs['tag'] = array(
		'text' => "<a href='" . sprintf($url, "tag") . "'>" .
			html_print_image("images/tag.png", true,
				array("title" => __('Tags'))) . "</a>",
		'active' => ($tab == "tag"));

	$tabs['os'] = array(
		'text' => "<a href='" . sprintf($url, "os") . "'>" .
			html_print_image("images/operating_system.png", true,
				array("title" => __('OS'))) . "</a>",
		'active' => ($tab == "os"));

	$tabs['group'] = array(
		'text' => "<a href='" . sprintf($url, "group") . "'>" .
			html_print_image("images/group.png", true,
				array("title" => __('Groups'))) . "</a>",
		'active' => ($tab == "group"));

	$tabs['module_group'] = array(
		'text' => "<a href='" . sprintf($url, "module_group") . "'>" .
			html_print_image("images/module_group.png", true,
				array("title" => __('Module groups'))) . "</a>",
		'active' => ($tab == "module_group"));

	$tabs['module'] = array(
		'text' => "<a href='" . sprintf($url, "module") . "'>" .
			html_print_image("images/brick.png", true,
				array("title" => __('Modules'))) . "</a>",
		'active' => ($tab == "module"));

	if ($enterpriseEnable) {
		$tabs['policies'] = array(
			'text' => "<a href='" . sprintf($url, "policies") . "'>" .
				html_print_image("images/policies_mc.png", true,
					array("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 (defined('METACONSOLE')) {
	if ($strict_acl)
		$header_sub_title = '';

	ui_meta_print_header($header_title, $header_sub_title, $tabs);
}
else{
	if (!$strict_acl)
		$header_title = $header_title ." - ". $header_sub_title;

	ui_print_page_header($header_title, "images/extensions.png", false, "", false, $tabs);
}
// ---------------------Tabs -------------------------------------------

// --------------------- form filter -----------------------------------

$table = new StdClass();
$table->width = "100%";
$table->class='databox filters';
$table->data = array();
$table->rowspan = array();

// Agent filter
$agent_status_arr = array();
$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 = array();
$row[] = __('Agent status');
$row[] = html_print_select($agent_status_arr, "status_agent", $status_agent, '', '', 0, true);
$row[] = __('Search agent');
if (defined('METACONSOLE'))
	$row[] = html_print_input_text("search_agent", $search_agent, '', 70, 30, true);
else
	$row[] = html_print_input_text("search_agent", $search_agent, '', 40, 30, true);
	
// Button
$row[] = html_print_submit_button(__('Filter'), "uptbutton", false, 'class="sub search"', true);
$table->rowspan[][count($row)-1] = 2;

$table->data[] = $row;

// Module filter
$module_status_arr = array();
$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 = array();
$row[] = __('Module status');
$row[] = html_print_select($module_status_arr, "status_module", $status_module, '', '', 0, true);
$row[] = __('Search module');
if (defined('METACONSOLE'))
	$row[] = html_print_input_text("search_module", $search_module, '', 70, 30, true);
else
	$row[] = html_print_input_text("search_module", $search_module, '', 40, 30, true);

$table->data[] = $row;

if (defined('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 (defined('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,
	array('class' => "loading_tree",
		'style' => 'display: none;'));

echo "<div class='tree-table'>";
echo 	"<div class='tree-table-row'>";
echo 		"<div class='tree-table-cell tree-table-cell-tree'>";
echo 			"<div id='tree-controller-recipient'>";
echo 			"</div>";
echo 		"</div>";
echo 		"<div class='tree-table-cell tree-table-cell-detail'>";
echo 			"<div id='tree-controller-detail-recipient'>";
echo 			"</div>";
echo 		"</div>";
echo 	"</div>";
echo "</div>";

if (defined('METACONSOLE')) {
	echo "</div>";
}

enterprise_hook('close_meta_frame');

?>

<script type="text/javascript">
	var treeController = TreeController.getController();
	
	processTreeSearch();
	
	$("form#tree_search").submit(function(e) {
		e.preventDefault();
		$(".tree-element-detail-content").hide();
		$(".tree-controller-detail-recipient").hide();
		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['filter'] = {};
		parameters['type'] = "<?php echo $tab; ?>";
		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();
		
		$.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: $("div#tree-controller-detail-recipient"),
						page: parameters['page'],
						tree: data.tree,
						baseURL: "<?php echo ui_get_full_url(false, false, false, defined('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) {
		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;
		
		$.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,
						overlay: {
							opacity: 0.5,
							background: "black"
						},
						width: 650,
						height: 500
					})
					.show ();
					refresh_pagination_callback(module_id, id_agent, server_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) {
		
		$(".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);
			return false;
		});
	}

</script>