예제 #1
0
파일: access.php 프로젝트: ryanshoover/core
 /**
  * @brief creates a hopefully unique name for owncloud based on the display name and the dn of the LDAP object
  * @param $name the display name of the object
  * @param $dn the dn of the object
  * @returns string with with the name to use in ownCloud
  *
  * creates a hopefully unique name for owncloud based on the display name and the dn of the LDAP object
  */
 private function alternateOwnCloudName($name, $dn)
 {
     $ufn = ldap_dn2ufn($dn);
     $name = $name . '@' . trim(\OCP\Util::mb_substr_replace($ufn, '', 0, mb_strpos($ufn, ',', 0, 'UTF-8'), 'UTF-8'));
     $name = $this->sanitizeUsername($name);
     return $name;
 }