Subversion Repositories ALCASAR

Rev

Go to most recent revision | Blame | Last modification | View Log

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><!-- written by Rexy -->
<head>
<META HTTP-EQUIV="Refresh" CONTENT="30">
<meta http-equiv="Content-Type" content="text/html; charset=$config[general_charset]">
<title>&Eacute;tat du r&eacute;seau</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
<?
# Choice of language
$Language = 'en';
if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){
  $Langue = explode(",",$_SERVER['HTTP_ACCEPT_LANGUAGE']);
  $Language = strtolower(substr(chop($Langue[0]),0,2)); }
if($Language == 'fr'){
  $l_activity = "Activit&eacute; sur le r&eacute;seau de consultation";
  $l_ip_adr = "Adresse IP";
  $l_mac_adr = "Adresse MAC";
  $l_user = "Usager";
  $l_mac_allowed = "@MAC autoris&eacute;e";
  $l_action = "Action";
  $l_dissociate = "Dissocier";
  $l_disconnect = "D&eacute;connecter";
  $l_refresh = "Cette page est rafraichie toutes les 30 secondes";
}
else {
  $l_activity = "Activity on the consultation LAN";
  $l_ip_adr = "IP Adress";
  $l_mac_adr = "MAC Adress";
  $l_user = "User";
  $l_mac_allowed = "@MAC allowed";
  $l_action = "Action";
  $l_dissociate = "Dissociate";
  $l_disconnect = "Disconnect";
  $l_refresh = "This frame is refreshed every 30'";
}
echo "
<tr><th>$l_activity</th></tr>
<tr bgcolor=\"#FFCC66\"><td><img src=\"/images/pix.gif\" width=\"1\"
height=\"2\"></td></tr>
</TABLE>";
if (isset($_POST['action'])){
        switch ($_POST['action']){
                case 'user_unconnect' :
                        exec ("sudo /usr/local/sbin/alcasar-logout.sh $_POST[user]");
                        unset ($_POST['user']);
                        unset ($_POST['choix']);
                break;
                case 'mac_unconnect' :
                        exec ("sudo /usr/sbin/chilli_query logout $_POST[mac_addr]");
                        unset ($_POST['mac_addr']);
                        unset ($_POST['choix']);
                break;
        }
}
?>
<TABLE width="100%" border=1 cellspacing=0 cellpadding=1>
        <tr><td valign="middle" align="left">
        <center>
<? echo "$l_refresh";?>
        <table border=1 width="80%" bordercolordark="#ffffe0" bordercolorlight="#000000" width="100%" cellpadding=2 cellspacing=0 bgcolor="#ffffe0" valign=top>
                <tr bgcolor="#d0ddb0">
<? echo "
                <th>#</th>
                <th>$l_ip_adr</th>
                <th>$l_mac_adr</th>
                <th>$l_user</th>
                <th>$l_action</th>
                </tr>";
                $output = array(); $nb_ligne = 0;
                exec ('sudo /usr/sbin/chilli_query list|sort -k5 -r', $output);
                while (list(,$ligne) = each($output)){
                        $detail = explode (" ", $ligne);
                        if ($detail[1] != "0.0.0.0"){
                                $nb_ligne ++;
                                echo "<FORM action='".$_SERVER['PHP_SELF']."' method=POST>";
                                echo "<TR>";
                                echo "<TD>"; echo $nb_ligne; echo "</TD>";
                                echo "<TD>"; echo $detail[1]; echo "</TD>";
                                echo "<TD>"; echo $detail[0]; echo "</TD>";
                                echo "<TD>";
                                # station authorisée 
                                if ($detail[4] == "1"){
                                # par @MAC
                                        if ($detail[5] == "-"){
                                                echo "$l_mac_allowed</TD><TD>&nbsp;";}
                                # par usager authentifié
                                        else {
                                                echo "<a href=\"/manager/htdocs/user_admin.php?login=$detail[5]\" title=\"Editer l'utilisateur $detail[5]\">$detail[5]</a>";
                                                echo "</TD>";
                                                echo "<TD>";
                                                echo "<INPUT type='hidden' name='action' value='mac_unconnect'>";
                                                echo "<INPUT type='hidden' name='user' value='$detail[5]'>";
                                                echo "<INPUT type='hidden' name='mac_addr' value='$detail[0]'>";
                                                echo "<INPUT type=submit value='$l_disconnect'>";
                                                }
                                        }
                                # station sans usager connecté
                                else { 
                                        echo "&nbsp;";
                                        echo "</TD>";
                                        echo "<TD>";
                                        echo "<INPUT type='hidden' name='action' value='mac_unconnect'>";
                                        echo "<INPUT type='hidden' name='mac_addr' value='$detail[0]'>";
                                        echo "<INPUT type='submit' value='$l_dissociate'>";
                                }
                                echo "</TD></TR></FORM>";
                        }
                }
                ?>
                </td></tr>
        </table>
        </td></tr>
</table>
</html>