Subversion Repositories ALCASAR

Rev

Rev 2377 | Rev 2413 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 2377 Rev 2394
1
<?php
1
<?php
2
# $Id: status.php 2377 2017-08-16 18:51:18Z tom.houdayer $
2
# $Id: status.php 2394 2017-08-27 13:28:59Z tom.houdayer $
3
#
3
#
4
# status.php for ALCASAR captive portal
4
# status.php for ALCASAR captive portal
5
# by steweb57 & Rexy
5
# by steweb57 & Rexy
6
# 
6
# 
7
/****************************************************************
7
/****************************************************************
8
*			GLOBAL FILE PATHS			*
8
*			GLOBAL FILE PATHS			*
9
*****************************************************************/
9
*****************************************************************/
10
define('CONF_FILE', '/usr/local/etc/alcasar.conf');
10
define('CONF_FILE', '/usr/local/etc/alcasar.conf');
11
 
11
 
12
/****************************************************************
12
/****************************************************************
13
*			FILE reading test			*
13
*			FILE reading test			*
14
*****************************************************************/
14
*****************************************************************/
15
$conf_files = array(CONF_FILE);
15
$conf_files = array(CONF_FILE);
16
foreach ($conf_files as $file) {
16
foreach ($conf_files as $file) {
17
	if (!file_exists($file)) {
17
	if (!file_exists($file)) {
18
		exit("Fichier $file non présent");
18
		exit("Fichier $file non présent");
19
	}
19
	}
20
	if (!is_readable($file)) {
20
	if (!is_readable($file)) {
21
		exit("Vous n'avez pas les droits de lecture sur le fichier $file");
21
		exit("Vous n'avez pas les droits de lecture sur le fichier $file");
22
	}
22
	}
23
}
23
}
24
 
24
 
25
/****************************************************************
25
/****************************************************************
26
*			Read CONF_FILE				*
26
*			Read CONF_FILE				*
27
*****************************************************************/
27
*****************************************************************/
28
$file_conf = fopen(CONF_FILE, 'r');
28
$file_conf = fopen(CONF_FILE, 'r');
29
if (!$file_conf) {
29
if (!$file_conf) {
30
	exit('Error opening the file '.CONF_FILE);
30
	exit('Error opening the file '.CONF_FILE);
31
}
31
}
32
while (!feof($file_conf)) {
32
while (!feof($file_conf)) {
33
	$buffer = fgets($file_conf, 4096);
33
	$buffer = fgets($file_conf, 4096);
34
	if ((strpos($buffer, '=') !== false) && (substr($buffer, 0, 1) !== '#')) {
34
	if ((strpos($buffer, '=') !== false) && (substr($buffer, 0, 1) !== '#')) {
35
		$tmp = explode('=', $buffer);
35
		$tmp = explode('=', $buffer);
36
		$conf[trim($tmp[0])] = trim($tmp[1]);
36
		$conf[trim($tmp[0])] = trim($tmp[1]);
37
	}
37
	}
38
}
38
}
39
fclose($file_conf);
39
fclose($file_conf);
40
 
40
 
41
$organisme = $conf['ORGANISM'];
41
$organisme = $conf['ORGANISM'];
42
$remote_ip = preg_match('#^([0-9]{1,3}\.){3}[0-9]{1,3}$#', $_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : '';
42
$remote_ip = preg_match('#^([0-9]{1,3}\.){3}[0-9]{1,3}$#', $_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : '';
43
$cn = '';
43
$cn = '';
44
$connection_history = '';
44
$connection_history = '';
45
$nb_connection_history = 3;
45
$nb_connection_history = 3;
46
$homepage_url = (($conf['HTTPS_LOGIN'] === 'on') ? 'https' : 'http' ).'://'.$conf['HOSTNAME'].'.'.$conf['DOMAIN'].'/';
46
$homepage_url = (($conf['HTTPS_LOGIN'] === 'on') ? 'https' : 'http' ).'://'.$conf['HOSTNAME'].'.'.$conf['DOMAIN'].'/';
47
$useHTTPS = ((isset($_SERVER['HTTPS'])) && (!empty($_SERVER['HTTPS'])) && ($_SERVER['HTTPS'] !== 'off'));
47
$useHTTPS = ((isset($_SERVER['HTTPS'])) && (!empty($_SERVER['HTTPS'])) && ($_SERVER['HTTPS'] !== 'off'));
48
 
48
 
49
// Wait for chilli (update its tables)
49
// Wait for chilli (update its tables)
50
sleep(1); // TODO: wait after login only?
50
sleep(1); // TODO: wait after login only?
51
// Retrieve user info in tab $user[]
51
// Retrieve user info in tab $user[]
52
exec("sudo /usr/sbin/chilli_query list | grep 'pass' | grep -Ew '($remote_ip)'" , $tab);
52
exec("sudo /usr/sbin/chilli_query list | grep 'pass' | grep -Ew '($remote_ip)'" , $tab);
53
if (isset($tab[0])) {
53
if (isset($tab[0])) {
54
	$user = explode(' ', $tab[0]);
54
	$user = explode(' ', $tab[0]);
55
}
55
}
56
 
56
 
57
// Time conversion 
57
// Time conversion 
58
function secondsToDuration($seconds = null) {
58
function secondsToDuration($seconds = null) {
59
	if ($seconds === null) return '';
59
	if ($seconds === null) return '';
60
	$temp = $seconds % 3600;
60
	$temp = $seconds % 3600;
61
	$time[2] = $temp % 60 ;			// seconds
61
	$time[2] = $temp % 60 ;			// seconds
62
	$time[1] = ($temp - $time[2]) / 60;	// minutes
62
	$time[1] = ($temp - $time[2]) / 60;	// minutes
63
	$time[0] = ($seconds - $temp) / 3600 ;	// hours
63
	$time[0] = ($seconds - $temp) / 3600 ;	// hours
64
	return $time[0].' h '.$time[1].' m '.$time[2].' s';
64
	return $time[0].' h '.$time[1].' m '.$time[2].' s';
65
}
65
}
66
 
66
 
67
# Choice of language
67
# Choice of language
68
// TODO: reste quelques traductions à faire
68
// TODO: reste quelques traductions à faire
69
$Language = 'en';
69
$Language = 'en';
70
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
70
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
71
	$Langue = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
71
	$Langue = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
72
	$Language = strtolower(substr(chop($Langue[0]), 0, 2));
72
	$Language = strtolower(substr(chop($Langue[0]), 0, 2));
73
}
73
}
74
if ($Language === 'es') {		// Spanish
74
if ($Language === 'es') {		// Spanish
75
	$l_login1			= "El éxito de la autenticación";
75
	$l_login1			= "El éxito de la autenticación";
76
	$l_logout			= "Conexión de cierre";
76
	$l_logout			= "Conexión de cierre";
77
	$l_logout_question		= "¿Seguro que desea desconectar?";
77
	$l_logout_question		= "¿Seguro que desea desconectar?";
78
	$l_loggedout			= "Su sesión se cierra";
78
	$l_loggedout			= "Su sesión se cierra";
79
	$l_wait				= "Por favor, espere un momento ...";
79
	$l_wait				= "Por favor, espere un momento ...";
80
	$l_state_label			= "Estado";
80
	$l_state_label			= "Estado";
81
	$l_session_id_label		= "Sesión ID";
81
	$l_session_id_label		= "Sesión ID";
82
	$l_max_session_time_label	= "Tiempo máximo de sesión";
82
	$l_max_session_time_label	= "Tiempo máximo de sesión";
83
	$l_max_idle_time_label		= "Tiempo de inactividad autorizado";
83
	$l_max_idle_time_label		= "Tiempo de inactividad autorizado";
84
	$l_start_time_label		= "Start Time";	// to translate
84
	$l_start_time_label		= "Start Time";	// to translate
85
	$l_session_time_label		= "Tiempo de conexión";
85
	$l_session_time_label		= "Tiempo de conexión";
86
	$l_idle_time_label		= "Idle Time";	// to translate
86
	$l_idle_time_label		= "Idle Time";	// to translate
87
	$l_downloaded_label		= "Downloaded";	// to translate
87
	$l_downloaded_label		= "Downloaded";	// to translate
88
	$l_uploaded_label		= "Uploaded";	// to translate
88
	$l_uploaded_label		= "Uploaded";	// to translate
89
	$l_original_url_label		= "Original URL";	// to translate
89
	$l_original_url_label		= "Original URL";	// to translate
90
	$l_not_available		= "Not available";	// to translate
90
	$l_not_available		= "Not available";	// to translate
91
	$l_error			= "error";		// to translate
91
	$l_error			= "error";		// to translate
92
	$l_welcome			= "Welcome";	// to translate
92
	$l_welcome			= "Welcome";	// to translate
93
	$l_conn_history			= "Your last $nb_connection_history connections";	// to translate
93
	$l_conn_history			= "Your last $nb_connection_history connections";	// to translate
94
	$l_connected 			= "logged"; // to translate
94
	$l_connected 			= "logged"; // to translate
95
	$l_a_connection			= "You have"; // to translate
95
	$l_a_connection			= "You have"; // to translate
96
	$l_a_connection_time		= "active connections on the network"; // to translate
96
	$l_a_connection_time		= "active connections on the network"; // to translate
97
	$l_close_warning		= "Advertencia: se desconectará si cierra esta ventana";
97
	$l_close_warning		= "Advertencia: se desconectará si cierra esta ventana";
98
	$l_back_homepage		= "Volver a la página de inicio";
98
	$l_back_homepage		= "Volver a la página de inicio";
99
} else if ($Language === 'zh') {	// Chinese
99
} else if ($Language === 'zh') {	// Chinese
100
	$l_login1			= "验证通过";
100
	$l_login1			= "验证通过";
101
	$l_logout			= "关闭连接";
101
	$l_logout			= "关闭连接";
102
	$l_logout_question		= "您确定需要断开连接吗?";
102
	$l_logout_question		= "您确定需要断开连接吗?";
103
	$l_loggedout			= "您已登出";
103
	$l_loggedout			= "您已登出";
104
	$l_wait				= "请等待 ...";
104
	$l_wait				= "请等待 ...";
105
	$l_state_label			= "连接状态";
105
	$l_state_label			= "连接状态";
106
	$l_session_id_label		= "连接ID";
106
	$l_session_id_label		= "连接ID";
107
	$l_max_session_time_label	= "最大连接时间";
107
	$l_max_session_time_label	= "最大连接时间";
108
	$l_max_idle_time_label		= "最大闲置时间";
108
	$l_max_idle_time_label		= "最大闲置时间";
109
	$l_start_time_label		= "起始连接时间";
109
	$l_start_time_label		= "起始连接时间";
110
	$l_session_time_label		= "连接时间";
110
	$l_session_time_label		= "连接时间";
111
	$l_idle_time_label		= "闲置时间";
111
	$l_idle_time_label		= "闲置时间";
112
	$l_downloaded_label		= "数据下载";
112
	$l_downloaded_label		= "数据下载";
113
	$l_uploaded_label		= "数据上传";
113
	$l_uploaded_label		= "数据上传";
114
	$l_original_url_label		= "初始网址";
114
	$l_original_url_label		= "初始网址";
115
	$l_not_available		= "不可用";
115
	$l_not_available		= "不可用";
116
	$l_error			= "出错";
116
	$l_error			= "出错";
117
	$l_welcome			= "欢迎";
117
	$l_welcome			= "欢迎";
118
	$l_conn_history			= "您最近的{$nb_connection_history}次连接";
118
	$l_conn_history			= "您最近的{$nb_connection_history}次连接";
119
	$l_connected 			= "已登录";  
119
	$l_connected 			= "已登录";  
120
	$l_a_connection			= "您已经有";
120
	$l_a_connection			= "您已经有";
121
	$l_a_connection_time		= "在线时间";
121
	$l_a_connection_time		= "在线时间";
122
	$l_close_warning		= "警告: 您将会断开连接如果您在关闭此窗口";
122
	$l_close_warning		= "警告: 您将会断开连接如果您在关闭此窗口";
123
	$l_back_homepage		= "回到主页";
123
	$l_back_homepage		= "回到主页";
124
} else if ($Language === 'ar') {	// Arabic
124
} else if ($Language === 'ar') {	// Arabic
125
	$l_login1			= "نجاح المصادقة";
125
	$l_login1			= "نجاح المصادقة";
126
	$l_logout			= "إغلاق الدورة";
126
	$l_logout			= "إغلاق الدورة";
127
	$l_logout_question		= "هل تريد فعلاً قطع الاتصال؟";
127
	$l_logout_question		= "هل تريد فعلاً قطع الاتصال؟";
128
	$l_loggedout			= "دورتكَ مُغلَقة";
128
	$l_loggedout			= "دورتكَ مُغلَقة";
129
	$l_wait				= "...إنتظر بعض اللحظات";
129
	$l_wait				= "...إنتظر بعض اللحظات";
130
	$l_state_label			= "وَضْع";
130
	$l_state_label			= "وَضْع";
131
	$l_session_id_label		= "معرف الدورة";
131
	$l_session_id_label		= "معرف الدورة";
132
	$l_max_session_time_label	= "الوقت المسموح للإتصال";
132
	$l_max_session_time_label	= "الوقت المسموح للإتصال";
133
	$l_max_idle_time_label		= "الحد الأقصى لعدم التنشيط";
133
	$l_max_idle_time_label		= "الحد الأقصى لعدم التنشيط";
134
	$l_start_time_label		= "بداية الإتصال";
134
	$l_start_time_label		= "بداية الإتصال";
135
	$l_session_time_label		= "مدة الإتصال";
135
	$l_session_time_label		= "مدة الإتصال";
136
	$l_idle_time_label		= "انعدام التنشيط";
136
	$l_idle_time_label		= "انعدام التنشيط";
137
	$l_downloaded_label		= "تم تحميل المعطيات";
137
	$l_downloaded_label		= "تم تحميل المعطيات";
138
	$l_uploaded_label		= "تم إرسال المعطيات";
138
	$l_uploaded_label		= "تم إرسال المعطيات";
139
	$l_original_url_label		= "تم طلب URL";
139
	$l_original_url_label		= "تم طلب URL";
140
	$l_not_available		= "غير متوفّر";
140
	$l_not_available		= "غير متوفّر";
141
	$l_na				= "N/D";
141
	$l_na				= "N/D";
142
	$l_error			= "خطأ";
142
	$l_error			= "خطأ";
143
	$l_welcome			= "مرحباً بك";
143
	$l_welcome			= "مرحباً بك";
144
	$l_conn_history			= "($nb_connection_history) سِجِل اتصالاتك الاخيرة";
144
	$l_conn_history			= "($nb_connection_history) سِجِل اتصالاتك الاخيرة";
145
	$l_connected 			= "دورة ناشطة";  
145
	$l_connected 			= "دورة ناشطة";  
146
	$l_a_connection			= "لديك";
146
	$l_a_connection			= "لديك";
147
	$l_a_connection_time		= "اتصالات ناشطة على الشبكة";
147
	$l_a_connection_time		= "اتصالات ناشطة على الشبكة";
148
	$l_close_warning		= "تحذير: سيتم قطع الاتصال إذا قمت بإغلاق هذه النافذة";
148
	$l_close_warning		= "تحذير: سيتم قطع الاتصال إذا قمت بإغلاق هذه النافذة";
149
	$l_back_homepage		= "الرجوع إلى الصفحة الرئيسية";
149
	$l_back_homepage		= "الرجوع إلى الصفحة الرئيسية";
150
} else if ($Language === 'pt') {	// Portuguese
150
} else if ($Language === 'pt') {	// Portuguese
151
	$l_login1			= "Autenticação bem sucedida.";
151
	$l_login1			= "Autenticação bem sucedida.";
152
	$l_logout			= "Fechando a conexão";
152
	$l_logout			= "Fechando a conexão";
153
	$l_logout_question		= "Tem certeza de que deseja desconectar agora?";
153
	$l_logout_question		= "Tem certeza de que deseja desconectar agora?";
154
	$l_loggedout			= "Sua conexão será fechada";
154
	$l_loggedout			= "Sua conexão será fechada";
155
	$l_wait				= "Por favor, aguarde um momento ...";
155
	$l_wait				= "Por favor, aguarde um momento ...";
156
	$l_state_label			= "Estado da conexão";
156
	$l_state_label			= "Estado da conexão";
157
	$l_session_id_label		= "Sessão ID";
157
	$l_session_id_label		= "Sessão ID";
158
	$l_max_session_time_label	= "Restante em horas da conexão";
158
	$l_max_session_time_label	= "Restante em horas da conexão";
159
	$l_max_idle_time_label		= "Restante máximo liberado por dia";
159
	$l_max_idle_time_label		= "Restante máximo liberado por dia";
160
	$l_start_time_label		= "Dia, mês, ano e hora da conexão";
160
	$l_start_time_label		= "Dia, mês, ano e hora da conexão";
161
	$l_session_time_label		= "Duração da conexão";
161
	$l_session_time_label		= "Duração da conexão";
162
	$l_idle_time_label		= "Tempo de Espera";
162
	$l_idle_time_label		= "Tempo de Espera";
163
	$l_downloaded_label		= "Recebidos";
163
	$l_downloaded_label		= "Recebidos";
164
	$l_uploaded_label		= "Enviados";
164
	$l_uploaded_label		= "Enviados";
165
	$l_original_url_label		= "URL Original";
165
	$l_original_url_label		= "URL Original";
166
	$l_not_available		= "Não disponível";
166
	$l_not_available		= "Não disponível";
167
	$l_error			= "Erro";
167
	$l_error			= "Erro";
168
	$l_welcome			= "Bem-vindo(a)";
168
	$l_welcome			= "Bem-vindo(a)";
169
	$l_conn_history			= "Suas últimos conexões : $nb_connection_history";
169
	$l_conn_history			= "Suas últimos conexões : $nb_connection_history";
170
	$l_connected 			= "Conectado"; 
170
	$l_connected 			= "Conectado"; 
171
	$l_a_connection			= "Conexão ativa já detectada para essa LAN";
171
	$l_a_connection			= "Conexão ativa já detectada para essa LAN";
172
	$l_a_connection_time		= "Tempo (s)";
172
	$l_a_connection_time		= "Tempo (s)";
173
	$l_close_warning		= "Aviso: você será desconectado se fechar esta janela";
173
	$l_close_warning		= "Aviso: você será desconectado se fechar esta janela";
174
	$l_back_homepage		= "Voltar à página inicial";
174
	$l_back_homepage		= "Voltar à página inicial";
175
} else if ($Language === 'de') {	// German
175
} else if ($Language === 'de') {	// German
176
	$l_login1			= "Erfolgreiche Authentifizierung";
176
	$l_login1			= "Erfolgreiche Authentifizierung";
177
	$l_logout			= "Beenden der Verbindung";
177
	$l_logout			= "Beenden der Verbindung";
178
	$l_logout_question		= "Möchten Sie die Verbindung jetzt wirklich trennen?";
178
	$l_logout_question		= "Möchten Sie die Verbindung jetzt wirklich trennen?";
179
	$l_loggedout			= "Ihre Sitzung ist geschlossen";
179
	$l_loggedout			= "Ihre Sitzung ist geschlossen";
180
	$l_wait				= "Bitte warten Sie einen Moment ...";
180
	$l_wait				= "Bitte warten Sie einen Moment ...";
181
	$l_state_label			= "State";		// to translate
181
	$l_state_label			= "State";		// to translate
182
	$l_session_id_label		= "Session ID";	// to translate
182
	$l_session_id_label		= "Session ID";	// to translate
183
	$l_max_session_time_label	= "Max Session Time";	// to translate
183
	$l_max_session_time_label	= "Max Session Time";	// to translate
184
	$l_max_idle_time_label		= "Max Idle Time";		// to translate
184
	$l_max_idle_time_label		= "Max Idle Time";		// to translate
185
	$l_start_time_label		= "Start Time";	// to translate
185
	$l_start_time_label		= "Start Time";	// to translate
186
	$l_session_time_label		= "Online-zeit";
186
	$l_session_time_label		= "Online-zeit";
187
	$l_idle_time_label		= "Idle Time";	// to translate
187
	$l_idle_time_label		= "Idle Time";	// to translate
188
	$l_downloaded_label		= "Downloaded";	// to translate
188
	$l_downloaded_label		= "Downloaded";	// to translate
189
	$l_uploaded_label		= "Uploaded";	// to translate
189
	$l_uploaded_label		= "Uploaded";	// to translate
190
	$l_original_url_label		= "Original URL";	// to translate
190
	$l_original_url_label		= "Original URL";	// to translate
191
	$l_not_available		= "Not available";	// to translate
191
	$l_not_available		= "Not available";	// to translate
192
	$l_error			= "error";		// to translate
192
	$l_error			= "error";		// to translate
193
	$l_welcome			= "Welcome"; 	// to translate
193
	$l_welcome			= "Welcome"; 	// to translate
194
	$l_conn_history			= "Your last $nb_connection_history connections";	// to translate
194
	$l_conn_history			= "Your last $nb_connection_history connections";	// to translate
195
	$l_connected 			= "logged"; // to translate 
195
	$l_connected 			= "logged"; // to translate 
196
	$l_a_connection			= "You have"; // to translate
196
	$l_a_connection			= "You have"; // to translate
197
	$l_a_connection_time		= "active connections on the network"; // to translate
197
	$l_a_connection_time		= "active connections on the network"; // to translate
198
	$l_close_warning		= "Warnung: Sie werden getrennt, wenn Sie dieses Fenster schließen";
198
	$l_close_warning		= "Warnung: Sie werden getrennt, wenn Sie dieses Fenster schließen";
199
	$l_back_homepage		= "Zurück zur Startseite";
199
	$l_back_homepage		= "Zurück zur Startseite";
200
} else if ($Language === 'nl') {	// Dutch
200
} else if ($Language === 'nl') {	// Dutch
201
	$l_login1			= "Succesvolle authenticatie";
201
	$l_login1			= "Succesvolle authenticatie";
202
	$l_logout			= "Slotkoers verbinding";
202
	$l_logout			= "Slotkoers verbinding";
203
	$l_logout_question		= "Bent u zeker dat u wilt nu los te koppelen?";
203
	$l_logout_question		= "Bent u zeker dat u wilt nu los te koppelen?";
204
	$l_loggedout			= "Uw sessie is gesloten";
204
	$l_loggedout			= "Uw sessie is gesloten";
205
	$l_wait				= "Wacht een moment ...";
205
	$l_wait				= "Wacht een moment ...";
206
	$l_state_label			= "State";		// to translate
206
	$l_state_label			= "State";		// to translate
207
	$l_session_id_label		= "Session ID";	// to translate
207
	$l_session_id_label		= "Session ID";	// to translate
208
	$l_max_session_time_label	= "Max Session Time";	// to translate
208
	$l_max_session_time_label	= "Max Session Time";	// to translate
209
	$l_max_idle_time_label		= "Max Idle Time";		// to translate
209
	$l_max_idle_time_label		= "Max Idle Time";		// to translate
210
	$l_start_time_label		= "Start Time";	// to translate
210
	$l_start_time_label		= "Start Time";	// to translate
211
	$l_session_time_label		= "Online tijd";
211
	$l_session_time_label		= "Online tijd";
212
	$l_idle_time_label		= "Idle Time";	// to translate
212
	$l_idle_time_label		= "Idle Time";	// to translate
213
	$l_downloaded_label		= "Downloaded";	// to translate
213
	$l_downloaded_label		= "Downloaded";	// to translate
214
	$l_uploaded_label		= "Uploaded";	// to translate
214
	$l_uploaded_label		= "Uploaded";	// to translate
215
	$l_original_url_label		= "Original URL";	// to translate
215
	$l_original_url_label		= "Original URL";	// to translate
216
	$l_not_available		= "Not available";	// to translate
216
	$l_not_available		= "Not available";	// to translate
217
	$l_error			= "error";		// to translate
217
	$l_error			= "error";		// to translate
218
	$l_welcome			= "Welcome";	// to translate
218
	$l_welcome			= "Welcome";	// to translate
219
	$l_conn_history			= "Your last $nb_connection_history connections";	// to translate
219
	$l_conn_history			= "Your last $nb_connection_history connections";	// to translate
220
	$l_connected 			= "logged"; // to translate 
220
	$l_connected 			= "logged"; // to translate 
221
	$l_a_connection			= "You have"; // to translate
221
	$l_a_connection			= "You have"; // to translate
222
	$l_a_connection_time		= "active connections on the network"; // to translate
222
	$l_a_connection_time		= "active connections on the network"; // to translate
223
	$l_close_warning		= "Waarschuwing: u zal worden afgebroken als u dit venster sluiten";
223
	$l_close_warning		= "Waarschuwing: u zal worden afgebroken als u dit venster sluiten";
224
	$l_back_homepage		= "Terug naar de homepage";
224
	$l_back_homepage		= "Terug naar de homepage";
225
} else if ($Language === 'fr') {	// French
225
} else if ($Language === 'fr') {	// French
226
	$l_login1			= "Authentification réussie";
226
	$l_login1			= "Authentification réussie";
227
	$l_logout			= "Fermeture de la session";
227
	$l_logout			= "Fermeture de la session";
228
	$l_logout_question		= "Êtes vous sûr de vouloir vous déconnecter?";
228
	$l_logout_question		= "Êtes vous sûr de vouloir vous déconnecter?";
229
	$l_loggedout			= "Votre session est fermée";
229
	$l_loggedout			= "Votre session est fermée";
230
	$l_wait				= "Patientez un instant ....";
230
	$l_wait				= "Patientez un instant ....";
231
	$l_state_label			= "État";
231
	$l_state_label			= "État";
232
	$l_session_id_label		= "Session ID";
232
	$l_session_id_label		= "Session ID";
233
	$l_max_session_time_label	= "Temps de connexion autorisé";
233
	$l_max_session_time_label	= "Temps de connexion autorisé";
234
	$l_max_idle_time_label		= "Temps d'inactivité autorisé";
234
	$l_max_idle_time_label		= "Temps d'inactivité autorisé";
235
	$l_start_time_label		= "Début de connexion";
235
	$l_start_time_label		= "Début de connexion";
236
	$l_session_time_label		= "Durée de connexion";
236
	$l_session_time_label		= "Durée de connexion";
237
	$l_idle_time_label		= "Inactivité";
237
	$l_idle_time_label		= "Inactivité";
238
	$l_downloaded_label		= "Données téléchargées";
238
	$l_downloaded_label		= "Données téléchargées";
239
	$l_uploaded_label		= "Données envoyées";
239
	$l_uploaded_label		= "Données envoyées";
240
	$l_original_url_label		= "URL demandée";
240
	$l_original_url_label		= "URL demandée";
241
	$l_not_available		= "Non disponible";
241
	$l_not_available		= "Non disponible";
242
	$l_error			= "erreur";
242
	$l_error			= "erreur";
243
	$l_welcome			= "Bienvenue";
243
	$l_welcome			= "Bienvenue";
244
	$l_conn_history			= "Vos $nb_connection_history dernières connexions";
244
	$l_conn_history			= "Vos $nb_connection_history dernières connexions";
245
	$l_connected 			= "session active";  
245
	$l_connected 			= "session active";  
246
	$l_a_connection			= "Vous avez";
246
	$l_a_connection			= "Vous avez";
247
	$l_a_connection_time		= "connexions actives sur le réseau";
247
	$l_a_connection_time		= "connexions actives sur le réseau";
248
	$l_close_warning		= "Attention : vous serez déconnecté si vous fermez cette fenêtre";
248
	$l_close_warning		= "Attention : vous serez déconnecté si vous fermez cette fenêtre";
249
	$l_back_homepage		= "Revenir à la page d'accueil";
249
	$l_back_homepage		= "Revenir à la page d'accueil";
250
} else {				// English
250
} else {				// English
251
	$l_login1			= "Successful authentication.";
251
	$l_login1			= "Successful authentication.";
252
	$l_logout			= "Closing connection";
252
	$l_logout			= "Closing connection";
253
	$l_logout_question		= "Are you sure you want to disconnect now?";
253
	$l_logout_question		= "Are you sure you want to disconnect now?";
254
	$l_loggedout			= "Your session is closed";
254
	$l_loggedout			= "Your session is closed";
255
	$l_wait				= "Please wait a moment ...";
255
	$l_wait				= "Please wait a moment ...";
256
	$l_state_label			= "State";
256
	$l_state_label			= "State";
257
	$l_session_id_label		= "Session ID";
257
	$l_session_id_label		= "Session ID";
258
	$l_max_session_time_label	= "Max Session Time";
258
	$l_max_session_time_label	= "Max Session Time";
259
	$l_max_idle_time_label		= "Max Idle Time";
259
	$l_max_idle_time_label		= "Max Idle Time";
260
	$l_start_time_label		= "Start Time";
260
	$l_start_time_label		= "Start Time";
261
	$l_session_time_label		= "Session Time";
261
	$l_session_time_label		= "Session Time";
262
	$l_idle_time_label		= "Idle Time";
262
	$l_idle_time_label		= "Idle Time";
263
	$l_downloaded_label		= "Downloaded";
263
	$l_downloaded_label		= "Downloaded";
264
	$l_uploaded_label		= "Uploaded";
264
	$l_uploaded_label		= "Uploaded";
265
	$l_original_url_label		= "Original URL";
265
	$l_original_url_label		= "Original URL";
266
	$l_not_available		= "Not available";
266
	$l_not_available		= "Not available";
267
	$l_error			= "error";
267
	$l_error			= "error";
268
	$l_welcome			= "Welcome";
268
	$l_welcome			= "Welcome";
269
	$l_conn_history			= "Your last $nb_connection_history connections";
269
	$l_conn_history			= "Your last $nb_connection_history connections";
270
	$l_connected 			= "logged"; 
270
	$l_connected 			= "logged"; 
271
	$l_a_connection			= "You have";
271
	$l_a_connection			= "You have";
272
	$l_a_connection_time		= "active connections on the network";
272
	$l_a_connection_time		= "active connections on the network";
273
	$l_close_warning		= "Warning: you will be disconnected if you close this window";
273
	$l_close_warning		= "Warning: you will be disconnected if you close this window";
274
	$l_back_homepage		= "Back to homepage";
274
	$l_back_homepage		= "Back to homepage";
275
}
275
}
276
 
276
 
277
if (isset($user[5])) {
277
if (isset($user[5])) {
278
	if ((is_file('acc/manager/lib/sql/drivers/mysql/functions.php')) && (is_file('/etc/freeradius-web/config.php'))) {
278
	if ((is_file('acc/manager/lib/sql/drivers/mysql/functions.php')) && (is_file('/etc/freeradius-web/config.php'))) {
279
		require_once('/etc/freeradius-web/config.php');
279
		require_once('/etc/freeradius-web/config.php');
280
		require_once('acc/manager/lib/sql/drivers/mysql/functions.php');
280
		require_once('acc/manager/lib/sql/drivers/mysql/functions.php');
281
		$link = @da_sql_pconnect($config);
281
		$link = @da_sql_pconnect($config);
282
		if ($link) {
282
		if ($link) {
283
			// Retrieve the last connections
283
			// Retrieve the last connections
284
			$sql = "SELECT UserName, AcctStartTime, AcctStopTime, acctsessiontime FROM radacct WHERE UserName='$user[5]' ORDER BY AcctStartTime DESC LIMIT 0, $nb_connection_history";
284
			$sql = "SELECT UserName, AcctStartTime, AcctStopTime, acctsessiontime FROM radacct WHERE UserName='$user[5]' ORDER BY AcctStartTime DESC LIMIT 0, $nb_connection_history";
285
			$res = @da_sql_query($link, $config, $sql);
285
			$res = @da_sql_query($link, $config, $sql);
286
			if ($res) {
286
			if ($res) {
287
				$a_connection = '';
287
				$a_connection = '';
288
				$a_connected = 0;
288
				$a_connected = 0;
289
				$connection_history = '<ul>';
289
				$connection_history = '<ul>';
290
				while (($row = @da_sql_fetch_array($res,$config))) {
290
				while (($row = @da_sql_fetch_array($res,$config))) {
291
					$start_conn = date_create($row['acctstarttime']);
291
					$start_conn = date_create($row['acctstarttime']);
292
					if (empty($row['acctstoptime'])) {
292
					if (empty($row['acctstoptime'])) {
293
						$connected = $l_connected;
293
						$connected = $l_connected;
294
						$a_connected++;
294
						$a_connected++;
295
					} else {
295
					} else {
296
						$connected = secondsToDuration($row['acctsessiontime']);
296
						$connected = secondsToDuration($row['acctsessiontime']);
297
					}
297
					}
298
					$connection_history .= '<li>'.date_format($start_conn, 'd M Y - H:i:s')." - ($connected)</li>";
298
					$connection_history .= '<li>'.date_format($start_conn, 'd M Y - H:i:s')." - ($connected)</li>";
299
				}
299
				}
300
				$connection_history .= '</ul>';
300
				$connection_history .= '</ul>';
301
				if ($a_connected > 1) {
301
				if ($a_connected > 1) {
302
					$a_connection = $l_a_connection.' '.$a_connected.' '.$l_a_connection_time;
302
					$a_connection = $l_a_connection.' '.$a_connected.' '.$l_a_connection_time;
303
				}
303
				}
304
			}
304
			}
305
 
305
 
306
			// Retrieve first name & last name
306
			// Retrieve first name & last name
307
			$sql = "SELECT Name FROM userinfo WHERE UserName='$user[5]'";
307
			$sql = "SELECT Name FROM userinfo WHERE UserName='$user[5]'";
308
			$res = @da_sql_query($link, $config, $sql);
308
			$res = @da_sql_query($link, $config, $sql);
309
			if ($res) {
309
			if ($res) {
310
				$row = @da_sql_fetch_array($res,$config);
310
				$row = @da_sql_fetch_array($res,$config);
311
				$cn = (!empty($row['name'])) ? $row['name'] : $user[5];
311
				$cn = (!empty($row['name'])) ? $row['name'] : $user[5];
312
			}
312
			}
313
		}
313
		}
314
 
-
 
315
		// Store the user @IP in a file (to test if he is still active).
-
 
316
		$filename = '/var/tmp/havp/current_users.txt';
-
 
317
		if (file_exists($filename)) {
-
 
318
			$current_users_file = fopen($filename, 'r');
-
 
319
			$content = file($filename);
-
 
320
			fclose($current_users_file);
-
 
321
			if (empty($content)) {
-
 
322
				file_put_contents($filename, $_SERVER['REMOTE_ADDR'].PHP_EOL);
-
 
323
			} else {
-
 
324
				$change_me = 1; // avoid duplicate user @IP
-
 
325
				// if we found duplicate IP, we will not write user @IP (just set change_me = 0)
-
 
326
				foreach ($content as $line) {
-
 
327
				        $line = preg_replace('/\s+/', '', $line);
-
 
328
				        if ($line === $_SERVER['REMOTE_ADDR']) {
-
 
329
				                $change_me = 0;
-
 
330
				        }
-
 
331
				}
-
 
332
				// if user @IP does not exist, we write it
-
 
333
				if ($change_me) {
-
 
334
				        file_put_contents($filename, $_SERVER['REMOTE_ADDR'].PHP_EOL, FILE_APPEND);
-
 
335
				}
-
 
336
			}
-
 
337
		} else {
-
 
338
			// we create filename and we write user @IP.
-
 
339
			file_put_contents($filename, $_SERVER['REMOTE_ADDR'].PHP_EOL);
-
 
340
		}
-
 
341
	}
314
	}
342
}
315
}
343
 
316
 
344
// Cleaning the cache
317
// Cleaning the cache
345
header('Expires: Tue, 01 Jan 2000 00:00:00 GMT');
318
header('Expires: Tue, 01 Jan 2000 00:00:00 GMT');
346
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
319
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
347
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
320
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
348
header('Cache-Control: post-check=0, pre-check=0', false);
321
header('Cache-Control: post-check=0, pre-check=0', false);
349
header('Pragma: no-cache');
322
header('Pragma: no-cache');
350
?>
323
?>
351
<!DOCTYPE html>
324
<!DOCTYPE html>
352
<html>
325
<html>
353
	<head>
326
	<head>
354
		<meta charset="UTF-8">
327
		<meta charset="UTF-8">
355
		<title>ALCASAR - <?= $organisme ?></title>
328
		<title>ALCASAR - <?= $organisme ?></title>
356
		<link type="text/css" href="css/status.css" rel="stylesheet">
329
		<link type="text/css" href="css/status.css" rel="stylesheet">
357
		<script src="js/ChilliLibrary.js"></script>
330
		<script src="js/ChilliLibrary.js"></script>
358
		<script>
331
		<script>
359
			chilliController.host = '<?= $conf['HOSTNAME'].'.'.$conf['DOMAIN'] ?>';
332
			chilliController.host = '<?= $conf['HOSTNAME'].'.'.$conf['DOMAIN'] ?>';
360
			chilliController.port = <?= (($useHTTPS) ? 3991 : 3990) ?>;
333
			chilliController.port = <?= (($useHTTPS) ? 3991 : 3990) ?>;
361
			chilliController.ssl  = <?= (($useHTTPS) ? 'true' : 'false') ?>;
334
			chilliController.ssl  = <?= (($useHTTPS) ? 'true' : 'false') ?>;
362
		</script>
335
		</script>
363
		<script src="js/statusControler.js"></script>
336
		<script src="js/statusControler.js"></script>
364
	</head>
337
	</head>
365
	<body>
338
	<body>
366
		<div id="Chilli">
339
		<div id="Chilli">
367
			<div id="locationName"></div>
340
			<div id="locationName"></div>
368
			<div id="chilliPage">
341
			<div id="chilliPage">
369
				<div id="loggedOutPage" class="c1">
342
				<div id="loggedOutPage" class="c1">
370
					<table id="disconnectTable">
343
					<table id="disconnectTable">
371
						<tr>
344
						<tr>
372
							<td><img height="150" src="images/logo-alcasar.png" alt="logo"></td>
345
							<td><img height="150" src="images/logo-alcasar.png" alt="logo"></td>
373
							<td>
346
							<td>
374
								<p class="text_auth"><?= $l_loggedout ?></p>
347
								<p class="text_auth"><?= $l_loggedout ?></p>
375
								<p class="text_homelink"><a href="<?= $homepage_url ?>"><?= $l_back_homepage ?></a></p>
348
								<p class="text_homelink"><a href="<?= $homepage_url ?>"><?= $l_back_homepage ?></a></p>
376
							</td>
349
							</td>
377
						</tr>
350
						</tr>
378
					</table>
351
					</table>
379
				</div>
352
				</div>
380
				<div id="statusPage" class="c1">
353
				<div id="statusPage" class="c1">
381
					<table border="0" id="statusTable">
354
					<table border="0" id="statusTable">
382
						<tr>
355
						<tr>
383
							<td colspan="2">
356
							<td colspan="2">
384
								<table border="0" cellpadding="0" cellspacing="0" width="100%">
357
								<table border="0" cellpadding="0" cellspacing="0" width="100%">
385
									<tr>
358
									<tr>
386
										<td valign="top" rowspan="4">
359
										<td valign="top" rowspan="4">
387
											<img height="150" src="images/logo-alcasar.png" alt="logo">
360
											<img height="150" src="images/logo-alcasar.png" alt="logo">
388
										</td>
361
										</td>
389
										<td class="text_auth_welcom">
362
										<td class="text_auth_welcom">
390
											<?= $l_login1 ?>
363
											<?= $l_login1 ?>
391
										</td>
364
										</td>
392
									</tr>
365
									</tr>
393
									<tr>
366
									<tr>
394
										<td class="text_auth">
367
										<td class="text_auth">
395
											<?= $l_welcome ?><br><?= $cn ?>
368
											<?= $l_welcome ?><br><?= $cn ?>
396
										</td>
369
										</td>
397
									</tr>
370
									</tr>
398
									<tr>
371
									<tr>
399
										<td class="alert">
372
										<td class="alert">
400
											<?= ((isset($a_connection)) ? $a_connection : '') ?>
373
											<?= ((isset($a_connection)) ? $a_connection : '') ?>
401
										</td>
374
										</td>
402
									</tr>
375
									</tr>
403
									<tr>
376
									<tr>
404
										<td colspan="2" align="center" class="link_logout">
377
										<td colspan="2" align="center" class="link_logout">
405
											<a href="#" onclick="return logoutWithConfirmation('<?= $l_logout_question ?>');" class="lien_deco"><?= $l_logout ?></a>
378
											<a href="#" onclick="return logoutWithConfirmation('<?= $l_logout_question ?>');" class="lien_deco"><?= $l_logout ?></a>
406
										</td>
379
										</td>
407
									</tr>
380
									</tr>
408
								</table>
381
								</table>
409
							</td>
382
							</td>
410
						</tr>
383
						</tr>
411
<!-- 
384
<!-- 
412
						<tr id="connectRow">
385
						<tr id="connectRow">
413
							<td id="statusMessageLabel" class="chilliLabel"><strong><?= $l_state_label ?></strong></td>
386
							<td id="statusMessageLabel" class="chilliLabel"><strong><?= $l_state_label ?></strong></td>
414
							<td id="statusMessage" class="chilliValue">Connected</td>
387
							<td id="statusMessage" class="chilliValue">Connected</td>
415
						</tr>
388
						</tr>
416
						<tr id="sessionIdRow">
389
						<tr id="sessionIdRow">
417
							<td id="sessionIdLabel" class="chilliLabel"><strong><?= $l_session_id_label ?></strong></td>
390
							<td id="sessionIdLabel" class="chilliLabel"><strong><?= $l_session_id_label ?></strong></td>
418
							<td id="sessionId" class="chilliValue"><?= $l_not_available ?></td>
391
							<td id="sessionId" class="chilliValue"><?= $l_not_available ?></td>
419
						</tr>
392
						</tr>
420
-->
393
-->
421
						<tr id="sessionTimeoutRow">
394
						<tr id="sessionTimeoutRow">
422
							<td id="sessionTimeoutLabel" class="chilliLabel"><?= $l_max_session_time_label ?></td>
395
							<td id="sessionTimeoutLabel" class="chilliLabel"><?= $l_max_session_time_label ?></td>
423
							<td id="sessionTimeout" class="chilliValue"><?= $l_not_available ?></td>
396
							<td id="sessionTimeout" class="chilliValue"><?= $l_not_available ?></td>
424
						</tr>
397
						</tr>
425
						<tr id="idleTimeoutRow">
398
						<tr id="idleTimeoutRow">
426
							<td id="idleTimeoutLabel" class="chilliLabel"><?= $l_max_idle_time_label ?></td>
399
							<td id="idleTimeoutLabel" class="chilliLabel"><?= $l_max_idle_time_label ?></td>
427
							<td id="idleTimeout" class="chilliValue"><?= $l_not_available ?></td>
400
							<td id="idleTimeout" class="chilliValue"><?= $l_not_available ?></td>
428
						</tr>
401
						</tr>
429
						<tr id="startTimeRow">
402
						<tr id="startTimeRow">
430
							<td id="startTimeLabel" class="chilliLabel"><?= $l_start_time_label ?></td>
403
							<td id="startTimeLabel" class="chilliLabel"><?= $l_start_time_label ?></td>
431
							<td id="startTime" class="chilliValue"><?= $l_not_available ?></td>
404
							<td id="startTime" class="chilliValue"><?= $l_not_available ?></td>
432
						</tr>
405
						</tr>
433
						<tr id="sessionTimeRow">
406
						<tr id="sessionTimeRow">
434
							<td id="sessionTimeLabel" class="chilliLabel"><?= $l_session_time_label ?></td>
407
							<td id="sessionTimeLabel" class="chilliLabel"><?= $l_session_time_label ?></td>
435
							<td id="sessionTime" class="chilliValue"><?= $l_not_available ?></td>
408
							<td id="sessionTime" class="chilliValue"><?= $l_not_available ?></td>
436
						</tr>
409
						</tr>
437
						<tr id="idleTimeRow">
410
						<tr id="idleTimeRow">
438
							<td id="idleTimeLabel" class="chilliLabel"><?= $l_idle_time_label ?></td>
411
							<td id="idleTimeLabel" class="chilliLabel"><?= $l_idle_time_label ?></td>
439
							<td id="idleTime" class="chilliValue"><?= $l_not_available ?></td>
412
							<td id="idleTime" class="chilliValue"><?= $l_not_available ?></td>
440
						</tr>
413
						</tr>
441
						<tr id="inputOctetsRow">
414
						<tr id="inputOctetsRow">
442
							<td id="inputOctetsLabel" class="chilliLabel"><?= $l_downloaded_label ?></td>
415
							<td id="inputOctetsLabel" class="chilliLabel"><?= $l_downloaded_label ?></td>
443
							<td id="inputOctets" class="chilliValue"><?= $l_not_available ?></td>
416
							<td id="inputOctets" class="chilliValue"><?= $l_not_available ?></td>
444
						</tr>
417
						</tr>
445
						<tr id="outputOctetsRow">
418
						<tr id="outputOctetsRow">
446
							<td id="outputOctetsLabel" class="chilliLabel"><?= $l_uploaded_label ?></td>
419
							<td id="outputOctetsLabel" class="chilliLabel"><?= $l_uploaded_label ?></td>
447
							<td id="outputOctets" class="chilliValue"><?= $l_not_available ?></td>
420
							<td id="outputOctets" class="chilliValue"><?= $l_not_available ?></td>
448
						</tr>
421
						</tr>
449
<!-- 
422
<!-- 
450
						<tr id="originalURLRow">
423
						<tr id="originalURLRow">
451
							<td id="originalURLLabel" class="chilliLabel"><?= $l_original_url_label ?></td>
424
							<td id="originalURLLabel" class="chilliLabel"><?= $l_original_url_label ?></td>
452
							<td id="originalURL" class="chilliValue"><?= $l_not_available ?></td>
425
							<td id="originalURL" class="chilliValue"><?= $l_not_available ?></td>
453
						</tr>
426
						</tr>
454
 -->
427
 -->
455
						<tr>
428
						<tr>
456
							<td colspan="2" id="conHistoryLabel" class="chilliLabel"><?= $l_conn_history ?></td>
429
							<td colspan="2" id="conHistoryLabel" class="chilliLabel"><?= $l_conn_history ?></td>
457
						</tr>
430
						</tr>
458
						<tr id="conHistoryRow">
431
						<tr id="conHistoryRow">
459
							<td colspan="2" id="conHistory" class="chilliValue"><?= $connection_history ?></td>
432
							<td colspan="2" id="conHistory" class="chilliValue"><?= $connection_history ?></td>
460
						</tr>
433
						</tr>
461
						<tr>
434
						<tr>
462
							<td colspan="2" id="close-warning">(<?= $l_close_warning ?>)</td>
435
							<td colspan="2" id="close-warning">(<?= $l_close_warning ?>)</td>
463
						</tr>
436
						</tr>
464
					</table>
437
					</table>
465
				</div>
438
				</div>
466
				<div id="waitPage">
439
				<div id="waitPage">
467
					<table id="waitTable">
440
					<table id="waitTable">
468
						<tr>
441
						<tr>
469
							<td><img height="150" src="images/logo-alcasar.png" alt="logo"></td>
442
							<td><img height="150" src="images/logo-alcasar.png" alt="logo"></td>
470
							<td><p class="text_auth"><img src="images/wait.gif" width="16" height="16" class="wait" alt="<?= $l_wait ?>"><?= $l_wait ?></p></td>
443
							<td><p class="text_auth"><img src="images/wait.gif" width="16" height="16" class="wait" alt="<?= $l_wait ?>"><?= $l_wait ?></p></td>
471
						</tr>
444
						</tr>
472
					</table>
445
					</table>
473
				</div>
446
				</div>
474
				<div id="errorPage">
447
				<div id="errorPage">
475
					<table id="errorTable">
448
					<table id="errorTable">
476
						<tr>
449
						<tr>
477
							<td><img height="150" src="images/logo-alcasar.png" alt="logo"></td>
450
							<td><img height="150" src="images/logo-alcasar.png" alt="logo"></td>
478
							<td><span id="errorMessage"><?= $l_error ?></span></td>
451
							<td><span id="errorMessage"><?= $l_error ?></span></td>
479
						</tr>
452
						</tr>
480
					</table>
453
					</table>
481
				</div>
454
				</div>
482
			</div>
455
			</div>
483
		</div>
456
		</div>
484
	</body>
457
	</body>
485
</html>
458
</html>
486
 
459