Use common_nicknamize() in better places.
This commit is contained in:
parent
7410571bda
commit
3bfe3345df
|
@ -79,7 +79,7 @@ abstract class AuthenticationPlugin extends Plugin
|
||||||
$nickname = $username;
|
$nickname = $username;
|
||||||
}
|
}
|
||||||
$registration_data = array();
|
$registration_data = array();
|
||||||
$registration_data['nickname'] = common_nicknamize($nickname);
|
$registration_data['nickname'] = $nickname;
|
||||||
return User::register($registration_data);
|
return User::register($registration_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,12 +101,14 @@ abstract class AuthenticationPlugin extends Plugin
|
||||||
* Used during autoregistration
|
* Used during autoregistration
|
||||||
* Useful if your usernames are ugly, and you want to suggest
|
* Useful if your usernames are ugly, and you want to suggest
|
||||||
* nice looking nicknames when users initially sign on
|
* nice looking nicknames when users initially sign on
|
||||||
|
* All nicknames returned by this function should be valid
|
||||||
|
* implementations may want to use common_nicknamize() to ensure validity
|
||||||
* @param username
|
* @param username
|
||||||
* @return string nickname
|
* @return string nickname
|
||||||
*/
|
*/
|
||||||
function suggestNicknameForUsername($username)
|
function suggestNicknameForUsername($username)
|
||||||
{
|
{
|
||||||
return $username;
|
return common_nicknamize($username);
|
||||||
}
|
}
|
||||||
|
|
||||||
//------------Below are the methods that connect StatusNet to the implementing Auth plugin------------\\
|
//------------Below are the methods that connect StatusNet to the implementing Auth plugin------------\\
|
||||||
|
@ -129,7 +131,7 @@ abstract class AuthenticationPlugin extends Plugin
|
||||||
$test_user = User::staticGet('nickname', $suggested_nickname);
|
$test_user = User::staticGet('nickname', $suggested_nickname);
|
||||||
if($test_user) {
|
if($test_user) {
|
||||||
//someone already exists with the suggested nickname, so used the passed nickname
|
//someone already exists with the suggested nickname, so used the passed nickname
|
||||||
$suggested_nickname = $nickname;
|
$suggested_nickname = common_nicknamize($nickname);
|
||||||
}
|
}
|
||||||
$test_user = User::staticGet('nickname', $suggested_nickname);
|
$test_user = User::staticGet('nickname', $suggested_nickname);
|
||||||
if($test_user) {
|
if($test_user) {
|
||||||
|
|
|
@ -189,15 +189,14 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin
|
||||||
$entry = $this->ldap_get_user($username, $this->attributes);
|
$entry = $this->ldap_get_user($username, $this->attributes);
|
||||||
if(!$entry){
|
if(!$entry){
|
||||||
//this really shouldn't happen
|
//this really shouldn't happen
|
||||||
return $username;
|
$nickname = $username;
|
||||||
}else{
|
}else{
|
||||||
$nickname = $entry->getValue($this->attributes['nickname'],'single');
|
$nickname = $entry->getValue($this->attributes['nickname'],'single');
|
||||||
if($nickname){
|
if(!$nickname){
|
||||||
return $nickname;
|
$nickname = $username;
|
||||||
}else{
|
|
||||||
return $username;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return common_nicknamize($nickname);
|
||||||
}
|
}
|
||||||
|
|
||||||
//---utility functions---//
|
//---utility functions---//
|
||||||
|
|
Loading…
Reference in New Issue
Block a user