Subversion Repositories ALCASAR

Rev

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

Rev 2449 Rev 2451
1
<?php
1
<?php
2
# $Id: ldap.php 2449 2017-12-05 21:42:08Z tom.houdayer $
2
# $Id: ldap.php 2451 2017-12-05 22:33:27Z tom.houdayer $
3
 
3
 
4
/* written by steweb57 & Rexy */
4
/* written by steweb57 & Rexy */
5
/****************************************************************
5
/****************************************************************
6
*			GLOBAL FILE PATHS			*
6
*			GLOBAL FILE PATHS			*
7
*****************************************************************/
7
*****************************************************************/
8
define('CONF_FILE', '/usr/local/etc/alcasar.conf');
8
define('CONF_FILE', '/usr/local/etc/alcasar.conf');
9
 
9
 
10
/****************************************************************
10
/****************************************************************
11
*			FILE reading test			*
11
*			FILE reading test			*
12
*****************************************************************/
12
*****************************************************************/
13
$conf_files = array(CONF_FILE);
13
$conf_files = array(CONF_FILE);
14
foreach ($conf_files as $file) {
14
foreach ($conf_files as $file) {
15
	if (!file_exists($file)) {
15
	if (!file_exists($file)) {
16
		exit("Fichier $file non présent");
16
		exit("Fichier $file non présent");
17
	}
17
	}
18
	if (!is_readable($file)) {
18
	if (!is_readable($file)) {
19
		exit("Vous n'avez pas les droits de lecture sur le fichier $file");
19
		exit("Vous n'avez pas les droits de lecture sur le fichier $file");
20
	}
20
	}
21
}
21
}
22
 
22
 
23
/****************************************************************
23
/****************************************************************
24
*			Read CONF_FILE				*
24
*			Read CONF_FILE				*
25
*****************************************************************/
25
*****************************************************************/
26
$file_conf = fopen(CONF_FILE, 'r');
26
$file_conf = fopen(CONF_FILE, 'r');
27
if (!$file_conf) {
27
if (!$file_conf) {
28
	exit('Error opening the file '.CONF_FILE);
28
	exit('Error opening the file '.CONF_FILE);
29
}
29
}
30
while (!feof($file_conf)) {
30
while (!feof($file_conf)) {
31
	$buffer = fgets($file_conf, 4096);
31
	$buffer = fgets($file_conf, 4096);
32
	if ((strpos($buffer, '=') !== false) && (substr($buffer, 0, 1) !== '#')) {
32
	if ((strpos($buffer, '=') !== false) && (substr($buffer, 0, 1) !== '#')) {
33
		$tmp = explode('=', $buffer, 2);
33
		$tmp = explode('=', $buffer, 2);
34
		$conf[trim($tmp[0])] = trim($tmp[1]);
34
		$conf[trim($tmp[0])] = trim($tmp[1]);
35
	}
35
	}
36
}
36
}
37
fclose($file_conf);
37
fclose($file_conf);
38
 
38
 
39
/****************************************************************
39
/****************************************************************
40
*			Choice of language			*
40
*			Choice of language			*
41
*****************************************************************/
41
*****************************************************************/
42
$Language = 'en';
42
$Language = 'en';
43
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
43
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
44
	$Langue	  = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
44
	$Langue	  = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
45
	$Language = strtolower(substr(chop($Langue[0]), 0, 2));
45
	$Language = strtolower(substr(chop($Langue[0]), 0, 2));
46
}
46
}
47
if ($Language === 'fr') {		// French
47
if ($Language === 'fr') {		// French
48
	$l_ldap_update_sucess		= "Mise à jour des paramètres LDAP réalisée avec succès";
48
	$l_ldap_update_sucess		= "Mise à jour des paramètres LDAP réalisée avec succès";
49
	$l_ldap_title			= "Authentification externe : LDAP";
49
	$l_ldap_title			= "Authentification externe : LDAP";
50
	$l_ldap_legend			= "Authentification LDAP";
50
	$l_ldap_legend			= "Authentification LDAP";
51
	$l_ldap_auth_enable_label	= "Activer l'authentification LDAP:";
51
	$l_ldap_auth_enable_label	= "Activer l'authentification LDAP:";
52
	$l_ldap_YES			= "OUI";
52
	$l_ldap_YES			= "OUI";
53
	$l_ldap_NO			= "NON";
53
	$l_ldap_NO			= "NON";
54
	$l_ldap_server_label		= "Serveur LDAP:";
54
	$l_ldap_server_label		= "Serveur LDAP:";
55
	$l_ldap_server_text		= "Adresse IP du serveur LDAP";
55
	$l_ldap_server_text		= "Adresse IP du serveur LDAP";
56
	$l_ldap_base_dn_label		= "DN de la base LDAP:";
56
	$l_ldap_base_dn_label		= "DN de la base LDAP:";
57
	$l_ldap_base_dn_text		= "DN est le 'Distinguished Name', il définit où se situent les informations des utilisateurs dans l'annuaire. Exemple LDAP: 'o=mycompany, c=FR'. Exemple AD 'ou=my_lan,dc=server_name,dc=localdomain'";
57
	$l_ldap_base_dn_text		= "DN est le 'Distinguished Name', il définit où se situent les informations des utilisateurs dans l'annuaire. Exemple LDAP: 'o=mycompany, c=FR'. Exemple AD 'ou=my_lan,dc=server_name,dc=localdomain'";
58
	$l_ldap_filter_label		= "Identifiant LDAP:";
58
	$l_ldap_filter_label		= "Identifiant LDAP:";
59
	$l_ldap_filter_text		= "Clé utilisée lors de la recherche d'un identifiant de connexion, exemple: 'uid', 'sn', etc. Pour un AD mettre 'sAMAccountName'.";
59
	$l_ldap_filter_text		= "Clé utilisée lors de la recherche d'un identifiant de connexion, exemple: 'uid', 'sn', etc. Pour un AD mettre 'sAMAccountName'.";
60
	$l_ldap_base_filter_label	= "Filtre de recherche d'utilisateurs LDAP:";
60
	$l_ldap_base_filter_label	= "Filtre de recherche d'utilisateurs LDAP:";
61
	$l_ldap_base_filter_text	= "En option, vous pouvez limiter les objets recherchés avec des filtres additionnels. Par exemple 'objectClass=posixGroup' aurait comme conséquence l'utilisation de '(&amp;(uid=username)(objectClass=posixGroup))'";
61
	$l_ldap_base_filter_text	= "En option, vous pouvez limiter les objets recherchés avec des filtres additionnels. Par exemple 'objectClass=posixGroup' aurait comme conséquence l'utilisation de '(&amp;(uid=username)(objectClass=posixGroup))'";
62
	$l_ldap_user_label		= "Utilisateur LDAP:";
62
	$l_ldap_user_label		= "Utilisateur LDAP:";
63
	$l_ldap_user_text		= "Nom d'utilisateur utilisé par ALCASAR pour se connecter au serveur LDAP. Laissez vide pour utiliser un accès invité (ou anomyme). Obligatoire sur un AD. exemple LDAP : 'uid=username,ou=my_lan,o=mycompany,c=FR'. Exemple AD : cn=username,ou=my_lan,dc=server_name,dc=localdomain'";
63
	$l_ldap_user_text		= "Nom d'utilisateur utilisé par ALCASAR pour se connecter au serveur LDAP. Laissez vide pour utiliser un accès invité (ou anomyme). Obligatoire sur un AD. exemple LDAP : 'uid=username,ou=my_lan,o=mycompany,c=FR'. Exemple AD : cn=username,ou=my_lan,dc=server_name,dc=localdomain'";
64
	$l_ldap_password_label		= "Mot de passe LDAP:";
64
	$l_ldap_password_label		= "Mot de passe LDAP:";
65
	$l_ldap_password_text		= "Laissez vide pour un accès invité (ou anonyme). Obligatoire sur un AD.";
65
	$l_ldap_password_text		= "Laissez vide pour un accès invité (ou anonyme). Obligatoire sur un AD.";
66
	$l_ldap_submit			= "Enregistrer";
66
	$l_ldap_submit			= "Enregistrer";
67
	$l_ldap_reset			= "Annuler";
67
	$l_ldap_reset			= "Annuler";
68
	$l_ldap_test_network_failed	= "Pas de connectivité réseau avec le serveur LDAP.";
68
	$l_ldap_test_network_failed	= "Pas de connectivité réseau avec le serveur LDAP.";
69
	$l_ldap_test_connection_failed	= "Impossible de se connecter au serveur LDAP.";
69
	$l_ldap_test_connection_failed	= "Impossible de se connecter au serveur LDAP.";
70
	$l_ldap_test_bind_ok		= "Connexion LDAP réussie...";
70
	$l_ldap_test_bind_ok		= "Connexion LDAP réussie...";
71
	$l_ldap_test_bind_failed	= "Echec d'authentification sur le serveur LDAP... Vérifiez votre configuration";
71
	$l_ldap_test_bind_failed	= "Echec d'authentification sur le serveur LDAP... Vérifiez votre configuration";
72
	$l_ldap_test_dn_ok		= "DN semble bon";
72
	$l_ldap_test_dn_ok		= "DN semble bon";
73
	$l_ldap_test_dn_failed		= "DN semble mauvais";
73
	$l_ldap_test_dn_failed		= "DN semble mauvais";
74
	$l_ldap_error			= "erreur LDAP";
74
	$l_ldap_error			= "erreur LDAP";
75
} else {				// English
75
} else {				// English
76
	$l_ldap_update_sucess		= "Successfull LDAP settings update";
76
	$l_ldap_update_sucess		= "Successfull LDAP settings update";
77
	$l_ldap_title			= "External authentication : LDAP";
77
	$l_ldap_title			= "External authentication : LDAP";
78
	$l_ldap_legend			= "LDAP authentication";
78
	$l_ldap_legend			= "LDAP authentication";
79
	$l_ldap_auth_enable_label	= "Use LDAP authentication :";
79
	$l_ldap_auth_enable_label	= "Use LDAP authentication :";
80
	$l_ldap_YES			= "YES";
80
	$l_ldap_YES			= "YES";
81
	$l_ldap_NO			= "NO";
81
	$l_ldap_NO			= "NO";
82
	$l_ldap_server_label		= "LDAP server :";
82
	$l_ldap_server_label		= "LDAP server :";
83
	$l_ldap_server_text		= "This is the IP address of the LDAP server.";
83
	$l_ldap_server_text		= "This is the IP address of the LDAP server.";
84
	$l_ldap_base_dn_label		= "LDAP base dn:";
84
	$l_ldap_base_dn_label		= "LDAP base dn:";
85
	$l_ldap_base_dn_text		= "This is the 'Distinguished Name', locating the user information in the directory. e.g. LDAP : 'o=MyCompany,c=US'. e.g. AD : 'ou=my_lan,dc=server_name,dc=localdomain'";
85
	$l_ldap_base_dn_text		= "This is the 'Distinguished Name', locating the user information in the directory. e.g. LDAP : 'o=MyCompany,c=US'. e.g. AD : 'ou=my_lan,dc=server_name,dc=localdomain'";
86
	$l_ldap_filter_label		= "LDAP uid:";
86
	$l_ldap_filter_label		= "LDAP uid:";
87
	$l_ldap_filter_text		= "This is the key used to search for a given login identity, e.g. 'uid', 'sn', etc.. For AD use 'sAMAccountName'.";
87
	$l_ldap_filter_text		= "This is the key used to search for a given login identity, e.g. 'uid', 'sn', etc.. For AD use 'sAMAccountName'.";
88
	$l_ldap_base_filter_label	= "LDAP user filter:";
88
	$l_ldap_base_filter_label	= "LDAP user filter:";
89
	$l_ldap_base_filter_text	= "Optionally you can further limit the searched objects with additional filters. For example 'objectClass=posixGroup' would result in the use of '(&amp;(uid=username)(objectClass=posixGroup))'";
89
	$l_ldap_base_filter_text	= "Optionally you can further limit the searched objects with additional filters. For example 'objectClass=posixGroup' would result in the use of '(&amp;(uid=username)(objectClass=posixGroup))'";
90
	$l_ldap_user_label		= "LDAP user dn:";
90
	$l_ldap_user_label		= "LDAP user dn:";
91
	$l_ldap_user_text		= "Username used by ALCASAR to connect to the LDAP server. Leave blank to use anonymous binding. Required for AD. e.g. LDAP :'uid=Username,ou=my_lan,o=mycompany,c=US'. e.g. AD : cn=username,ou=my_lan,dc=server_name,dc=localdomain'";
91
	$l_ldap_user_text		= "Username used by ALCASAR to connect to the LDAP server. Leave blank to use anonymous binding. Required for AD. e.g. LDAP :'uid=Username,ou=my_lan,o=mycompany,c=US'. e.g. AD : cn=username,ou=my_lan,dc=server_name,dc=localdomain'";
92
	$l_ldap_password_label		= "LDAP password:";
92
	$l_ldap_password_label		= "LDAP password:";
93
	$l_ldap_password_text		= "Leave blank to use anonymous binding. Required for AD.";
93
	$l_ldap_password_text		= "Leave blank to use anonymous binding. Required for AD.";
94
	$l_ldap_submit			= "Save";
94
	$l_ldap_submit			= "Save";
95
	$l_ldap_reset			= "Reset";
95
	$l_ldap_reset			= "Reset";
96
	$l_ldap_test_network_failed	= "LDAP server is not reachable.";
96
	$l_ldap_test_network_failed	= "LDAP server is not reachable.";
97
	$l_ldap_test_connection_failed	= "LDAP connexion failed...";
97
	$l_ldap_test_connection_failed	= "LDAP connexion failed...";
98
	$l_ldap_test_bind_ok		= "LDAP connexion success...";
98
	$l_ldap_test_bind_ok		= "LDAP connexion success...";
99
	$l_ldap_test_bind_failed	= "LDAP authentication failed...Check your ldap setup...";
99
	$l_ldap_test_bind_failed	= "LDAP authentication failed...Check your ldap setup...";
100
	$l_ldap_test_dn_ok              = "DN seems to be right";
100
	$l_ldap_test_dn_ok              = "DN seems to be right";
101
	$l_ldap_test_dn_failed          = "DN seems to be wrong";
101
	$l_ldap_test_dn_failed          = "DN seems to be wrong";
102
	$l_ldap_error			= "LDAP error";
102
	$l_ldap_error			= "LDAP error";
103
}
103
}
104
 
104
 
105
 
105
 
106
$message = '';
-
 
107
if ((isset($_GET['erreur'])) && (!empty($_GET['erreur']))) { 
-
 
108
	$message  = '<div style="text-align: center"><br>';
-
 
109
	$message .= '<span style="font-weight: bold; color: red;">'.htmlspecialchars($erreur).'</span><br>';
-
 
110
	$message .= '<br></div>';
-
 
111
} else if (isset($_GET['update']) && ($_GET['update'] === 'ok')) {
-
 
112
	$message  = '<div style="text-align: center"><br>';
-
 
113
	$message .= '<span style="font-weight: bold; color: green;">'.$l_ldap_update_sucess.'</span><br>';
-
 
114
	$message .= '<br></div>';
-
 
115
}
-
 
116
 
-
 
117
// LDAP configuration params
-
 
118
$ldap_status      = ($conf['LDAP'] === 'on');
-
 
119
$ldap_server      = $conf['LDAP_SERVER'];
-
 
120
$ldap_identity    = $conf['LDAP_USER'];
-
 
121
$ldap_password    = $conf['LDAP_PASSWORD'];
-
 
122
$ldap_basedn      = $conf['LDAP_BASE'];
-
 
123
$ldap_filter      = $conf['LDAP_UID'];
-
 
124
$ldap_base_filter = $conf['LDAP_FILTER'];
-
 
125
 
-
 
126
 
-
 
127
function ldap_checkServerConfig($f_ldap_server, $f_ldap_identity, $f_ldap_password, $f_ldap_basedn, $f_ldap_filter, $f_ldap_port = 389) {
106
function ldap_checkServerConfig($f_ldap_server, $f_ldap_identity, $f_ldap_password, $f_ldap_basedn, $f_ldap_filter, $f_ldap_port = 389) {
128
	// Test connect to the LDAP server
107
	// Test connect to the LDAP server
129
	if (!$sock = @fsockopen($f_ldap_server, $f_ldap_port, $num, $error, 2)) {
108
	if (!$sock = @fsockopen($f_ldap_server, $f_ldap_port, $num, $error, 2)) {
130
		// no network connection
109
		// no network connection
131
		return -1;
110
		return -1;
132
	}
111
	}
133
	fclose($sock);
112
	fclose($sock);
134
 
113
 
135
	// Test connect to the LDAP server
114
	// Test connect to the LDAP server
136
	$ldapconn = ldap_connect($f_ldap_server, $f_ldap_port);
115
	$ldapconn = ldap_connect($f_ldap_server, $f_ldap_port);
137
	ldap_set_option($ldapconn, LDAP_OPT_TIMELIMIT, 2);
116
	ldap_set_option($ldapconn, LDAP_OPT_TIMELIMIT, 2);
138
	if (!$ldapconn) {
117
	if (!$ldapconn) {
139
		// LDAP connection failed
118
		// LDAP connection failed
140
		return -2;
119
		return -2;
141
	}
120
	}
142
 
121
 
143
	$ldapbind = ldap_bind($ldapconn, $f_ldap_identity, $f_ldap_password);
122
	$ldapbind = ldap_bind($ldapconn, $f_ldap_identity, $f_ldap_password);
144
	if (!$ldapbind) {
123
	if (!$ldapbind) {
145
		// Test LDAP Version 3
124
		// Test LDAP Version 3
146
		ldap_set_option($ldapconn, LDAP_OPT_PROTOCOL_VERSION, 3);
125
		ldap_set_option($ldapconn, LDAP_OPT_PROTOCOL_VERSION, 3);
147
		$ldapbind = ldap_bind($ldapconn, $f_ldap_identity, $f_ldap_password);
126
		$ldapbind = ldap_bind($ldapconn, $f_ldap_identity, $f_ldap_password);
148
 
127
 
149
		if (!$ldapbind) {
128
		if (!$ldapbind) {
150
			// LDAP Bind failed
129
			// LDAP Bind failed
151
			return 0;
130
			return 0;
152
		}
131
		}
153
	}
132
	}
154
	ldap_unbind($ldapconn);
133
	ldap_unbind($ldapconn);
155
 
134
 
156
	// try search
135
	// try search
157
	$query = $f_ldap_filter.'=*';
136
	$query = $f_ldap_filter.'=*';
158
	if (ldap_search($ldapconn, $f_ldap_basedn, $query)) {
137
	if (ldap_search($ldapconn, $f_ldap_basedn, $query)) {
159
		return 2;
138
		return 2;
160
	} else {
139
	} else {
161
		return 1;
140
		return 1;
162
	}
141
	}
163
}
142
}
164
 
143
 
-
 
144
$messages = '';
-
 
145
 
-
 
146
if (isset($_POST['auth_enable'])) {
-
 
147
	if ($_POST['auth_enable'] === '1') {
-
 
148
		$varErrors = [];
-
 
149
		if (isset($_POST['ldap_server']))      $ldap_server      = $_POST['ldap_server'];      else array_push($varErrors, 'Variable error "ldap_server"');
-
 
150
		if (isset($_POST['ldap_base_dn']))     $ldap_base_dn     = $_POST['ldap_base_dn'];     else array_push($varErrors, 'Variable error "ldap_base_dn"');
-
 
151
		if (isset($_POST['ldap_filter']))      $ldap_filter      = $_POST['ldap_filter'];      else array_push($varErrors, 'Variable error "ldap_filter"');
-
 
152
		if (isset($_POST['ldap_base_filter'])) $ldap_base_filter = $_POST['ldap_base_filter']; else array_push($varErrors, 'Variable error "ldap_base_filter"');
-
 
153
		if (isset($_POST['ldap_user']))        $ldap_user        = $_POST['ldap_user'];        else array_push($varErrors, 'Variable error "ldap_user"');
-
 
154
		if (isset($_POST['ldap_password']))    $ldap_password    = $_POST['ldap_password'];    else array_push($varErrors, 'Variable error "ldap_password"');
-
 
155
 
-
 
156
		// Validation
-
 
157
		if (isset($ldap_server)) {
-
 
158
			if ((!preg_match('/^([0-9]{1,3}\.){3}([0-9]{1,3})$/', $ldap_server)) && (preg_match('/^[a-zA-Z0-9-_.]+$/', $ldap_server))) {
-
 
159
				$ldap_server = gethostbyname($ldap_server);
-
 
160
			}
-
 
161
			if (!preg_match('/^([0-9]{1,3}\.){3}([0-9]{1,3})$/', $ldap_server)) {
-
 
162
				array_push($varErrors, 'Invalid LDAP server IP');
-
 
163
			}
-
 
164
		}
-
 
165
 
-
 
166
		if (!empty($varErrors)) { 
-
 
167
			$messages .= '<div style="text-align: center"><br>';
-
 
168
			foreach ($varErrors as $error) {
-
 
169
				$messages .= '<span style="font-weight: bold; color: red;">'.$error.'</span><br>';
-
 
170
			}
-
 
171
			$messages .= '<br></div>';
-
 
172
		} else {
-
 
173
			exec('sed -i \'s/^LDAP=.*/LDAP=on/g\' '.CONF_FILE);
-
 
174
			exec('sed -i '.escapeshellarg("s/^LDAP_SERVER=.*/LDAP_SERVER=$ldap_server/g").' '.CONF_FILE);
-
 
175
			exec('sed -i '.escapeshellarg("s/^LDAP_BASE=.*/LDAP_BASE=$ldap_base_dn/g").' '.CONF_FILE);
-
 
176
			exec('sed -i '.escapeshellarg("s/^LDAP_UID=.*/LDAP_UID=$ldap_filter/g").' '.CONF_FILE);
-
 
177
			exec('sed -i '.escapeshellarg("s/^LDAP_FILTER=.*/LDAP_FILTER=$ldap_filter/g").' '.CONF_FILE);
-
 
178
			exec('sed -i '.escapeshellarg("s/^LDAP_USER=.*/LDAP_USER=$ldap_user/g").' '.CONF_FILE);
-
 
179
			exec('sed -i '.escapeshellarg("s/^LDAP_PASSWORD=.*/LDAP_PASSWORD=$ldap_password/g").' '.CONF_FILE);
-
 
180
			exec('sudo /usr/local/bin/alcasar-ldap.sh --on');
-
 
181
 
-
 
182
			$messages .= '<div style="text-align: center"><br>';
-
 
183
			$messages .= '<span style="font-weight: bold; color: green;">'.$l_ldap_update_sucess.'</span><br>';
-
 
184
			$messages .= '<br></div>';
-
 
185
		}
-
 
186
	} else {
-
 
187
		exec('sed -i "s/^LDAP=.*/LDAP=off/g" '.CONF_FILE);
-
 
188
		exec('sudo /usr/local/bin/alcasar-ldap.sh --off');
-
 
189
 
-
 
190
		$messages .= '<div style="text-align: center"><br>';
-
 
191
		$messages .= '<span style="font-weight: bold; color: green;">'.$l_ldap_update_sucess.'</span><br>';
-
 
192
		$messages .= '<br></div>';
-
 
193
	}
-
 
194
 
-
 
195
	// Reload configuration
-
 
196
	$file_conf = fopen(CONF_FILE, 'r');
-
 
197
	if (!$file_conf) {
-
 
198
		exit('Error opening the file '.CONF_FILE);
-
 
199
	}
-
 
200
	while (!feof($file_conf)) {
-
 
201
		$buffer = fgets($file_conf, 4096);
-
 
202
		if ((strpos($buffer, '=') !== false) && (substr($buffer, 0, 1) !== '#')) {
-
 
203
			$tmp = explode('=', $buffer, 2);
-
 
204
			$conf[trim($tmp[0])] = trim($tmp[1]);
-
 
205
		}
-
 
206
	}
-
 
207
	fclose($file_conf);
-
 
208
}
-
 
209
 
-
 
210
// LDAP configuration params
-
 
211
$ldap_status      = ($conf['LDAP'] === 'on');
-
 
212
$ldap_server      = $conf['LDAP_SERVER'];
-
 
213
$ldap_identity    = $conf['LDAP_USER'];
-
 
214
$ldap_password    = $conf['LDAP_PASSWORD'];
-
 
215
$ldap_basedn      = $conf['LDAP_BASE'];
-
 
216
$ldap_filter      = $conf['LDAP_UID'];
-
 
217
$ldap_base_filter = $conf['LDAP_FILTER'];
-
 
218
 
165
// TODO : check LDAP PHP extension loaded?
219
// TODO : check LDAP PHP extension loaded?
166
// if (!extension_loaded('ldap')) {
220
// if (!extension_loaded('ldap')) {
167
// 	exit();
221
// 	exit();
168
// }
222
// }
169
 
223
 
170
$pos = strpos($ldap_server, '//');
224
$pos = strpos($ldap_server, '//');
171
if ($pos !== false) {
225
if ($pos !== false) {
172
	// TODO : useless?
226
	// TODO : useless?
173
	$new_ldap_server = explode('//', $ldap_server); // pour discriminer le host et le protocole dans la notation "ldap://192.168.182.10" ou "ldaps://monldap.monentreperise.com"
227
	$new_ldap_server = explode('//', $ldap_server); // pour discriminer le host et le protocole dans la notation "ldap://192.168.182.10" ou "ldaps://monldap.monentreperise.com"
174
} else {
228
} else {
175
	$new_ldap_server = $ldap_server;
229
	$new_ldap_server = $ldap_server;
176
}
230
}
177
if ($ldap_status) {
231
if ($ldap_status) {
178
	$serverCheckResult = ldap_checkServerConfig($new_ldap_server, $ldap_identity, $ldap_password, $ldap_basedn, $ldap_filter);
232
	$serverCheckResult = ldap_checkServerConfig($new_ldap_server, $ldap_identity, $ldap_password, $ldap_basedn, $ldap_filter);
179
}
233
}
180
 
234
 
181
?>
235
?>
182
<!DOCTYPE html>
236
<!DOCTYPE html>
183
<html>
237
<html>
184
<head>
238
<head>
185
	<meta charset="UTF-8">
239
	<meta charset="UTF-8">
186
	<title><?= $l_ldap_title ?></title>
240
	<title><?= $l_ldap_title ?></title>
187
	<link type="text/css" href="/css/style.css" rel="stylesheet">
241
	<link type="text/css" href="/css/style.css" rel="stylesheet">
188
	<link type="text/css" href="/css/acc.css" rel="stylesheet">
242
	<link type="text/css" href="/css/acc.css" rel="stylesheet">
189
	<link type="text/css" href="/css/ldap.css" rel="stylesheet">
243
	<link type="text/css" href="/css/ldap.css" rel="stylesheet">
190
	<script>
244
	<script>
191
	function onLdapStatusChange() {
245
	function onLdapStatusChange() {
192
		var listToDisables = ['ldap_server', 'ldap_dn', 'ldap_filter', 'ldap_base_filter', 'ldap_user', 'ldap_password'];
246
		var listToDisables = ['ldap_server', 'ldap_dn', 'ldap_filter', 'ldap_base_filter', 'ldap_user', 'ldap_password'];
193
 
247
 
194
		if (document.getElementById("auth_enable").value === '1') {
248
		if (document.getElementById("auth_enable").value === '1') {
195
			for (var i=0; i<listToDisables.length; i++) {
249
			for (var i=0; i<listToDisables.length; i++) {
196
				document.getElementById(listToDisables[i]).style.backgroundColor = '#ffffff';
250
				document.getElementById(listToDisables[i]).style.backgroundColor = '#ffffff';
197
				document.getElementById(listToDisables[i]).disabled = false;
251
				document.getElementById(listToDisables[i]).disabled = false;
198
			}
252
			}
199
		} else {
253
		} else {
200
			for (var i=0; i<listToDisables.length; i++) {
254
			for (var i=0; i<listToDisables.length; i++) {
201
				document.getElementById(listToDisables[i]).style.backgroundColor = '#c0c0c0';
255
				document.getElementById(listToDisables[i]).style.backgroundColor = '#c0c0c0';
202
				document.getElementById(listToDisables[i]).disabled = true;
256
				document.getElementById(listToDisables[i]).disabled = true;
203
			}
257
			}
204
		}
258
		}
205
	}
259
	}
206
	</script>
260
	</script>
207
</head>
261
</head>
208
<body onLoad="onLdapStatusChange();">
262
<body onLoad="onLdapStatusChange();">
209
	<div class="panel">
263
	<div class="panel">
210
		<div class="panel-header"><?= $l_ldap_legend ?></div>
264
		<div class="panel-header"><?= $l_ldap_legend ?></div>
211
		<div class="panel-body">
265
		<div class="panel-body">
212
			<form name="config_ldap" method="post" action="update_ldap.php">
266
			<form name="config_ldap" method="POST" action="<?= htmlspecialchars($_SERVER['PHP_SELF']) ?>">
213
				<fieldset>
267
				<fieldset>
214
					<legend>
268
					<legend>
215
						<?= $message ?>
269
						<?= $messages ?>
216
						<?php if ($ldap_status): ?>
270
						<?php if ($ldap_status): ?>
217
							<div style="text-align: center"><br>
271
							<div style="text-align: center"><br>
218
								<?php if ($serverCheckResult === -2): ?>
272
								<?php if ($serverCheckResult === -2): ?>
219
									<span style="color: red"><?= $l_ldap_test_connection_failed ?></span>
273
									<span style="color: red"><?= $l_ldap_test_connection_failed ?></span>
220
								<?php elseif ($serverCheckResult === -1): ?>
274
								<?php elseif ($serverCheckResult === -1): ?>
221
									<span style="color: red"><?= $l_ldap_test_network_failed ?></span>
275
									<span style="color: red"><?= $l_ldap_test_network_failed ?></span>
222
								<?php elseif ($serverCheckResult === 0): ?>
276
								<?php elseif ($serverCheckResult === 0): ?>
223
									<span style="color: red"><?= $l_ldap_test_bind_failed ?></span>
277
									<span style="color: red"><?= $l_ldap_test_bind_failed ?></span>
224
								<?php elseif ($serverCheckResult === 1): ?>
278
								<?php elseif ($serverCheckResult === 1): ?>
225
										<span style="color: green"><?= $l_ldap_test_bind_ok ?></span>
279
										<span style="color: green"><?= $l_ldap_test_bind_ok ?></span>
226
										<br>";
280
										<br>";
227
										<span style="color: red"><?= $l_ldap_test_dn_failed ?></span>
281
										<span style="color: red"><?= $l_ldap_test_dn_failed ?></span>
228
								<?php elseif ($serverCheckResult === 2): ?>
282
								<?php elseif ($serverCheckResult === 2): ?>
229
										<span style="color: green"><?= $l_ldap_test_bind_ok ?></span>
283
										<span style="color: green"><?= $l_ldap_test_bind_ok ?></span>
230
										<br>";
284
										<br>";
231
										<span style="color: green"><?= $l_ldap_test_dn_ok ?></span>
285
										<span style="color: green"><?= $l_ldap_test_dn_ok ?></span>
232
								<?php else: ?>
286
								<?php else: ?>
233
									<span><?= $l_ldap_error ?></span>
287
									<span><?= $l_ldap_error ?></span>
234
								<?php endif ?>
288
								<?php endif ?>
235
								<br><br>
289
								<br><br>
236
							</div>
290
							</div>
237
						<?php endif ?>
291
						<?php endif ?>
238
					</legend>
292
					</legend>
239
					<dl>
293
					<dl>
240
						<dt>
294
						<dt>
241
							<label for="auth_enable"><?= $l_ldap_auth_enable_label ?></label>
295
							<label for="auth_enable"><?= $l_ldap_auth_enable_label ?></label>
242
						</dt>
296
						</dt>
243
						<dd>
297
						<dd>
244
							<select id="auth_enable" name="auth_enable" onchange="onLdapStatusChange();">
298
							<select id="auth_enable" name="auth_enable" onchange="onLdapStatusChange();">
245
								<option value="1"<?= ($ldap_status)  ? ' selected="selected"' : '' ?>><?= $l_ldap_YES ?></option>
299
								<option value="1"<?= ($ldap_status)  ? ' selected="selected"' : '' ?>><?= $l_ldap_YES ?></option>
246
								<option value="0"<?= (!$ldap_status) ? ' selected="selected"' : '' ?>><?= $l_ldap_NO ?></option>
300
								<option value="0"<?= (!$ldap_status) ? ' selected="selected"' : '' ?>><?= $l_ldap_NO ?></option>
247
							</select>
301
							</select>
248
						</dd>
302
						</dd>
249
					</dl>
303
					</dl>
250
					<dl>
304
					<dl>
251
						<dt>
305
						<dt>
252
							<label for="ldap_server"><?= $l_ldap_server_label ?></label><br>
306
							<label for="ldap_server"><?= $l_ldap_server_label ?></label><br>
253
							<?= $l_ldap_server_text ?>
307
							<?= $l_ldap_server_text ?>
254
						</dt>
308
						</dt>
255
						<dd>
309
						<dd>
256
							<input id="ldap_server" size="40" name="ldap_server" value="<?= htmlspecialchars($ldap_server) ?>">
310
							<input id="ldap_server" size="40" name="ldap_server" value="<?= htmlspecialchars($ldap_server) ?>">
257
						</dd>
311
						</dd>
258
					</dl>
312
					</dl>
259
					<dl>
313
					<dl>
260
						<dt>
314
						<dt>
261
							<label for="ldap_dn"><?= $l_ldap_base_dn_label ?></label><br>
315
							<label for="ldap_dn"><?= $l_ldap_base_dn_label ?></label><br>
262
							<?= $l_ldap_base_dn_text ?>
316
							<?= $l_ldap_base_dn_text ?>
263
						</dt>
317
						</dt>
264
						<dd>
318
						<dd>
265
							<input id="ldap_dn" size="40" name="ldap_base_dn" value="<?= htmlspecialchars($ldap_basedn) ?>">
319
							<input id="ldap_dn" size="40" name="ldap_base_dn" value="<?= htmlspecialchars($ldap_basedn) ?>">
266
						</dd>
320
						</dd>
267
					</dl>
321
					</dl>
268
					<dl>
322
					<dl>
269
						<dt>
323
						<dt>
270
							<label for="ldap_filter"><?= $l_ldap_filter_label ?></label><br>
324
							<label for="ldap_filter"><?= $l_ldap_filter_label ?></label><br>
271
							<?= $l_ldap_filter_text ?>
325
							<?= $l_ldap_filter_text ?>
272
						</dt>
326
						</dt>
273
						<dd>
327
						<dd>
274
							<input id="ldap_filter" size="40" name="ldap_filter" value="<?= htmlspecialchars($ldap_filter) ?>">
328
							<input id="ldap_filter" size="40" name="ldap_filter" value="<?= htmlspecialchars($ldap_filter) ?>">
275
						</dd>
329
						</dd>
276
					</dl>
330
					</dl>
277
					<dl>
331
					<dl>
278
						<dt>
332
						<dt>
279
							<label for="ldap_base_filter"><?= $l_ldap_base_filter_label ?></label><br>
333
							<label for="ldap_base_filter"><?= $l_ldap_base_filter_label ?></label><br>
280
							<?= $l_ldap_base_filter_text ?>
334
							<?= $l_ldap_base_filter_text ?>
281
						</dt>
335
						</dt>
282
						<dd>
336
						<dd>
283
							<input id="ldap_base_filter" size="40" name="ldap_base_filter" value="<?= htmlspecialchars($ldap_base_filter) ?>">
337
							<input id="ldap_base_filter" size="40" name="ldap_base_filter" value="<?= htmlspecialchars($ldap_base_filter) ?>">
284
						</dd>
338
						</dd>
285
					</dl>
339
					</dl>
286
					<dl>
340
					<dl>
287
						<dt>
341
						<dt>
288
							<label for="ldap_user"><?= $l_ldap_user_label ?></label><br>
342
							<label for="ldap_user"><?= $l_ldap_user_label ?></label><br>
289
							<?= $l_ldap_user_text ?>
343
							<?= $l_ldap_user_text ?>
290
						</dt>
344
						</dt>
291
						<dd>
345
						<dd>
292
							<input id="ldap_user" size="40" name="ldap_user" value="<?= htmlspecialchars($ldap_identity) ?>">
346
							<input id="ldap_user" size="40" name="ldap_user" value="<?= htmlspecialchars($ldap_identity) ?>">
293
						</dd>
347
						</dd>
294
					</dl>
348
					</dl>
295
					<dl>
349
					<dl>
296
						<dt>
350
						<dt>
297
							<label for="ldap_password"><?= $l_ldap_password_label ?></label><br>
351
							<label for="ldap_password"><?= $l_ldap_password_label ?></label><br>
298
							<?= $l_ldap_password_text ?>
352
							<?= $l_ldap_password_text ?>
299
						</dt>
353
						</dt>
300
						<dd>
354
						<dd>
301
							<input id="ldap_password" type="password" size="40" name="ldap_password" value="<?= htmlspecialchars($ldap_password) ?>">
355
							<input id="ldap_password" type="password" size="40" name="ldap_password" value="<?= htmlspecialchars($ldap_password) ?>">
302
						</dd>
356
						</dd>
303
					</dl>
357
					</dl>
304
					<p>
358
					<p>
305
						<input id="submit" type="submit" value="<?= $l_ldap_submit ?>" name="submit">
359
						<input id="submit" type="submit" value="<?= $l_ldap_submit ?>" name="submit">
306
						<input id="reset" type="reset" value="<?= $l_ldap_reset ?>" name="reset">
360
						<input id="reset" type="reset" value="<?= $l_ldap_reset ?>" name="reset">
307
					</p>
361
					</p>
308
				</fieldset>
362
				</fieldset>
309
			</form>
363
			</form>
310
		</div>
364
		</div>
311
	</div>
365
	</div>
312
</body>
366
</body>
313
</html>
367
</html>
314
 
368