Subversion Repositories ALCASAR

Rev

Rev 3174 | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
895 richard 1
<?php
958 franck 2
# $Id: intercept.php 3185 2024-03-08 23:56:49Z rexy $
895 richard 3
#
1249 richard 4
# intercept.php for ALCASAR captive portal
3165 rexy 5
# by Rexy & steweb57
3026 rexy 6
# UI & css style by Stéphane ERARD & Alexandre VEZIN
895 richard 7
# Help for language translation by B. AUBARD (thanks)
8
 
9
# Redirects from CoovaChilli (chilli daemon) :
10
# Response to login:
11
  # success :	if login successful
12
  # failed :	if login failed
13
  # logoff :	if logout successful
14
  # already :	if tried to login while already logged in
15
  # notyet :	if not logged in yet
16
  # Default :	it was not a form request -> client go to login form
17
 
18
/****************************************************************
19
*			GLOBAL FILE PATHS			*
20
*****************************************************************/
2238 tom.houday 21
define('CONF_FILE', '/usr/local/etc/alcasar.conf');
22
define('DOMAIN_ALLOWED_LIST', '/usr/local/etc/alcasar-uamdomain');
895 richard 23
 
24
/****************************************************************
930 richard 25
*			FILE reading test			*
895 richard 26
*****************************************************************/
2238 tom.houday 27
$conf_files = array(CONF_FILE, DOMAIN_ALLOWED_LIST);
2182 tom.houday 28
foreach ($conf_files as $file) {
29
	if (!file_exists($file)) {
2238 tom.houday 30
		exit("Fichier $file non présent");
913 richard 31
	}
2182 tom.houday 32
	if (!is_readable($file)) {
2238 tom.houday 33
		exit("Vous n'avez pas les droits de lecture sur le fichier $file");
913 richard 34
	}
35
}
895 richard 36
/****************************************************************
37
*			Read CONF_FILE				*
38
*****************************************************************/
2182 tom.houday 39
$file_conf = fopen(CONF_FILE, 'r');
40
if (!$file_conf) {
41
	exit('Error opening the file '.CONF_FILE);
42
}
43
while (!feof($file_conf)) {
2238 tom.houday 44
	$buffer = fgets($file_conf, 4096);
45
	if ((strpos($buffer, '=') !== false) && (substr($buffer, 0, 1) !== '#')) {
2450 tom.houday 46
		$tmp = explode('=', $buffer, 2);
2370 tom.houday 47
		$conf[trim($tmp[0])] = trim($tmp[1]);
895 richard 48
	}
49
}
2182 tom.houday 50
fclose($file_conf);
51
 
2238 tom.houday 52
$organisme = $conf["ORGANISM"];
2935 rexy 53
$service_SMS_status = ($conf['SMS'] === 'on');
3001 rexy 54
$service_Email_status = ($conf['MAIL'] === 'on');
2935 rexy 55
$service_wifi4eu_status = ($conf['WIFI4EU'] === 'on');
56
$service_wifi4eu_code = $conf['WIFI4EU_CODE'];
57
$service_wifi4eu_server = 'https://collection.wifi4eu.ec.europa.eu/wifi4eu.min.js';
895 richard 58
 
2250 tom.houday 59
// Shared secret used to encrypt password with coova.
3026 rexy 60
$uamsecret = "";
895 richard 61
 
2250 tom.houday 62
// URL loaded after success authenticates (let blank for browser defaults)
895 richard 63
$adminurl = "";
64
 
2250 tom.houday 65
// Our own path
2409 tom.houday 66
$loginpath = htmlspecialchars($_SERVER['PHP_SELF']);
2378 tom.houday 67
$useHTTPS = ((isset($_SERVER['HTTPS'])) && (!empty($_SERVER['HTTPS'])) && ($_SERVER['HTTPS'] !== 'off'));
2409 tom.houday 68
$alcasarpath = (($useHTTPS) ? 'https' : 'http' ).'://'.$conf['HOSTNAME'].'.'.$conf['DOMAIN'];
69
$statuspath = (($conf['HTTPS_CHILLI'] === 'on') ? 'https' : 'http' ).'://'.$conf['HOSTNAME'].'.'.$conf['DOMAIN'].'/status.php';
895 richard 70
 
3165 rexy 71
# Redirection if HTTPS needed and not used
72
if (($conf['HTTPS_LOGIN'] === 'on') && (!$useHTTPS)) {
73
	header('HTTP/1.1 301 Moved Permanently');
74
	header('Location: https://'.$conf['HOSTNAME'].'.'.$conf['DOMAIN'].'/intercept.php');
75
	exit();
76
}
77
 
2250 tom.houday 78
// Choice of language
895 richard 79
$Language = 'en';
2250 tom.houday 80
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
2182 tom.houday 81
	$Langue = explode(",",$_SERVER['HTTP_ACCEPT_LANGUAGE']);
2370 tom.houday 82
	$Language = strtolower(substr(chop($Langue[0]), 0, 2));
1452 richard 83
}
2238 tom.houday 84
if ($Language === 'es') {		// Spanish
85
	$l_ChilliError			= "La autenticación debe ser un éxito a través del servicio de portal cautivo.";
2850 rexy 86
	$l_login			= "Autenticación exitosa.<HR>Cerrar ésta ventana interrumpe la sesión.";
87
	$l_logout			= "Finalice la conexión";
2238 tom.houday 88
	$l_loginfailed			= "Error de autenticación";
89
	$l_loggingin			= "Identificación en el portal cautivo";
90
	$l_loggedcont			= "Control de Acceso";
91
	$l_loggedout			= "Su sesión se cierra";
92
	$l_user				= "Usuario";
93
	$l_password			= "Contraseña";
3139 rexy 94
	$l_mandatory			= "* Campos requeridos";
2238 tom.houday 95
	$l_wait				= "Por favor, espere un momento ...";
96
	$l_onlinetime			= "Tiempo de conexión:";
97
	$l_remainingtime		= "Desconexión en:";
98
	$l_boutonO			= "Autenticación";
99
	$l_boutonF			= "Cerrar";
2850 rexy 100
	$l_loggedin_stringl1		= "Información del Sistema de Seguridad";
101
	$l_loggedin_stringl2		= "El portal fue creado para garantizar la trazabilidad, la rendición de cuentas y el no repudio de las conexiones.";
102
	$l_loggedin_stringl3		= "Su actividad en la red es registrada, de conformidad con criterios de privacidad.";
103
	$l_loggedin_stringl4		= "Los datos registrados pueden ser solicitados y suministrados a una autoridad judicial en el curso de una investigación.";
2238 tom.houday 104
	$l_loggedin_stringl5		= "Estos datos se eliminan automáticamente después de un año.";
2850 rexy 105
	$l_loggedin_stringl6		= "Click <a href=\"$alcasarpath\">aquí</a> para cambiar su contraseña o para instalar el certificado de seguridad en su navegador";
106
	$l_loggedout_string		= "Desconectado del portal cautivo!";
2702 tom.houday 107
	$l_reply_0			= "Nombre de usuario o contraseña incorrectos";
2591 rexy 108
	$l_reply_1			= "Su cuota diaria ha sido alcanzada (duración o volumen)";
109
	$l_reply_2			= "Su cuota mensual ha sido alcanzada (duración o volumen)";
2850 rexy 110
	$l_reply_3			= "Intenta conectarse fuera de su intervalo de tiempo permitido";
111
	$l_reply_4			= "su cuenta expiró";
112
	$l_reply_5			= "Ha alcanzado el número máximo de inicios de sesión simultáneos";
113
	$l_reply_6			= "Se ha alcanzado su tiempo de conexión autorizado";
2238 tom.houday 114
	$l_online_time			= "Tiempo en linea";
115
	$l_remaining_time		= "Tiempo restante";
2956 rexy 116
	$l_uam_domain			= "Sitios de libre acceso : ";
3001 rexy 117
	$l_sms_registration		= "Registro por SMS";
118
	$l_email_registration		= "Registro por E-mail";
2238 tom.houday 119
} else if ($Language === 'pt') {	// Portuguese
120
	$l_ChilliError			= "A autenticação precisa ser bem sucedida através do portal.";
121
	$l_login			= "Sucesso na autenticação.<HR>Matenha esse pop-up apenas minimizado para não interromper a conexão";
122
	$l_logout			= "Encerrar conexão";
123
	$l_loginfailed			= "Falha na autenticação";
124
	$l_loggingin			= "Identificação do portal cativo";
125
	$l_loggedcont			= "Controle de acesso";
126
	$l_loggedout			= "Sua sessão foi fechada";
127
	$l_user				= "Usuário";
128
	$l_password			= "Senha";
3139 rexy 129
	$l_mandatory			= "* Campos obrigatórios";
2238 tom.houday 130
	$l_wait				= "Por favor, aguarde um momento ...";
131
	$l_onlinetime			= "Tempo de conexão:";
132
	$l_remainingtime		= "Desconectado em:";
133
	$l_boutonO			= "Autenticação";
134
	$l_boutonF			= "Fechar";
135
	$l_loggedin_stringl1		= "Sistema de Informação e segurança";
136
	$l_loggedin_stringl2		= "Este controle foi criado para garantir acesso seguro.";
137
	$l_loggedin_stringl3		= "A autenticação será criptografada em 256 bits, impedindo captura por escâner de rede.";
138
	$l_loggedin_stringl4		= "Sua atividade na Internet será resguardada de acordo com os regulamentos da lei.";
139
	$l_loggedin_stringl5		= "Mantenha o popup da conexão minimizado para não interromper a cessão.";
2370 tom.houday 140
	$l_loggedin_stringl6		= "Clique <a href=\"$alcasarpath\">aqui</a> para alterar sua senha, instalar certificado ou sair do portal.";
2238 tom.houday 141
	$l_loggedout_string		= "desconexão do portal cativo";
2702 tom.houday 142
	$l_reply_0			= "Nome de usuário ou senha incorretos";
2591 rexy 143
	$l_reply_1			= "Sua cota diária foi alcançada (duração ou volume)";
144
	$l_reply_2			= "Sua cota mensal foi atingida (duração ou volume)";
2238 tom.houday 145
	$l_reply_3			= "Você tenta conectar-se fora do seu período de tempo permitido";
146
	$l_reply_4			= "Sua conta expirou";
147
	$l_reply_5			= "Você atingiu o número máximo de logins simultâneos";
148
	$l_reply_6			= "Seu tempo de conexão autorizada finalizou";
149
	$l_online_time			= "Tempo Online";
150
	$l_remaining_time		= "Tempo restante";
2956 rexy 151
	$l_uam_domain			= "Sítios de acesso livre : ";
3001 rexy 152
	$l_sms_registration		= "Registo por SMS";
153
	$l_email_registration		= "Registro por E-mail";
2238 tom.houday 154
} else if ($Language === 'zh') {	// Chinese
155
	$l_ChilliError			= "验证必须通过强制门户服务";
156
	$l_login			= "验证成功<HR>关闭此窗口中断连接";
157
	$l_logout			= "关闭连接";
158
	$l_loginfailed			= "验证失败";
159
	$l_loggingin			= "强制门户身份识别";
160
	$l_loggedcont			= "访问控制";
161
	$l_loggedout			= "您的连接已关闭";
162
	$l_user				= "用户名";
163
	$l_password			= "密码";
3139 rexy 164
	$l_mandatory			= "* 必须填写";
2238 tom.houday 165
	$l_wait				= "请等待 ...";
166
	$l_onlinetime			= "连接时间";
167
	$l_remainingtime		= "断开连接于";
168
	$l_boutonO			= "验证";
169
	$l_boutonF			= "关闭";
170
	$l_loggedin_stringl1		= "信息系统安全";
171
	$l_loggedin_stringl2		= "这种控制实施以法定保证可追溯性,可归罪性和连接的不否认性.";
172
	$l_loggedin_stringl3		= "您的网络活动是私密登记的.";
173
	$l_loggedin_stringl4		= "记录的数据能被司法机关在调查中操作使用.";
174
	$l_loggedin_stringl5		= "这些数据将在一年后自动删除.";
2370 tom.houday 175
	$l_loggedin_stringl6		= "点击 <a href=\"$alcasarpath\"> 这里 </a> 修改密码或安装浏览器安全证书";
2238 tom.houday 176
	$l_loggedout_string		= "强制网络门户连接已断开";
2702 tom.houday 177
	$l_reply_0			= "用户名或密码无效";
2591 rexy 178
	$l_reply_1			= "您的每日配额已达到(持续时间或数量) ";
179
	$l_reply_2			= "已达到每月配额(持续时间或数量)";
2238 tom.houday 180
	$l_reply_3			= "您尝试在授权时间以外连接";
181
	$l_reply_4			= "您的账号已过期";
182
	$l_reply_5			= "您已经达到同时连接的最大数量";
183
	$l_reply_6			= "已经到达您的允许连接时间";
184
	$l_online_time			= "在线时间";
185
	$l_remaining_time		= "剩余时间";
2956 rexy 186
	$l_uam_domain			= " : ";
2993 rexy 187
	$l_sms_registration		= "SMSで登録する";
3001 rexy 188
	$l_email_registration		= "メールでの登録";
2250 tom.houday 189
} else if ($Language === 'ar') {	// Arabic
2238 tom.houday 190
	$l_ChilliError			= "يجب نجاح المصادقة على البوابة الأسيرة";
191
	$l_login			= "إغلاق هذه النافذة يقطع دورة عملك";
192
	$l_logout			= "إغلاق الدورة";
193
	$l_loginfailed			= "فشل المصادقة";
194
	$l_loggingin			= "التعريف على البوابة الأسيرة";
195
	$l_loggedcont			= "مراقبة الدخول";
196
	$l_loggedout			= "دورتكَ مغلقة";
197
	$l_user				= "التعريف";
198
	$l_password			= "كلمة السر";
3139 rexy 199
	$l_mandatory			="* الحقول المطلوبة";
2238 tom.houday 200
	$l_wait				= "...إنتظر بعض اللحظات";
201
	$l_onlinetime			= ":مدة الإتصال";
202
	$l_remainingtime		= ":انقطاع الإتصال في";
203
	$l_boutonO			= "مصادقة";
204
	$l_boutonF			= "أغلق";
205
	$l_loggedin_stringl1		= "سلامة نظم المعلومات";
206
	$l_loggedin_stringl2		= "وُضعت هذه المراقبة للضمان القانوني لتتبع ومساءلة وعدم تنصل الإتصالات";
207
	$l_loggedin_stringl3		= "نشاطك على الشبكة مسجل وفقاً لاحترام الحريات الشخصية";
208
	$l_loggedin_stringl4		= "لا يمكن استغلال البيانات المسجلة إلاّ من قِبل سلطات التحقيق القضائ";
209
	$l_loggedin_stringl5		= "سيتم حدف هذه البيانات تلقائياً بعد سنة من الْيَوْمَ";
2370 tom.houday 210
	$l_loggedin_stringl6		= "لتغيير كلمة السر أو شهادة الأمان <a href=\"$alcasarpath\">هنا</a> اضغط ";
2238 tom.houday 211
	$l_loggedout_string		= "تَمّ قطع الإتصال بالبوابة الأسيرة";
2702 tom.houday 212
	$l_reply_0			= "اسم المستخدم أو كلمة المرور غير صالحة";
2591 rexy 213
	$l_reply_1			= "تم الوصول إلى حصتك اليومية (المدة أو الحجم)";
214
	$l_reply_2			= "تم الوصول إلى حصتك الشهرية (المدة أو الحجم)";
2238 tom.houday 215
	$l_reply_3			= "محاولة اتصال خارج فترتك المأذونة";
216
	$l_reply_4			= "انتهت مدة صلاحية حسابك";
217
	$l_reply_5			= "لقد استكملت العدد الأقصى للإتصالات المتزامنة";
218
	$l_reply_6			= "استكملت مذة الإتصال المسموحة";
219
	$l_online_time			= "مذة الإتصال";
220
	$l_remaining_time		= "الوقت المتبق";
2956 rexy 221
	$l_uam_domain			= "مواقع الوصول المجاني";
2993 rexy 222
	$l_sms_registration		= "التسجيل عن طريق الرسائل القصيرة";
3001 rexy 223
	$l_email_registration		= "التسجيل عن طريق البريد الإلكتروني";
2250 tom.houday 224
} else if ($Language === 'de') {	// German
2766 rexy 225
	$l_ChilliError			= "Sie wurden erfolgreich durch das Portal authentifiziert.";
226
	$l_login			= "Erfolgreiche Authentifizierung.<HR>Schlißen dieses fensters unterbricht die Sitzung";
2238 tom.houday 227
	$l_logout			= "Beenden der Verbindung";
2766 rexy 228
	$l_loginfailed			= "Authentifizierungsfehler";
229
	$l_loggingin			= "Authentifizierung auf dem Portal";
230
	$l_loggedcont			= "Zugangskontrolle";
231
	$l_loggedout			= "Ihre Sitzung wurde geschlossen";
2238 tom.houday 232
	$l_user				= "Benutzer";
233
	$l_password			= "Passwort";
3139 rexy 234
	$l_mandatory			= "* Benötigte Felder";
2238 tom.houday 235
	$l_wait				= "Bitte warten Sie einen Moment ...";
236
	$l_onlinetime			= "Online-Zeit:";
237
	$l_remainingtime		= "Abmelden:";
238
	$l_boutonO			= "Authentifizierung";
239
	$l_boutonF			= "Schließen";
240
	$l_loggedin_stringl1		= "Information System Security";
2766 rexy 241
	$l_loggedin_stringl2		= "Dieses Portal wurde eingerichtet, um ordnungsgemäß die Rückverfolgbarkeit, die Zurechenbarkeit und die Nicht-Abstreitbarkeit der Verbindungen zu sichern.";
242
	$l_loggedin_stringl3		= "Ihre Tätigkeiten im Netzwerk werden im Hinblick auf den Schutz Ihrer Privatsphäre gespeichert.";
243
	$l_loggedin_stringl4		= "Die gespeicherten Daten können von einer Justizbehörde im Falle einer Untersuchung genutzt werden.";
244
	$l_loggedin_stringl5		= "Diese Daten werden nach einem Jahr automatisch gelöscht.";
245
	$l_loggedin_stringl6		= "Klicken Sie <a href=\"$alcasarpath\">hier</a> um Ihr Password zu ändern oder das Sicherheitszertifikat für Ihren Browser herunterzuladen";
246
	$l_loggedout_string		= "Sie wurden vom Portal getrennt!";
2702 tom.houday 247
	$l_reply_0			= "Falscher Benutzername oder falsches Passwort";
2591 rexy 248
	$l_reply_1			= "Ihr Tageskontingent wurde erreicht (Dauer oder Volumen)";
249
	$l_reply_2			= "Ihr monatliches Kontingent wurde erreicht (Dauer oder Volumen)";
2766 rexy 250
	$l_reply_3			= "Sie haben versucht sich außerhalb der erlaubten Zeiten zu verbinden";
251
	$l_reply_4			= "Ihr Account ist abgelaufen";
252
	$l_reply_5			= "Sie haben die maximale Anzahl an simultanen Verbindungen erreicht";
253
	$l_reply_6			= "Ihre maximale Verbindungszeit wurde erreicht";
254
	$l_online_time			= "Online-Zeit";
255
	$l_remaining_time		= "Verbleibende Zeit";
2956 rexy 256
	$l_uam_domain			= "Offen zugängliche Seiten : ";
2993 rexy 257
	$l_sms_registration		= "Per SMS anmelden";
3001 rexy 258
	$l_email_registration		= "Per E-Mail anmelden";
2250 tom.houday 259
} else if ($Language === 'nl') {	// Dutch
2238 tom.houday 260
	$l_ChilliError			= "De authenticatie moet een succes worden via de captive portal dienst.";
261
	$l_login			= "Succesvolle authenticatie.<HR>Dit venster te sluiten onderbreekt uw sessie.";
262
	$l_logout			= "Slotkoers verbinding";
263
	$l_loginfailed			= "Authenticatie mislukt";
264
	$l_loggingin			= "Identificatie van de captive-portaal";
265
	$l_loggedcont			= "toegangscontrole";
266
	$l_loggedout			= "Uw sessie is gesloten";
267
	$l_user				= "Gebruiker";
268
	$l_password			= "Wachtwoord";
3139 rexy 269
	$l_mandatory			= "* Verplichte velden";
2238 tom.houday 270
	$l_wait				= "Wacht een moment ...";
271
	$l_onlinetime			= "Sluit tijd:";
272
	$l_remainingtime		= "Verbreking in:";
273
	$l_boutonO			= "Authenticatie";
274
	$l_boutonF			= "Sluiten";
275
	$l_loggedin_stringl1		= "Information System Security";
276
	$l_loggedin_stringl2		= "Het portaal werd opgericht verordeningen om de traceerbaarheid, verantwoordelijkheid en onloochenbaarheid van de verbindingen.";
277
	$l_loggedin_stringl3		= "Uw activiteit op het netwerk is geregistreerd in overeenstemming met de persoonlijke levenssfeer.";
278
	$l_loggedin_stringl4		= "De geregistreerde gegevens kunnen worden kunnen worden bediend door een rechterlijke instantie in de loop van een onderzoek.";
279
	$l_loggedin_stringl5		= "Deze gegevens worden automatisch verwijderd na een jaar.";
2370 tom.houday 280
	$l_loggedin_stringl6		= "Click <a href=\"$alcasarpath\">here</a> to change your password or to integrate the security certificate in your browser";
2238 tom.houday 281
	$l_loggedout_string		= "Logout gemaakt intern portaal!";
2702 tom.houday 282
	$l_reply_0			= "Ongeldige gebruikersnaam of wachtwoord";
2591 rexy 283
	$l_reply_1 			= "Uw dagelijkse quotum is bereikt (duur of volume)";
284
	$l_reply_2			= "Je maandelijkse quotum is bereikt (duur of volume)";
2238 tom.houday 285
	$l_reply_3			= "You try to connect outside of your allowed timespan";
286
	$l_reply_4			= "your account expired";
287
	$l_reply_5			= "You have reached the maximum number of simultaneous logins";
288
	$l_reply_6			= "Your authorized connexion time has been reached";
289
	$l_online_time			= "Online tijd";
290
	$l_remaining_time		= "Reterende tijd";
2956 rexy 291
	$l_uam_domain			= "Sites met open toegang : ";
2993 rexy 292
	$l_sms_registration		= "Registreren per SMS";
3001 rexy 293
	$l_email_registration		= "Registreer per E-mail";
2250 tom.houday 294
} else if ($Language === 'fr') {	// French
2238 tom.houday 295
	$l_ChilliError			= "L'authentification doit être réussie sur le portail captif.";
296
	$l_login			= "Authentification réussie.<HR>La fermeture de cette fenêtre interrompt votre session.";
297
	$l_logout			= "Fermeture de la session";
298
	$l_loginfailed			= "Echec d'authentification";
299
	$l_loggingin			= "Identification sur le portail captif";
300
	$l_loggedcont			= "Contrôle d'accès";
301
	$l_loggedout			= "Votre session est fermée";
302
	$l_user				= "Identifiant";
303
	$l_password			= "Mot de passe";
3139 rexy 304
	$l_mandatory			= "* champs requis";
2238 tom.houday 305
	$l_wait				= "Patientez un instant ...";
306
	$l_onlinetime			= "Temps de connexion:";
307
	$l_remainingtime		= "Deconnexion dans :";
308
	$l_boutonO			= "Authentification";
309
	$l_boutonF			= "Fermer";
310
	$l_loggedin_stringl1		= "Sécurité des Systèmes d'Information";
311
	$l_loggedin_stringl2		= "Ce contrôle a été mis en place pour assurer réglementairement la traçabilité, l'imputabilité et la non-répudiation des connexions.";
312
	$l_loggedin_stringl3		= "Votre activité sur le réseau est enregistrée conformément au respect de la vie privée.";
313
	$l_loggedin_stringl4		= "Les données enregistrées ne pourront être exploitées que par une autorité judiciaire dans le cadre d'une enquête.";
314
	$l_loggedin_stringl5		= "Ces données seront automatiquement supprimées au bout d'un an.";
2370 tom.houday 315
	$l_loggedin_stringl6		= "Cliquez <a href=\"$alcasarpath\">ici</a> pour changer votre mot de passe ou pour intégrer le certificat de sécurité à votre navigateur";
2238 tom.houday 316
	$l_loggedout_string		= "Déconnexion du portail captif effectuée !";
2702 tom.houday 317
	$l_reply_0			= "Nom d'utilisateur ou mot de passe incorrect";
2591 rexy 318
	$l_reply_1			= "Votre quota journalier a été atteint (durée ou volume)";
319
	$l_reply_2			= "Votre quota mensuel a été atteint (durée ou volume)";
2238 tom.houday 320
	$l_reply_3			= "Vous tentez de vous connecter en dehors de votre période autorisée";
321
	$l_reply_4			= "Votre compte a expiré";
322
	$l_reply_5			= "Vous avez atteint le nombre maximum de connexions simultanées";
323
	$l_reply_6			= "Votre durée de connexion autorisée a été atteinte";
324
	$l_online_time			= "Temps de connexion";
325
	$l_remaining_time		= "Temps restant";
2956 rexy 326
	$l_uam_domain			= "Sites en accès libre : ";
2993 rexy 327
	$l_sms_registration		= "S'inscrire par SMS";
3001 rexy 328
	$l_email_registration		= "S'incrire par E-mail";
2238 tom.houday 329
} else {				// English
330
	$l_ChilliError			= "The authentication must be successful through the captive portal service.";
331
	$l_login			= "Successful authentication.<HR>Closing this window interrupts your session";
332
	$l_logout			= "Closing connection";
333
	$l_loginfailed			= "Authentication Failed";
334
	$l_loggingin			= "Identification on the captive portal";
335
	$l_loggedcont			= "Access Control";
336
	$l_loggedout			= "Your session is closed";
337
	$l_user				= "User";
338
	$l_password			= "Password";
3139 rexy 339
	$l_mandatory			= "* field required";
2238 tom.houday 340
	$l_wait				= "Please wait a moment ...";
341
	$l_onlinetime			= "Connect time:";
342
	$l_remainingtime		= "Disconnection in:";
343
	$l_boutonO			= "Authentication";
344
	$l_boutonF			= "Close";
345
	$l_loggedin_stringl1		= "Information System Security";
346
	$l_loggedin_stringl2		= "That control was set up regulations to ensure traceability, accountability and non-repudiation of connections.";
347
	$l_loggedin_stringl3		= "Your activity on the network is registered in accordance with privacy.";
348
	$l_loggedin_stringl4		= "The recorded data can be able to be operated by a judicial authority in the course of an investigation.";
349
	$l_loggedin_stringl5		= "These data will be automatically deleted after one year.";
2370 tom.houday 350
	$l_loggedin_stringl6		= "Click <a href=\"$alcasarpath\">here</a> to change your password or to integrate the security certificate in your browser";
2238 tom.houday 351
	$l_loggedout_string		= "Disconnection of the captive portal made";
2702 tom.houday 352
	$l_reply_0			= "Incorrect username or password";
2591 rexy 353
	$l_reply_1			= "Your daily quota has been reached (duration or volume)";
354
	$l_reply_2			= "Your monthly quota has been reached (duration or volume)";
2238 tom.houday 355
	$l_reply_3			= "You try to connect outside of your allowed timespan";
356
	$l_reply_4			= "your account expired";
357
	$l_reply_5			= "You have reached the maximum number of simultaneous logins";
358
	$l_reply_6			= "Your authorized connexion time has been reached";
359
	$l_online_time			= "Online time";
360
	$l_remaining_time		= "Remaining time";
2956 rexy 361
	$l_uam_domain			= "Open access websites : ";
2993 rexy 362
	$l_sms_registration		= "Register by SMS";
3001 rexy 363
	$l_email_registration		= "Register by E-mail";
2182 tom.houday 364
}
895 richard 365
 
366
# Read form parameters which we care about
1314 richard 367
# avoid the "user as a MAC address" attempts
2378 tom.houday 368
if ((isset($_POST['username'])) && (preg_match('/^([0-9A-F]{2}-){5}[0-9A-F]{2}$/', $_POST['username']) !== 1))
2407 tom.houday 369
				$username	= htmlspecialchars(trim($_POST['username']));	else $username = '';
2378 tom.houday 370
if (isset($_POST['password']))	$password	= htmlspecialchars($_POST['password']);		else $password = '';
2370 tom.houday 371
if (isset($_POST['challenge']))	$challenge	= htmlspecialchars($_POST['challenge']);	else $challenge = '';
2205 tom.houday 372
if (isset($_POST['button']))	$button		= htmlspecialchars($_POST['button']);		else $button = '';
373
// if (isset($_POST['logout']))	$logout		= htmlspecialchars($_POST['logout']);		else $logout = '';
374
// if (isset($_POST['prelogin']))	$prelogin	= htmlspecialchars($_POST['prelogin']);		else $prelogin = '';
2378 tom.houday 375
// if (isset($_POST['res']))	$res		= htmlspecialchars($_POST['res']);		else $res = '';
376
// if (isset($_POST['uamip']))	$uamip		= htmlspecialchars($_POST['uamip']);		else $uamip = '';
377
// if (isset($_POST['uamport']))	$uamport	= htmlspecialchars($_POST['uamport']);		else $uamport = '';
2205 tom.houday 378
if (isset($_POST['userurl']))	$userurl	= htmlspecialchars($_POST['userurl']);		else $userurl = '';
2378 tom.houday 379
// if (isset($_POST['timeleft']))	$timeleft	= htmlspecialchars($_POST['timeleft']);		else $timeleft = '';
380
// if (isset($_POST['redirurl']))	$redirurl	= htmlspecialchars($_POST['redirurl']);		else $redirurl = '';
895 richard 381
 
382
# Read query parameters which we care about
2378 tom.houday 383
if (isset($_GET['res']))	$res		= htmlspecialchars($_GET['res']);		else $res = '';
384
// if (isset($_GET['reason']))	$reason		= htmlspecialchars($_GET['reason']);		else $reason = '';
2205 tom.houday 385
if (isset($_GET['challenge']))	$challenge	= htmlspecialchars($_GET['challenge']);
2378 tom.houday 386
// if (isset($_GET['uamip']))	$uamip		= htmlspecialchars($_GET['uamip']);
387
// if (isset($_GET['uamport']))	$uamport	= htmlspecialchars($_GET['uamport']);
388
if (isset($_GET['timeleft']))	$timeleft	= htmlspecialchars($_GET['timeleft']);		else $timeleft = '';
389
if (isset($_GET['reply']))	$reply		= htmlspecialchars(trim($_GET['reply']));	else $reply = '';
390
if (isset($_GET['redirurl']))	$redirurl	= htmlspecialchars($_GET['redirurl']);		else $redirurl = '';
2205 tom.houday 391
if (isset($_GET['userurl']))	$userurl	= htmlspecialchars($_GET['userurl']);
895 richard 392
 
2378 tom.houday 393
// TODO: clean unused query params
394
 
395
$uamip = $conf['HOSTNAME'].'.'.$conf['DOMAIN'];
2409 tom.houday 396
if (($conf['HTTPS_CHILLI'] === 'on') && $useHTTPS) {
2378 tom.houday 397
	$uamproto = 'https';
398
	$uamport  = 3991;
399
} else {
400
	$uamproto = 'http';
401
	$uamport  = 3990;
2239 tom.houday 402
}
403
 
895 richard 404
# translation of radius replies
2378 tom.houday 405
if (!empty($reply)) {
406
	switch ($reply) {
2591 rexy 407
		case 'Username not found'				: $reply = $l_reply_0; break;
2702 tom.houday 408
		case 'Login failed'					: $reply = $l_reply_0; break;
2205 tom.houday 409
		case 'Your maximum daily usage time has been reached'	: $reply = $l_reply_1; break;
410
		case 'Your maximum monthly usage time has been reached'	: $reply = $l_reply_2; break;
2837 rexy 411
		case 'You are out your allowed time period'		: $reply = $l_reply_3; break;
412
		case 'Your expiration date has been reached'	: $reply = $l_reply_4; break;
2205 tom.houday 413
		case 'You are already logged in - access denied'	: $reply = $l_reply_5; break;
2837 rexy 414
		case 'Your usage time has been reached'	: 			$reply = $l_reply_6; break;
2182 tom.houday 415
	}
416
}
895 richard 417
 
2182 tom.houday 418
// If attempt to login
419
if ($button === $l_boutonO) {
420
	//correction password length in coova-chilli
421
	//thanks to http://www.stochasticgeometry.ie/2009/09/09/maximum-password-length-in-coova-chilli/
422
	$hexchal = pack('H*', $challenge);
3085 rexy 423
	$newchal = pack('H*', hash('sha256',$hexchal . $uamsecret));
2182 tom.houday 424
	// If challenge isn't long enough, repeat it until it is
2238 tom.houday 425
	while (strlen($newchal) < strlen($password)) {
2182 tom.houday 426
		$newchal .= $newchal;
427
	}
428
	$newpwd   = pack('a*', $password);
429
	// Encode plain text password with challenge
430
	$pappassword = implode('', unpack('H*', ($newpwd ^ $newchal)));
2378 tom.houday 431
	header("Location: $uamproto://$uamip:$uamport/logon?username=$username&password=$pappassword&userurl=$userurl");
2182 tom.houday 432
	exit();
895 richard 433
}
434
 
435
switch($res) {
2182 tom.houday 436
	case 'success':	$result = 1; break; // If login successful
437
	case 'failed':	$result = 2; break; // If login failed
438
	case 'logoff':	$result = 3; break; // If logout successful
439
	case 'already':	$result = 4; break; // If tried to login while already logged in
440
	case 'notyet':	$result = 5; break; // If not logged in yet
441
	default:	$result = 0; // Default: It was not a form request -> client go to login form
895 richard 442
}
443
 
2010 raphael.pi 444
//check if we need to warn user about the imputability logs.
2378 tom.houday 445
if ($result === 1) {
2182 tom.houday 446
	if ((is_file('./acc/manager/lib/sql/drivers/mysql/functions.php')) && (is_file('/etc/freeradius-web/config.php'))) {
447
		include_once('/etc/freeradius-web/config.php');
448
		include_once('./acc/manager/lib/sql/drivers/mysql/functions.php');
3137 rexy 449
		$link = @da_sql_pconnect($config);
2182 tom.houday 450
		if ($link) {
451
			$user_uid = da_sql_escape_string($link, $_GET['uid']);
2501 tom.houday 452
			$sql = "SELECT value FROM radreply WHERE username='$user_uid' AND attribute='Alcasar-Imputability-Warning'";
3137 rexy 453
			$res = @da_sql_query($link, $config, $sql);
2182 tom.houday 454
			if ($res) {
455
				$row = @da_sql_fetch_array($res, $config);
2501 tom.houday 456
				if ($row['value'] === '1') {
457
					$sql = "DELETE FROM radreply WHERE username='$user_uid' AND attribute='Alcasar-Imputability-Warning'";
458
					@da_sql_query($link, $config, $sql);
2370 tom.houday 459
					header('Location: '.(($conf['HTTPS_LOGIN'] === 'on') ? 'https' : 'http').'://'.$conf['HOSTNAME'].'.'.$conf['DOMAIN'].'/index.php?warn=1&url='.urlencode($_GET['userurl']));   //we present to user information about imputability logs 
2182 tom.houday 460
					exit();
461
				}
462
			}
463
		}
464
	}
2010 raphael.pi 465
}
466
 
2378 tom.houday 467
// By default, redirect to prelogin in order to generate a challenge
468
if ($result === 0) {
469
	header("Location: $uamproto://$uamip:$uamport/prelogin");
2182 tom.houday 470
	exit();
895 richard 471
}
2238 tom.houday 472
 
2766 rexy 473
//////////////////////////////////////////////
474
///////////// TEST VARIABLES /////////////////
475
//////////////////////////////////////////////////////////////////
3139 rexy 476
//$result = 5;     // = 1/2/3/4/5
477
//$reply is a displayed sentence
2766 rexy 478
//$reply = 'dsfsdfsdfdsf';    //  = ''/'Incorrect user/password'
479
//$service_SMS_status = true;    // = true/false
3001 rexy 480
//$service_Email_status = true;    // = true/false
3137 rexy 481
//$service_wifi4eu_status = true;    // = true/false
2766 rexy 482
// test of domain Allowed
483
//////////////////////////////////////////////////////////////////
484
 
2238 tom.houday 485
// Cleaning the cache
486
header('Expires: Tue, 01 Jan 2000 00:00:00 GMT');
487
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
488
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
489
header('Cache-Control: post-check=0, pre-check=0', false);
490
header('Pragma: no-cache');
2182 tom.houday 491
?>
2238 tom.houday 492
<!DOCTYPE html>
895 richard 493
<html>
494
<head>
2182 tom.houday 495
	<meta charset="utf-8">
496
	<title><?= $l_loggingin ?></title>
3174 rexy 497
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
2935 rexy 498
	<link rel="stylesheet" href="/css/bootstrap.min.css" type="text/css">
499
	<link rel="stylesheet" href="/css/intercept.css" type="text/css">
500
	<link rel="icon" href="/images/favicon-48.ico" type="image/ico">
501
<? if ($service_wifi4eu_status): ?>
2182 tom.houday 502
	<script type="text/javascript">
2935 rexy 503
		var wifi4euTimerStart = Date.now();
504
		var wifi4euNetworkIdentifier = '<?= $service_wifi4eu_code ?>';
505
		var wifi4euLanguage = '<?= $Language ?>';
506
		//var selftestModus = true;
507
	</script>
508
	<script type="text/javascript" src="<?= $service_wifi4eu_server ?>"></script>
509
<? endif; ?>
510
	<script type="text/javascript">
1346 richard 511
	function doOnLoad(result, userurl, redirurl, adminurl, timeleft) {
2283 tom.houday 512
		if ((result === 1) || (result === 4)) {	// success or already
2201 tom.houday 513
			var url;
2182 tom.houday 514
			if (adminurl !== '') {
2201 tom.houday 515
				url = adminurl;
2182 tom.houday 516
			} else if (redirurl !== '') {
2201 tom.houday 517
				url = redirurl;
518
			} else if (userurl !== '') {
519
				url = userurl;
1346 richard 520
			}
2201 tom.houday 521
			if (typeof url !== 'undefined') {
2283 tom.houday 522
				var win = window.open('<?= $statuspath ?>', '_blank');
2406 tom.houday 523
				if ((win === null) || (typeof win === 'undefined')) { // Pop-up blocked
2283 tom.houday 524
					window.location = '<?= $statuspath ?>';
525
				} else {
526
					window.location = url;
2201 tom.houday 527
				}
2283 tom.houday 528
			} else {
529
				window.location = '<?= $statuspath ?>';
2201 tom.houday 530
			}
1346 richard 531
		}
2283 tom.houday 532
		if ((result === 2) || (result === 3) || result === 5) { // failed or logoff or notyet
2378 tom.houday 533
			document.form1.username.focus();
1346 richard 534
		}
535
	}
2182 tom.houday 536
	</script>
3139 rexy 537
	<script type="text/javascript" src="js/bootstrap.min.js"></script>
538
	<script type="text/javascript" src="/js/jquery.min.js"></script>
539
	<script>jQuery(document).ready(function($){$("input").focus(function(){$("#status").fadeOut(1000);});});</script>
895 richard 540
</head>
2182 tom.houday 541
<body onLoad="javascript:doOnLoad(<?= $result ?>,'<?= $userurl ?>','<?= $redirurl ?>','<?= $adminurl ?>','<?= $timeleft ?>')">
3026 rexy 542
	<div class="col-12">	
2766 rexy 543
	<?php if ($result === 2 || $result === 3 || $result === 5): // failed or logoff or notyet ?>
544
		<div class ="row">
3026 rexy 545
			<div class="col-12 col-md-10 offset-sm-1">
2766 rexy 546
				<div class="row banner">
3026 rexy 547
					<div class="col-8 offset-xs-2 col-md-12 offset-sm-0">
2935 rexy 548
				<?php if ($service_wifi4eu_status): ?>
549
					<img id="wifi4eubanner">
550
				<?php else: ?>
551
					<h1 class="organisme"><?= $organisme ?></h1>
552
				<?php endif; ?>
2766 rexy 553
					</div>
554
				</div>
555
				<div class="row">
3026 rexy 556
					<form name="form1" class="form-horizontal col-12 col-sm-12 col-md-10 offset-md-1 background-form" method="post" action="<?= $loginpath ?>">
2766 rexy 557
						<div class="row">
3026 rexy 558
							<div class="col-12 col-sm-12 col-md-6 offset-md-3">
2766 rexy 559
								<h2 class="titre-controle-acces"><?= $l_loggedcont ?></h2>
560
							</div>
3026 rexy 561
							<div class="d-none d-md-block col-md-3">
2766 rexy 562
							<?php
563
							// Read the "Domain allowed" file
564
							$tab = file(DOMAIN_ALLOWED_LIST);
565
							if ($tab) { // the file isn't empty
566
								echo '<div id="authorized_domain">'.$l_uam_domain.'</div>';
567
								echo '<ul>';
568
								foreach ($tab as $line) {
2935 rexy 569
									if (!empty(trim($line))) { // the line isn't empty
570
										if (strpos ($line, '#')) { // the domain should be displayed
571
											$domain_allowed = explode('#', $line);
2766 rexy 572
											$domain = explode('"', $domain_allowed[0]);
2935 rexy 573
											$domain[1] = ltrim($domain[1], '.'); // remove every '.' from the beginning of domain
2766 rexy 574
											echo '<li><a href="http://'.trim($domain[1]).'">'.trim($domain_allowed[1]).'</a></li>';
575
										}
576
									}
577
								}
578
								echo '</ul>';
579
							}
580
							?>
581
							</div>
582
						</div>
583
						<div>
584
						<?php if ($result === 2): // failed ?>
585
							<h3 class="titre-erreur"><?= $l_loginfailed ?>
586
							<?php if ($reply): // traitement du reply ... ?>
587
								: <?= $reply ?>
588
							<?php endif; ?>
589
							</h3>
590
						<?php endif;
591
						if ($userurl === 'http://logout/') $userurl = 'http://www.google.com'; // Avoid cyclic logout
592
						?>
593
						</div>
594
						<div class="row inputs">
3026 rexy 595
							<div class="d-none d-md-block col-md-2">
596
								 <img id="logo-organ" class="img-fluid" src="/images/organisme.png">
2766 rexy 597
							</div>
3026 rexy 598
							<div class="col-12 col-md-8">
2766 rexy 599
								<input type="hidden" name="challenge" value="<?= $challenge ?>">
600
								<input type="hidden" name="userurl" value="<?= $userurl ?>">
601
								<div class="form-group row">
3139 rexy 602
									<div class="col-2 col-md-3 control-label">
603
										<p class="boite-info-text"><?= $l_user ?> *</p>
2766 rexy 604
									</div>
3026 rexy 605
									<div class="col-8 col-md-8" id="input_username">
3038 rexy 606
										<input type="text" class="form-control boite-info-text" name="username" placeholder="<?= $l_user ?>">
2766 rexy 607
									</div>
608
								</div>
609
								<div class="form-group row">
3139 rexy 610
									<div class="col-2 col-md-3 control-label">
611
										<p class="boite-info-text"><?= $l_password ?> *</p>
2766 rexy 612
									</div>
3026 rexy 613
									<div class="col-8 col-md-8" id="input_password">
3038 rexy 614
										<input type="password" class="form-control boite-info-text" name="password" placeholder="<?= $l_password ?>">
2766 rexy 615
									</div>
616
								</div>
3139 rexy 617
								<div id="status"><?=$l_mandatory?></div>
2766 rexy 618
							</div>
3026 rexy 619
							<div class="d-none d-md-block col-md-2">
2766 rexy 620
							</div>
621
						</div>
622
						<div class="row row_button">
3185 rexy 623
							<div class="col-12 text-center">
624
								<input value="<?= $l_boutonO ?>" class="btn btn-primary button" type="submit" name="button">
625
								<?php if ($service_SMS_status): ?>
626
									<a href="sms_registration.php" class="btn btn-primary button"><?= $l_sms_registration ?></a>
627
								<?php endif; ?>
628
								<?php if ($service_Email_status): ?>
629
									<a href="email_registration_front.php" class="btn btn-primary button"><?= $l_email_registration ?></a>
630
								<?php endif; ?>
3139 rexy 631
							</div>
2766 rexy 632
						</div>
633
					</form>
634
				</div>
635
			</div>
636
		</div>
637
			<div class="row boite-info-spacing">
3026 rexy 638
				<div class="col-12 col-md-10 offset-sm-1 col-lg-8 offset-md-2 boite-info-spacing">
2766 rexy 639
					<table id="boite-info" cellSpacing="0" cellPadding="0">
640
						<tr class="boite-info-titre">
641
							<td align="center"><font color="red"><b><?= $l_loggedin_stringl1 ?></b></font></td>
642
						</tr>
643
						<tr class="boite-info-text">
644
							<td align="left">
645
								<ul>
646
									<li><?= $l_loggedin_stringl2 ?></li>
647
									<li><?= $l_loggedin_stringl4 ?></li>
648
									<li><?= $l_loggedin_stringl3 ?></li>
649
									<li><?= $l_loggedin_stringl5 ?></li>
650
									<li><?= $l_loggedin_stringl6 ?></li>
651
								</ul>
652
							</td>
653
						</tr>
654
					</table>
655
				</div>
3026 rexy 656
				<div class="d-none d-sm-none d-md-block col-md-2">
657
					<img id="logo-alcasar" class="img-fluid" src="/images/logo-alcasar.png">
2766 rexy 658
				</div>
659
			</div>
660
			<div class="row">
3026 rexy 661
				<div class="col-6 col-md-12 d-md-none d-sm-none d-lg-none">
662
						<img id="logo-alcasar" class="img-fluid img-xs-bottom" src="/images/logo-alcasar.png">
2766 rexy 663
					</div>
3026 rexy 664
				<div class="col-6 d-sm-none d-md-none d-lg-none">
665
					<img id="logo-organ" class="img-fluid img-xs-bottom" src="/images/organisme.png">
2766 rexy 666
				</div>
667
			</div>
668
		<div class="row" style="text-align: center">
3026 rexy 669
			<div class="col-8 offset-xs-2 col-md-6 offset-sm-3 d-md-none d-sm-none d-lg-none">
2766 rexy 670
			<?php
671
			// Read the "Domain allowed" file
672
			$tab = file(DOMAIN_ALLOWED_LIST);
673
			if ($tab) { // the file isn't empty
674
				echo '<div id="authorized_domain">'.$l_uam_domain.'</div>';
675
				echo '<ul>';
676
				foreach ($tab as $line) {
2935 rexy 677
					if (!empty(trim($line))) { // the line isn't empty
678
						if (strpos ($line, '#')) { // the domain should be displayed
679
							$domain_allowed = explode('#', $line);
2766 rexy 680
							$domain = explode('"', $domain_allowed[0]);
2935 rexy 681
							$domain[1] = ltrim($domain[1], '.'); // remove every '.' from the beginning of domain
2766 rexy 682
							echo '<li><a href="http://'.trim($domain[1]).'">'.trim($domain_allowed[1]).'</a></li>';
683
						}
2182 tom.houday 684
					}
685
				}
2766 rexy 686
				echo '</ul>';
2182 tom.houday 687
			}
2766 rexy 688
			?>
689
			</div>
690
		</div>
2182 tom.houday 691
	</div>
692
	<?php endif; ?>
895 richard 693
</body>
2182 tom.houday 694
</html>