remove noise from detectUuid and cache results
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
b68b673ea9
commit
78681a78cd
1 changed files with 25 additions and 17 deletions
|
@ -1708,14 +1708,20 @@ class Access extends LDAPUtility {
|
|||
$uuidOverride = $this->connection->ldapExpertUUIDGroupAttr;
|
||||
}
|
||||
|
||||
if(($this->connection->$uuidAttr !== 'auto') && !$force) {
|
||||
if(!$force) {
|
||||
if($this->connection->$uuidAttr !== 'auto') {
|
||||
return true;
|
||||
} else if (is_string($uuidOverride) && trim($uuidOverride) !== '') {
|
||||
$this->connection->$uuidAttr = $uuidOverride;
|
||||
return true;
|
||||
}
|
||||
|
||||
if (is_string($uuidOverride) && trim($uuidOverride) !== '' && !$force) {
|
||||
$this->connection->$uuidAttr = $uuidOverride;
|
||||
$attribute = $this->connection->getFromCache($uuidAttr);
|
||||
if(!$attribute === null) {
|
||||
$this->connection->$uuidAttr = $attribute;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
foreach(self::UUID_ATTRIBUTES as $attribute) {
|
||||
if($ldapRecord !== null) {
|
||||
|
@ -1723,27 +1729,29 @@ class Access extends LDAPUtility {
|
|||
if(isset($ldapRecord[$attribute])) {
|
||||
$this->connection->$uuidAttr = $attribute;
|
||||
return true;
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
$value = $this->readAttribute($dn, $attribute);
|
||||
if(is_array($value) && isset($value[0]) && !empty($value[0])) {
|
||||
\OCP\Util::writeLog(
|
||||
'user_ldap',
|
||||
'Setting '.$attribute.' as '.$uuidAttr,
|
||||
ILogger::DEBUG
|
||||
\OC::$server->getLogger()->debug(
|
||||
'Setting {attribute} as {subject}',
|
||||
[
|
||||
'app' => 'user_ldap',
|
||||
'attribute' => $attribute,
|
||||
'subject' => $uuidAttr
|
||||
]
|
||||
);
|
||||
$this->connection->$uuidAttr = $attribute;
|
||||
$this->connection->writeToCache($uuidAttr, $attribute);
|
||||
return true;
|
||||
} elseif ($value === false) {
|
||||
// record not available
|
||||
return false;
|
||||
}
|
||||
}
|
||||
\OCP\Util::writeLog(
|
||||
'user_ldap',
|
||||
'Could not autodetect the UUID attribute',
|
||||
ILogger::ERROR
|
||||
);
|
||||
\OC::$server->getLogger()->debug('Could not autodetect the UUID attribute', ['app' => 'user_ldap']);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue