summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorRoland Tapken <roland@bitarbeiter.net>2018-03-07 12:18:46 +0100
committerRoland Tapken <roland@bitarbeiter.net>2018-03-07 12:18:46 +0100
commit2472b93fd99e2270fd240874ee0f3a2c42bce191 (patch)
tree464f3c87075a2f64029939dbcf9e41006e1288c9 /apps/user_ldap
parentcf4ec7a4b6cb9870d7661048ec3e867b6ffb9c17 (diff)
downloadnextcloud-server-2472b93fd99e2270fd240874ee0f3a2c42bce191.tar.gz
nextcloud-server-2472b93fd99e2270fd240874ee0f3a2c42bce191.zip
dn2ocname: also apply group filter to readAttribute()
Signed-off-by: Roland Tapken <roland@bitarbeiter.net>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/Access.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/apps/user_ldap/lib/Access.php b/apps/user_ldap/lib/Access.php
index e255156dcf6..73512cc420b 100644
--- a/apps/user_ldap/lib/Access.php
+++ b/apps/user_ldap/lib/Access.php
@@ -538,9 +538,11 @@ class Access extends LDAPUtility implements IUserTools {
if($isUser) {
$mapper = $this->getUserMapper();
$nameAttribute = $this->connection->ldapUserDisplayName;
+ $filter = $this->connection->ldapUserFilter;
} else {
$mapper = $this->getGroupMapper();
$nameAttribute = $this->connection->ldapGroupDisplayName;
+ $filter = $this->connection->ldapGroupFilter;
}
//let's try to retrieve the Nextcloud name from the mappings table
@@ -564,13 +566,9 @@ class Access extends LDAPUtility implements IUserTools {
}
if(is_null($ldapName)) {
- if ($isUser) {
- $ldapName = $this->readAttribute($fdn, $nameAttribute, $this->connection->ldapUserFilter);
- } else {
- $ldapName = $this->readAttribute($fdn, $nameAttribute);
- }
+ $ldapName = $this->readAttribute($fdn, $nameAttribute, $filter);
if(!isset($ldapName[0]) && empty($ldapName[0])) {
- \OCP\Util::writeLog('user_ldap', 'No or empty name for '.$fdn.'.', \OCP\Util::INFO);
+ \OCP\Util::writeLog('user_ldap', 'No or empty name for '.$fdn.' with filter '.$filter.'.', \OCP\Util::INFO);
return false;
}
$ldapName = $ldapName[0];