355 lines
14 KiB
PHP
355 lines
14 KiB
PHP
<?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 General Public License
|
|
// as published by the Free Software Foundation for 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.
|
|
|
|
|
|
// Load global vars
|
|
global $config;
|
|
|
|
check_login ();
|
|
|
|
if (! give_acl ($config['id_user'], 0, "AR")) {
|
|
audit_db ($config['id_user'], $_SERVER['REMOTE_ADDR'], "ACL Violation",
|
|
"Trying to access node graph builder");
|
|
include ("general/noaccess.php");
|
|
exit;
|
|
}
|
|
|
|
require_once ('include/functions_networkmap.php');
|
|
|
|
$pure = (int) get_parameter ('pure', 0);
|
|
$activeTab = get_parameter ('tab', 'topology');
|
|
$id_networkmap = get_parameter ('id_networkmap', 0);
|
|
$save_networkmap = get_parameter ('save_networkmap', 0);
|
|
$delete_networkmap = get_parameter ('delete_networkmap', 0);
|
|
$add_networkmap = get_parameter ('add_networkmap', 0);
|
|
$update_networkmap = get_parameter ('update_networkmap', 0);
|
|
$recenter_networkmap = get_parameter ('recenter_networkmap', 0);
|
|
$hidden_options = get_parameter ('hidden_options', 1);
|
|
|
|
if($delete_networkmap) {
|
|
$result = delete_networkmap($id_networkmap);
|
|
$message = print_result_message ($result,
|
|
__('Network map deleted successfully'),
|
|
__('Could not delete network map'), '', true);
|
|
|
|
$id_networkmap = 0;
|
|
}
|
|
|
|
if($add_networkmap) {
|
|
// Load variables
|
|
$layout = 'radial';
|
|
$depth = 'all';
|
|
$nooverlap = 0;
|
|
$modwithalerts = 0;
|
|
$hidepolicymodules = 0;
|
|
$zoom = 1;
|
|
$ranksep = 2.5;
|
|
$simple = 0;
|
|
$regen = 1;
|
|
$font_size = 12;
|
|
$group = 0;
|
|
$module_group = 0;
|
|
$center = 0;
|
|
$name = $activeTab;
|
|
|
|
$id_networkmap = create_networkmap($name, $activeTab, $layout, $nooverlap, $simple, $regen, $font_size, $group, $module_group, $depth, $modwithalerts, $hidepolicymodules, $zoom, $ranksep, $center);
|
|
$message = print_result_message ($id_networkmap,
|
|
__('Network map created successfully'),
|
|
__('Could not create network map'), '', true);
|
|
}
|
|
|
|
if($save_networkmap || $update_networkmap) {
|
|
// Load variables
|
|
$layout = (string) get_parameter ('layout', 'radial');
|
|
$depth = (string) get_parameter ('depth', 'all');
|
|
$nooverlap = (bool) get_parameter ('nooverlap', 0);
|
|
$modwithalerts = (int) get_parameter ('modwithalerts', 0);
|
|
$hidepolicymodules = (int) get_parameter ('hidepolicymodules', 0);
|
|
$zoom = (float) get_parameter ('zoom', 1);
|
|
$ranksep = (float) get_parameter ('ranksep', 2.5);
|
|
$simple = (int) get_parameter ('simple', 0);
|
|
$regen = (int) get_parameter ('regen', 0);
|
|
$font_size = (int) get_parameter ('font_size', 12);
|
|
$group = (int) get_parameter ('group', 0);
|
|
$module_group = (int) get_parameter ('module_group', 0);
|
|
$center = (int) get_parameter ('center', 0);
|
|
$name = (string) get_parameter ('name', $activeTab);
|
|
|
|
if($save_networkmap){
|
|
$result = update_networkmap($id_networkmap, array('name' => $name, 'type' => $activeTab, 'layout' => $layout,
|
|
'nooverlap' => $nooverlap, 'simple' => $simple, 'regenerate' => $regen, 'font_size' => $font_size,
|
|
'id_group' => $group, 'id_module_group' => $module_group, 'depth' => $depth, 'only_modules_with_alerts' => $modwithalerts,
|
|
'hide_policy_modules' => $hidepolicymodules, 'zoom' => $zoom, 'distance_nodes' => $ranksep, 'center' => $center));
|
|
$message = print_result_message ($result,
|
|
__('Network map saved successfully'),
|
|
__('Could not save network map'), '', true);
|
|
}
|
|
}
|
|
|
|
$networkmaps = get_networkmaps();
|
|
|
|
$nomaps = false;
|
|
if($networkmaps === false) {
|
|
$nomaps = true;
|
|
}
|
|
/*// When is the first map, we create one
|
|
if($nomaps && $id_networkmap == 0) {
|
|
$add_networkmap = 1;
|
|
}*/
|
|
|
|
// If the map id is not defined, we set the first id of the active type
|
|
if(!$nomaps && $id_networkmap == 0) {
|
|
$networkmaps_of_type = get_networkmaps('', $activeTab);
|
|
if($networkmaps_of_type !== false){
|
|
$id_networkmap = reset(array_keys($networkmaps_of_type));
|
|
}
|
|
}
|
|
|
|
if(!$update_networkmap && !$save_networkmap && $id_networkmap != 0) {
|
|
$networkmap_data = get_networkmap($id_networkmap);
|
|
|
|
$layout = $networkmap_data['layout'];
|
|
$depth = $networkmap_data['depth'];
|
|
$nooverlap = (bool)$networkmap_data['nooverlap'];
|
|
$modwithalerts = $networkmap_data['only_modules_with_alerts'];
|
|
$hidepolicymodules = $networkmap_data['hide_policy_modules'];
|
|
$zoom = $networkmap_data['zoom'];
|
|
$ranksep = $networkmap_data['distance_nodes'];
|
|
$simple = $networkmap_data['simple'];
|
|
$regen = $networkmap_data['regenerate'];
|
|
$font_size = $networkmap_data['font_size'];
|
|
$group = $networkmap_data['id_group'];
|
|
$module_group = $networkmap_data['id_module_group'];
|
|
$center = $networkmap_data['center'];
|
|
$name = $networkmap_data['name'];
|
|
$activeTab = $networkmap_data['type'];
|
|
}
|
|
|
|
if($recenter_networkmap) {
|
|
$center = (int) get_parameter ('center', 0);
|
|
}
|
|
|
|
/* Main code */
|
|
if ($pure == 1) {
|
|
$buttons['screen'] = array('active' => false,
|
|
'text' => '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&tab='.$activeTab.'">' .
|
|
print_image("images/normalscreen.png", true, array ('title' => __('Normal screen'))) .'</a>');
|
|
|
|
} else {
|
|
$buttons['screen'] = array('active' => false,
|
|
'text' => '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&pure=1&tab='.$activeTab.'">' .
|
|
print_image("images/fullscreen.png", true, array ('title' => __('Full screen'))) .'</a>');
|
|
}
|
|
if($config['enterprise_installed']) {
|
|
$buttons['policies'] = array('active' => $activeTab == 'policies',
|
|
'text' => '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=policies&pure='.$pure.'">' .
|
|
print_image("images/policies.png", true, array ("title" => __('Policies view'))) .'</a>');
|
|
}
|
|
|
|
$buttons['groups'] = array('active' => $activeTab == 'groups',
|
|
'text' => '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=groups&pure='.$pure.'">' .
|
|
print_image("images/group.png", true, array ("title" => __('Groups view'))) .'</a>');
|
|
|
|
$buttons['topology'] = array('active' => $activeTab == 'topology',
|
|
'text' => '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&pure='.$pure.'">' .
|
|
print_image("images/recon.png", true, array ("title" => __('Topology view'))) .'</a>');
|
|
|
|
$buttons['separator'] = array('separator' => '');
|
|
|
|
$combolist = '<form name="query_sel" method="post" action="index.php?sec=estado&sec2=operation/agentes/networkmap">';
|
|
|
|
$combolist .= print_select($networkmaps, 'id_networkmap', $id_networkmap, 'onchange:this.form.submit()', __('No selected'), 0, true, false, false, '', false, 'margin-top:4px; margin-left:3px; width:150px;');
|
|
|
|
$combolist .= print_input_hidden('hidden_options',$hidden_options, true);
|
|
|
|
$combolist .= '</form>';
|
|
|
|
$buttons['combolist'] = $combolist;
|
|
|
|
$buttons['addmap'] = array('active' => $activeTab == false,
|
|
'text' => '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&add_networkmap=1&tab='.$activeTab.'&pure='.$pure.'">' .
|
|
print_image("images/add.png", true, array ("title" => __('Add map'))) .'</a>');
|
|
|
|
if(!$nomaps && $id_networkmap != 0) {
|
|
$buttons['deletemap'] = array('active' => $activeTab == false,
|
|
'text' => '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&id_networkmap='.$id_networkmap.'&delete_networkmap=1&tab='.$activeTab.'&pure='.$pure.'">' .
|
|
print_image("images/cross.png", true, array ("title" => __('Delete map'))) .'</a>');
|
|
|
|
$buttons['savemap'] = array('active' => $activeTab == false,
|
|
'text' => '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&id_networkmap='.$id_networkmap.'&save_networkmap=1
|
|
&tab='.$activeTab.'&save_networkmap=1&name='.$name.'&group='.$group.'
|
|
&layout='.$layout.'&nooverlap='.$nooverlap.'&simple='.$simple.'&regen='.$regen.'
|
|
&zoom='.$zoom.'&ranksep='.$ranksep.'&fontsize='.$font_size.'&depth='.$depth.'
|
|
&modwithalerts='.$modwithalerts.'&hidepolicymodules='.$hidepolicymodules.'
|
|
&module_group='.$module_group.'&pure='.$pure.'&hidden_options='.(int)$hidden_options.'">' .
|
|
print_image("images/file.png", true, array ("title" => __('Save map'))) .'</a>');
|
|
}
|
|
|
|
switch($activeTab){
|
|
case 'topology':
|
|
$title = __('Topology view');
|
|
break;
|
|
case 'groups':
|
|
$title = __('Groups view');
|
|
break;
|
|
case 'policies':
|
|
$title = __('Policies view');
|
|
break;
|
|
}
|
|
|
|
if(!empty($name)) {
|
|
$title .= " » ".$name;
|
|
}
|
|
|
|
print_page_header (__('Network map')." - ".$title, "images/bricks.png", false, "network_map", false, $buttons);
|
|
|
|
if($delete_networkmap || $add_networkmap || $save_networkmap) {
|
|
echo $message;
|
|
}
|
|
|
|
if($id_networkmap == 0) {
|
|
echo "<div class='nf'>".__('There are no defined maps in this view')."</div>";
|
|
return;
|
|
}
|
|
|
|
// CONFIGURATION FORM
|
|
|
|
// Layout selection
|
|
$layout_array = array (
|
|
'circular' => 'circular',
|
|
'radial' => 'radial',
|
|
'spring1' => 'spring 1',
|
|
'spring2' => 'spring 2',
|
|
'flat' => 'flat');
|
|
|
|
$options_form = '<form action="index.php?sec=estado&sec2=operation/agentes/networkmap&id_networkmap='.$id_networkmap.'&tab='.$activeTab.'&pure='.$pure.'&center='.$center.'" method="post">';
|
|
$options_form .= '<table cellpadding="4" cellspacing="4" class="databox" width="99%">';
|
|
$options_form .= '<tr><td>';
|
|
$options_form .= '<table cellpadding="0" cellspacing="0" border="0" width="100%">';
|
|
$options_form .= '<tr>';
|
|
$options_form .= '<td>';
|
|
$options_form .= __('Name') . '<br />';
|
|
$options_form .= print_input_text ('name', $name, '', 10, 25, true);
|
|
$options_form .= '</td>';
|
|
$options_form .= '<td valign="top">' . __('Group') . '<br />';
|
|
$options_form .= print_select_groups(false, 'AR', false, 'group', $group, '', 'All', 0, true);
|
|
$options_form .= '</td>';
|
|
if($activeTab == 'groups' || $activeTab == 'policies'){
|
|
$options_form .= '<td valign="top">' . __('Module group') . '<br />';
|
|
$options_form .= print_select_from_sql ('SELECT id_mg, name FROM tmodule_group', 'module_group', $module_group, '', 'All', 0, true);
|
|
$options_form .= '</td>';
|
|
}
|
|
$options_form .= '<td valign="top">' . __('Layout') . '<br />';
|
|
$options_form .= print_select ($layout_array, 'layout', $layout, '', '', '', true);
|
|
$options_form .= '</td>';
|
|
|
|
if($activeTab == 'groups'){
|
|
$options_form .= '<td valign="top">' . __('Depth') . '<br />';
|
|
$depth_levels = array('all' => __('All'), 'agent' => __('Agents'), 'group' => __('Groups'));
|
|
$options_form .= print_select ($depth_levels, 'depth', $depth, '', '', '', true, false, false);
|
|
$options_form .= '</td>';
|
|
}
|
|
|
|
if($activeTab == 'policies'){
|
|
$options_form .= '<td valign="top">' . __('Depth') . '<br />';
|
|
$depth_levels = array('all' => __('All'), 'agent' => __('Agents'), 'policy' => __('Policies'));
|
|
$options_form .= print_select ($depth_levels, 'depth', $depth, '', '', '', true, false, false);
|
|
$options_form .= '</td>';
|
|
}
|
|
|
|
$options_form .= '</tr></table>';
|
|
$options_form .= '</td></tr><tr><td>';
|
|
$options_form .= '<table cellpadding="0" cellspacing="0" border="0" width="100%">';
|
|
$options_form .= '<tr><td valign="top">' . __('No Overlap') . '<br />';
|
|
$options_form .= print_checkbox ('nooverlap', '1', $nooverlap, true);
|
|
$options_form .= '</td>';
|
|
|
|
if(($activeTab == 'groups' || $activeTab == 'policies') && $depth == 'all') {
|
|
$options_form .= '<td valign="top">' . __('Only modules with alerts') . '<br />';
|
|
$options_form .= print_checkbox ('modwithalerts', '1', $modwithalerts, true);
|
|
$options_form .= '</td>';
|
|
|
|
if($activeTab == 'groups') {
|
|
if($config['enterprise_installed']) {
|
|
$options_form .= '<td valign="top">' . __('Hide policy modules') . '<br />';
|
|
$options_form .= print_checkbox ('hidepolicymodules', '1', $hidepolicymodules, true);
|
|
$options_form .= '</td>';
|
|
}
|
|
}
|
|
}
|
|
|
|
$options_form .= '<td valign="top">' . __('Simple') . '<br />';
|
|
$options_form .= print_checkbox ('simple', '1', $simple, true);
|
|
$options_form .= '</td>';
|
|
|
|
$options_form .= '<td valign="top">' . __('Regenerate') . '<br />';
|
|
$options_form .= print_checkbox ('regen', '1', $regen, true);
|
|
$options_form .= '</td>';
|
|
|
|
if ($pure == "1") {
|
|
// Zoom
|
|
$zoom_array = array (
|
|
'1' => 'x1',
|
|
'1.2' => 'x2',
|
|
'1.6' => 'x3',
|
|
'2' => 'x4',
|
|
'2.5' => 'x5',
|
|
'5' => 'x10',
|
|
);
|
|
|
|
$options_form .= '<td valign="top">' . __('Zoom') . '<br />';
|
|
$options_form .= print_select ($zoom_array, 'zoom', $zoom, '', '', '', true, false, false, false);
|
|
$options_form .= '</td>';
|
|
|
|
}
|
|
|
|
if ($nooverlap == 1){
|
|
$options_form .= "<td>";
|
|
$options_form .= __('Distance between nodes') . '<br />';
|
|
$options_form .= print_input_text ('ranksep', $ranksep, __('Separation between elements in the map (in Non-overlap mode)'), 3, 4, true);
|
|
$options_form .= "</td>";
|
|
}
|
|
|
|
$options_form .= "<td>";
|
|
$options_form .= __('Font') . '<br />';
|
|
$options_form .= print_input_text ('font_size', $font_size, $alt = 'Font size (in pt)', 2, 4, true);
|
|
$options_form .= "</td>";
|
|
|
|
$options_form .= '<td>';
|
|
$options_form .= print_input_hidden('update_networkmap',1, true);
|
|
$options_form .= print_input_hidden('hidden_options',0, true);
|
|
$options_form .= print_submit_button (__('Update'), "updbutton", false, 'class="sub upd"', true);
|
|
$options_form .= '</td></tr>';
|
|
$options_form .= '</table></table></form>';
|
|
|
|
toggle($options_form, __('Map options'), '', $hidden_options);
|
|
|
|
if($id_networkmap != 0) {
|
|
switch ($activeTab) {
|
|
case 'groups':
|
|
require_once('operation/agentes/networkmap.groups.php');
|
|
break;
|
|
case 'policies':
|
|
require_once(''.ENTERPRISE_DIR.'/operation/policies/networkmap.policies.php');
|
|
break;
|
|
default:
|
|
case 'topology':
|
|
require_once('operation/agentes/networkmap.topology.php');
|
|
break;
|
|
}
|
|
}
|
|
|
|
?>
|