Skip to content
Snippets Groups Projects
Commit c1c2f2c4 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

add additional comments, PHPdoc and check whether it's really applicable

parent 1c71d5c4
No related branches found
No related tags found
No related merge requests found
...@@ -434,16 +434,25 @@ class Access extends LDAPUtility { ...@@ -434,16 +434,25 @@ class Access extends LDAPUtility {
$ocname = $this->dn2ocname($ldapObject['dn'], $nameByLDAP, $isUsers); $ocname = $this->dn2ocname($ldapObject['dn'], $nameByLDAP, $isUsers);
if($ocname) { if($ocname) {
$ownCloudNames[] = $ocname; $ownCloudNames[] = $ocname;
$this->cacheDisplayName($ocname, $nameByLDAP); if($isUsers) {
//cache the user names so it does not need to be retrieved
//again later (e.g. sharing dialogue).
$this->cacheUserDisplayName($ocname, $nameByLDAP);
}
} }
continue; continue;
} }
return $ownCloudNames; return $ownCloudNames;
} }
public function cacheDisplayName($uid, $displayName) { /**
* @brief caches the user display name
* @param string the internal owncloud username
* @param string the display name
*/
public function cacheUserDisplayName($ocname, $displayName) {
$cacheKeyTrunk = 'getDisplayName'; $cacheKeyTrunk = 'getDisplayName';
$this->connection->writeToCache($cacheKeyTrunk.$uid,$displayName); $this->connection->writeToCache($cacheKeyTrunk.$ocname, $displayName);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment