Merge "Use CentralIdLookup instead of hardcoding for CentralAuth"

This commit is contained in:
jenkins-bot 2015-12-09 01:09:46 +00:00 committed by Gerrit Code Review
commit 84fb2e5a83

View file

@ -28,24 +28,19 @@ class EchoUnreadWikis {
}
/**
* If CentralAuth is installed, use that. Otherwise
* assume they're using shared user tables.
* Use the user id provided by the CentralIdLookup
*
* @param User $user
* @return EchoUnreadWikis|bool
*/
public static function newFromUser( User $user ) {
if ( class_exists( 'CentralAuthUser' ) ) {
// @todo don't be CA specific (see T111302/CentralIdLookup)
$caUser = CentralAuthUser::getInstance( $user );
if ( $caUser->isAttached() ) {
return new self( $caUser->getId() );
} else {
return false;
}
$lookup = CentralIdLookup::factory();
$id = $lookup->centralIdFromLocalUser( $user, CentralIdLookup::AUDIENCE_RAW );
if ( !$id ) {
return false;
}
return new self( $user->getId() );
return new self( $id );
}
/**