";
if (empty($graph)) {
echo "var graph = null;\n";
return;
}
else {
echo "var graph = \n";
}
}
echo "{\n";
echo "'nodes' : \n";
echo "[\n";
$first = true;
foreach ($graph['nodes'] as $id => $node) {
if (!$first) {
echo ",\n";
}
$first = false;
echo "{
'id' : " . $id . ",
'name' : '" . $node['label'] . "',
'url' : '" . $node['url'] . "',
'tooltip' : '" . $node['tooltip'] . "',
'default_tooltip' : 1,
'tooltip_content' : ' " . html_print_image('images/spinner.gif',true) . "',
'color' : '" . $node['color'] . "'}\n";
}
echo "],\n";
echo "'links' : \n";
echo "[\n";
$first = true;
foreach ($graph['lines'] as $line) {
if (!$first) {
echo ",\n";
}
$first = false;
echo "{
'source' : " . $line['source'] . ",
'target' : " . $line['target'] . "}\n";
}
echo "]\n";
echo "}\n";
if ($js_tags) {
echo ";\n";
echo "";
}
}
function networkmap_generate_hash($pandora_name, $group = 0,
$simple = 0, $font_size = 12, $layout = 'radial', $nooverlap = 0,
$zoom = 1, $ranksep = 2.5, $center = 0, $regen = 1, $pure = 0,
$id_networkmap = 0, $show_snmp_modules = 0, $cut_names = true,
$relative = false, $text_filter = '') {
$graph = networkmap_generate_dot($pandora_name, $group,
$simple, $font_size, $layout, $nooverlap, $zoom, $ranksep,
$center, $regen, $pure, $id_networkmap, $show_snmp_modules,
$cut_names, $relative, $text_filter, false, null, false, $strict_user);
$return = array();
if (!empty($graph)) {
$graph = str_replace("\r", "\n", $graph);
$graph = str_replace("\n", " ", $graph);
//Removed the head
preg_match("/graph networkmap {(.*)}/", $graph, $matches);
$graph = $matches[1];
//Get the lines and nodes
$tokens = preg_split("/; /", $graph);
foreach ($tokens as $token) {
if (empty($token)) {
continue;
}
//Ignore the head rests.
if (preg_match("/(.+)\s*\[(.*)\]/", $token) != 0) {
$items[] = $token;
}
}
$lines = $nodes = array();
foreach ($items as $item) {
$matches = null;
preg_match("/(.+)\s*\[(.*)\]/", $item, $matches);
if (empty($matches))
continue;
$id_item = trim($matches[1]);
$content_item = trim($matches[2]);
//Check if is a edge or node
if (strstr($id_item, "--") !== false) {
//edge
$lines[$id_item] = $content_item;
}
else {
//node
$id_item = (int)$id_item;
$nodes[$id_item] = $content_item;
}
}
foreach($nodes as $key => $node) {
if ($key != 0) {
//Get label
$matches = null;
preg_match("/label=(.*),/", $node, $matches);
$label = $matches[1];
$matches = null;
preg_match("/\
\(.*?)\<\/TD\>\<\/TR\>/",
$label, $matches);
$label = $matches[1];
//Get color
$matches = null;
preg_match("/color=\"([^\"]*)/", $node, $matches);
$color = $matches[1];
//Get tooltip
$matches = null;
preg_match("/tooltip=\"([^\"]*)/", $node, $matches);
$tooltip = $matches[1];
//Get URL
$matches = null;
preg_match("/URL=\"([^\"]*)/", $node, $matches);
$url = $matches[1];
$return['nodes'][$key]['label'] = $label;
$return['nodes'][$key]['color'] = $color;
$return['nodes'][$key]['tooltip'] = $tooltip;
$return['nodes'][$key]['url'] = $url;
}
else {
//Get tooltip
$matches = null;
preg_match("/tooltip=\"([^\"]*)/", $node, $matches);
$tooltip = $matches[1];
//Get URL
$matches = null;
preg_match("/URL=\"([^\"]*)/", $node, $matches);
$url = $matches[1];
$return['nodes'][$key]['label'] = "Pandora FMS";
$return['nodes'][$key]['color'] = "#7EBE3F";
$return['nodes'][$key]['tooltip'] = $tooltip;
$return['nodes'][$key]['url'] = $url;
}
}
ksort($return['nodes']);
foreach($lines as $key => $line) {
$data = array();
$points = explode(' -- ', $key);
$data['source'] = (int) $points[0];
$data['target'] = (int) $points[1];
$return['lines'][] = $data;
}
}
return $return;
}
function networkmap_get_nodes_and_links($pandora_name, $group = 0,
$simple = 0, $font_size = 12, $layout = 'radial', $nooverlap = 0,
$zoom = 1, $ranksep = 2.5, $center = 0, $regen = 1, $pure = 0,
$id_networkmap = 0, $show_snmp_modules = 0, $cut_names = true,
$relative = false, $text_filter = '', $l2_network_or_mixed = false,
$ip_mask = null, $dont_show_subgroups = false, $strict_user = false,
$size_canvas = null, $old_mode = false, $id_tag = 0,
$show_all_modules = false, $only_modules_alerts = false,
$filter_module_group = 0, $show_modulegroup = false,
$show_groups = false, $show_agents = true, $show_policies = false) {
global $config;
if ($l2_network_or_mixed === 'mix_l2_l3') {
$l2_network = true;
}
else {
$l2_network = $l2_network_or_mixed;
}
if ($l2_network) {
$nooverlap = 1;
}
$parents = array();
$orphans = array();
$filter = array ();
$filter['disabled'] = 0;
if (!empty($text_filter)) {
switch ($config['dbtype']) {
case "mysql":
case "postgresql":
$filter[] =
'(nombre COLLATE utf8_general_ci LIKE "%' . $text_filter . '%")';
break;
case "oracle":
$filter[] =
'(upper(nombre) LIKE upper(\'%' . $text_filter . '%\'))';
break;
}
}
if ($group >= 1) {
if ($dont_show_subgroups)
$filter['id_grupo'] = $group;
else {
$childrens = groups_get_childrens($group, null, true);
if (!empty($childrens)) {
$childrens = array_keys($childrens);
$filter['id_grupo'] = $childrens;
$filter['id_grupo'][] = $group;
}
else {
$filter['id_grupo'] = $group;
}
}
//Order by id_parent ascendant for to avoid the bugs
//because the first agents to process in the next
//foreach loop are without parent (id_parent = 0)
// Get agents data
if ($strict_user) {
if ($dont_show_subgroups)
$filter['id_group'] = $group;
else {
if (!empty($childrens)) {
foreach ($childrens as $children) {
$filter_id_groups[$children] = $children;
}
}
$filter_id_groups[$group] = $group;
$filter['id_group'] = implode(',', $filter_id_groups);
}
$filter['group_by'] = 'tagente.id_agente';
$fields = array ('tagente.id_grupo, tagente.nombre, tagente.id_os, tagente.id_parent, tagente.id_agente,
tagente.normal_count, tagente.warning_count, tagente.critical_count,
tagente.unknown_count, tagente.total_count, tagente.notinit_count');
$acltags = tags_get_user_module_and_tags ($config['id_user'],'AR', $strict_user);
$agents = tags_get_all_user_agents (false, $config['id_user'], $acltags, $filter, $fields, false, $strict_user, true);
}
else {
$agents = agents_get_agents ($filter,
array ('id_grupo, nombre, id_os, id_parent, id_agente,
normal_count, warning_count, critical_count,
unknown_count, total_count, notinit_count'), 'AR',
array('field' => 'id_parent', 'order' => 'ASC'));
}
}
else if ($group == -666) {
$agents = false;
}
else if (!empty($ip_mask)) {
$agents = networkmap_get_new_nodes_from_ip_mask($ip_mask,
array ('id_grupo, nombre, id_os, id_parent, id_agente,
normal_count, warning_count, critical_count,
unknown_count, total_count, notinit_count'), $strict_user);
if (!empty($text_filter)) {
foreach ($agents as $index => $agent) {
if (strstr($agent['nombre'], $text_filter) === false) {
unset($agents[$index]);
}
}
}
}
else {
//Order by id_parent ascendant for to avoid the bugs
//because the first agents to process in the next
//foreach loop are without parent (id_parent = 0)
if ($strict_user) {
$filter['group_by'] = 'tagente.id_agente';
$fields = array ('tagente.id_grupo, tagente.nombre, tagente.id_os, tagente.id_parent, tagente.id_agente,
tagente.normal_count, tagente.warning_count, tagente.critical_count,
tagente.unknown_count, tagente.total_count, tagente.notinit_count');
$acltags = tags_get_user_module_and_tags ($config['id_user'],'AR', $strict_user);
$agents = tags_get_all_user_agents (false, $config['id_user'], $acltags, $filter, $fields, false, $strict_user, true);
}
else {
$agents = agents_get_agents ($filter,
array ('id_grupo, nombre, id_os, id_parent, id_agente,
normal_count, warning_count, critical_count,
unknown_count, total_count, notinit_count'), 'AR',
array('field' => 'id_parent', 'order' => 'ASC'));
}
}
if ($agents === false)
//return false;
$agents = array();
// Filter by tags
if (!empty($id_tag)) {
foreach ($agents as $index => $agent) {
if (!tags_agent_has_tag($agent['id_agente'], $id_tag)) {
unset($agents[$index]);
}
}
}
// Get policy data
if ($show_policies) {
$policies =
enterprise_hook("networkmap_enterprise_get_policies",
array($group));
$agents = enterprise_hook(
"networkmap_enterprise_filter_agents_policies",
array($policies, $agents));
}
// Get groups data
if ($show_groups) {
if ($group > 0) {
$groups = array();
$id_groups = groups_get_id_recursive($group, true);
foreach($id_groups as $id_group) {
$add = false;
if (check_acl($config["id_user"], $id_group, 'AR')) {
$add = true;
}
if ($add) {
$groups[] = db_get_row ('tgrupo', 'id_grupo', $id_group);
}
}
$filter['id_grupo'] = $id_groups;
}
else {
if ($strict_user) {
$groups = users_get_groups ($config['id_user'],"AR", false, true);
}
else {
$groups = db_get_all_rows_in_table ('tgrupo');
}
if ($groups === false) {
$groups = array();
}
}
}
$nodes = array ();
$node_count = 0;
// Parse policies
if ($show_policies) {
$nodes_policies = array();
foreach ($policies as $policy) {
$node_count ++;
$policy['type'] = 'policy';
$policy['id_node'] = $node_count;
$orphans[$node_count] = 1;
$nodes[$node_count] = $policy;
// Add node
$nodes_policies[$policy['id']] = $policy;
}
}
// Parse groups
if ($show_groups) {
$nodes_groups = array();
foreach ($groups as $group2) {
$node_count ++;
$group2['type'] = 'group';
$group2['id_node'] = $node_count;
// Add node
$nodes_groups[$group2['id_grupo']] = $group2;
}
$groups_hiden = array();
foreach ($nodes_groups as $node_group) {
//~ $node_count++;
// Save node parent information to define edges later
if ($node_group['parent'] != "0" && $node_group['id_grupo'] != $group) {
if ((!$dont_show_subgroups) || ($group == 0)) {
$parents[$node_count] =
$nodes_groups[$node_group['parent']]['id_node'];
}
else {
$groups_hiden[$node_group['id_grupo']] = 1;
continue;
}
}
else {
$orphans[$node_group['id_node']] = 1;
}
$nodes[$node_group['id_node']] = $node_group;
}
}
if ($show_agents) {
// Parse agents
// Add node refs
$node_ref = array();
$modules_node_ref = array();
$module_groups = array();
foreach ($agents as $agent) {
$node_count++;
if ($show_groups) {
$parents[$node_count] = $agent['parent'] = $nodes_groups[$agent['id_grupo']]['id_node'];
}
if ($show_policies) {
$id_policy = db_get_value(
'id_policy',
'tpolicy_agents', 'id_agent', $agent['id_agente']);
if (!empty($id_policy))
$parents[$node_count] = $agent['parent'] = $nodes_policies[$id_policy]['id_node'];
}
$node_ref[$agent['id_agente']] = $node_count;
$agent['id_node'] = $node_count;
$agent['type'] = 'agent';
// Add node
$nodes[$node_count] = $agent;
if ($l2_network || $show_snmp_modules) {
$filter = array();
$filter['disabled'] = 0;
// Get agent modules data
if ($strict_user) {
$modules = tags_get_agent_modules ($agent['id_agente'], false, $acltags, false, $filter, false);
}
else {
$filter_get_modules = $filter;
if ($filter_module_group > 0) {
$filter_get_modules['id_module_group'] = $filter_module_group;
}
$modules = agents_get_modules(
$agent['id_agente'], '*', $filter_get_modules, true, true);
}
if ($modules === false) {
$modules = array();
}
$module_groups[$agent['id_node']] = array();
// Parse modules
foreach ($modules as $key => $module) {
if (!$show_all_modules || $show_snmp_modules) {
if ($module['id_tipo_modulo'] != 18 &&
(!$l2_network || $module['id_tipo_modulo'] != 6)) {
continue;
}
}
$status_module = modules_get_agentmodule_status(
$module['id_agente_modulo']);
if ($only_modules_alerts) {
if (($status_module != AGENT_MODULE_STATUS_NORMAL_ALERT) ||
($status_module != AGENT_MODULE_STATUS_WARNING_ALERT) ||
($status_module != AGENT_MODULE_STATUS_CRITICAL_ALERT)) {
continue;
}
}
$node_count ++;
$modules_node_ref[$module['id_agente_modulo']] = $node_count;
$module['id_node'] = $node_count;
$module['type'] = 'module';
$module['status'] = $status_module;
// Try to get the interface name
if (preg_match ("/_(.+)$/" , (string)$module['nombre'], $matches)) {
if ($matches[1]) {
$module['nombre'] = $matches[1];
}
}
//// Show module groups
if ($show_modulegroup) {
$id_node_module_group = array_search(
$module['id_module_group'],
$module_groups[$agent['id_node']]);
if ($id_node_module_group === false) {
$name = db_get_value('name', 'tmodule_group',
'id_mg', $module['id_module_group']);
if (empty($name))
$name = _('N/A');
$node_count ++;
$module_group = array();
$module_group['name'] = $name;
$module_group['type'] = "module_group";
$module_group['id_server'] = $agent['id_server'];
$module_group['id_node'] = $node_count;
$module_group['parent'] = $agent['id_node'];
$module_group['id_module_group'] = $module['id_module_group'];
$module_group['id_agent'] = $agent['id_agente'];
$nodes[$node_count] = $module_group;
$id_node_module_group = $node_count;
$module_groups[$agent['id_node']][$node_count]
= $module['id_module_group'];
$parents[$id_node_module_group] =
$module_group['parent'];
}
//Change the status to module group to worst
//~ $status = modules_get_agentmodule_status(
//~ $module['id_agente_modulo'],
//~ false, true, $agent['id_server']);
switch ($module['status']) {
case 0: // Normal monitor
if (empty(
$nodes[$id_node_module_group]['status']))
{
$nodes[$id_node_module_group]['status'] = 0;
}
elseif ($nodes[$id_node_module_group]['status']
== -1) {
$nodes[$id_node_module_group]['status'] = 0;
}
break;
case 1: //Critical monitor
$nodes[$id_node_module_group]['status'] = 1;
break;
case 2: // Warning monitor
if (empty(
$nodes[$id_node_module_group]['status']))
{
$nodes[$id_node_module_group]['status'] = 0;
}
elseif ($nodes[$id_node_module_group]['status']
!= 1) {
$nodes[$id_node_module_group]['status'] = 2;
}
break;
case 4: // Alert fired
if (empty(
$nodes[$id_node_module_group]['status']))
{
$nodes[$id_node_module_group]['status'] = 4;
}
elseif (($nodes[$id_node_module_group]['status']
== 0) ||
($nodes[$id_node_module_group]['status']
== -1)) {
$nodes[$id_node_module_group]['status'] = 4;
}
break;
default: // Unknown monitor
$nodes[$id_node_module_group]['status'] = -1;
break;
}
$module['parent'] = $id_node_module_group;
$parents[$module['id_node']] =
$id_node_module_group;
}
else {
$parents[$module['id_node']] =
$module['parent'] =
$agent['id_node'];
}
////////////////////////////////////////////////////////
// Add node
$nodes[$module['id_node']] = $module;
}
}
}
} // End if ($show_agents)
// Drop the modules without a partner if l2_network is true
// and the snmp interfaces token is false
if ($l2_network_or_mixed === 'mix_l2_l3') {
if (!$show_all_modules || $show_snmp_modules) {
foreach ($modules_node_ref as $id_module => $node_count) {
if (! modules_relation_exists($id_module, array_keys($modules_node_ref))) {
if ($show_snmp_modules) {
$module_type = modules_get_agentmodule_type($id_module);
if ($module_type != 18) {
unset($nodes[$node_count]);
unset($orphans[$node_count]);
unset($parents[$node_count]);
}
}
else {
unset($nodes[$node_count]);
unset($orphans[$node_count]);
unset($parents[$node_count]);
}
}
else {
$module_type = modules_get_agentmodule_type($id_module);
if ($module_type != 18) {
unset($nodes[$node_count]);
unset($orphans[$node_count]);
unset($parents[$node_count]);
}
}
}
}
// Addded the relationship of parents of agents
foreach ($agents as $agent) {
if ($agent['id_parent'] != "0" &&
array_key_exists($agent['id_parent'], $node_ref)) {
$parents[$node_ref[$agent['id_agente']]] = $node_ref[$agent['id_parent']];
}
else {
$orphans[$node_ref[$agent['id_agente']]] = 1;
}
}
}
else if ($l2_network) {
foreach ($modules_node_ref as $id_module => $node_count) {
if (! modules_relation_exists($id_module, array_keys($modules_node_ref))) {
if ($show_snmp_modules) {
$module_type = modules_get_agentmodule_type($id_module);
if ($module_type != 18) {
unset($nodes[$node_count]);
unset($orphans[$node_count]);
unset($parents[$node_count]);
}
}
else {
unset($nodes[$node_count]);
unset($orphans[$node_count]);
unset($parents[$node_count]);
}
}
else {
$module_type = modules_get_agentmodule_type($id_module);
if ($module_type != 18) {
unset($nodes[$node_count]);
unset($orphans[$node_count]);
unset($parents[$node_count]);
}
}
}
}
else {
// Addded the relationship of parents of agents
foreach ($agents as $agent) {
if ($agent['id_parent'] != "0" &&
array_key_exists($agent['id_parent'], $node_ref)) {
$parents[$node_ref[$agent['id_agente']]] = $node_ref[$agent['id_parent']];
}
else {
$orphans[$node_ref[$agent['id_agente']]] = 1;
}
}
}
$stats = array();
$edges = array();
// Create nodes
foreach ($nodes as $node_id => $node) {
if ($center > 0 && ! networkmap_is_descendant ($node_id, $center, $parents)) {
unset ($parents[$node_id]);
unset ($orphans[$node_id]);
unset ($nodes[$node_id]);
continue;
}
switch ($node['type']) {
case 'policy':
break;
case 'group':
$stats['groups'][] = $node['id_grupo'];
break;
case 'agent':
$stats['agents'][] = $node['id_agente'];
break;
case 'module':
$stats['modules'][] = $node['id_agente_modulo'];
break;
case 'module_group':
$stats['module_group'][] = null;
break;
}
}
// Define edges
foreach ($parents as $node => $parent_id) {
// Verify that the parent is in the graph
if (isset ($nodes[$parent_id])) {
$edges[$node] = $parent_id;
}
else {
$orphans[$node] = 1;
}
}
//------------------------------------------------------------------
// INIT Relations between the nodes
//------------------------------------------------------------------
foreach ($modules_node_ref as $id_module => $id_node) {
$relations = db_get_all_rows_sql(
"SELECT module_b AS id_module
FROM tmodule_relationship
WHERE module_a = " . $id_module . "
UNION
SELECT module_a AS id_module
FROM tmodule_relationship
WHERE module_b = " . $id_module);
if (empty($relations))
$relations = array();
$id_module_type = modules_get_agentmodule_type($id_module);
$agent_id = modules_get_agentmodule_agent($id_module);
foreach ($relations as $relation) {
$id_module_relation = $relation['id_module'];
$id_module_type_relation =
modules_get_agentmodule_type($id_module_relation);
$agent_id_relation = modules_get_agentmodule_agent($id_module_relation);
if ($id_module_type == 18 && $id_module_type_relation == 18) {
if (isset($modules_node_ref[$id_module]) &&
isset($modules_node_ref[$id_module_relation])) {
$exists =
networkmap_check_exists_edge_between_nodes(
$edges,
$modules_node_ref[$id_module],
$modules_node_ref[$id_module_relation]
);
if (!$exists) {
if (empty($edges[$modules_node_ref[$id_module]])) {
$edges[$modules_node_ref[$id_module]] =
$modules_node_ref[$id_module_relation];
}
else {
$edges[$modules_node_ref[$id_module]] =
(array)$edges[$modules_node_ref[$id_module]];
$edges[$modules_node_ref[$id_module]][] =
$modules_node_ref[$id_module_relation];
}
}
}
}
// Relation into agents
elseif ($id_module_type == 6 && $id_module_type_relation == 6) {
if ($l2_network_or_mixed !== 'mix_l2_l3') {
if (isset($node_ref[$agent_id]) &&
isset($node_ref[$agent_id_relation])) {
$exists =
networkmap_check_exists_edge_between_nodes(
$edges,
$node_ref[$agent_id],
$node_ref[$agent_id_relation]
);
if (!$exists) {
if (empty($edges[$node_ref[$agent_id]])) {
$edges[$node_ref[$agent_id]] =
$node_ref[$agent_id_relation];
}
else {
if (!$exists) {
$edges[$node_ref[$agent_id]] =
(array)$edges[$node_ref[$agent_id]];
$edges[$node_ref[$agent_id]][] =
$node_ref[$agent_id_relation];
}
}
}
}
}
}
elseif ($id_module_type == 6 && $id_module_type_relation == 18) {
if (isset($node_ref[$agent_id]) &&
isset($modules_node_ref[$id_module_relation])) {
$exists =
networkmap_check_exists_edge_between_nodes(
$edges,
$node_ref[$agent_id],
$modules_node_ref[$id_module_relation]
);
if (!$exists) {
if (empty($edges[$node_ref[$agent_id]])) {
$edges[$node_ref[$agent_id]] =
$modules_node_ref[$id_module_relation];
}
else {
if (!$exists) {
$edges[$node_ref[$agent_id]] =
(array)$edges[$node_ref[$agent_id]];
$edges[$node_ref[$agent_id]][] =
$modules_node_ref[$id_module_relation];
}
}
}
}
}
elseif ($id_module_type_relation == 6 && $id_module_type == 18) {
if (isset($node_ref[$agent_id_relation]) &&
isset($modules_node_ref[$id_module])) {
$exists =
networkmap_check_exists_edge_between_nodes(
$edges,
$node_ref[$agent_id_relation],
$modules_node_ref[$id_module]
);
if (!$exists) {
if (empty($edges[$node_ref[$agent_id_relation]])) {
$edges[$node_ref[$agent_id_relation]] =
$modules_node_ref[$id_module];
}
else {
if (!$exists) {
$edges[$node_ref[$agent_id_relation]] =
(array)$edges[$node_ref[$agent_id_relation]];
$edges[$node_ref[$agent_id_relation]][] =
$modules_node_ref[$id_module];
}
}
}
}
}
}
}
//------------------------------------------------------------------
// END Relations between the nodes
//------------------------------------------------------------------
// Define edges for the module interfaces relations
// Get the remote_snmp_proc relations
//~ $relations = modules_get_relations();
//~ if ($relations === false)
//~ $relations = array();
//~ foreach ($relations as $key => $relation) {
//~ $module_a = $relation['module_a'];
//~ $module_a_type = modules_get_agentmodule_type($module_a);
//~ $agent_a = modules_get_agentmodule_agent($module_a);
//~ $module_b = $relation['module_b'];
//~ $module_b_type = modules_get_agentmodule_type($module_b);
//~ $agent_b = modules_get_agentmodule_agent($module_b);
//~
//~ if ($module_a_type == 18 && $module_b_type == 18) {
//~ if (isset($modules_node_ref[$module_a]) &&
//~ isset($modules_node_ref[$module_b])) {
//~
//~ $edges[$modules_node_ref[$module_a]] =
//~ $modules_node_ref[$module_b];
//~ }
//~ }
//~ // Relation into agents
//~ elseif ($module_a_type == 6 && $module_b_type == 6) {
//~ if ($l2_network_or_mixed !== 'mix_l2_l3') {
//~ if (isset($node_ref[$agent_a]) &&
//~ isset($node_ref[$agent_b])) {
//~
//~ $edges[$node_ref[$agent_a]] = $node_ref[$agent_b];
//~ }
//~ }
//~
//~ }
//~ elseif ($module_a_type == 6 && $module_b_type == 18) {
//~ if (isset($node_ref[$agent_a]) &&
//~ isset($modules_node_ref[$module_b])) {
//~
//~ $edges[$node_ref[$agent_a]] = $modules_node_ref[$module_b];
//~ }
//~ }
//~ elseif ($module_b_type == 6 && $module_a_type == 18) {
//~ if (isset($node_ref[$agent_b]) &&
//~ isset($modules_node_ref[$module_a])) {
//~
//~ $edges[$node_ref[$agent_b]] = $modules_node_ref[$module_a];
//~ }
//~ }
//~ }
return array("nodes" => $nodes, "edges" => $edges, "orphans" => $orphans);
}
function networkmap_check_exists_edge_between_nodes($edges, $node_a, $node_b) {
$relation = false;
if (is_array($edges[$node_a])) {
if (array_search($node_b, $edges[$node_a]) !== false)
$relation = true;
}
else {
if ($edges[$node_a] == $node_b)
$relation = true;
}
if (is_array($edges[$node_b])) {
if (array_search($node_a, $edges[$node_b]) !== false)
$relation = true;
}
else {
if ($edges[$node_b] == $node_a)
$relation = true;
}
return $relation;
}
function networkmap_generate_dot ($pandora_name, $group = 0,
$simple = 0, $font_size = 12, $layout = 'radial', $nooverlap = 0,
$zoom = 1, $ranksep = 2.5, $center = 0, $regen = 1, $pure = 0,
$id_networkmap = 0, $show_snmp_modules = 0, $cut_names = true,
$relative = false, $text_filter = '', $l2_network_or_mixed = false,
$ip_mask = null, $dont_show_subgroups = false, $strict_user = false,
$size_canvas = null, $old_mode = false, $id_tag = 0,
$show_all_modules = false, $only_modules_alerts = false,
$filter_module_group = 0, $show_modulegroup = false,
$show_groups = false, $show_agents = true, $show_policies = false) {
$networkmap_data = networkmap_get_nodes_and_links($pandora_name,
$group, $simple, $font_size, $layout, $nooverlap, $zoom,
$ranksep, $center, $regen, $pure, $id_networkmap,
$show_snmp_modules, $cut_names, $relative, $text_filter,
$l2_network_or_mixed, $ip_mask, $dont_show_subgroups,
$strict_user, $size_canvas, $old_mode, $id_tag,
$show_all_modules, $only_modules_alerts, $filter_module_group,
$show_modulegroup, $show_groups, $show_agents, $show_policies);
if ($l2_network_or_mixed === 'mix_l2_l3') {
$l2_network = true;
}
else {
$l2_network = $l2_network_or_mixed;
}
if ($l2_network) {
$nooverlap = 1;
}
// Open Graph
$graph = networkmap_open_graph ($layout, $nooverlap, $pure, $zoom,
$ranksep, $font_size, $size_canvas);
// Create nodes
foreach ($networkmap_data['nodes'] as $node_id => $node) {
switch ($node['type']) {
case 'policy':
if (enterprise_installed()) {
enterprise_include_once("include/functions_policies.php");
$graph .= policies_create_node($node, $simple, $font_size)."\n\t\t";
}
break;
case 'group':
$graph .= networkmap_create_group_node ($node , $simple, $font_size, $metaconsole = false, null, $strict_user) .
"\n\t\t";
break;
case 'agent':
$graph .= networkmap_create_agent_node($node, $simple,
$font_size, $cut_names, $relative) . "\n\t\t";
break;
case 'module':
$graph .= networkmap_create_module_node($node, $simple,
$font_size) . "\n\t\t";
break;
case 'module_group':
$graph .= networkmap_create_module_group_node ($node , $simple, $font_size, true, $node['id_server']) . "\n\t\t";
break;
}
}
// Define edges
foreach ($networkmap_data['edges'] as $id_child => $id_parent) {
if (!is_array($id_parent)) {
$id_parent = (array)$id_parent;
}
foreach ($id_parent as $id_p) {
$graph .= networkmap_create_edge ($id_p,
$id_child,
$layout,
$nooverlap,
$pure,
$zoom,
$ranksep,
$simple,
$regen,
$font_size,
$group,
'operation/agentes/networkmap',
'topology',
$id_networkmap);
}
}
//The orphans
if ($l2_network || $old_mode) {
$count = 0;
$group_nodes = 10;
$graph .= networkmap_create_transparent_node($count);
foreach (array_keys($networkmap_data['orphans']) as $node) {
if ($group_nodes == 0) {
$count++;
$graph .= networkmap_create_transparent_node($count);
$group_nodes = 10;
}
$graph .= networkmap_create_transparent_edge('transp_' . $count,
$node);
$group_nodes--;
}
}
else {
// Create a central node if orphan nodes exist
if (count ($networkmap_data['$orphans']) || empty ($nodes)) {
$graph .= networkmap_create_pandora_node ($pandora_name, $font_size, $simple, $stats);
}
// Define edges for orphan nodes
foreach (array_keys($networkmap_data['orphans']) as $node) {
$graph .= networkmap_create_edge ('0', $node, $layout, $nooverlap, $pure, $zoom, $ranksep, $simple, $regen, $font_size, $group, 'operation/agentes/networkmap', 'topology', $id_networkmap);
}
}
// Close graph
$graph .= networkmap_close_graph ();
return $graph;
}
// Generate a dot graph definition for graphviz with groups
function networkmap_generate_dot_groups ($pandora_name, $group = 0,
$simple = 0, $font_size = 12, $layout = 'radial', $nooverlap = 0,
$zoom = 1, $ranksep = 2.5, $center = 0, $regen = 1, $pure = 0,
$modwithalerts = 0, $module_group = 0, $hidepolicymodules = 0,
$depth = 'all', $id_networkmap = 0, $dont_show_subgroups = 0,
$text_filter = '', $strict_user = false, $size_canvas = null) {
global $config;
if ($strict_user) {
$acltags = tags_get_user_module_and_tags ($config['id_user'],'AR', $strict_user);
}
$parents = array();
$orphans = array();
$filter = array ();
$filter['disabled'] = 0;
if (!empty($text_filter)) {
switch ($config['dbtype']) {
case "mysql":
case "postgresql":
$filter[] =
'(nombre COLLATE utf8_general_ci LIKE "%' . $text_filter . '%")';
break;
case "oracle":
$filter[] =
'(upper(nombre) LIKE upper(\'%' . $text_filter . '%\'))';
break;
}
}
// Get groups data
if ($group > 0) {
$groups = array();
$id_groups = groups_get_id_recursive($group, true);
foreach($id_groups as $id_group) {
$add = false;
if (check_acl($config["id_user"], $id_group, 'AR')) {
$add = true;
}
if ($add) {
$groups[] = db_get_row ('tgrupo', 'id_grupo', $id_group);
}
}
$filter['id_grupo'] = $id_groups;
}
else {
if ($strict_user) {
$groups = users_get_groups ($config['id_user'],"AR", false, true);
}
else {
$groups = db_get_all_rows_in_table ('tgrupo');
}
if ($groups === false) {
$groups = array();
}
}
// Open Graph
$graph = networkmap_open_graph ($layout, $nooverlap, $pure, $zoom,
$ranksep, $font_size, $size_canvas);
$node_count = 0;
// Parse groups
$nodes = array ();
$nodes_groups = array();
foreach ($groups as $group2) {
$node_count ++;
$group2['type'] = 'group';
$group2['id_node'] = $node_count;
// Add node
$nodes_groups[$group2['id_grupo']] = $group2;
}
$node_count = 0;
$groups_hiden = array();
foreach ($nodes_groups as $node_group) {
$node_count++;
// Save node parent information to define edges later
if ($node_group['parent'] != "0" && $node_group['id_grupo'] != $group) {
if ((!$dont_show_subgroups) || ($group == 0)) {
$parents[$node_count] = $nodes_groups[$node_group['parent']]['id_node'];
}
else {
$groups_hiden[$node_group['id_grupo']] = 1;
continue;
}
}
else {
$orphans[$node_count] = 1;
}
$nodes[$node_count] = $node_group;
}
if ($depth != 'group') {
if ($strict_user) {
$filter['group_by'] = 'tagente.nombre';
$filter['id_group'] = $filter['id_grupo'];
$fields = array ('tagente.id_grupo, tagente.nombre, tagente.id_os, tagente.id_agente,
tagente.normal_count, tagente.warning_count, tagente.critical_count,
tagente.unknown_count, tagente.total_count, tagente.notinit_count');
$agents = tags_get_all_user_agents (false, $config['id_user'], $acltags, $filter, $fields, false, $strict_user, true);
unset($filter['id_group']);
}
else {
// Get agents data
$agents = agents_get_agents ($filter,
array ('id_grupo, nombre, id_os, id_agente,
normal_count, warning_count, critical_count,
unknown_count, total_count, notinit_count'));
}
if ($agents === false)
$agents = array();
// Parse agents
$nodes_agents = array();
foreach ($agents as $agent) {
if ($dont_show_subgroups) {
if (!empty($groups_hiden[$agent['id_grupo']])) {
continue;
}
}
// If only agents with alerts => agents without alerts discarded
$alert_agent = agents_get_alerts($agent['id_agente']);
if ($modwithalerts and empty($alert_agent['simple'])) {
continue;
}
$node_count ++;
// Save node parent information to define edges later
$parents[$node_count] = $agent['parent'] = $nodes_groups[$agent['id_grupo']]['id_node'];
$agent['id_node'] = $node_count;
$agent['type'] = 'agent';
// Add node
$nodes[$node_count] = $nodes_agents[$agent['id_agente']] = $agent;
if ($depth == 'agent') {
continue;
}
// Get agent modules data
if ($strict_user) {
$filter['disabled'] = 0;
$modules = tags_get_agent_modules ($agent['id_agente'], false, $acltags, false, $filter, false);
} else {
$modules = agents_get_modules ($agent['id_agente'], false, array('disabled' => 0), true, false);
}
// Parse modules
foreach ($modules as $key => $module) {
$node_count ++;
$agent_module = modules_get_agentmodule($key);
$alerts_module = db_get_sql('SELECT count(*) AS num
FROM talert_template_modules
WHERE id_agent_module = ' . $key);
if ($alerts_module == 0 && $modwithalerts) {
continue;
}
if ($agent_module['id_module_group'] != $module_group &&
$module_group != 0) {
continue;
}
if ($hidepolicymodules && $config['enterprise_installed']) {
enterprise_include_once('include/functions_policies.php');
if (policies_is_module_in_policy($key)) {
continue;
}
}
// Save node parent information to define edges later
$parents[$node_count] = $agent_module['parent'] = $agent['id_node'];
$agent_module['id_node'] = $node_count;
$agent_module['type'] = 'module';
// Add node
$nodes[$node_count] = $agent_module;
}
}
}
if (empty ($nodes)) {
return false;
}
// Create void statistics array
$stats = array();
// Create nodes
foreach ($nodes as $node_id => $node) {
if ($center > 0 && ! networkmap_is_descendant ($node_id, $center, $parents)) {
unset ($parents[$node_id]);
unset ($orphans[$node_id]);
unset ($nodes[$node_id]);
continue;
}
switch ($node['type']) {
case 'group':
$graph .= networkmap_create_group_node ($node , $simple, $font_size, $metaconsole = false, null, $strict_user) .
"\n\t\t";
$stats['groups'][] = $node['id_grupo'];
break;
case 'agent':
$graph .= networkmap_create_agent_node ($node , $simple, $font_size, true, true) .
"\n\t\t";
$stats['agents'][] = $node['id_agente'];
break;
case 'module':
$graph .= networkmap_create_module_node ($node , $simple, $font_size) .
"\n\t\t";
$stats['modules'][] = $node['id_agente_modulo'];
break;
}
}
// Define edges
foreach ($parents as $node => $parent_id) {
// Verify that the parent is in the graph
if (isset ($nodes[$parent_id])) {
$graph .= networkmap_create_edge ($node, $parent_id, $layout, $nooverlap, $pure, $zoom, $ranksep, $simple, $regen, $font_size, $group, 'operation/agentes/networkmap', 'groups', $id_networkmap);
}
else {
$orphans[$node] = 1;
}
}
// Create a central node if orphan nodes exist
if (count ($orphans)) {
$graph .= networkmap_create_pandora_node ($pandora_name, $font_size, $simple, $stats);
}
// Define edges for orphan nodes
foreach (array_keys($orphans) as $node) {
$graph .= networkmap_create_edge ('0', $node, $layout, $nooverlap, $pure, $zoom, $ranksep, $simple, $regen, $font_size, $group, 'operation/agentes/networkmap', 'groups', $id_networkmap);
}
// Close graph
$graph .= networkmap_close_graph ();
return $graph;
}
// Returns an edge definition
function networkmap_create_edge ($head, $tail, $layout, $nooverlap, $pure, $zoom, $ranksep, $simple, $regen, $font_size, $group, $sec2 = 'operation/agentes/networkmap', $tab = 'topology', $id_networkmap = 0) {
if (defined("METACONSOLE")) {
$url = '';
}
else {
$url = 'index.php?sec=estado&' .
'sec2=' . $sec2 .'&' .
'tab=' . $tab . '&' .
'recenter_networkmap=1&' .
'center=' . $head . '&' .
'layout=' . $layout . '&' .
'nooverlap=' . $nooverlap . '&' .
'pure=' . $pure . '&' .
'zoom=' . $zoom . '&' .
'ranksep=' . $ranksep . '&' .
'simple=' . $simple . '&' .
'regen=1'. '&' .
'font_size=' . $font_size . '&' .
'group=' . $group . '&' .
'id_networkmap=' . $id_networkmap;
}
// edgeURL allows node navigation
$edge = "\n" . $head . ' -- ' . $tail .
'[color="#BDBDBD", headclip=false, tailclip=false, edgeURL=""];' . "\n";
return $edge;
}
function networkmap_create_transparent_edge($head, $tail) {
// edgeURL allows node navigation
$edge = "\n" . $head . ' -- ' . $tail .
'[color="#00000000", headclip=false, tailclip=false, edgeURL=""];' . "\n";
return $edge;
}
// Returns a group node definition
function networkmap_create_group_node ($group, $simple = 0, $font_size = 10, $metaconsole = false, $id_server = null, $strict_user = false) {
global $config;
global $hack_networkmap_mobile;
$status = groups_get_status ($group['id_grupo'], $strict_user);
// Set node status
switch ($status) {
case 0:
$status_color = COL_NORMAL; // Normal monitor
break;
case 1:
$status_color = COL_CRITICAL; // Critical monitor
break;
case 2:
$status_color = COL_WARNING; // Warning monitor
break;
case 4:
$status_color = COL_ALERTFIRED; // Alert fired
break;
default:
$status_color = COL_UNKNOWN; // Unknown monitor
break;
}
$icon = groups_get_icon($group['id_grupo']);
if ($simple == 0) {
// Set node icon
if ($hack_networkmap_mobile) {
$img_node = $config['homedir'] . "/images/groups_small/" . $icon . ".png";
if (!file_exists($img_node)) {
$img_node = '-';
}
$img_node = '';
}
else if (file_exists (html_print_image("images/groups_small/" . $icon . ".png", true, false, true, true))) {
$img_node = html_print_image("images/groups_small/" . $icon . ".png", true, false, false, true);
}
else {
$img_node = '-';
}
if (strlen(groups_get_name($group['id_grupo'])) > 40) {
$name = substr(groups_get_name($group['id_grupo']), 0, 40) . '...';
}
else {
$name = groups_get_name($group['id_grupo']);
}
if (defined("METACONSOLE")) {
$url = '';
$url_tooltip = '';
}
else {
$url = 'index.php?sec=estado&sec2=operation/agentes/estado_agente&refr=60&group_id='.$group['id_grupo'];
$url_tooltip = 'ajax.php?page=operation/agentes/ver_agente&get_group_status_tooltip=1&id_group='.$group['id_grupo'];
}
$node = "\n" . $group['id_node'].' [ color="'.$status_color.'", fontsize='.$font_size.', style="filled", fixedsize=true, width=0.30, height=0.30, ' .
'label=<'.$img_node.' |
'.io_safe_output($name).' | >,
shape="invtrapezium", URL="' . $url . '",
tooltip="' . $url_tooltip . '"];' . "\n";
}
else {
if (defined("METACONSOLE")) {
$url = '';
$url_tooltip = '';
}
else {
$url = 'index.php?sec=estado&sec2=operation/agentes/estado_agente&refr=60&group_id='.$group['id_grupo'];
$url_tooltip = 'ajax.php?page=operation/agentes/ver_agente&get_group_status_tooltip=1&id_group='.$group['id_grupo'];
}
$node = "\n" . $group['id_node'] . ' [ color="'.$status_color.'", fontsize='.$font_size.', shape="invtrapezium",
URL="' . $url . '", style="filled", fixedsize=true, width=0.20, height=0.20, label="",
tooltip="' . $url_tooltip . '"];' . "\n";
}
return $node;
}
// Returns a node definition
function networkmap_create_agent_node ($agent, $simple = 0, $font_size = 10, $cut_names = true, $relative = false, $metaconsole = false, $id_server = null, $strict_user = false) {
global $config;
global $hack_networkmap_mobile;
if ($strict_user) {
require_once($config['homedir']."/include/functions_tags.php");
$acltags = tags_get_user_module_and_tags ($config["id_user"], 'AR', $strict_user);
$agent_filter = array("id" => $agent["id_agente"]);
$strict_data['normal_count'] = (int) groups_get_normal_monitors ($agent['id_grupo'], $agent_filter, array(), $strict_user, $acltags);
$strict_data['warning_count'] = (int) groups_get_warning_monitors ($agent['id_grupo'], $agent_filter, array(), $strict_user, $acltags);
$strict_data['critical_count'] = (int) groups_get_critical_monitors ($agent['id_grupo'], $agent_filter, array(), $strict_user, $acltags);
$strict_data['unknown_count'] = (int) groups_get_unknown_monitors ($agent['id_grupo'], $agent_filter, array(), $strict_user, $acltags);
$strict_data['notinit_count'] = (int) groups_get_not_init_monitors ($agent['id_grupo'], $agent_filter, array(), $strict_user, $acltags);
$strict_data['total_count'] = (int) groups_get_total_monitors ($agent['id_grupo'], $agent_filter, array(), $strict_user, $acltags);
$status = agents_get_status_from_counts($strict_data);
} else {
$status = agents_get_status_from_counts($agent);
}
if (defined('METACONSOLE')) {
$server_data = db_get_row('tmetaconsole_setup', 'id',
$agent['id_server']);
}
if (empty($server_data)) {
$server_name = '';
$server_id = '';
$url_hash = '';
$console_url = '';
}
else {
$server_name = $server_data['server_name'];
$server_id = $server_data['id'];
$console_url = $server_data['server_url'] . '/';
$url_hash = metaconsole_get_servers_url_hash($server_data);
}
// Set node status
switch ($status) {
case AGENT_STATUS_NORMAL:
$status_color = COL_NORMAL;
break;
case AGENT_STATUS_CRITICAL:
$status_color = COL_CRITICAL;
break;
case AGENT_STATUS_WARNING:
$status_color = COL_WARNING;
break;
case AGENT_STATUS_ALERT_FIRED:
$status_color = COL_ALERTFIRED;
break;
# Juanma (05/05/2014) Fix: Correct color for not init agents!
case AGENT_STATUS_NOT_INIT:
$status_color = COL_NOTINIT;
break;
default:
//Unknown monitor
$status_color = COL_UNKNOWN;
break;
}
// Short name
$name = io_safe_output($agent["nombre"]);
if ((strlen ($name) > 16) && ($cut_names)) {
$name = ui_print_truncate_text($name, 16, false, true, false);
}
if ($simple == 0) {
if ($hack_networkmap_mobile) {
$img_node = ui_print_os_icon($agent['id_os'], false, true, true, true, true, true);
$img_node = $config['homedir'] . '/' . $img_node;
$img_node = '';
}
else {
// Set node icon
$img_node = ui_print_os_icon ($agent['id_os'], false, true, true, true, true, $relative);
$img_node = str_replace($config['homeurl'] . '/', '', $img_node);
$img_node = str_replace($config['homeurl'], '', $img_node);
if (defined('METACONSOLE')) {
$img_node = str_replace('../../', '', $img_node);
}
if ($relative) {
$img_node = html_print_image($img_node, true, false, false, true);
}
else {
$img_node = html_print_image($img_node, true, false, false, false);
}
}
if (defined("METACONSOLE")) {
if (can_user_access_node ()) {
$url = ui_meta_get_url_console_child($id_server,
"estado", "operation/agentes/ver_agente&id_agente=" . $agent['id_agente']);
}
else {
$url = '';
}
$url_tooltip = '../../ajax.php?' .
'page=operation/agentes/ver_agente&' .
'get_agent_status_tooltip=1&' .
'id_agent='.$agent['id_agente'] . '&' .
'metaconsole=1&' .
'id_server=' . $agent['id_server'];
}
else {
$url = 'index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente='.$agent['id_agente'];
$url_tooltip = 'ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent='.$agent['id_agente'];
}
$node = "\n" . $agent['id_node'].' [ color="'.$status_color.'", fontsize='.$font_size.', style="filled", fixedsize=true, width=0.40, height=0.40, label=<' . $img_node . ' |
'.io_safe_output($name).' | >,
shape="doublecircle", URL="'.$url.'",
tooltip="' . $url_tooltip . '"];' . "\n";
}
else {
$ajax_prefix = '';
$meta_params = '';
if (defined('METACONSOLE')) {
$ajax_prefix = '../../';
$meta_params = '&metaconsole=1&id_server=' . $id_server;
}
if (can_user_access_node ()) {
$url_node_link = ', URL="' . $console_url . 'index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=' . $agent['id_agente'] . $url_hash . '"';
}
else {
$url_node_link = '';
}
$node = $agent['id_node'] . ' [ color="' . $status_color . '", fontsize=' . $font_size . ', shape="doublecircle"' . $url_node_link . ', style="filled", fixedsize=true, width=0.20, height=0.20, label="", tooltip="' . $ajax_prefix . 'ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=' . $agent['id_agente'] . $meta_params . '"];' . "\n";
}
return $node;
}
function networkmap_create_module_group_node ($module_group, $simple = 0, $font_size = 10, $metaconsole = false, $id_server = null) {
global $config;
global $hack_networkmap_mobile;
// Set node status
switch ($module_group['status']) {
case 0:
$status_color = COL_NORMAL; // Normal monitor
break;
case 1:
$status_color = COL_CRITICAL; // Critical monitor
break;
case 2:
$status_color = COL_WARNING; // Warning monitor
break;
case 4:
$status_color = COL_ALERTFIRED; // Alert fired
break;
default:
$status_color = COL_UNKNOWN; // Unknown monitor
break;
}
if ($simple == 0) {
if (defined("METACONSOLE")) {
$url = '';
$url_tooltip = '';
}
else {
$url = '';
$url_tooltip = '';
}
$node = $module_group['id_node'].' [ color="' . $status_color .
'", fontsize='.$font_size.', style="filled", ' .
'fixedsize=true, width=0.30, height=0.30, ' .
'label=<' .
io_safe_output($module_group['name']) . ' | >,
shape="square", URL="' . $url . '",
tooltip="' . $url_tooltip . '"];';
}
else {
if ($hack_networkmap_mobile) {
$img_node = ui_print_moduletype_icon($module['id_tipo_modulo'], true, true, false, true);
$img_node = $config['homedir'] . '/' . $img_node;
$img_node = '';
}
else {
$img_node = ui_print_moduletype_icon ($module['id_tipo_modulo'], true, true, false);
}
if (defined("METACONSOLE")) {
$url = '';
$url_tooltip = '';
}
else {
$url = '';
$url_tooltip = '';
}
$node = $module_group['id_node'] . ' [ color="'.$status_color .
'", fontsize='.$font_size.', shape="square", URL="' . $url . '", ' .
'style="filled", fixedsize=true, width=0.20, ' .
'height=0.20, label="", tooltip="' . $url_tooltip . '"];';
}
return $node;
}
// Returns a module node definition
function networkmap_create_module_node ($module, $simple = 0, $font_size = 10, $metaconsole = false, $id_server = null) {
global $config;
global $hack_networkmap_mobile;
if (isset($module['status'])) {
$status = $module['status'];
}
else {
$status = modules_get_agentmodule_status($module['id_agente_modulo'],
false, $metaconsole, $id_server);
}
// Set node status
switch ($status) {
case AGENT_MODULE_STATUS_NORMAL:
$status_color = COL_NORMAL; // Normal monitor
break;
case AGENT_MODULE_STATUS_CRITICAL_BAD:
$status_color = COL_CRITICAL; // Critical monitor
break;
case AGENT_MODULE_STATUS_WARNING:
$status_color = COL_WARNING; // Warning monitor
break;
case AGENT_STATUS_ALERT_FIRED:
$status_color = COL_ALERTFIRED; // Alert fired
break;
default:
$status_color = COL_UNKNOWN; // Unknown monitor
break;
}
if ($hack_networkmap_mobile) {
$img_node = ui_print_moduletype_icon($module['id_tipo_modulo'], true, true, false, true);
$img_node = $config['homedir'] . '/' . $img_node;
$img_node = '';
}
else {
$img_node = ui_print_moduletype_icon ($module['id_tipo_modulo'], true, true, false);
}
if ($simple == 0) {
if (defined("METACONSOLE")) {
$url = '';
$url_tooltip = '../../ajax.php?' .
'page=operation/agentes/ver_agente&' .
'get_agentmodule_status_tooltip=1&' .
'id_module='.$module['id_agente_modulo'] .
'&metaconsole=1' .
'&id_server=' . $module['id_server'];
}
else {
$url = 'index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente='.$module['id_agente'];
$url_tooltip = 'ajax.php?page=operation/agentes/ver_agente&get_agentmodule_status_tooltip=1&id_module='.$module['id_agente_modulo'];
}
$node = $module['id_node'].' [ color="' . $status_color .
'", fontsize='.$font_size.', style="filled", ' .
'fixedsize=true, width=0.30, height=0.30, ' .
'label=<' .
$img_node . ' |
' . io_safe_output($module['nombre']) . ' | >,
shape="circle", URL="' . $url . '",
tooltip="' . $url_tooltip . '"];';
}
else {
if (defined("METACONSOLE")) {
$url = 'TODO';
$url_tooltip = '../../ajax.php?page=operation/agentes/ver_agente' .
'&get_agentmodule_status_tooltip=1' .
'&id_module=' . $module['id_agente_modulo'] .
'&metaconsole=1' .
'&id_server=' . $module['id_server'];
}
else {
$url = 'index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente='.$module['id_agente'];
$url_tooltip = 'ajax.php?page=operation/agentes/ver_agente&get_agentmodule_status_tooltip=1&id_module='.$module['id_agente_modulo'];
}
$node = $module['id_node'] . ' [ ' .
'color="' . $status_color .'", ' .
'fontsize='.$font_size.', ' .
'shape="circle", ' .
'URL="' . $url . '", ' .
'style="filled", ' .
'fixedsize=true, ' .
'width=0.20, ' .
'height=0.20, ' .
'label="", ' .
'tooltip="' . $url_tooltip . '"' .
'];';
}
return $node;
}
// Returns the definition of the central module
function networkmap_create_pandora_node ($name, $font_size = 10, $simple = 0, $stats = array()) {
global $hack_networkmap_mobile;
global $config;
//$stats_json = base64_encode(json_encode($stats));
$summary = array();
if (isset($stats['policies'])) {
$summary['policies'] = count($stats['policies']);
}
if (isset($stats['groups'])) {
// TODO: GET STATUS OF THE GROUPS AND ADD IT TO SUMMARY
$summary['groups'] = count($stats['groups']);
}
if (isset($stats['agents'])) {
// TODO: GET STATUS OF THE AGENTS AND ADD IT TO SUMMARY
$summary['agents'] = count($stats['agents']);
}
if (isset($stats['modules'])) {
// TODO: GET STATUS OF THE MODULES AND ADD IT TO SUMMARY
$summary['modules'] = count($stats['modules']) ;
}
$stats_json = base64_encode(json_encode($summary));
$img_src = "images/networkmap/pandora_node.png";
if (defined('METACONSOLE')) {
$url_tooltip = '../../ajax.php?' .
'page=include/ajax/networkmap.ajax&' .
'action=get_networkmap_summary&' .
'stats='.$stats_json . '&' .
'metaconsole=1';
$url = '';
$color = '#052938';
}
else {
$url_tooltip = 'ajax.php?page=include/ajax/networkmap.ajax&action=get_networkmap_summary&stats='.$stats_json.'", URL="index.php?sec=estado&sec2=operation/agentes/group_view';
$url = 'index.php?sec=estado&sec2=operation/agentes/group_view';
$color = '#373737';
}
if ($hack_networkmap_mobile) {
$img = ' |