|
@@ -57,7 +57,9 @@ if ($action == 'setvalue' && $user->admin) {
|
|
|
if (!dolibarr_set_const($db, 'LDAP_GROUP_OBJECT_CLASS', GETPOST("objectclass", 'alphanohtml'), 'chaine', 0, '', $conf->entity)) {
|
|
|
$error++;
|
|
|
}
|
|
|
-
|
|
|
+ if (!dolibarr_set_const($db, 'LDAP_GROUP_FILTER', GETPOST("filter"), 'chaine', 0, '', $conf->entity)) {
|
|
|
+ $error++;
|
|
|
+ }
|
|
|
if (!dolibarr_set_const($db, 'LDAP_GROUP_FIELD_FULLNAME', GETPOST("fieldfullname", 'alphanohtml'), 'chaine', 0, '', $conf->entity)) {
|
|
|
$error++;
|
|
|
}
|
|
@@ -141,6 +143,13 @@ print '</td><td>'.$langs->trans("LDAPGroupObjectClassListExample").'</td>';
|
|
|
print '<td> </td>';
|
|
|
print '</tr>';
|
|
|
|
|
|
+// Filter, used to filter search
|
|
|
+print '<tr class="oddeven"><td>'.$langs->trans("LDAPFilterConnection").'</td><td>';
|
|
|
+print '<input size="48" type="text" name="filter" value="'.$conf->global->LDAP_GROUP_FILTER.'">';
|
|
|
+print '</td><td>'.$langs->trans("LDAPGroupFilterExample").'</td>';
|
|
|
+print '<td></td>';
|
|
|
+print '</tr>';
|
|
|
+
|
|
|
print '</table>';
|
|
|
print '<br>';
|
|
|
print '<table class="noborder centpercent">';
|
|
@@ -212,10 +221,17 @@ if ($conf->global->LDAP_SYNCHRO_ACTIVE == 'dolibarr2ldap') {
|
|
|
$objectclass = $conf->global->LDAP_GROUP_OBJECT_CLASS;
|
|
|
|
|
|
show_ldap_test_button($butlabel, $testlabel, $key, $dn, $objectclass);
|
|
|
+} elseif ($conf->global->LDAP_SYNCHRO_ACTIVE == 'ldap2dolibarr') {
|
|
|
+ $butlabel = $langs->trans("LDAPTestSearch");
|
|
|
+ $testlabel = 'testsearchgroup';
|
|
|
+ $key = $conf->global->LDAP_KEY_GROUPS;
|
|
|
+ $dn = $conf->global->LDAP_GROUP_DN;
|
|
|
+ $objectclass = $conf->global->LDAP_GROUP_OBJECT_CLASS;
|
|
|
+ show_ldap_test_button($butlabel, $testlabel, $key, $dn, $objectclass);
|
|
|
}
|
|
|
|
|
|
if (function_exists("ldap_connect")) {
|
|
|
- if ($_GET["action"] == 'testgroup') {
|
|
|
+ if ($action == 'testgroup') {
|
|
|
// Creation objet
|
|
|
$object = new UserGroup($db);
|
|
|
$object->initAsSpecimen();
|
|
@@ -260,6 +276,66 @@ if (function_exists("ldap_connect")) {
|
|
|
print $langs->trans("ErrorLDAPMakeManualTest", $conf->ldap->dir_temp).'<br>';
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ if ($action == 'testsearchgroup') {
|
|
|
+ // Creation objet
|
|
|
+ $object = new UserGroup($db);
|
|
|
+ $object->initAsSpecimen();
|
|
|
+
|
|
|
+ // TODO Mutualize code following with other ldap_xxxx.php pages
|
|
|
+
|
|
|
+ // Test synchro
|
|
|
+ $ldap = new Ldap();
|
|
|
+ $result = $ldap->connect_bind();
|
|
|
+
|
|
|
+ if ($result > 0) {
|
|
|
+ $required_fields = array(
|
|
|
+ $conf->global->LDAP_KEY_GROUPS,
|
|
|
+ // $conf->global->LDAP_GROUP_FIELD_NAME,
|
|
|
+ $conf->global->LDAP_GROUP_FIELD_DESCRIPTION,
|
|
|
+ $conf->global->LDAP_GROUP_FIELD_GROUPMEMBERS,
|
|
|
+ $conf->global->LDAP_GROUP_FIELD_GROUPID
|
|
|
+ );
|
|
|
+
|
|
|
+ // Remove from required_fields all entries not configured in LDAP (empty) and duplicated
|
|
|
+ $required_fields = array_unique(array_values(array_filter($required_fields, "dol_validElement")));
|
|
|
+
|
|
|
+ // Get from LDAP database an array of results
|
|
|
+ $ldapgroups = $ldap->getRecords('*', $conf->global->LDAP_GROUP_DN, $conf->global->LDAP_KEY_USERS, $required_fields, 'group');
|
|
|
+ //$ldapgroups = $ldap->getRecords('*', $conf->global->LDAP_GROUP_DN, $conf->global->LDAP_KEY_USERS, '', 'group');
|
|
|
+
|
|
|
+ if (is_array($ldapgroups)) {
|
|
|
+ $liste = array();
|
|
|
+ foreach ($ldapgroups as $key => $ldapgroup) {
|
|
|
+ // Define the label string for this user
|
|
|
+ $label = '';
|
|
|
+ foreach ($required_fields as $value) {
|
|
|
+ if ($value) {
|
|
|
+ $label .= $value."=".$ldapgroup[$value]." ";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ $liste[$key] = $label;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ setEventMessages($ldap->error, $ldap->errors, 'errors');
|
|
|
+ }
|
|
|
+
|
|
|
+ print "<br>\n";
|
|
|
+ print "LDAP search for user:<br>\n";
|
|
|
+ print "search: *<br>\n";
|
|
|
+ print "userDN: ".$conf->global->LDAP_GROUP_DN."<br>\n";
|
|
|
+ print "useridentifier: ".$conf->global->LDAP_KEY_GROUPS."<br>\n";
|
|
|
+ print "required_fields: ".implode(',', $required_fields)."<br>\n";
|
|
|
+ print "=> ".count($liste)." records<br>\n";
|
|
|
+ print "\n<br>";
|
|
|
+ } else {
|
|
|
+ print img_picto('', 'error').' ';
|
|
|
+ print '<font class="error">'.$langs->trans("LDAPSynchroKO");
|
|
|
+ print ': '.$ldap->error;
|
|
|
+ print '</font><br>';
|
|
|
+ print $langs->trans("ErrorLDAPMakeManualTest", $conf->ldap->dir_temp).'<br>';
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// End of page
|