mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-29 16:55:05 +02:00
* estado_grupo.php, some important changes and fixes:
- New feature to referesh ALL the network modules under a group if push the "network refresh" button. - Need to be finished by Raul, to show detailed info only in the hint. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@61 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
86c3dec08f
commit
f2cc53909a
@ -1,22 +1,42 @@
|
|||||||
<?php
|
<?php
|
||||||
|
// Pandora - the Free monitoring system
|
||||||
// Pandora - The Free Monitoring System
|
// ====================================
|
||||||
// This code is protected by GPL license.
|
// Copyright (c) 2004-2006 Sancho Lerena, slerena@gmail.com
|
||||||
// Este codigo esta protegido por la licencia GPL.
|
// Copyright (c) 2005-2006 Artica Soluciones Tecnológicas S.L, info@artica.es
|
||||||
// Sancho Lerena <slerena@gmail.com>, 2003-2006
|
// Copyright (c) 2004-2006 Raul Mateos Martin, raulofpandora@gmail.com
|
||||||
// Raúl Mateos <raulofpandora@gmail.com>, 2005-2006
|
// 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; either version 2
|
||||||
|
// of the License, or (at your option) any later version.
|
||||||
|
// 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.
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with this program; if not, write to the Free Software
|
||||||
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
// Load global vars
|
// Load global vars
|
||||||
require("include/config.php");
|
require("include/config.php");
|
||||||
|
|
||||||
if (comprueba_login() == 0)
|
if (comprueba_login() == 0)
|
||||||
if (give_acl($id_user, 0, "AR")==1) {
|
if (give_acl($id_user, 0, "AR")==1) {
|
||||||
echo "<h2>".$lang_label["ag_title"]."</h2>";
|
echo "<h2>".$lang_label["ag_title"]."</h2>";
|
||||||
echo "<h3>".$lang_label["group_view"]."</h3>";
|
echo "<h3>".$lang_label["group_view"]."</h3>";
|
||||||
|
// Check for Network FLAG change request
|
||||||
|
if (isset($_GET["update_netgroup"])){
|
||||||
|
if (give_acl($id_user, $_GET["update_netgroup"], "AW")==1){
|
||||||
|
$sql = "SELECT * FROM tagente where id_grupo = ".$_GET["update_netgroup"];
|
||||||
|
$result=mysql_query($sql);
|
||||||
|
while ($row=mysql_fetch_array($result)){
|
||||||
|
$id_agente = $row["id_agente"];
|
||||||
|
$query2 ="UPDATE tagente_modulo SET flag=1 WHERE id_agente = ".$id_agente;
|
||||||
|
$res=mysql_query($query2);
|
||||||
|
}
|
||||||
|
echo "<h3 class='suc'>".$lang_label["network_module_refresh_exec"]."</h3>";
|
||||||
|
}
|
||||||
|
}
|
||||||
$iduser_temp=$_SESSION['id_usuario'];
|
$iduser_temp=$_SESSION['id_usuario'];
|
||||||
// $mis_grupos - Define array mis_grupos to put here all groups with Agent Read permission
|
// $mis_grupos - Define array mis_grupos to put here all groups with Agent Read permission
|
||||||
|
|
||||||
$sql1='SELECT * FROM tgrupo';
|
$sql1='SELECT * FROM tgrupo';
|
||||||
$result2=mysql_query($sql1);
|
$result2=mysql_query($sql1);
|
||||||
while ($row=mysql_fetch_array($result2)){
|
while ($row=mysql_fetch_array($result2)){
|
||||||
@ -30,10 +50,6 @@ if (comprueba_login() == 0)
|
|||||||
$estado_grupo_ok =0;
|
$estado_grupo_ok =0;
|
||||||
$estado_grupo_down =0;
|
$estado_grupo_down =0;
|
||||||
$estado_grupo_bad =0;
|
$estado_grupo_bad =0;
|
||||||
|
|
||||||
// Debug
|
|
||||||
// echo "tengo un total de ".count($mis_grupos)." grupos <br><br>";
|
|
||||||
|
|
||||||
// Recorro cada grupo para ver el estado de todos los modulos
|
// Recorro cada grupo para ver el estado de todos los modulos
|
||||||
foreach ($mis_grupos as $migrupo)
|
foreach ($mis_grupos as $migrupo)
|
||||||
if ($migrupo != "") {
|
if ($migrupo != "") {
|
||||||
@ -63,12 +79,11 @@ if (comprueba_login() == 0)
|
|||||||
$estado_grupo_down++;
|
$estado_grupo_down++;
|
||||||
$down=1;
|
$down=1;
|
||||||
}
|
}
|
||||||
|
|
||||||
$grupo[$array_index]["agent"]++;
|
$grupo[$array_index]["agent"]++;
|
||||||
$grupo[$array_index]["group"]=dame_nombre_grupo($migrupo);
|
$grupo[$array_index]["group"]=dame_nombre_grupo($migrupo);
|
||||||
$contador_agente++; // Estado grupo, agent
|
$contador_agente++; // Estado grupo, agent
|
||||||
if ($down ==0){
|
if ($down ==0){
|
||||||
$sql2="SELECT * FROM tagente_modulo WHERE (id_tipo_modulo = 2 OR id_tipo_modulo = 6 OR id_tipo_modulo = 10) AND id_agente =".$row1["id_agente"];
|
$sql2="SELECT * FROM tagente_modulo WHERE (id_tipo_modulo = 2 OR id_tipo_modulo = 6 OR id_tipo_modulo = 9 OR id_tipo_modulo = 12 OR id_tipo_modulo = 18) AND id_agente =".$row1["id_agente"];
|
||||||
$result2=mysql_query($sql2);
|
$result2=mysql_query($sql2);
|
||||||
while ($row2 = mysql_fetch_array($result2)){
|
while ($row2 = mysql_fetch_array($result2)){
|
||||||
$sql3="SELECT * FROM tagente_estado WHERE id_agente_modulo = ".$row2["id_agente_modulo"];
|
$sql3="SELECT * FROM tagente_estado WHERE id_agente_modulo = ".$row2["id_agente_modulo"];
|
||||||
@ -82,37 +97,22 @@ if (comprueba_login() == 0)
|
|||||||
$estado_grupo_bad++;
|
$estado_grupo_bad++;
|
||||||
$grupo[$array_index]["bad"]++; // Estado grupo, agent BAD
|
$grupo[$array_index]["bad"]++; // Estado grupo, agent BAD
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
$grupo[$array_index]["ok"];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($existen_agentes == 1){
|
if ($existen_agentes == 1){
|
||||||
$array_index++;
|
$array_index++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($contador_agente==0) {echo "<font class='red'>".$lang_label["no_agent_def"]."</font>";}
|
if ($contador_agente==0) {echo "<font class='red'>".$lang_label["no_agent_def"]."</font>";}
|
||||||
/*
|
|
||||||
for ($a=0; $a < $array_index; $a++)
|
|
||||||
{
|
|
||||||
// Debug, show all groups parsed as valid
|
|
||||||
echo $grupo[$a]['group'];
|
|
||||||
//echo $grupo[$a]["icon"];
|
|
||||||
echo "<br>";
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
//echo "Count ".$contador_grupo."<br><br>";
|
|
||||||
$ancho = ceil(sqrt($array_index+1));
|
$ancho = ceil(sqrt($array_index+1));
|
||||||
|
|
||||||
//echo "DEBUG ANCHO: $ancho <br>";
|
|
||||||
$real_count =0; // Puedo tener una tabla con mas items en ella que los que realmente debo mostrar, real count cuenta los que voy poniendo hasta llegar a array_index que son los que hay en el array $grupo.
|
$real_count =0; // Puedo tener una tabla con mas items en ella que los que realmente debo mostrar, real count cuenta los que voy poniendo hasta llegar a array_index que son los que hay en el array $grupo.
|
||||||
echo "<table border=0 cellpadding=10 cellspacing=10>";
|
echo "<table border=0 cellpadding=10 cellspacing=10>";
|
||||||
for ($table=0;$table < $ancho-1;$table++){
|
for ($table=0;$table < $ancho-1;$table++){
|
||||||
echo "<tr class='bot'>";
|
echo "<tr class='bot'>";
|
||||||
for ($table_row=0;$table_row < $ancho;$table_row++){
|
for ($table_row=0;$table_row < $ancho;$table_row++){
|
||||||
if ($real_count < $array_index){
|
if ($real_count < $array_index){
|
||||||
|
|
||||||
$group_name = $grupo[$real_count]["group"];
|
$group_name = $grupo[$real_count]["group"];
|
||||||
$icono_grupo = $grupo[$real_count]["icon"];
|
$icono_grupo = $grupo[$real_count]["icon"];
|
||||||
$icono_type="";
|
$icono_type="";
|
||||||
@ -125,27 +125,40 @@ echo "<br>";
|
|||||||
if ($grupo[$real_count]["ok"]>0) {
|
if ($grupo[$real_count]["ok"]>0) {
|
||||||
$icono_type=$icono_type."<img src='images/dot_green.gif' alt=''>";
|
$icono_type=$icono_type."<img src='images/dot_green.gif' alt=''>";
|
||||||
}
|
}
|
||||||
|
// Icon with tooltip table inside (Raul)
|
||||||
$celda = "<td class='bot'><a href='index.php?sec=estado&sec2=operation/agentes/estado_agente&refr=60&group_id=".$grupo[$real_count]["id_grupo"]."' class='info'><img class='top' src='images/groups/".$icono_grupo."_1.gif' border='0' alt=''><span>
|
$celda = "<img class='top' src='images/groups/".$icono_grupo."_1.gif' border='0' alt=''><a href='#' class='tip'> <span>";
|
||||||
<table cellspacing='2' cellpadding='0' style='margin-left:20px'>
|
$celda = $celda."<table border='0' cellspacing='2' cellpadding='0'>
|
||||||
<tr><td colspan='2' width='91' class='lb'>".$lang_label["agents"].": </td></tr>
|
<tr><td colspan='2' width='91' class='lb'>".$lang_label["agents"].": </td></tr>
|
||||||
<tr><td colspan='2' class='datos' align='center'><b>".$grupo[$real_count]["agent"]."</b></td></tr></table>
|
<tr><td colspan='2' class='datos' align='center'><b>".$grupo[$real_count]["agent"]."</b></td></tr></table>
|
||||||
<table cellspacing='2' cellpadding='0' style='margin-left:20px'>
|
<table>
|
||||||
<tr><td colspan='2' width='90' class='lb'>".ucfirst($lang_label["monitors"]).":</td></tr>
|
<tr><td colspan='2' width='90' class='lb'>".ucfirst($lang_label["monitors"]).":</td></tr>
|
||||||
<tr><td class='datos'><img src='images/b_green.gif' align='top' alt='' border='0'> ".$lang_label["ok"].": </td><td class='datos'><font class='greenb'>".$grupo[$real_count]["ok"]."</font></td></tr>
|
<tr><td class='datos'><img src='images/b_green.gif' align='top' alt='' border='0'> ".$lang_label["ok"].": </td><td class='datos'><font class='greenb'>".$grupo[$real_count]["ok"]."</font></td></tr>
|
||||||
<tr><td class='datos'><img src='images/b_down.gif' align='top' alt='' border='0'> ".$lang_label["down"].": </td><td class='datos'><font class='grey'>".$grupo[$real_count]["down"]."</font></td></tr>
|
<tr><td class='datos'><img src='images/b_down.gif' align='top' alt='' border='0'> ".$lang_label["down"].": </td><td class='datos'><font class='grey'>".$grupo[$real_count]["down"]."</font></td></tr>
|
||||||
<tr><td class='datos'><img src='images/b_red.gif' align='top' alt='' border='0'> ".$lang_label["fail"].": </td><td class='datos'><font class='redb'>".$grupo[$real_count]["bad"]."</font></td></tr></table>
|
<tr><td class='datos'><img src='images/b_red.gif' align='top' alt='' border='0'> ".$lang_label["fail"].": </td><td class='datos'><font class='redb'>".$grupo[$real_count]["bad"]."</font></td></tr></table>
|
||||||
</span></a><br><br>".$icono_type."<br><br><font class='gr'>".$group_name."</font>";
|
</span></a>";
|
||||||
|
// Render network exec module button, only when this group is writtable by user
|
||||||
|
if (give_acl($id_user, $grupo[$real_count]["id_grupo"], "AW")==1){
|
||||||
|
$celda = $celda . "<a href='index.php?sec=estado&sec2=operation/agentes/estado_grupo&update_netgroup=".$grupo[$real_count]["id_grupo"]."'><img src='images/target.gif' border=0></a>";
|
||||||
|
}
|
||||||
|
$celda = "<td class='bot'><a href='index.php?sec=estado&sec2=operation/agentes/estado_agente&refr=60&group_id=".$grupo[$real_count]["id_grupo"]."'>".$celda."</a><br><br>".$icono_type."<br><br><font class='gr'>".$group_name."</font>";
|
||||||
|
|
||||||
|
$celda = $celda."<table border='0' cellspacing='2' cellpadding='0'>";
|
||||||
|
$celda = $celda."<tr><td colspan='2' width='90' class='lb'>".$lang_label["agents"].": </td></tr>";
|
||||||
|
$celda = $celda."<tr><td colspan='2' class='datos' align='center'><b>".$grupo[$real_count]["agent"]."</b>";
|
||||||
|
$celda = $celda."<tr><td colspan='2' class='lb'>".ucfirst($lang_label["monitors"]).":</td></tr>";
|
||||||
|
$celda = $celda."<tr><td class='datos'><img src='images/b_green.gif' align='top' alt=''> ".$lang_label["ok"].": </td><td class='datos'><font class='greenb'>".$grupo[$real_count]["ok"]."</font></td></tr>";
|
||||||
|
$celda = $celda."<tr><td class='datos'><img src='images/b_down.gif' align='top' alt=''> ".$lang_label["down"].": </td><td class='datos'><font class='grey'>".$grupo[$real_count]["down"]."</font></td></tr>";
|
||||||
|
$celda = $celda."<tr><td class='datos'><img src='images/b_red.gif' align='top' alt=''> ".$lang_label["fail"].": </td><td class='datos'><font class='redb'>".$grupo[$real_count]["bad"]."</font></td></tr>";
|
||||||
|
$celda = $celda."<tr><td colspan='2'><div class='raya'></div></td></tr>";
|
||||||
|
$celda = $celda."</table>";
|
||||||
|
$celda = $celda."</td>";
|
||||||
echo $celda;
|
echo $celda;
|
||||||
}
|
}
|
||||||
$real_count++;
|
$real_count++;
|
||||||
}
|
}
|
||||||
echo "</tr>";
|
echo "</tr>";
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "</table>";
|
echo "</table>";
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
audit_db($id_user,$REMOTE_ADDR, "ACL Violation","Trying to access Agent viewi (Grouped)");
|
audit_db($id_user,$REMOTE_ADDR, "ACL Violation","Trying to access Agent viewi (Grouped)");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user