452 |
richard |
1 |
<?php
|
958 |
franck |
2 |
# $Id: index.php 1820 2016-04-07 13:59:46Z raphael.pion $
|
1249 |
richard |
3 |
#
|
1287 |
richard |
4 |
# index.php for ALCASAR captive portal
|
1249 |
richard |
5 |
# by REXY
|
|
|
6 |
# UI & css style by stephane ERARD
|
|
|
7 |
# The contents of this file may be used under the terms of the GNU
|
|
|
8 |
# General Public License Version 2, provided that the above copyright
|
|
|
9 |
# notice and this permission notice is included in all copies or
|
|
|
10 |
# substantial portions of the software.
|
|
|
11 |
/****************************************************************
|
|
|
12 |
* GLOBAL FILE PATHS *
|
|
|
13 |
*****************************************************************/
|
|
|
14 |
define ("CONF_FILE", "/usr/local/etc/alcasar.conf");
|
|
|
15 |
|
|
|
16 |
/****************************************************************
|
|
|
17 |
* FILE reading test *
|
|
|
18 |
*****************************************************************/
|
|
|
19 |
$conf_files=array(CONF_FILE);
|
|
|
20 |
foreach ($conf_files as $file){
|
|
|
21 |
if (!file_exists($file)){
|
|
|
22 |
exit("File ".$file." unknown");
|
|
|
23 |
}
|
|
|
24 |
if (!is_readable($file)){
|
|
|
25 |
exit("You don't have read rights on the file ".$file);
|
|
|
26 |
}
|
|
|
27 |
}
|
|
|
28 |
/****************************************************************
|
|
|
29 |
* Read CONF_FILE *
|
|
|
30 |
*****************************************************************/
|
|
|
31 |
$ouvre=fopen(CONF_FILE,"r");
|
|
|
32 |
if ($ouvre){
|
|
|
33 |
while (!feof ($ouvre))
|
|
|
34 |
{
|
|
|
35 |
$tampon = fgets($ouvre, 4096);
|
|
|
36 |
if (strpos($tampon,"=")!==false){
|
|
|
37 |
$tmp = explode("=",$tampon);
|
|
|
38 |
$conf[$tmp[0]] = $tmp[1];
|
|
|
39 |
}
|
|
|
40 |
}
|
|
|
41 |
}else{
|
|
|
42 |
exit("Error opening the file ".CONF_FILE);
|
|
|
43 |
}
|
|
|
44 |
fclose($ouvre);
|
1345 |
richard |
45 |
$organisme = trim($conf["ORGANISM"]);
|
|
|
46 |
$domainname = trim($conf["DOMAIN"]);
|
|
|
47 |
$hostname = "alcasar.".$domainname;
|
784 |
richard |
48 |
$network_pb = False;
|
1249 |
richard |
49 |
$cert_add = "http://$hostname/certs";
|
360 |
richard |
50 |
$direct_access = False;
|
832 |
richard |
51 |
$diagnostic = "can't contact the default router";
|
1452 |
richard |
52 |
$remote_ip = preg_match('#^([0-9]{1,3}\.){3}[0-9]{1,3}$#', $_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : "";
|
363 |
richard |
53 |
$tab = array();$user = array();
|
566 |
stephane |
54 |
$connection_history = "";
|
|
|
55 |
$nb_connection_history = 3;
|
|
|
56 |
|
1818 |
raphael.pi |
57 |
# Obtenir l'état de connexion de l'utilisateur. 1 si connecté sinon 0.
|
|
|
58 |
exec ("sudo /usr/sbin/chilli_query list|grep $remote_ip" , $tab);
|
|
|
59 |
$user = explode (" ", $tab[0]);
|
1820 |
raphael.pi |
60 |
|
522 |
richard |
61 |
# on discrimine les accès directs sur Alcasar par rapport aux redirections (blacklist ou pannes rso)
|
1345 |
richard |
62 |
if (($_SERVER['HTTP_HOST'] == $_SERVER['SERVER_ADDR']) || preg_match ("/^alcasar$/", $_SERVER['HTTP_HOST']) || preg_match ("/^$hostname$/", $_SERVER['HTTP_HOST']) || preg_match ("/^$organisme$/", $_SERVER['HTTP_HOST']))
|
522 |
richard |
63 |
{
|
|
|
64 |
$direct_access=True;
|
|
|
65 |
}
|
566 |
stephane |
66 |
#### Affichage des 3 dernières connexions de $user[5]
|
|
|
67 |
function secondsToDuration($seconds = null){
|
|
|
68 |
if ($seconds == null) return "";
|
509 |
richard |
69 |
|
566 |
stephane |
70 |
$temp = $seconds % 3600;
|
|
|
71 |
$time[0] = ( $seconds - $temp ) / 3600 ; // hours
|
732 |
richard |
72 |
$time[2] = $temp % 60 ; // seconds
|
566 |
stephane |
73 |
$time[1] = ( $temp - $time[2] ) / 60; // minutes
|
|
|
74 |
|
732 |
richard |
75 |
return $time[0]." h ".$time[1]." m ".$time[2]." s";
|
566 |
stephane |
76 |
}
|
509 |
richard |
77 |
|
566 |
stephane |
78 |
$l_connected = "connected"; // a traduire (choix de la langue ci-dessous mais nécessitant de $connection_history)
|
|
|
79 |
// si on a pas d'accès à la bdd, la page s'affiche quand même correctement
|
783 |
richard |
80 |
if ((isset ($user[4])) && ($user[4] != "0")){
|
566 |
stephane |
81 |
if ((is_file("./acc/manager/lib/sql/drivers/mysql/functions.php"))&&(is_file("/etc/freeradius-web/config.php"))){
|
|
|
82 |
include_once("/etc/freeradius-web/config.php");
|
|
|
83 |
include_once("./acc/manager/lib/sql/drivers/mysql/functions.php");
|
|
|
84 |
|
|
|
85 |
$sql = "SELECT UserName, AcctStartTime, AcctStopTime, acctsessiontime FROM radacct WHERE UserName='$user[5]' ORDER BY AcctStartTime DESC LIMIT 0 , $nb_connection_history";
|
|
|
86 |
$link = @da_sql_pconnect($config); // on affiche pas les erreurs
|
|
|
87 |
|
|
|
88 |
if ($link){
|
|
|
89 |
$res = @da_sql_query($link,$config,$sql); // on affiche pas les erreurs
|
|
|
90 |
|
|
|
91 |
if ($res){
|
|
|
92 |
$connection_history.= "<ul>";
|
|
|
93 |
while(($row = @da_sql_fetch_array($res,$config))){
|
|
|
94 |
$connected = "";
|
1521 |
richard |
95 |
if ($row['acctstoptime'] == "") $connected = " ($l_connected)";
|
1678 |
richard |
96 |
$connection_history.="<li title='$row[username] $row[acctstarttime] $row[acctstoptime] (".secondsToDuration($row['acctsessiontime']).")'>$row[acctstarttime] (".secondsToDuration($row['acctsessiontime']).") $connected</li>";
|
566 |
stephane |
97 |
}
|
|
|
98 |
$connection_history.="</ul>";
|
|
|
99 |
}
|
|
|
100 |
}
|
|
|
101 |
}
|
|
|
102 |
}
|
1818 |
raphael.pi |
103 |
else
|
|
|
104 |
{
|
1820 |
raphael.pi |
105 |
# cas où l'utilisateur non-loggué décide de joindre une page HTTP/S => redirection index.php&url=URL
|
|
|
106 |
# ALCASAR => redirection index.php
|
|
|
107 |
# on place l'IP de l'utilisateur dans un ipset user_not_connected pour ne pas boucler
|
1818 |
raphael.pi |
108 |
exec("sudo /usr/sbin/ipset add user_not_connected_yet $remote_ip");
|
|
|
109 |
if(!$direct_access)
|
|
|
110 |
{
|
1820 |
raphael.pi |
111 |
header("Location: http://alcasar?url=".$_SERVER['HTTP_HOST']);
|
|
|
112 |
exit;
|
1818 |
raphael.pi |
113 |
}
|
1820 |
raphael.pi |
114 |
|
1818 |
raphael.pi |
115 |
}
|
509 |
richard |
116 |
####
|
|
|
117 |
|
360 |
richard |
118 |
# Choice of language
|
|
|
119 |
$Language = 'en';
|
|
|
120 |
if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){
|
|
|
121 |
$Langue = explode(",",$_SERVER['HTTP_ACCEPT_LANGUAGE']);
|
|
|
122 |
$Language = strtolower(substr(chop($Langue[0]),0,2)); }
|
|
|
123 |
if($Language == 'fr'){
|
|
|
124 |
$l_access_denied = "ACCÈS REFUSÉ";
|
399 |
franck |
125 |
$l_access_welcome = "Bienvenue sur ALCASAR";
|
360 |
richard |
126 |
$l_access_unavailable = "ACCÈS INDISPONIBLE";
|
|
|
127 |
$l_required_domain = "Site WEB demandé";
|
1504 |
richard |
128 |
$l_explain_acc_access = "Le centre de gestion permet d'administrer le portail. Vous devez posséder un compte d'administration ou de gestion pour y accéder.";
|
360 |
richard |
129 |
$l_explain_access_deny = "Vous tentez d'accéder à une ressource dont le contenu est réputé contenir des informations inappropriées.";
|
|
|
130 |
$l_explain_net_pb = "Votre portail détecte que l'accès à Internet est indisponible.";
|
|
|
131 |
$l_contact_access_deny = "Contactez le responsable de la sécurité (OSSI/RSSI) si vous pensez que ce filtrage est abusif.";
|
509 |
richard |
132 |
$l_contact_net_pb = "Contactez votre responsable informatique ou votre prestataire Internet pour plus d'information.";
|
399 |
franck |
133 |
$l_welcome = "Page principale de votre portail captif";
|
1452 |
richard |
134 |
$l_sms_access = "<a href=\"https://$hostname/autoregistrationinfo.php\">Auto Enregistrement par SMS</a>";
|
566 |
stephane |
135 |
$l_install_certif = "<a href=\"$cert_add/certificat_alcasar_ca.crt\">Installer le certificat racine</a>";
|
|
|
136 |
$l_install_certif_more = "<a href=\"$cert_add/certificat_alcasar_ca.crt\">Installation du certificat de l'autorité racine d'ALCASAR</a>";
|
536 |
franck |
137 |
$l_certif_explain = "Permet l'échange de données sécurisées entre votre station de consultation et le portail captif ALCASAR.<BR>Si ce certificat n'est pas enregistré sur votre station de consultation, il est possible que des alertes de sécurités soient émises par votre navigateur.<br><br>";
|
688 |
richard |
138 |
$l_certif_explain_help = "<a href=\"alcasar-certificat.pdf\" target=\"_blank\">Aide complémentaire</a>";
|
1124 |
crox53 |
139 |
$l_category = "catégorie :";
|
832 |
richard |
140 |
if ((isset ($user[4])) && ($user[4] == "0")) {
|
509 |
richard |
141 |
$l_logout_explain = "Aucune session de consultation Internet n'est actuellement ouverte sur votre système.";
|
1820 |
raphael.pi |
142 |
if(isset($_GET["url"]))
|
|
|
143 |
{
|
|
|
144 |
$l_logout = "<a href=\"http://".$_GET["url"]."\">Ouvrir une session Internet</a>";
|
|
|
145 |
}
|
|
|
146 |
else
|
|
|
147 |
{
|
|
|
148 |
$l_logout = "<a href=\"http://www.google.com\">Ouvrir une session Internet</a>";
|
|
|
149 |
}
|
|
|
150 |
|
|
|
151 |
}
|
369 |
richard |
152 |
else {
|
832 |
richard |
153 |
if ($user[5] != $user[0]) // authentication exception or not
|
|
|
154 |
{
|
|
|
155 |
$l_logout_explain = "Ferme la session de l'usager actuellement connecté. <br><br>Utilisateur connecté : <a href=\"http://$hostname:3990/logoff\" title=\"Deconnecter l'utilisateur $user[5]\"><b>$user[5]</b></a><br><br>$nb_connection_history dernières connexions :$connection_history";
|
|
|
156 |
$l_logout = "<a href=\"http://$hostname:3990/logoff\">Se déconnecter d'internet</a>";
|
|
|
157 |
}
|
|
|
158 |
else
|
|
|
159 |
{
|
|
|
160 |
$l_logout_explain = "Votre système ($user[5]) est en exception d'authentication.<br><br>$nb_connection_history last connections :$connection_history";
|
|
|
161 |
$l_logout = "Information des connexions";
|
|
|
162 |
}
|
|
|
163 |
}
|
566 |
stephane |
164 |
$l_password_change = "<a href=\"https://$hostname/pass\">Changer votre mot de passe</a>";
|
536 |
franck |
165 |
$l_password_change_explain = "Vous redirige sur la page de changement du mot de passe de votre compte d'accès à internet.<br><br>Vous devez avoir un compte internet valide.";
|
1452 |
richard |
166 |
$l_sms_explain = "Vous redirige vers une la page explicative de l'auto enregistrement par SMS.<br><br><strong>Identifiant:</strong> votre numéro de téléphone<br><strong>Mot de passe:</strong> votre message";
|
360 |
richard |
167 |
$l_back_page = "<a href=\"javascript:history.back()\">Page précédente</a>";
|
1452 |
richard |
168 |
$l_service_sms = "Service SMS actif";
|
|
|
169 |
$l_service_sms_n = "Service SMS non actif";
|
|
|
170 |
$l_acc_sms = "Auto enregistrement par SMS";
|
360 |
richard |
171 |
}
|
912 |
richard |
172 |
else if($Language == 'pt'){
|
|
|
173 |
$l_access_denied = "Acesso negado";
|
|
|
174 |
$l_access_welcome = "Bem-vindo ao Alcasar";
|
|
|
175 |
$l_access_unavailable = "ACESSO INDISPONÍVEL";
|
|
|
176 |
$l_required_domain = "Site WEB Obrigatório";
|
955 |
richard |
177 |
$l_explain_acc_access = "Este é o centro de controle do portal para acessar você deve ter uma conta administrativa valida.";
|
912 |
richard |
178 |
$l_explain_access_deny = "Você tenta se conectar a um recurso cujo conteúdo é considerado inadequado no conteúdo de informações.";
|
955 |
richard |
179 |
$l_explain_net_pb = "O sistema detectou que o acesso é de risco, não será permitido o acesso";
|
912 |
richard |
180 |
$l_contact_access_deny = "Entre em contato com o administrador do sistema de segurança se acha que essa filtragem é abusiva.";
|
|
|
181 |
$l_contact_net_pb = "Entre em contato com a empresa fornecedora de Internet para mais informações";
|
955 |
richard |
182 |
$l_welcome = "Página do portal";
|
1452 |
richard |
183 |
$l_sms_access = "<a href=\"https://$hostname/autoregistrationinfo.php\">Auto Registration by SMS</a>";
|
912 |
richard |
184 |
$l_install_certif = "<a href=\"$cert_add/certificat_alcasar_ca.crt\">Instalar Certificado Alcasar AC</a>";
|
|
|
185 |
$l_install_certif_more = "<a href=\"$cert_add/certificat_alcasar_ca.cert\">Instalar Certificado Alcasar AC</a>";
|
|
|
186 |
$l_certif_explain = "O certificado Permiti a troca de dados seguro entre seu computador e o portal Alcasar.<BR>Se este certificado não estiver incorporado no seu computador, alguns alertas de segurança deverá aparecer no navegador.<br><br>";
|
955 |
richard |
187 |
$l_certif_explain_help = "<a href=\"alcasar-certificat.pdf\" target=\"_blank\">Essa foi uma ajuda complementar</a>";
|
1124 |
crox53 |
188 |
$l_category = "categoria :";
|
912 |
richard |
189 |
if ((isset ($user[4])) && ($user[4] == "0")) {
|
955 |
richard |
190 |
$l_logout_explain = "Não há conexão de Internet aberta em seu computador, deseja conectar?";
|
1820 |
raphael.pi |
191 |
if(isset($_GET["url"]))
|
|
|
192 |
{
|
|
|
193 |
$l_logout = "<a href=\"http://".$_GET["url"]."\">Abrir uma conexão de Internet</a>";
|
|
|
194 |
}
|
|
|
195 |
else
|
|
|
196 |
{
|
|
|
197 |
$l_logout = "<a href=\"http://www.google.com\">Abrir uma conexão de Internet</a>";
|
|
|
198 |
}
|
|
|
199 |
|
|
|
200 |
}
|
912 |
richard |
201 |
else {
|
|
|
202 |
if ($user[5] != $user[0]) // authentication exception or not
|
|
|
203 |
{
|
955 |
richard |
204 |
$l_logout_explain = "Se desejar, feche a conexão do usuário atual conectado.<br> Usuário conectado : <a href=\"http://$hostname:3990/logoff\" title=\"Disconnect user $user[5]\"><b>$user[5]</b></a><br><br>$nb_connection_history last connections :$connection_history";
|
922 |
richard |
205 |
$l_logout = "<a href=\"http://$hostname:3990/logoff\">Sair da Internet</a>";
|
912 |
richard |
206 |
}
|
|
|
207 |
else
|
|
|
208 |
{
|
955 |
richard |
209 |
$l_logout_explain = "O sistema ($user[5]) detctou exesso de autenticação.<br><br>$nb_connection_history logins últimos :$connection_history";
|
922 |
richard |
210 |
$l_logout = "Informações de conexões";
|
912 |
richard |
211 |
}
|
|
|
212 |
}
|
922 |
richard |
213 |
$l_password_change = "<a href=\"https://$hostname/pass\">Mudar sua senha</a>";
|
955 |
richard |
214 |
$l_password_change_explain = "Você será redirecionado à página de alteração de senha.<br><br> e deverá ter uma conta de usuário valido para efetuar a troca e acessar à Internet.";
|
1452 |
richard |
215 |
$l_sms_explain = "Redirect you on auto registration page.<br><br><strong>Login:</strong> your phone number<br><strong>Password:</strong> SMS content";
|
922 |
richard |
216 |
$l_back_page = "<a href=\"javascript:history.back()\">Página anterior</a>";
|
1452 |
richard |
217 |
$l_service_sms = "SMS service enable";
|
|
|
218 |
$l_service_sms_n = "SMS service disable";
|
|
|
219 |
$l_acc_sms = "Auto registration by SMS";
|
912 |
richard |
220 |
}
|
360 |
richard |
221 |
else {
|
|
|
222 |
$l_access_denied = "ACCESS DENIED";
|
369 |
richard |
223 |
$l_access_welcome = "Welcome on ALCASAR";
|
360 |
richard |
224 |
$l_access_unavailable = "ACCESS UNAVAILABLE";
|
|
|
225 |
$l_required_domain = "Required WEB site";
|
369 |
richard |
226 |
$l_explain_acc_access = "This center control the portal. You must have an administrative account.";
|
801 |
richard |
227 |
$l_explain_access_deny = "You try to connect to a resource whose content is deemed to contain inappropriate information.";
|
360 |
richard |
228 |
$l_explain_net_pb = "Your portal has just detected that the Internet access is down";
|
|
|
229 |
$l_contact_access_deny = "Contact your security system manager if you think this filtering is abusive.";
|
|
|
230 |
$l_contact_net_pb = "Contact your network responsive or your Internet provider for more information";
|
369 |
richard |
231 |
$l_welcome = "Your captive portal main page";
|
1452 |
richard |
232 |
$l_sms_access = "<a href=\"https://$hostname/autoregistrationinfo.php\">Auto Registration by SMS</a>";
|
611 |
franck |
233 |
$l_install_certif = "<a href=\"$cert_add/certificat_alcasar_ca.crt\">Install ALCASAR AC Certificate</a>";
|
566 |
stephane |
234 |
$l_install_certif_more = "<a href=\"$cert_add/certificat_alcasar_ca.cert\">Install ALCASAR AC Certificate</a>";
|
688 |
richard |
235 |
$l_certif_explain = "Allow secure data exchange between your computer and ALCASAR portal.<BR>If this certificate isn't incorporated in your computer, some security alerts should appear in your browser.<br><br>";
|
|
|
236 |
$l_certif_explain_help = "<a href=\"alcasar-certificat.pdf\" target=\"_blank\">Complementary help</a>";
|
1124 |
crox53 |
237 |
$l_category = "category :";
|
783 |
richard |
238 |
if ((isset ($user[4])) && ($user[4] == "0")) {
|
369 |
richard |
239 |
$l_logout_explain = "No Internet consultation session is actualy open on your system";
|
1820 |
raphael.pi |
240 |
if(isset($_GET["url"]))
|
|
|
241 |
{
|
|
|
242 |
$l_logout = "<a href=\"http://".$_GET["url"]."\">Open an Internet session</a>";
|
|
|
243 |
}
|
|
|
244 |
else
|
|
|
245 |
{
|
|
|
246 |
$l_logout = "<a href=\"http://www.google.com\">Open an Internet session</a>";
|
|
|
247 |
}
|
|
|
248 |
|
|
|
249 |
}
|
369 |
richard |
250 |
else {
|
832 |
richard |
251 |
if ($user[5] != $user[0]) // authentication exception or not
|
|
|
252 |
{
|
922 |
richard |
253 |
$l_logout_explain = "Close the session of the user currently connected.<br> User logged-on : <a href=\"http://$hostname:3990/logoff\" title=\"Disconnect user $user[5]\"><b>$user[5]</b></a><br><br>$nb_connection_history last connections :$connection_history";
|
783 |
richard |
254 |
$l_logout = "<a href=\"http://$hostname:3990/logoff\">Logoff from internet</a>";
|
832 |
richard |
255 |
}
|
|
|
256 |
else
|
|
|
257 |
{
|
922 |
richard |
258 |
$l_logout_explain = "Your system ($user[5]) is in exception of authentication.<br><br>$nb_connection_history Last logins :$connection_history";
|
832 |
richard |
259 |
$l_logout = "Connections information";
|
|
|
260 |
}
|
783 |
richard |
261 |
}
|
566 |
stephane |
262 |
$l_password_change = "<a href=\"https://$hostname/pass\">Change your password</a>";
|
799 |
richard |
263 |
$l_password_change_explain = "Redirect you on password change page.<br><br> You should already have an Internet access account.";
|
1452 |
richard |
264 |
$l_sms_explain = "Redirect you on auto registration page.<br><br><strong>Login:</strong> your phone number<br><strong>Password:</strong> SMS content";
|
360 |
richard |
265 |
$l_back_page = "<a href=\"javascript:history.back()\">Previous page</a>";
|
1452 |
richard |
266 |
$l_service_sms = "SMS service enable";
|
|
|
267 |
$l_service_sms_n = "SMS service disable";
|
|
|
268 |
$l_acc_sms = "Auto registration by SMS";
|
360 |
richard |
269 |
}
|
369 |
richard |
270 |
$l_title = ($direct_access ? $l_access_welcome : ($network_pb ? $l_access_unavailable : $l_access_denied));
|
360 |
richard |
271 |
$l_explain = ($direct_access ? $l_explain_acc_access : ($network_pb ? $l_explain_net_pb : $l_explain_access_deny));
|
509 |
richard |
272 |
|
|
|
273 |
# Attribution des icones / images
|
|
|
274 |
$img_rep = "images/";
|
|
|
275 |
$img_organisme = "organisme.png";
|
|
|
276 |
$img_access = "globe_acces_70.png";
|
|
|
277 |
$img_connect = "globe_70.png";
|
|
|
278 |
$img_warning = "globe_warning_70.png";
|
|
|
279 |
$img_pwd = "cle_ombre.png";
|
|
|
280 |
$img_certificate = "certificat.png";
|
|
|
281 |
$img_acc = "logo-alcasar_70.png";
|
1452 |
richard |
282 |
$img_sms = "sms.png";
|
509 |
richard |
283 |
$img_false = "interdit.png";
|
1452 |
richard |
284 |
$img_adm = "adm.png";
|
509 |
richard |
285 |
$img_internet = $img_connect;
|
|
|
286 |
|
783 |
richard |
287 |
if ((isset ($user[4])) && ($user[4] == "0")) {
|
509 |
richard |
288 |
if (! $network_pb) {
|
|
|
289 |
$img_internet = $img_access;
|
|
|
290 |
}
|
|
|
291 |
else {
|
|
|
292 |
$img_internet = $img_warning;
|
|
|
293 |
}
|
|
|
294 |
}
|
|
|
295 |
else {
|
|
|
296 |
$img_internet = $img_connect;
|
|
|
297 |
}
|
|
|
298 |
|
452 |
richard |
299 |
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
|
360 |
richard |
300 |
?>
|
566 |
stephane |
301 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
302 |
<html>
|
|
|
303 |
<head>
|
|
|
304 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
305 |
<title>ALCASAR - <?php echo $l_title; ?></title>
|
|
|
306 |
<meta http-equiv="Cache-control" content="no-cache">
|
|
|
307 |
<meta http-equiv="Pragma" content="no-cache">
|
|
|
308 |
<link rel="stylesheet" type="text/css" href="css/style_intercept.css">
|
|
|
309 |
<script type="text/javascript">
|
509 |
richard |
310 |
function valoriserDiv5(param){
|
|
|
311 |
document.getElementById("box_info").innerHTML = param.innerHTML;
|
|
|
312 |
}
|
|
|
313 |
</script>
|
360 |
richard |
314 |
</head>
|
566 |
stephane |
315 |
<body onload="valoriserDiv5(text_conn);">
|
509 |
richard |
316 |
<?php
|
360 |
richard |
317 |
if ($direct_access){
|
|
|
318 |
echo "
|
566 |
stephane |
319 |
<div id=\"cadre_titre\" class=\"titre_controle\">
|
|
|
320 |
<p id=\"acces_controle\" class=\"titre_controle\">$l_title</p>";
|
509 |
richard |
321 |
if ($network_pb) {
|
566 |
stephane |
322 |
echo " <span>$l_explain_net_pb</span>";
|
509 |
richard |
323 |
}
|
360 |
richard |
324 |
}
|
509 |
richard |
325 |
else {
|
|
|
326 |
echo"
|
566 |
stephane |
327 |
<div id=\"cadre_titre\" class=\"titre_refus\">
|
|
|
328 |
<p id=\"acces_controle\" class=\"titre_refus\">$l_title</p>";
|
363 |
richard |
329 |
}
|
360 |
richard |
330 |
?>
|
566 |
stephane |
331 |
<div id="boite_logo">
|
|
|
332 |
<img src="images/organisme.png">
|
|
|
333 |
</div>
|
|
|
334 |
</div>
|
|
|
335 |
<div id="contenu_acces">
|
|
|
336 |
<div id="box_url">
|
1124 |
crox53 |
337 |
<?php
|
1452 |
richard |
338 |
//search here in the blacklist categories (if ((! $direct_access) && (! $network_pb)){}
|
1124 |
crox53 |
339 |
?>
|
566 |
stephane |
340 |
</div>
|
1452 |
richard |
341 |
<?php
|
|
|
342 |
# CHECK IF the SMS service is enable
|
1506 |
franck |
343 |
$service_SMS_status="false";
|
|
|
344 |
if ($service_SMS_status == "true") {
|
1452 |
richard |
345 |
$sms_div='
|
|
|
346 |
<div class="box_menu" id="box_acc" onmouseover="valoriserDiv5(text_acc);">
|
|
|
347 |
<span>'.$l_sms_access.'</span>
|
|
|
348 |
<img src="'.$img_rep.''.$img_sms.'">
|
|
|
349 |
</div>
|
|
|
350 |
';
|
|
|
351 |
|
|
|
352 |
$sms_div_over='
|
|
|
353 |
<div class="div-cache" id="text_acc">
|
|
|
354 |
<h2>'.$l_sms_access.'</h2>
|
|
|
355 |
<p>'.$l_sms_explain.'</p>
|
|
|
356 |
<p><font color="green"><center>'.$l_service_sms.'</center></font></p>
|
|
|
357 |
<img src="'.$img_rep.''.$img_sms.'">
|
|
|
358 |
</div>
|
|
|
359 |
';
|
|
|
360 |
}
|
1508 |
richard |
361 |
else {
|
|
|
362 |
$sms_div='';
|
|
|
363 |
$sms_div_over='';
|
|
|
364 |
}
|
1452 |
richard |
365 |
?>
|
509 |
richard |
366 |
<?php
|
|
|
367 |
if ($direct_access){
|
566 |
stephane |
368 |
echo " <div id=\"box_bienvenue\">
|
360 |
richard |
369 |
$l_welcome
|
566 |
stephane |
370 |
</div>
|
|
|
371 |
<div class=\"box_menu\" id=\"box_conn\" onmouseover=\"valoriserDiv5(text_conn);\">
|
|
|
372 |
<span>$l_logout</span>
|
|
|
373 |
<img src=\"$img_rep$img_internet\">
|
|
|
374 |
</div>
|
|
|
375 |
<div class=\"box_menu\" id=\"box_certif\" onmouseover=\"valoriserDiv5(text_certif);\">
|
|
|
376 |
<span>$l_install_certif</span>
|
|
|
377 |
<img src=\"$img_rep$img_certificate\">
|
|
|
378 |
</div>
|
|
|
379 |
<div class=\"box_menu\" id=\"box_mdp\" onmouseover=\"valoriserDiv5(text_mdp);\">
|
|
|
380 |
<img src=\"$img_rep$img_pwd\">
|
|
|
381 |
<span>$l_password_change</span>
|
|
|
382 |
</div>
|
1452 |
richard |
383 |
$sms_div
|
566 |
stephane |
384 |
<div class=\"div-cache\" id=\"text_conn\">
|
|
|
385 |
<h2>$l_logout</h2>
|
|
|
386 |
<p>$l_logout_explain</p>
|
|
|
387 |
<img src=\"$img_rep$img_internet\">
|
|
|
388 |
</div>
|
|
|
389 |
<div class=\"div-cache\" id=\"text_certif\">
|
|
|
390 |
<h2>$l_install_certif_more</h2>
|
|
|
391 |
<p>$l_certif_explain $l_certif_explain_help</p>
|
|
|
392 |
<img src=\"$img_rep$img_certificate\">
|
|
|
393 |
</div>
|
|
|
394 |
<div class=\"div-cache\" id=\"text_mdp\">
|
|
|
395 |
<h2>$l_password_change</h2>
|
|
|
396 |
<p>$l_password_change_explain</p>
|
|
|
397 |
<img src=\"$img_rep$img_pwd\">
|
|
|
398 |
</div>
|
1452 |
richard |
399 |
$sms_div_over
|
566 |
stephane |
400 |
<div id=\"box_info\">
|
|
|
401 |
</div>";
|
509 |
richard |
402 |
}
|
|
|
403 |
else {
|
|
|
404 |
echo "
|
566 |
stephane |
405 |
<div id=\"box_refuse\">
|
509 |
richard |
406 |
<img src=\"$img_rep$img_false\">
|
566 |
stephane |
407 |
<p>$l_explain</p>
|
|
|
408 |
</div>
|
|
|
409 |
<div id=\"liens_redir\">
|
|
|
410 |
<p>$l_back_page</p>
|
|
|
411 |
</div>";
|
509 |
richard |
412 |
}
|
|
|
413 |
if (($network_pb)&&(! $direct_access)) {
|
566 |
stephane |
414 |
echo " <span>Diagnostic : $diagnostic</span>";
|
509 |
richard |
415 |
}
|
363 |
richard |
416 |
?>
|
566 |
stephane |
417 |
</div>
|
1452 |
richard |
418 |
<div id="corner">
|
|
|
419 |
<div id="adm" class="corn">
|
1729 |
richard |
420 |
<a href="https://<?php echo $hostname; ?>/acc/"><img src=<?php echo $img_rep.''.$img_adm; ?>></a>
|
1452 |
richard |
421 |
</div>
|
|
|
422 |
</div>
|
566 |
stephane |
423 |
</body>
|
1820 |
raphael.pi |
424 |
</html>
|