fusion de Remote v1.4
This commit is contained in:
parent
1c32685ce9
commit
e71efc6638
@ -16,7 +16,7 @@ include_once('ldap_conf.php');
|
|||||||
<link rel="stylesheet" media="screen" type="text/css" title="default" href="default.css">
|
<link rel="stylesheet" media="screen" type="text/css" title="default" href="default.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<p class="header">WINLOG</p>
|
<p class="header">WINLOG-R</p>
|
||||||
<p style="text-align: center"><?php echo($auth_ldap_message); ?>
|
<p style="text-align: center"><?php echo($auth_ldap_message); ?>
|
||||||
<form id="login" name="login" action="login_ldap.php" method="POST">
|
<form id="login" name="login" action="login_ldap.php" method="POST">
|
||||||
<div class="login"><label for="username">Compte : </label><input type="text" id⁼"username" name="username" /></div>
|
<div class="login"><label for="username">Compte : </label><input type="text" id⁼"username" name="username" /></div>
|
||||||
|
@ -3,7 +3,7 @@ include_once('winlog_admin_conf.php');
|
|||||||
include_once('db_access.php');
|
include_once('db_access.php');
|
||||||
|
|
||||||
// Fonction : Connexions_par_salle
|
// Fonction : Connexions_par_salle
|
||||||
// Renvoie les connexions par salle sous la forme d'un Array
|
// Renvoie les connexions par salle sous la forme d'un Array
|
||||||
function Connexions_par_salle($salle) {
|
function Connexions_par_salle($salle) {
|
||||||
$machines_de_salles = Machines_de_salle(Machines());
|
$machines_de_salles = Machines_de_salle(Machines());
|
||||||
$machines_de_ma_salle = $machines_de_salles[$salle];
|
$machines_de_ma_salle = $machines_de_salles[$salle];
|
||||||
@ -21,7 +21,7 @@ function Connexions_par_salle($salle) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $connexions_par_salle;
|
return $connexions_par_salle;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Fonction : Machines()
|
// Fonction : Machines()
|
||||||
@ -54,7 +54,7 @@ function Machines_de_salle(&$machines) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Fonction Connexion_machine()
|
// Fonction Connexion_machine()
|
||||||
// Renvoie un tableau associatif des machines connectées:
|
// Renvoie un tableau associatif des machines connectées:
|
||||||
// connexion_machines[$machine_id]["username"] = $username
|
// connexion_machines[$machine_id]["username"] = $username
|
||||||
// connexion_machines[$machine_id]["ip"] = $ip
|
// connexion_machines[$machine_id]["ip"] = $ip
|
||||||
// connexion_machines[$machine_id]["stamp"] = $stamp
|
// connexion_machines[$machine_id]["stamp"] = $stamp
|
||||||
@ -107,8 +107,8 @@ function Con_ip($ip) {
|
|||||||
while($i < $count) {
|
while($i < $count) {
|
||||||
if ($con[$i]["ip"] == $ip ) {
|
if ($con[$i]["ip"] == $ip ) {
|
||||||
$cpt = Compte($con[$i]["username"]);
|
$cpt = Compte($con[$i]["username"]);
|
||||||
$con_ip = array($con[$i]["con_id"], $con[$i]["username"], $con[$i]["hote"], $con[$i]["stamp"], $cpt[0], $cpt[1], $cpt[2]);
|
$con_ip = array($con[$i]["con_id"], $con[$i]["username"], $con[$i]["hote"], $con[$i]["stamp"], $cpt[0], $cpt[1], $cpt[2]);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
@ -118,7 +118,7 @@ function Con_ip($ip) {
|
|||||||
|
|
||||||
// Fonction : Connexions()
|
// Fonction : Connexions()
|
||||||
// Renvoie les connexions windows en cours du jour
|
// Renvoie les connexions windows en cours du jour
|
||||||
// Retourne un array indexé de connexions :
|
// Retourne un array indexé de connexions :
|
||||||
// con[i]["con_id"] : id de connexion dans la table connexions
|
// con[i]["con_id"] : id de connexion dans la table connexions
|
||||||
// con[i]["username"] : login windows
|
// con[i]["username"] : login windows
|
||||||
// con[i]["hote"] : nom de la machine
|
// con[i]["hote"] : nom de la machine
|
||||||
@ -153,14 +153,14 @@ function Connexions() {
|
|||||||
// last_conn["fin"] : timestamp de la fin de la dernière connexion ( = debut, si connexion non encore terminée)
|
// last_conn["fin"] : timestamp de la fin de la dernière connexion ( = debut, si connexion non encore terminée)
|
||||||
// last_conn["close"] : 0 | 1 booléen indiquant si la connexion est terminée (1=close)
|
// last_conn["close"] : 0 | 1 booléen indiquant si la connexion est terminée (1=close)
|
||||||
// NOTE : la recherche est faite sur les tables connexions ET total_connexions au cas la dernière connexion soit très ancienne
|
// NOTE : la recherche est faite sur les tables connexions ET total_connexions au cas la dernière connexion soit très ancienne
|
||||||
function Derniere_connexion_machine($hote) {
|
function Derniere_connexion_machine($hote) {
|
||||||
$last_conn = array();
|
$last_conn = array();
|
||||||
$db = db_connect();
|
$db = db_connect();
|
||||||
|
|
||||||
$req = '(SELECT username, debut_con, fin_con, close, con_id FROM `connexions` WHERE hote="'.$hote.'")';
|
$req = '(SELECT username, debut_con, fin_con, close, con_id FROM `connexions` WHERE hote="'.$hote.'")';
|
||||||
$req = $req . ' UNION (SELECT username, debut_con, fin_con, 1, con_id FROM `total_connexions` WHERE hote="'.$hote.'")';
|
$req = $req . ' UNION (SELECT username, debut_con, fin_con, 1, con_id FROM `total_connexions` WHERE hote="'.$hote.'")';
|
||||||
$req = $req . ' ORDER BY con_id DESC LIMIT 1';
|
$req = $req . ' ORDER BY con_id DESC LIMIT 1';
|
||||||
$res = db_query($db, $req);
|
$res = db_query($db, $req);
|
||||||
while ($con = db_fetch_row($res)) {
|
while ($con = db_fetch_row($res)) {
|
||||||
$last_conn["username"] = $con[0];
|
$last_conn["username"] = $con[0];
|
||||||
$last_conn["debut"] = $con[1];
|
$last_conn["debut"] = $con[1];
|
||||||
@ -168,11 +168,11 @@ function Derniere_connexion_machine($hote) {
|
|||||||
$last_conn["close"] = $con[3];
|
$last_conn["close"] = $con[3];
|
||||||
}
|
}
|
||||||
db_free($res);
|
db_free($res);
|
||||||
return $last_conn;
|
return $last_conn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Fonction Connexion_doyenne_salle
|
// Fonction Connexion_doyenne_salle
|
||||||
// Renvoie la plus plus ancienne connexion d'une salle :
|
// Renvoie la plus plus ancienne connexion d'une salle :
|
||||||
// renvoie un entier correspondant au nombre de jours depuis la dernière connexion la plus ancienne dans la salle
|
// renvoie un entier correspondant au nombre de jours depuis la dernière connexion la plus ancienne dans la salle
|
||||||
function Connexion_doyenne_salle(&$machines_de_la_salle) {
|
function Connexion_doyenne_salle(&$machines_de_la_salle) {
|
||||||
@ -229,7 +229,7 @@ function PremiereConnexion() {
|
|||||||
// Fonction Connexions_wifi()
|
// Fonction Connexions_wifi()
|
||||||
// Ferme les connexions antérieures au jour courant
|
// Ferme les connexions antérieures au jour courant
|
||||||
// Renvoie les connexions wifi non marquées "close" en base
|
// Renvoie les connexions wifi non marquées "close" en base
|
||||||
// Retourne un array indexé de connexions :
|
// Retourne un array indexé de connexions :
|
||||||
// con_wifi[i]["id"] : id de connexion wifi
|
// con_wifi[i]["id"] : id de connexion wifi
|
||||||
// con_wifi[i]["username"] : login CAS
|
// con_wifi[i]["username"] : login CAS
|
||||||
// con_wifi[i]["ip"] : ip allouée
|
// con_wifi[i]["ip"] : ip allouée
|
||||||
@ -242,7 +242,7 @@ function Connexions_wifi() {
|
|||||||
$db = db_connect();
|
$db = db_connect();
|
||||||
|
|
||||||
$req_close = "UPDATE wifi SET close = 1 WHERE DATE(wifi_deb_conn) < CURDATE()";
|
$req_close = "UPDATE wifi SET close = 1 WHERE DATE(wifi_deb_conn) < CURDATE()";
|
||||||
$req = "SELECT wifi_id, wifi_username, wifi_ip, wifi_browser, wifi_deb_conn, prenom, nom FROM wifi, comptes WHERE close = 0 AND username = wifi_username ORDER BY wifi_deb_conn DESC";
|
$req = "SELECT wifi_id, wifi_username, wifi_ip, wifi_browser, wifi_deb_conn, prenom, nom, groupe FROM wifi, comptes WHERE close = 0 AND username = wifi_username ORDER BY wifi_deb_conn DESC";
|
||||||
|
|
||||||
db_query($db, $req_close);
|
db_query($db, $req_close);
|
||||||
$res = db_query($db, $req);
|
$res = db_query($db, $req);
|
||||||
@ -255,11 +255,12 @@ function Connexions_wifi() {
|
|||||||
$connexions_wifi[$i]["debut"] = $con[4];
|
$connexions_wifi[$i]["debut"] = $con[4];
|
||||||
$connexions_wifi[$i]["prenom"] = $con[5];
|
$connexions_wifi[$i]["prenom"] = $con[5];
|
||||||
$connexions_wifi[$i]["nom"] = $con[6];
|
$connexions_wifi[$i]["nom"] = $con[6];
|
||||||
|
$connexions_wifi[$i]["groupe"] = $con[7];
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
db_free($res);
|
db_free($res);
|
||||||
return $connexions_wifi;
|
return $connexions_wifi;
|
||||||
}
|
}
|
||||||
|
|
||||||
// function Connexions_blacklist_live($delay, $machines)
|
// function Connexions_blacklist_live($delay, $machines)
|
||||||
@ -285,17 +286,17 @@ function Connexions_blacklist_live($delay, &$machines) {
|
|||||||
$connexions_bl_live[$i]["salle"] = null;
|
$connexions_bl_live[$i]["salle"] = null;
|
||||||
// si la connexion vient d'une machine connue d'une salle
|
// si la connexion vient d'une machine connue d'une salle
|
||||||
// on récupère le nom de la machine et de la salle
|
// on récupère le nom de la machine et de la salle
|
||||||
if ($log[3]) {
|
if ($log[3]) {
|
||||||
$connexions_bl_live[$i]["salle"] = $machines[$log[3]][0];
|
$connexions_bl_live[$i]["salle"] = $machines[$log[3]][0];
|
||||||
}
|
}
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
db_free($res);
|
db_free($res);
|
||||||
return $connexions_bl_live;
|
return $connexions_bl_live;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fonction ArchiveConnexions() :
|
// Fonction ArchiveConnexions() :
|
||||||
// Ferme les connexions encore ouvertes des jours antérieurs au jour courant dans la table connexions
|
// Ferme les connexions encore ouvertes des jours antérieurs au jour courant dans la table connexions
|
||||||
// Copie toutes les connexions fermées des jours antérieurs dans la table total_connexions
|
// Copie toutes les connexions fermées des jours antérieurs dans la table total_connexions
|
||||||
// Purge les connexions copiées de la table connexions
|
// Purge les connexions copiées de la table connexions
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 20px 20px 20px ;
|
padding: 20px 20px 20px ;
|
||||||
background-color: transparent;
|
background-color: aliceblue;
|
||||||
color: #505050;
|
color: #505050;
|
||||||
font-family: arial, helvetica, sans-serif ;
|
font-family: arial, helvetica, sans-serif ;
|
||||||
font-size: 12pt ;
|
font-size: 12pt ;
|
||||||
@ -9,7 +9,7 @@ body {
|
|||||||
|
|
||||||
td { padding-left: 30px; }
|
td { padding-left: 30px; }
|
||||||
|
|
||||||
a{ text-decoration: none; color: cadetBlue;}
|
a{ text-decoration: none; color: royalblue;}
|
||||||
|
|
||||||
#menu_salles {
|
#menu_salles {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
@ -17,7 +17,7 @@ a{ text-decoration: none; color: cadetBlue;}
|
|||||||
top: 0;
|
top: 0;
|
||||||
padding: 5px 20px;
|
padding: 5px 20px;
|
||||||
width: 70%;
|
width: 70%;
|
||||||
background-color: Beige;
|
background-color: palegoldenrod;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,13 +15,22 @@ switch ($auth_mode) {
|
|||||||
}
|
}
|
||||||
$username = $_SESSION['username'];
|
$username = $_SESSION['username'];
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "CAS":
|
case "CAS":
|
||||||
// la session PHP est déjà démarrée par la lib phpCAS.
|
// la session PHP est déjà démarrée par la lib phpCAS.
|
||||||
include('libhome.php');
|
include('libhome.php');
|
||||||
$username = phpCAS::getUser();
|
$username = phpCAS::getUser();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case "LDAP":
|
||||||
|
session_start();
|
||||||
|
if (!isset($_SESSION['username'])) {
|
||||||
|
header('Location: authentification_ldap.php');
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
$username = $_SESSION['username'];
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
header('Location: interdit.php');
|
header('Location: interdit.php');
|
||||||
exit();
|
exit();
|
||||||
@ -44,13 +53,13 @@ if ($nb_archives > 0) {
|
|||||||
?>
|
?>
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="fr">
|
<html lang="fr">
|
||||||
<head>
|
<head>
|
||||||
<title>Winlog</title>
|
<title>Winlog</title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<link rel="stylesheet" media="screen" type="text/css" title="default" href="default.css">
|
<link rel="stylesheet" media="screen" type="text/css" title="default" href="default.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<p class="header">WINLOG</p>
|
<p class="header">WINLOG-R</p>
|
||||||
<p>compte : <i><?php echo($username); ?></i><br/>rôle : <i><?php echo($role); ?></i></p>
|
<p>compte : <i><?php echo($username); ?></i><br/>rôle : <i><?php echo($role); ?></i></p>
|
||||||
<h3>Monitoring</h3>
|
<h3>Monitoring</h3>
|
||||||
<div class="menu"><a href="salles_live.php">Connexion Windows en cours dans les salles</a></div>
|
<div class="menu"><a href="salles_live.php">Connexion Windows en cours dans les salles</a></div>
|
||||||
@ -68,14 +77,14 @@ if ($nb_archives > 0) {
|
|||||||
<?php
|
<?php
|
||||||
if ($profil == $niveaux[$roles[3]]) { ?>
|
if ($profil == $niveaux[$roles[3]]) { ?>
|
||||||
<h3>Gestion</h3>
|
<h3>Gestion</h3>
|
||||||
<div class="menu"><a href="scripts_clients.php">Génération des fichiers VBS</a> : re-génére les fichiers de scripts clients à déployer dans les GPO de Active Directory.</div>
|
<div class="menu"><a href="scripts_clients.php">Génération des fichiers VBS</a> : re-génére les fichiers de scripts clients à déployer dans les GPO de Active Directory.</div>
|
||||||
<div class="menu"><a href="recup_comptes.php">Rechargement des comptes</a> : recharge tous les comptes utilisateurs depuis Active Directory.</div>
|
<div class="menu"><a href="recup_comptes.php">Rechargement des comptes</a> : recharge tous les comptes utilisateurs depuis Active Directory.</div>
|
||||||
<div class="menu"><a href="recup_salles.php?p=u">Ajout/mise à jour de machines ou de salles</a> : ajoute les nouvelles salles ou machines et met à jour les existantes.</div>
|
<div class="menu"><a href="recup_salles.php?p=u">Ajout/mise à jour de machines ou de salles</a> : ajoute les nouvelles salles ou machines et met à jour les existantes.</div>
|
||||||
<br/>
|
<br/>
|
||||||
<div class="menu"><a href="recup_salles.php">Rechargement intégral des machines et des salles</a> <i>(attention : ràz de toutes les machines)</i> : à faire quand les machines ou les salles ont changé de nom par exemple.</div>
|
<div class="menu"><a href="recup_salles.php">Rechargement intégral des machines et des salles</a> <i>(attention : ràz de toutes les machines)</i> : à faire quand les machines ou les salles ont changé de nom par exemple.</div>
|
||||||
<p id="msg_archive"><?php echo($msg_archive); ?></p>
|
<p id="msg_archive"><?php echo($msg_archive); ?></p>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<p class="footer">version <?php echo($winlog_version); ?></p>
|
<p class="footer">version <?php echo($winlog_version); ?></p>
|
||||||
</body>
|
</body>
|
||||||
|
@ -19,7 +19,7 @@ $role = $roles[$profil];
|
|||||||
<?php
|
<?php
|
||||||
if ($profil >= $niveaux[$roles[1]]) {
|
if ($profil >= $niveaux[$roles[1]]) {
|
||||||
?>
|
?>
|
||||||
<p>Peut-être souhaitez-vous simplement voir les <a href="ma_salle_live.php">connexions en cours de votre salle de cours</a> ?</p>
|
<p>Peut-être souhaitez-vous simplement voir les <a href="ma_salle_live.php">connexions en cours de votre salle informatique</a> ?</p>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
@ -9,5 +9,5 @@ $auth_ldap_basedn = "DC=iut,DC=local"; // D
|
|||||||
$auth_ldap_port = "636"; // port du serveur : 636 (ldaps) recommandé
|
$auth_ldap_port = "636"; // port du serveur : 636 (ldaps) recommandé
|
||||||
$auth_ldap_attribut_identifier = "sAMAccountName"; // attribut identifiant d'un compte dans l'annuaire
|
$auth_ldap_attribut_identifier = "sAMAccountName"; // attribut identifiant d'un compte dans l'annuaire
|
||||||
$auth_ldap_AD = true; // le serveur LDAP est-il un serveur AD ?
|
$auth_ldap_AD = true; // le serveur LDAP est-il un serveur AD ?
|
||||||
$auth_ldap_message = "Veuillez vous authentifier avec votre compte et votre mode passe Windows"; // message sur le formulaire d'authentification LDAP
|
= "Veuillez vous authentifier avec votre compte et votre mode passe Windows"; // message sur le formulaire d'authentification LDAP
|
||||||
?>
|
?>
|
||||||
|
@ -37,6 +37,9 @@ $ram = $machine[10];
|
|||||||
$procSpeed = $machine[11];
|
$procSpeed = $machine[11];
|
||||||
$diskSize = $machine[12];
|
$diskSize = $machine[12];
|
||||||
$freeSpace = $machine[13];
|
$freeSpace = $machine[13];
|
||||||
|
|
||||||
|
$mac_json = json_encode(array($mac_addr));
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="fr">
|
<html lang="fr">
|
||||||
@ -79,9 +82,13 @@ $freeSpace = $machine[13];
|
|||||||
?>
|
?>
|
||||||
<form action="stop.php" method="POST">
|
<form action="stop.php" method="POST">
|
||||||
<input type="hidden" name="host" value='<?php echo($host_json); ?>'>
|
<input type="hidden" name="host" value='<?php echo($host_json); ?>'>
|
||||||
|
<input type="hidden" name="mac" value='<?php echo($mac_json); ?>'>
|
||||||
<!--<input type="submit" value="fermer la session" name="stop">-->
|
<!--<input type="submit" value="fermer la session" name="stop">-->
|
||||||
<input type="submit" value="redémarrer cette machine" name="stop">
|
<input type="submit" value="redémarrer cette machine" name="stop">
|
||||||
<input type="submit" value="éteindre cette machine" name="stop">
|
<input type="submit" value="éteindre cette machine" name="stop">
|
||||||
|
<input type="submit" value="allumer cette machine" name="stop">
|
||||||
|
<input type="submit" value="start processus distant" name="stop">
|
||||||
|
<input type="submit" value="stop processus distant" name="stop">
|
||||||
</form>
|
</form>
|
||||||
<br/>
|
<br/>
|
||||||
<?php
|
<?php
|
||||||
|
@ -61,9 +61,9 @@ function RechercheConnexions(&$db) {
|
|||||||
$date_fin_24 = "$isodate_f 23:59:59";
|
$date_fin_24 = "$isodate_f 23:59:59";
|
||||||
$where = $where . $and . " debut_con >= \"{$date_debut_00}\" AND fin_con <= \"{$date_fin_24}\"";
|
$where = $where . $and . " debut_con >= \"{$date_debut_00}\" AND fin_con <= \"{$date_fin_24}\"";
|
||||||
$contrainte = true;
|
$contrainte = true;
|
||||||
$liste_const = $liste_const. "du <i>$date_debut</i> au <i>$date_fin</i><br/>";
|
$liste_const = $liste_const. "du <i>$date_debut</i> au <i>$date_fin</i><br/>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elseif ($date_debut != "") {
|
elseif ($date_debut != "") {
|
||||||
// transformation de la date JJ/MM/AAAA en date iso AAAA-MM-JJ
|
// transformation de la date JJ/MM/AAAA en date iso AAAA-MM-JJ
|
||||||
$tab_deb = explode("/", $date_debut);
|
$tab_deb = explode("/", $date_debut);
|
||||||
@ -74,8 +74,8 @@ function RechercheConnexions(&$db) {
|
|||||||
$date_debut_24 = "$isodate_d 23:59:59";
|
$date_debut_24 = "$isodate_d 23:59:59";
|
||||||
$where = $where . $and . " debut_con >= \"{$date_debut_00}\" AND fin_con <= \"{$date_debut_24}\"";
|
$where = $where . $and . " debut_con >= \"{$date_debut_00}\" AND fin_con <= \"{$date_debut_24}\"";
|
||||||
$contrainte = true;
|
$contrainte = true;
|
||||||
$liste_const = $liste_const. "date : <i>$date_debut</i><br/>";
|
$liste_const = $liste_const. "date : <i>$date_debut</i><br/>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$contrainte) {
|
if (!$contrainte) {
|
||||||
@ -90,7 +90,7 @@ function RechercheConnexions(&$db) {
|
|||||||
// fonction RechercheUtilisateurs : renvoie un tableau de résultats contenant les utilisateurs demandés
|
// fonction RechercheUtilisateurs : renvoie un tableau de résultats contenant les utilisateurs demandés
|
||||||
function RechercheUtilisateurs(&$db) {
|
function RechercheUtilisateurs(&$db) {
|
||||||
global $_POST;
|
global $_POST;
|
||||||
global $liste_const;
|
global $liste_const;
|
||||||
|
|
||||||
$compte = db_escape_string($db, $_POST["compte"]);
|
$compte = db_escape_string($db, $_POST["compte"]);
|
||||||
$nom = db_escape_string($db, $_POST["nom"]);
|
$nom = db_escape_string($db, $_POST["nom"]);
|
||||||
@ -122,7 +122,7 @@ function RechercheUtilisateurs(&$db) {
|
|||||||
$where = $where . $and . "groupe LIKE \"{$groupe}\"";
|
$where = $where . $and . "groupe LIKE \"{$groupe}\"";
|
||||||
$contrainte = true;
|
$contrainte = true;
|
||||||
$liste_const = $liste_const. "groupe = <i>$groupe</i><br/>";
|
$liste_const = $liste_const. "groupe = <i>$groupe</i><br/>";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$contrainte) {
|
if (!$contrainte) {
|
||||||
return false;
|
return false;
|
||||||
@ -137,7 +137,7 @@ function RechercheUtilisateurs(&$db) {
|
|||||||
// fonction RechercheMachines : renvoie un tableau de résultats contenant les machines demandées
|
// fonction RechercheMachines : renvoie un tableau de résultats contenant les machines demandées
|
||||||
function RechercheMachines(&$db) {
|
function RechercheMachines(&$db) {
|
||||||
global $_POST;
|
global $_POST;
|
||||||
global $liste_const;
|
global $liste_const;
|
||||||
|
|
||||||
$machine = db_escape_string($db, $_POST["machine"]);
|
$machine = db_escape_string($db, $_POST["machine"]);
|
||||||
$salle = db_escape_string($db, $_POST["salle"]);
|
$salle = db_escape_string($db, $_POST["salle"]);
|
||||||
@ -177,13 +177,13 @@ function RechercheMachines(&$db) {
|
|||||||
$where = $where . $and . "sp LIKE \"{$sp}\"";
|
$where = $where . $and . "sp LIKE \"{$sp}\"";
|
||||||
$contrainte = true;
|
$contrainte = true;
|
||||||
$liste_const = $liste_const. "Service Pack = <i>$sp</i><br/>";
|
$liste_const = $liste_const. "Service Pack = <i>$sp</i><br/>";
|
||||||
}
|
}
|
||||||
if ($os_version != "") {
|
if ($os_version != "") {
|
||||||
$and = ($contrainte) ? " AND " : "";
|
$and = ($contrainte) ? " AND " : "";
|
||||||
$where = $where . $and . "os_version LIKE \"{$os_version}\"";
|
$where = $where . $and . "os_version LIKE \"{$os_version}\"";
|
||||||
$contrainte = true;
|
$contrainte = true;
|
||||||
$liste_const = $liste_const. "version OS = <i>$os_version</i><br/>";
|
$liste_const = $liste_const. "version OS = <i>$os_version</i><br/>";
|
||||||
}
|
}
|
||||||
if ($ip != "") {
|
if ($ip != "") {
|
||||||
$and = ($contrainte) ? " AND " : "";
|
$and = ($contrainte) ? " AND " : "";
|
||||||
$where = $where . $and . "adresse_ip LIKE \"{$ip}\"";
|
$where = $where . $and . "adresse_ip LIKE \"{$ip}\"";
|
||||||
@ -201,7 +201,7 @@ function RechercheMachines(&$db) {
|
|||||||
$where = $where . $and . "modele LIKE \"{$modele}\"";
|
$where = $where . $and . "modele LIKE \"{$modele}\"";
|
||||||
$contrainte = true;
|
$contrainte = true;
|
||||||
$liste_const = $liste_const. "modèle = <i>$modele</i><br/>";
|
$liste_const = $liste_const. "modèle = <i>$modele</i><br/>";
|
||||||
}
|
}
|
||||||
if ($arch != "") {
|
if ($arch != "") {
|
||||||
$and = ($contrainte) ? " AND " : "";
|
$and = ($contrainte) ? " AND " : "";
|
||||||
$where = $where . $and . "type_systeme LIKE \"{$arch}\"";
|
$where = $where . $and . "type_systeme LIKE \"{$arch}\"";
|
||||||
@ -213,13 +213,13 @@ function RechercheMachines(&$db) {
|
|||||||
$where = $where . $and . "mac LIKE \"{$mac}\"";
|
$where = $where . $and . "mac LIKE \"{$mac}\"";
|
||||||
$contrainte = true;
|
$contrainte = true;
|
||||||
$liste_const = $liste_const. "adresse MAC = <i>$mac</i><br/>";
|
$liste_const = $liste_const. "adresse MAC = <i>$mac</i><br/>";
|
||||||
}
|
}
|
||||||
if ($iface != "") {
|
if ($iface != "") {
|
||||||
$and = ($contrainte) ? " AND " : "";
|
$and = ($contrainte) ? " AND " : "";
|
||||||
$where = $where . $and . "mac_description LIKE \"{$iface}\"";
|
$where = $where . $and . "mac_description LIKE \"{$iface}\"";
|
||||||
$contrainte = true;
|
$contrainte = true;
|
||||||
$liste_const = $liste_const. "carte réseau = <i>$iface</i><br/>";
|
$liste_const = $liste_const. "carte réseau = <i>$iface</i><br/>";
|
||||||
}
|
}
|
||||||
if (!$contrainte) {
|
if (!$contrainte) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -234,18 +234,19 @@ function RechercheMachines(&$db) {
|
|||||||
// fonction RechercheWifi : renvoie un tableau de résultats contenant les connexions Wifi demandées
|
// fonction RechercheWifi : renvoie un tableau de résultats contenant les connexions Wifi demandées
|
||||||
function RechercheWifi(&$db) {
|
function RechercheWifi(&$db) {
|
||||||
global $_POST;
|
global $_POST;
|
||||||
global $liste_const;
|
global $liste_const;
|
||||||
|
|
||||||
$compte = db_escape_string($db, $_POST["compte"]);
|
$compte = db_escape_string($db, $_POST["compte"]);
|
||||||
$nom = db_escape_string($db, $_POST["nom"]);
|
$nom = db_escape_string($db, $_POST["nom"]);
|
||||||
$prenom = db_escape_string($db, $_POST["prenom"]);
|
$prenom = db_escape_string($db, $_POST["prenom"]);
|
||||||
|
$groupe = db_escape_string($db, $_POST["groupe"]);
|
||||||
$ip = db_escape_string($db, $_POST["ip"]);
|
$ip = db_escape_string($db, $_POST["ip"]);
|
||||||
$browser = db_escape_string($db, $_POST["browser"]);
|
$browser = db_escape_string($db, $_POST["browser"]);
|
||||||
$date_debut = db_escape_string($db, $_POST["date_debut"]);
|
$date_debut = db_escape_string($db, $_POST["date_debut"]);
|
||||||
$date_fin = db_escape_string($db, $_POST["date_fin"]);
|
$date_fin = db_escape_string($db, $_POST["date_fin"]);
|
||||||
$contrainte = false;
|
$contrainte = false;
|
||||||
|
|
||||||
$req_wifi = "SELECT nom AS 'Nom', prenom AS 'Prénom', wifi_username AS 'Compte', wifi_ip AS 'Adresse IP', wifi_browser AS 'Browser/Device', wifi_deb_conn AS 'Heure connexion', close AS 'Fermée ?'";
|
$req_wifi = "SELECT nom AS 'Nom', prenom AS 'Prénom', wifi_username AS 'Compte', groupe AS 'Groupe', wifi_ip AS 'Adresse IP', wifi_browser AS 'Browser/Device', wifi_deb_conn AS 'Heure connexion', close AS 'Fermée ?'";
|
||||||
$req_wifi = $req_wifi." FROM wifi, comptes WHERE wifi_username = username ";
|
$req_wifi = $req_wifi." FROM wifi, comptes WHERE wifi_username = username ";
|
||||||
$where = "";
|
$where = "";
|
||||||
if ($compte != "") {
|
if ($compte != "") {
|
||||||
@ -263,6 +264,11 @@ function RechercheWifi(&$db) {
|
|||||||
$liste_const = $liste_const. "prénom = <i>$prenom</i><br/>";
|
$liste_const = $liste_const. "prénom = <i>$prenom</i><br/>";
|
||||||
$contrainte = true;
|
$contrainte = true;
|
||||||
}
|
}
|
||||||
|
if ($groupe != "") {
|
||||||
|
$where = $where . " AND groupe LIKE \"{$groupe}\"";
|
||||||
|
$liste_const = $liste_const. "groupe = <i>$groupe</i><br/>";
|
||||||
|
$contrainte = true;
|
||||||
|
}
|
||||||
if ($ip != "") {
|
if ($ip != "") {
|
||||||
$where = $where ." AND wifi_ip LIKE \"{$ip}\"";
|
$where = $where ." AND wifi_ip LIKE \"{$ip}\"";
|
||||||
$liste_const = $liste_const. "adresse IP = <i>$ip</i><br/>";
|
$liste_const = $liste_const. "adresse IP = <i>$ip</i><br/>";
|
||||||
@ -284,9 +290,9 @@ function RechercheWifi(&$db) {
|
|||||||
$date_fin_24 = "$isodate_f 23:59:59";
|
$date_fin_24 = "$isodate_f 23:59:59";
|
||||||
$where = $where . " AND wifi_deb_conn >= \"{$date_debut_00}\" AND wifi_deb_conn <= \"{$date_fin_24}\"";
|
$where = $where . " AND wifi_deb_conn >= \"{$date_debut_00}\" AND wifi_deb_conn <= \"{$date_fin_24}\"";
|
||||||
$liste_const = $liste_const. "du <i>$date_debut</i> au <i>$date_fin</i><br/>";
|
$liste_const = $liste_const. "du <i>$date_debut</i> au <i>$date_fin</i><br/>";
|
||||||
$contrainte = true;
|
$contrainte = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elseif ($date_debut != "") {
|
elseif ($date_debut != "") {
|
||||||
// transformation de la date JJ/MM/AAAA en date iso AAAA-MM-JJ
|
// transformation de la date JJ/MM/AAAA en date iso AAAA-MM-JJ
|
||||||
$tab_deb = explode("/", $date_debut);
|
$tab_deb = explode("/", $date_debut);
|
||||||
@ -295,10 +301,10 @@ function RechercheWifi(&$db) {
|
|||||||
$date_debut_00 = "$isodate_d 00:00:00";
|
$date_debut_00 = "$isodate_d 00:00:00";
|
||||||
$date_debut_24 = "$isodate_d 23:59:59";
|
$date_debut_24 = "$isodate_d 23:59:59";
|
||||||
$where = $where . " AND wifi_deb_conn >= \"{$date_debut_00}\" AND wifi_deb_conn <= \"{$date_debut_24}\"";
|
$where = $where . " AND wifi_deb_conn >= \"{$date_debut_00}\" AND wifi_deb_conn <= \"{$date_debut_24}\"";
|
||||||
$liste_const = $liste_const. "date : <i>$date_debut</i><br/>";
|
$liste_const = $liste_const. "date : <i>$date_debut</i><br/>";
|
||||||
$contrainte = true;
|
$contrainte = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!$contrainte) {
|
if (!$contrainte) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -325,7 +331,7 @@ function FormatteResultats(&$db, &$res) {
|
|||||||
$r = $r . "<tr class=\"$li_coul\"><td>$cpt</td>";
|
$r = $r . "<tr class=\"$li_coul\"><td>$cpt</td>";
|
||||||
foreach($li as $col) {
|
foreach($li as $col) {
|
||||||
$r = $r . "<td>$col</td>";
|
$r = $r . "<td>$col</td>";
|
||||||
}
|
}
|
||||||
$r = $r . "</tr>\n";
|
$r = $r . "</tr>\n";
|
||||||
$cpt = $cpt + 1;
|
$cpt = $cpt + 1;
|
||||||
}
|
}
|
||||||
@ -376,7 +382,7 @@ else {
|
|||||||
?>
|
?>
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="fr">
|
<html lang="fr">
|
||||||
<head>
|
<head>
|
||||||
<title>Winlog</title>
|
<title>Winlog</title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<link rel="stylesheet" media="screen" type="text/css" title="default" href="default.css">
|
<link rel="stylesheet" media="screen" type="text/css" title="default" href="default.css">
|
||||||
@ -395,4 +401,3 @@ else {
|
|||||||
<p class="footer">version <?php echo($winlog_version); ?></p>
|
<p class="footer">version <?php echo($winlog_version); ?></p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
@ -11,24 +11,25 @@ FiltreProfil($profil);
|
|||||||
|
|
||||||
$connexions_wifi = Connexions_wifi();
|
$connexions_wifi = Connexions_wifi();
|
||||||
$html = "<p><i>Nb connexions déjà établies : ". count($connexions_wifi);
|
$html = "<p><i>Nb connexions déjà établies : ". count($connexions_wifi);
|
||||||
$html = $html . "<table>\n<th>nom</th><th>prénom</th><th>compte</th><th>heure connexion</th><th>adresse IP</th><th>browser</th><th>id connexion</th>\n";
|
$html = $html . "<table>\n<th>nom</th><th>prénom</th><th>compte</th><th>groupe</th><th>heure connexion</th><th>adresse IP</th><th>browser</th><th>id connexion</th>\n";
|
||||||
$lignes = "";
|
$lignes = "";
|
||||||
$pair = false;
|
$pair = false;
|
||||||
|
$bold = "style=\"font-weight: bold;\"";
|
||||||
foreach ($connexions_wifi as $i => $con_wifi) {
|
foreach ($connexions_wifi as $i => $con_wifi) {
|
||||||
$nom = $con_wifi["nom"];
|
$nom = $con_wifi["nom"];
|
||||||
$prenom = $con_wifi["prenom"];
|
$prenom = $con_wifi["prenom"];
|
||||||
$username = $con_wifi["username"];
|
$username = $con_wifi["username"];
|
||||||
|
$groupe = $con_wifi["groupe"];
|
||||||
$debut = $con_wifi["debut"];
|
$debut = $con_wifi["debut"];
|
||||||
$ip = $con_wifi["ip"];
|
$ip = $con_wifi["ip"];
|
||||||
$browser = $con_wifi["browser"];
|
$browser = $con_wifi["browser"];
|
||||||
$id = $con_wifi["id"];
|
$id = $con_wifi["id"];
|
||||||
$style = ($pair) ? "even" : "odd";
|
$style = ($pair) ? "even" : "odd";
|
||||||
$lignes = $lignes . "<tr class=\"$style\"><td>$nom</td><td>$prenom</td><td>$username</td><td>$debut</td><td>$ip</td><td>$browser</td><td>$id</td></tr>\n";
|
$weight = ($groupe == $lib_personnel) ? $bold : "";
|
||||||
|
$lignes = $lignes . "<tr class=\"$style\" $weight><td>$nom</td><td>$prenom</td><td>$username</td><td>$groupe</td><td>$debut</td><td>$ip</td><td>$browser</td><td>$id</td></tr>\n";
|
||||||
$pair = !$pair;
|
$pair = !$pair;
|
||||||
}
|
}
|
||||||
|
|
||||||
$html = $html . $lignes . "</table>\n";
|
$html = $html . $lignes . "</table>\n";
|
||||||
echo($html);
|
echo($html);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
@ -54,34 +54,30 @@ $hauteur_salle["A102"] = 570;
|
|||||||
$orix["A102"] = 20;
|
$orix["A102"] = 20;
|
||||||
$oriy["A102"] = 50;
|
$oriy["A102"] = 50;
|
||||||
$largeur["A102"] = 120;
|
$largeur["A102"] = 120;
|
||||||
$hauteur["A102"] = 60;
|
$hauteur["A102"] = 50;
|
||||||
$police["A102"] = 11;
|
$police["A102"] = 11;
|
||||||
|
|
||||||
|
|
||||||
$orientation["A102"][0]="H";
|
$orientation["A102"][0]="V";
|
||||||
$ligne_coord["A102"][0] = array(0, 0);
|
$ligne_coord["A102"][0] = array(100, 100);
|
||||||
$ligne_machines["A102"][0] = array('A102D1','A102D2','A102D3','A102D4', 'A102D5','A102D6','A102D7');
|
$ligne_machines["A102"][0] = array('A102Z1','A102A1');
|
||||||
$shift["A102"][0] = 20;
|
$shift["A102"][0] = 10;
|
||||||
|
|
||||||
$orientation["A102"][1]="H";
|
$orientation["A102"][1]="V";
|
||||||
$ligne_coord["A102"][1] = array(50, 70);
|
$ligne_coord["A102"][1] = array(300, 0);
|
||||||
$ligne_machines["A102"][1] = array('A102Z1','A102C1','A102C2','A102C3','A102C4','A102C5','A102C6');
|
$ligne_machines["A102"][1] = array('A102B8','A102B7','A102B6','A102B5','A102B4','A102B3','A102B2','A102B1');
|
||||||
$shift["A102"][1] = 20;
|
$shift["A102"][1] = 10;
|
||||||
|
|
||||||
$orientation["A102"][2]="H";
|
$orientation["A102"][2]="V";
|
||||||
$ligne_coord["A102"][2] = array(50, 200);
|
$ligne_coord["A102"][2] = array(500, 0);
|
||||||
$ligne_machines["A102"][2] = array('A102B1','A102B2','A102B3','A102B4','A102B5','A102B6');
|
$ligne_machines["A102"][2] = array('A102C8','A102C7','A102C6','A102C5','A102C4','A102C3','A102C2','A102C1');
|
||||||
$shift["A102"][2] = 20;
|
$shift["A102"][2] = 10;
|
||||||
|
|
||||||
$orientation["A102"][3]="H";
|
$orientation["A102"][3]="V";
|
||||||
$ligne_coord["A102"][3] = array(0, 270);
|
$ligne_coord["A102"][3] = array(700, 0);
|
||||||
$ligne_machines["A102"][3] = array('A102A1','A102A2','A102A3','A102A4','A102A5','A102A6', 'A102A7');
|
$ligne_machines["A102"][3] = array('A102D8','A102D7','A102D6','A102D5','A102D4','A102D3','A102D2','A102D1');
|
||||||
$shift["A102"][3] = 20;
|
$shift["A102"][3] = 10;
|
||||||
|
|
||||||
$orientation["A102"][4]="H";
|
|
||||||
$ligne_coord["A102"][4] = array(400, 400);
|
|
||||||
$ligne_machines["A102"][4] = array('A102B7');
|
|
||||||
$shift["A102"][4] = 20;
|
|
||||||
|
|
||||||
$orien_porte["A102"][0]="H";
|
$orien_porte["A102"][0]="H";
|
||||||
$porte_coord["A102"][0]=array(100,500);
|
$porte_coord["A102"][0]=array(100,500);
|
||||||
|
@ -60,15 +60,15 @@ $hauteur["A103"] = 60;
|
|||||||
|
|
||||||
$orientation["A103"][0]="V";
|
$orientation["A103"][0]="V";
|
||||||
$ligne_coord["A103"][0] = array(0, 0);
|
$ligne_coord["A103"][0] = array(0, 0);
|
||||||
$ligne_machines["A103"][0] = array('VM-A10307','VM-A10308','VM-A10309','VM-A10310');
|
$ligne_machines["A103"][0] = array('A103A4','A103A3','A103A2','A103A1','A103A11');
|
||||||
$shift["A103"][0] = 20;
|
$shift["A103"][0] = 20;
|
||||||
$orientation["A103"][1]="V";
|
$orientation["A103"][1]="V";
|
||||||
$ligne_coord["A103"][1] = array(300, 0);
|
$ligne_coord["A103"][1] = array(300, 0);
|
||||||
$ligne_machines["A103"][1] = array('VM-A10305','VM-A10304','VM-A10303','VM-A10302','VM-A10301');
|
$ligne_machines["A103"][1] = array('A103A6','A103A7','A103A8','A103A9','A103A10','A103A12');
|
||||||
$shift["A103"][1] = 20;
|
$shift["A103"][1] = 20;
|
||||||
$orientation["A103"][2]="H";
|
$orientation["A103"][2]="H";
|
||||||
$ligne_coord["A103"][2] = array(140, 0);
|
$ligne_coord["A103"][2] = array(140, 0);
|
||||||
$ligne_machines["A103"][2] = array('VM-A10306');
|
$ligne_machines["A103"][2] = array('A103A5');
|
||||||
$shift["A103"][2] = 20;
|
$shift["A103"][2] = 20;
|
||||||
|
|
||||||
$orien_porte["A103"][0]="H";
|
$orien_porte["A103"][0]="H";
|
||||||
|
@ -59,42 +59,42 @@ $police["A200"] = 11;
|
|||||||
|
|
||||||
$orientation["A200"][0]="V";
|
$orientation["A200"][0]="V";
|
||||||
$ligne_coord["A200"][0] = array(0, 0);
|
$ligne_coord["A200"][0] = array(0, 0);
|
||||||
$ligne_machines["A200"][0] = array('VM-A20024','VM-A20023','VM-A20022','VM-A20021');
|
$ligne_machines["A200"][0] = array('A200F4','A200F3','A200F2','A200F1');
|
||||||
$shift["A200"][0] = 20;
|
$shift["A200"][0] = 20;
|
||||||
|
|
||||||
$orientation["A200"][1]="V";
|
$orientation["A200"][1]="V";
|
||||||
$ligne_coord["A200"][1] = array(130, 0);
|
$ligne_coord["A200"][1] = array(130, 0);
|
||||||
$ligne_machines["A200"][1] = array('VM-A20020','VM-A20019','VM-A20018','VM-A20017');
|
$ligne_machines["A200"][1] = array('A200E4','A200E3','A200E2','A200E1');
|
||||||
$shift["A200"][1] = 20;
|
$shift["A200"][1] = 20;
|
||||||
|
|
||||||
$orientation["A200"][2]="V";
|
$orientation["A200"][2]="V";
|
||||||
$ligne_coord["A200"][2] = array(300, 0);
|
$ligne_coord["A200"][2] = array(300, 0);
|
||||||
$ligne_machines["A200"][2] = array('VM-A20016','VM-A20015','VM-A20014','VM-A20013');
|
$ligne_machines["A200"][2] = array('A200D4','A200D3','A200D2','A200D1');
|
||||||
$shift["A200"][2] = 20;
|
$shift["A200"][2] = 20;
|
||||||
|
|
||||||
$orientation["A200"][3]="V";
|
$orientation["A200"][3]="V";
|
||||||
$ligne_coord["A200"][3] = array(430, 0);
|
$ligne_coord["A200"][3] = array(430, 0);
|
||||||
$ligne_machines["A200"][3] = array('VM-A20012','VM-A20011','VM-A20010','VM-A20009');
|
$ligne_machines["A200"][3] = array('A200C4','A200C3','A200C2','A200C1');
|
||||||
$shift["A200"][3] = 20;
|
$shift["A200"][3] = 20;
|
||||||
|
|
||||||
$orientation["A200"][4]="V";
|
$orientation["A200"][4]="V";
|
||||||
$ligne_coord["A200"][4] = array(600, 0);
|
$ligne_coord["A200"][4] = array(600, 0);
|
||||||
$ligne_machines["A200"][4] = array('VM-A20008','VM-A20007','VM-A20006','VM-A20005');
|
$ligne_machines["A200"][4] = array('A200B4','A200B3','A200B2','A200B1');
|
||||||
$shift["A200"][4] = 20;
|
$shift["A200"][4] = 20;
|
||||||
|
|
||||||
$orientation["A200"][5]="V";
|
$orientation["A200"][5]="V";
|
||||||
$ligne_coord["A200"][5] = array(730, 0);
|
$ligne_coord["A200"][5] = array(730, 0);
|
||||||
$ligne_machines["A200"][5] = array('VM-A20004','VM-A20003','VM-A20002','VM-A20001');
|
$ligne_machines["A200"][5] = array('A200A4','A200A3','A200A2','A200A1');
|
||||||
$shift["A200"][5] = 20;
|
$shift["A200"][5] = 20;
|
||||||
|
|
||||||
$orientation["A200"][6]="H";
|
$orientation["A200"][6]="H";
|
||||||
$ligne_coord["A200"][6] = array(0, 370);
|
$ligne_coord["A200"][6] = array(0, 370);
|
||||||
$ligne_machines["A200"][6] = array('VM-A20030','VM-A20028','VM-A20027','VM-A20026','VM-A20025');
|
$ligne_machines["A200"][6] = array('A200G4','A200G3','A200G2','A200G1');
|
||||||
$shift["A200"][6] = 20;
|
$shift["A200"][6] = 20;
|
||||||
|
|
||||||
$orientation["A200"][7]="H";
|
$orientation["A200"][7]="H";
|
||||||
$ligne_coord["A200"][7] = array(500, 450);
|
$ligne_coord["A200"][7] = array(100, 450);
|
||||||
$ligne_machines["A200"][7] = array('VM-A20029');
|
$ligne_machines["A200"][7] = array('A200H3','A200H2','A200H1','A200Z1');
|
||||||
$shift["A200"][7] = 20;
|
$shift["A200"][7] = 20;
|
||||||
|
|
||||||
$orien_porte["A200"][0]="V";
|
$orien_porte["A200"][0]="V";
|
||||||
|
@ -84,7 +84,7 @@ $shift["A205"][4] = 20;
|
|||||||
|
|
||||||
$orientation["A205"][5]="V";
|
$orientation["A205"][5]="V";
|
||||||
$ligne_coord["A205"][5] = array(730, 80);
|
$ligne_coord["A205"][5] = array(730, 80);
|
||||||
$ligne_machines["A205"][5] = array('A205F4','A205F3','A205F2','A205F1');
|
$ligne_machines["A205"][5] = array('A205F3','A205F2','A205F1','A205Z1');
|
||||||
$shift["A205"][5] = 20;
|
$shift["A205"][5] = 20;
|
||||||
|
|
||||||
$orien_porte["A205"][0]="H";
|
$orien_porte["A205"][0]="H";
|
||||||
|
@ -59,27 +59,27 @@ $police["A307"] = 11;
|
|||||||
|
|
||||||
$orientation["A307"][0]="V";
|
$orientation["A307"][0]="V";
|
||||||
$ligne_coord["A307"][0] = array(0, 0);
|
$ligne_coord["A307"][0] = array(0, 0);
|
||||||
$ligne_machines["A307"][0] = array('VM-A307028','VM-A307027','VM-A307026','VM-A307025','VM-A307024','VM-A307023','VM-A307022');
|
$ligne_machines["A307"][0] = array('A307D7','A307D6','A307D5','A307D4','A307D3','A307D2','A307D1');
|
||||||
$shift["A307"][0] = 20;
|
$shift["A307"][0] = 20;
|
||||||
|
|
||||||
$orientation["A307"][1]="V";
|
$orientation["A307"][1]="V";
|
||||||
$ligne_coord["A307"][1] = array(160, 0);
|
$ligne_coord["A307"][1] = array(160, 0);
|
||||||
$ligne_machines["A307"][1] = array('VM-A307021','VM-A307020','VM-A307019','VM-A307018','VM-A307017','VM-A307016','VM-A307015');
|
$ligne_machines["A307"][1] = array('A307C7','A307C6','A307C5','A307C4','A307C3','A307C2','A307C1');
|
||||||
$shift["A307"][1] = 20;
|
$shift["A307"][1] = 20;
|
||||||
|
|
||||||
$orientation["A307"][2]="V";
|
$orientation["A307"][2]="V";
|
||||||
$ligne_coord["A307"][2] = array(320, 0);
|
$ligne_coord["A307"][2] = array(320, 0);
|
||||||
$ligne_machines["A307"][2] = array('VM-A307014','VM-A307013','VM-A307012','VM-A307011','VM-A307010','VM-A307009','VM-A307008');
|
$ligne_machines["A307"][2] = array('A307B7','A307B6','A307B5','A307B4','A307B3','A307B2','A307B1');
|
||||||
$shift["A307"][2] = 20;
|
$shift["A307"][2] = 20;
|
||||||
|
|
||||||
$orientation["A307"][3]="V";
|
$orientation["A307"][3]="V";
|
||||||
$ligne_coord["A307"][3] = array(480, 0);
|
$ligne_coord["A307"][3] = array(480, 0);
|
||||||
$ligne_machines["A307"][3] = array('VM-A307007','VM-A307006','VM-A307005','VM-A307004','VM-A307003','VM-A307002','VM-A307001');
|
$ligne_machines["A307"][3] = array('A307A7','A307A6','A307A5','A307A4','A307A3','A307A2','A307A1');
|
||||||
$shift["A307"][3] = 20;
|
$shift["A307"][3] = 20;
|
||||||
|
|
||||||
$orientation["A307"][4]="H";
|
$orientation["A307"][4]="H";
|
||||||
$ligne_coord["A307"][4] = array(640, 240);
|
$ligne_coord["A307"][4] = array(640, 240);
|
||||||
$ligne_machines["A307"][4] = array('VM-A307029');
|
$ligne_machines["A307"][4] = array('A307Z1');
|
||||||
$shift["A307"][4] = 20;
|
$shift["A307"][4] = 20;
|
||||||
|
|
||||||
$orien_porte["A307"][0]="H";
|
$orien_porte["A307"][0]="H";
|
||||||
|
@ -79,7 +79,7 @@ $shift["B501"][3] = 20;
|
|||||||
|
|
||||||
$orientation["B501"][4]="V";
|
$orientation["B501"][4]="V";
|
||||||
$ligne_coord["B501"][4] = array(780, 130);
|
$ligne_coord["B501"][4] = array(780, 130);
|
||||||
$ligne_machines["B501"][4] = array('B501Z1','B501E3','B501E4','B501E5','B501E6');
|
$ligne_machines["B501"][4] = array('B501Z1','B501E3','B501E4');
|
||||||
$shift["B501"][4] = 20;
|
$shift["B501"][4] = 20;
|
||||||
|
|
||||||
$orien_porte["B501"][0]="V";
|
$orien_porte["B501"][0]="V";
|
||||||
|
@ -59,14 +59,26 @@ $police["C200"] = 11;
|
|||||||
|
|
||||||
$orientation["C200"][0]="V";
|
$orientation["C200"][0]="V";
|
||||||
$ligne_coord["C200"][0] = array(0, 0);
|
$ligne_coord["C200"][0] = array(0, 0);
|
||||||
$ligne_machines["C200"][0] = array('C2001','C2002','C2003','C2004');
|
$ligne_machines["C200"][0] = array('C2009');
|
||||||
$shift["C200"][0] = 80;
|
$shift["C200"][0] = 1;
|
||||||
|
|
||||||
$orientation["C200"][1]="V";
|
$orientation["C200"][1]="V";
|
||||||
$ligne_coord["C200"][1] = array(400, 200);
|
$ligne_coord["C200"][1] = array(400, 200);
|
||||||
$ligne_machines["C200"][1] = array('C2005','C2006','C2007','C2008','C2009');
|
$ligne_machines["C200"][1] = array('C2004','C2003','C2002','C2001');
|
||||||
$shift["C200"][1] = 20;
|
$shift["C200"][1] = 20;
|
||||||
|
|
||||||
|
$orientation["C200"][2]="V";
|
||||||
|
$ligne_coord["C200"][2] = array(0, 150);
|
||||||
|
$ligne_machines["C200"][2] = array('C2008','C2007');
|
||||||
|
$shift["C200"][2] = 10;
|
||||||
|
|
||||||
|
$orientation["C200"][3]="V";
|
||||||
|
$ligne_coord["C200"][3] = array(0, 400);
|
||||||
|
$ligne_machines["C200"][3] = array('C2006','C2005');
|
||||||
|
$shift["C200"][3] = 10;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$orien_porte["C200"][0]="V";
|
$orien_porte["C200"][0]="V";
|
||||||
$porte_coord["C200"][0]=array(550,0);
|
$porte_coord["C200"][0]=array(550,0);
|
||||||
|
@ -57,36 +57,38 @@ $largeur["CRDOC"] = 120;
|
|||||||
$hauteur["CRDOC"] = 60;
|
$hauteur["CRDOC"] = 60;
|
||||||
$police["CRDOC"] = 11;
|
$police["CRDOC"] = 11;
|
||||||
|
|
||||||
|
/*
|
||||||
$orientation["CRDOC"][0]="V";
|
$orientation["CRDOC"][0]="V";
|
||||||
$ligne_coord["CRDOC"][0] = array(0, 0);
|
$ligne_coord["CRDOC"][0] = array(0, 0);
|
||||||
$ligne_machines["CRDOC"][0] = array('VM-CRDOC11','VM-CRDOC12');
|
$ligne_machines["CRDOC"][0] = array('VM-CRDOC11','VM-CRDOC12');
|
||||||
$shift["CRDOC"][0] = 20;
|
$shift["CRDOC"][0] = 20;
|
||||||
|
*/
|
||||||
|
|
||||||
|
$orientation["CRDOC"][0]="V";
|
||||||
|
$ligne_coord["CRDOC"][0] = array(0, 0);
|
||||||
|
$ligne_machines["CRDOC"][0] = array('CRDOC12','CRDOC11');
|
||||||
|
$shift["CRDOC"][0] = 20;
|
||||||
|
|
||||||
$orientation["CRDOC"][1]="V";
|
$orientation["CRDOC"][1]="V";
|
||||||
$ligne_coord["CRDOC"][1] = array(250, 0);
|
$ligne_coord["CRDOC"][1] = array(250, 0);
|
||||||
$ligne_machines["CRDOC"][1] = array('VM-CRDOC10');
|
$ligne_machines["CRDOC"][1] = array('CRDOC10');
|
||||||
$shift["CRDOC"][1] = 20;
|
$shift["CRDOC"][1] = 20;
|
||||||
|
|
||||||
$orientation["CRDOC"][2]="H";
|
$orientation["CRDOC"][2]="H";
|
||||||
$ligne_coord["CRDOC"][2] = array(500, 150);
|
$ligne_coord["CRDOC"][2] = array(500, 150);
|
||||||
$ligne_machines["CRDOC"][2] = array('VM-CRDOC01','VM-CRDOC02','VM-CRDOC03');
|
$ligne_machines["CRDOC"][2] = array('CRDOC01','CRDOC02','CRDOC03');
|
||||||
$shift["CRDOC"][2] = 20;
|
$shift["CRDOC"][2] = 20;
|
||||||
|
|
||||||
$orientation["CRDOC"][3]="V";
|
$orientation["CRDOC"][3]="V";
|
||||||
$ligne_coord["CRDOC"][3] = array(900, 220);
|
$ligne_coord["CRDOC"][3] = array(900, 220);
|
||||||
$ligne_machines["CRDOC"][3] = array('VM-CRDOC04','VM-CRDOC05','VM-CRDOC06');
|
$ligne_machines["CRDOC"][3] = array('CRDOC04','CRDOC05','CRDOC06');
|
||||||
$shift["CRDOC"][3] = 20;
|
$shift["CRDOC"][3] = 20;
|
||||||
|
|
||||||
$orientation["CRDOC"][4]="H";
|
$orientation["CRDOC"][4]="H";
|
||||||
$ligne_coord["CRDOC"][4] = array(500, 450);
|
$ligne_coord["CRDOC"][4] = array(500, 450);
|
||||||
$ligne_machines["CRDOC"][4] = array('VM-CRDOC09','VM-CRDOC08','VM-CRDOC07');
|
$ligne_machines["CRDOC"][4] = array('CRDOC09','CRDOC08','CRDOC07');
|
||||||
$shift["CRDOC"][4] = 20;
|
$shift["CRDOC"][4] = 20;
|
||||||
|
|
||||||
$orientation["CRDOC"][5]="V";
|
|
||||||
$ligne_coord["CRDOC"][5] = array(250, 600);
|
|
||||||
$ligne_machines["CRDOC"][5] = array('PCCRDOC');
|
|
||||||
$shift["CRDOC"][5] = 20;
|
|
||||||
|
|
||||||
$orien_porte["CRDOC"][0]="V";
|
$orien_porte["CRDOC"][0]="V";
|
||||||
$porte_coord["CRDOC"][0]=array(0,250);
|
$porte_coord["CRDOC"][0]=array(0,250);
|
||||||
|
|
||||||
|
@ -49,37 +49,37 @@
|
|||||||
|
|
||||||
$orix_salle["batA"] = 50;
|
$orix_salle["batA"] = 50;
|
||||||
$oriy_salle["batA"] = 200;
|
$oriy_salle["batA"] = 200;
|
||||||
$largeur_salle["batA"] = 900;
|
$largeur_salle["batA"] = 1200;
|
||||||
$hauteur_salle["batA"] = 570;
|
$hauteur_salle["batA"] = 570;
|
||||||
$orix["batA"] = 100;
|
$orix["batA"] = 20;
|
||||||
$oriy["batA"] = 10;
|
$oriy["batA"] = 10;
|
||||||
$largeur["batA"] = 120;
|
$largeur["batA"] = 120;
|
||||||
$hauteur["batA"] = 60;
|
$hauteur["batA"] = 60;
|
||||||
$police["batA"] = 11;
|
$police["batA"] = 11;
|
||||||
|
|
||||||
$orientation["batA"][0]="H";
|
$orientation["batA"][0]="H";
|
||||||
$ligne_coord["batA"][0] = array(0, 0);
|
$ligne_coord["batA"][0] = array(100, 0);
|
||||||
$ligne_machines["batA"][0] = array('PCAMPHI2');
|
$ligne_machines["batA"][0] = array('PCAMPHI2');
|
||||||
$shift["batA"][0] = 20;
|
$shift["batA"][0] = 10;
|
||||||
|
|
||||||
$orientation["batA"][1]="H";
|
$orientation["batA"][1]="H";
|
||||||
$ligne_coord["batA"][1] = array(50, 70);
|
$ligne_coord["batA"][1] = array(0, 70);
|
||||||
$ligne_machines["batA"][1] = array('PCACCUEIL','PCSECGESTION');
|
$ligne_machines["batA"][1] = array('PCINFIRMERIE');
|
||||||
$shift["batA"][1] = 20;
|
$shift["batA"][1] = 10;
|
||||||
|
|
||||||
$orientation["batA"][2]="H";
|
$orientation["batA"][2]="H";
|
||||||
$ligne_coord["batA"][2] = array(50, 200);
|
$ligne_coord["batA"][2] = array(700, 70);
|
||||||
$ligne_machines["batA"][2] = array('PCCRDOC','PCPRET1W7','PCPRET2');
|
$ligne_machines["batA"][2] = array('PCSERIEYS17', 'PCSERIEYS17DOC', 'PCGAUTIER17DOC');
|
||||||
$shift["batA"][2] = 20;
|
$shift["batA"][2] = 10;
|
||||||
|
|
||||||
$orientation["batA"][3]="H";
|
$orientation["batA"][3]="H";
|
||||||
$ligne_coord["batA"][3] = array(0, 270);
|
$ligne_coord["batA"][3] = array(0, 200);
|
||||||
$ligne_machines["batA"][3] = array('PCAYRALW7','PCDEVILLERS','PCSECINFO');
|
$ligne_machines["batA"][3] = array('PCLIBREVISIO','PCLIBREINFO171','PCLIBREINFO172', 'PCDEVILLERS17','PCSERVIERES17','PCSECINFO17');
|
||||||
$shift["batA"][3] = 20;
|
$shift["batA"][3] = 20;
|
||||||
|
|
||||||
$orientation["batA"][4]="H";
|
$orientation["batA"][4]="H";
|
||||||
$ligne_coord["batA"][4] = array(400, 400);
|
$ligne_coord["batA"][4] = array(400, 400);
|
||||||
$ligne_machines["batA"][4] = array('PBADMINSYS');
|
$ligne_machines["batA"][4] = array('PCVIALA','PBADMINSYS', 'PCPRADEL17', 'PCPELAMOURGUES', 'PCSECQLIO16');
|
||||||
$shift["batA"][4] = 20;
|
$shift["batA"][4] = 20;
|
||||||
|
|
||||||
$orien_porte["batA"][0]="H";
|
$orien_porte["batA"][0]="H";
|
||||||
|
@ -49,19 +49,24 @@
|
|||||||
|
|
||||||
$orix_salle["batB"] = 50;
|
$orix_salle["batB"] = 50;
|
||||||
$oriy_salle["batB"] = 200;
|
$oriy_salle["batB"] = 200;
|
||||||
$largeur_salle["batB"] = 600;
|
$largeur_salle["batB"] = 950;
|
||||||
$hauteur_salle["batB"] = 570;
|
$hauteur_salle["batB"] = 570;
|
||||||
$orix["batB"] = 10;
|
$orix["batB"] = 10;
|
||||||
$oriy["batB"] = 15;
|
$oriy["batB"] = 15;
|
||||||
$largeur["batB"] = 120;
|
$largeur["batB"] = 150;
|
||||||
$hauteur["batB"] = 60;
|
$hauteur["batB"] = 60;
|
||||||
$police["batB"] = 11;
|
$police["batB"] = 11;
|
||||||
|
|
||||||
$orientation["batB"][0]="H";
|
$orientation["batB"][0]="H";
|
||||||
$ligne_coord["batB"][0] = array(0, 0);
|
$ligne_coord["batB"][0] = array(0, 0);
|
||||||
$ligne_machines["batB"][0] = array('PCDONNEZ');
|
$ligne_machines["batB"][0] = array('PCSECGEA', 'PCSECGESTION-CJ', 'PCSECGESTION', 'PCMAS2', 'PCLIBRECJ17');
|
||||||
$shift["batB"][0] = 20;
|
$shift["batB"][0] = 20;
|
||||||
|
|
||||||
|
$orientation["batB"][1]="H";
|
||||||
|
$ligne_coord["batB"][1] = array(0, 80);
|
||||||
|
$ligne_machines["batB"][1] = array('PCDONNEZ');
|
||||||
|
$shift["batB"][1] = 20;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$orien_porte["batB"][0]="H";
|
$orien_porte["batB"][0]="H";
|
||||||
|
@ -49,28 +49,28 @@
|
|||||||
|
|
||||||
$orix_salle["batC"] = 50;
|
$orix_salle["batC"] = 50;
|
||||||
$oriy_salle["batC"] = 200;
|
$oriy_salle["batC"] = 200;
|
||||||
$largeur_salle["batC"] = 500;
|
$largeur_salle["batC"] = 1000;
|
||||||
$hauteur_salle["batC"] = 500;
|
$hauteur_salle["batC"] = 500;
|
||||||
$orix["batC"] = 10;
|
$orix["batC"] = 10;
|
||||||
$oriy["batC"] = 10;
|
$oriy["batC"] = 10;
|
||||||
$largeur["batC"] = 120;
|
$largeur["batC"] = 135;
|
||||||
$hauteur["batC"] = 60;
|
$hauteur["batC"] = 60;
|
||||||
$police["batC"] = 11;
|
$police["batC"] = 11;
|
||||||
|
|
||||||
$orientation["batC"][0]="H";
|
$orientation["batC"][0]="H";
|
||||||
$ligne_coord["batC"][0] = array(0, 0);
|
$ligne_coord["batC"][0] = array(60,0);
|
||||||
$ligne_machines["batC"][0] = array('PCSTANDARD');
|
$ligne_machines["batC"][0] = array('PCINTENDANCE17','PBPOUGET18','PBVRANCKX17','PCCARTEMUT','PCCOURBOU', 'PCMOLINIERC17');
|
||||||
$shift["batC"][0] = 20;
|
$shift["batC"][0] = 20;
|
||||||
|
|
||||||
$orientation["batC"][1]="H";
|
$orientation["batC"][1]="H";
|
||||||
$ligne_coord["batC"][1] = array(50, 70);
|
$ligne_coord["batC"][1] = array(500, 400);
|
||||||
$ligne_machines["batC"][1] = array('PCSECINFOCOM');
|
$ligne_machines["batC"][1] = array('PCSECINFOCOM');
|
||||||
$shift["batC"][1] = 20;
|
$shift["batC"][1] = 20;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$orien_porte["batC"][0]="H";
|
$orien_porte["batC"][0]="V";
|
||||||
$porte_coord["batC"][0]=array(100,450);
|
$porte_coord["batC"][0]=array(0,80);
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -28,6 +28,15 @@ function Machines_plan(&$ligne_machines) {
|
|||||||
return $machines_de_la_salle;
|
return $machines_de_la_salle;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// fonction renvoyant les adresses mac des machines de la salle
|
||||||
|
function AdressesMac_plan(&$hosts) {
|
||||||
|
$machines = Machines();
|
||||||
|
$macs_de_la_salle = array();
|
||||||
|
foreach($hosts as $host) {
|
||||||
|
$macs_de_la_salle[] = $machines[$host][8];
|
||||||
|
}
|
||||||
|
return $macs_de_la_salle;
|
||||||
|
}
|
||||||
|
|
||||||
// fonction d'affichage du plan 2D d'une salle
|
// fonction d'affichage du plan 2D d'une salle
|
||||||
function Affiche_plan_salle(&$machines_de_la_salle, &$portes) {
|
function Affiche_plan_salle(&$machines_de_la_salle, &$portes) {
|
||||||
@ -104,8 +113,10 @@ function Affiche_plan_salle(&$machines_de_la_salle, &$portes) {
|
|||||||
if ($profil > 0) {
|
if ($profil > 0) {
|
||||||
include_once($salle.'.php');
|
include_once($salle.'.php');
|
||||||
$machines_du_plan = Machines_plan($ligne_machines[$salle]);
|
$machines_du_plan = Machines_plan($ligne_machines[$salle]);
|
||||||
|
$macs_du_plan = AdressesMac_plan($machines_du_plan);
|
||||||
$portes = $porte_coord[$salle];
|
$portes = $porte_coord[$salle];
|
||||||
$host_json = json_encode($machines_du_plan);
|
$host_json = json_encode($machines_du_plan);
|
||||||
|
$mac_json = json_encode($macs_du_plan);
|
||||||
|
|
||||||
$info_cours = ' <a href="../salles_live.php">[retour]</a>';
|
$info_cours = ' <a href="../salles_live.php">[retour]</a>';
|
||||||
echo("<h3>Salle ".$salle.$info_cours."</h3>");
|
echo("<h3>Salle ".$salle.$info_cours."</h3>");
|
||||||
@ -114,6 +125,10 @@ if ($profil > 0) {
|
|||||||
//$form = $form.'<input type="submit" value="fermer toutes les sessions" name="stop">';
|
//$form = $form.'<input type="submit" value="fermer toutes les sessions" name="stop">';
|
||||||
$form = $form.'<input type="submit" value="redémarrer toute la salle" name="stop"><input type="submit" value="éteindre toute la salle" name="stop">';
|
$form = $form.'<input type="submit" value="redémarrer toute la salle" name="stop"><input type="submit" value="éteindre toute la salle" name="stop">';
|
||||||
$form = $form.'<input type="hidden" name="host" value=\''.$host_json.'\'>';
|
$form = $form.'<input type="hidden" name="host" value=\''.$host_json.'\'>';
|
||||||
|
$form = $form.'<input type="hidden" name="mac" value=\''.$mac_json.'\'>';
|
||||||
|
$form = $form.'<input type="submit" value="démarrer toute la salle" name="stop">';
|
||||||
|
$form = $form.'<input type="submit" value="start processus distant" name="stop">';
|
||||||
|
$form = $form.'<input type="submit" value="stop processus distant" name="stop">';
|
||||||
$form = $form.'</form>';
|
$form = $form.'</form>';
|
||||||
echo $form;
|
echo $form;
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,8 @@ $username = Username();
|
|||||||
$profil = Profil($username);
|
$profil = Profil($username);
|
||||||
FiltreProfil($profil);
|
FiltreProfil($profil);
|
||||||
|
|
||||||
|
$url = $url_stop;
|
||||||
|
|
||||||
if ($profil == $niveaux[$roles[3]]) {
|
if ($profil == $niveaux[$roles[3]]) {
|
||||||
|
|
||||||
$act = "";
|
$act = "";
|
||||||
@ -19,14 +21,23 @@ if ($profil == $niveaux[$roles[3]]) {
|
|||||||
$eteindre_salle = "éteindre toute la salle";
|
$eteindre_salle = "éteindre toute la salle";
|
||||||
$restart = "redémarrer cette machine";
|
$restart = "redémarrer cette machine";
|
||||||
$restart_salle = "redémarrer toute la salle";
|
$restart_salle = "redémarrer toute la salle";
|
||||||
|
$start_process = "start processus distant";
|
||||||
|
$stop_process = "stop processus distant";
|
||||||
|
$start_machine = "allumer cette machine";
|
||||||
|
$start_salle = "démarrer toute la salle";
|
||||||
|
|
||||||
$action_logout = array($logout, $logout_salle);
|
$action_logout = array($logout, $logout_salle);
|
||||||
$action_stop = array($eteindre, $eteindre_salle);
|
$action_stop = array($eteindre, $eteindre_salle);
|
||||||
$action_restart = array($restart, $restart_salle);
|
$action_restart = array($restart, $restart_salle);
|
||||||
|
$action_start_remote = array($start_process);
|
||||||
|
$action_stop_remote = array($stop_process);
|
||||||
|
$action_wake = array($start_machine, $start_salle);
|
||||||
|
|
||||||
$action = $_POST["stop"];
|
$action = $_POST["stop"];
|
||||||
$host_json = $_POST["host"]; // on récupère une chaîne de caractères représentant un tableau json
|
$host_json = $_POST["host"]; // on récupère une chaîne de caractères représentant un tableau json
|
||||||
|
$mac_json = $_POST["mac"];
|
||||||
$hosts = json_decode($host_json);
|
$hosts = json_decode($host_json);
|
||||||
|
$macs = json_decode($mac_json);
|
||||||
|
|
||||||
// on choisit la valeur de l'option à passer à la commande shutdown sur Ghost
|
// on choisit la valeur de l'option à passer à la commande shutdown sur Ghost
|
||||||
if (in_array($action, $action_logout)) {
|
if (in_array($action, $action_logout)) {
|
||||||
@ -38,12 +49,28 @@ if ($profil == $niveaux[$roles[3]]) {
|
|||||||
if (in_array($action, $action_restart)) {
|
if (in_array($action, $action_restart)) {
|
||||||
$act = "r";
|
$act = "r";
|
||||||
}
|
}
|
||||||
|
if (in_array($action, $action_start_remote)) {
|
||||||
|
$act = "p";
|
||||||
|
$url = $rpc_url;
|
||||||
|
}
|
||||||
|
if (in_array($action, $action_stop_remote)) {
|
||||||
|
$act = "k";
|
||||||
|
$url = $rpc_url;
|
||||||
|
}
|
||||||
|
if (in_array($action, $action_wake)) {
|
||||||
|
$act = "w";
|
||||||
|
$url = $wake_url;
|
||||||
|
}
|
||||||
if ($act != "") {
|
if ($act != "") {
|
||||||
foreach ($hosts as $host) {
|
foreach ($hosts as $key => $host) {
|
||||||
PostURL($url_stop, array('act'=>$act, 'host'=>$host));
|
//echo $host . " " . $mac[$key]. "<br/>";
|
||||||
|
PostURL($url, array('act'=>$act, 'host'=>$host, 'mac'=>$macs[$key]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
header('Location: salles_live.php');
|
if ($url == $url_stop) {
|
||||||
?>
|
header('Location: salles_live.php');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
header('Location: '.$_SERVER['HTTP_REFERER']);
|
||||||
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
include_once('admin/winlog_admin_conf.php');
|
include_once('admin/winlog_admin_conf.php');
|
||||||
include_once('admin/db_access.php');
|
include_once('admin/db_access.php');
|
||||||
|
include_once('admin/client_http.php');
|
||||||
|
|
||||||
// ne traiter que sur des requêtes POST sur le port 443
|
// ne traiter que sur des requêtes POST sur le port 443
|
||||||
if ( $_SERVER["REQUEST_METHOD"] == "POST" && $_SERVER["SERVER_PORT"] == "443" && strcmp(addslashes($_POST["code"]), addslashes($server_code)) == 0 ) {
|
if ( $_SERVER["REQUEST_METHOD"] == "POST" && $_SERVER["SERVER_PORT"] == "443" && strcmp(addslashes($_POST["code"]), addslashes($server_code)) == 0 ) {
|
||||||
@ -30,10 +31,13 @@ if ( $_SERVER["REQUEST_METHOD"] == "POST" && $_SERVER["SERVER_PORT"] == "443" &&
|
|||||||
db_query($db, $req_purge_C); // on commence par purger avant de créer une connexion
|
db_query($db, $req_purge_C); // on commence par purger avant de créer une connexion
|
||||||
db_query($db, $req_con_C); // nouvelle connexion
|
db_query($db, $req_con_C); // nouvelle connexion
|
||||||
db_query($db, $req_ip_machine); // update IP de la machine
|
db_query($db, $req_ip_machine); // update IP de la machine
|
||||||
|
PostURL($rpc_url, array('act'=>'k', 'host'=>$computer)); // kill processus distant
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "D":
|
case "D":
|
||||||
db_query($db, $req_con_D); // déconnexion
|
db_query($db, $req_con_D); // déconnexion
|
||||||
|
PostURL($rpc_url, array('act'=>'k', 'host'=>$computer));
|
||||||
|
PostURL($rpc_url, array('act'=>'p', 'host'=>$computer)); // start processus distant
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "M":
|
case "M":
|
||||||
|
Loading…
x
Reference in New Issue
Block a user