52 if ( !array_key_exists(
$providerId, self::$instances ) ) {
71 if ( !defined(
'MW_PHPUNIT_TEST' ) ) {
72 throw new MWException( __METHOD__ .
' may only be called from unit tests!' );
74 self::$instances = [];
88 if ( $audience instanceof
User ) {
91 if ( $audience === self::AUDIENCE_PUBLIC ) {
94 if ( $audience === self::AUDIENCE_RAW ) {
97 throw new InvalidArgumentException(
'Invalid audience' );
125 array $idToName, $audience = self::AUDIENCE_PUBLIC,
$flags = self::READ_NORMAL
140 array $nameToId, $audience = self::AUDIENCE_PUBLIC,
$flags = self::READ_NORMAL
154 $id, $audience = self::AUDIENCE_PUBLIC,
$flags = self::READ_NORMAL
157 return $idToName[$id];
169 array $ids, $audience = self::AUDIENCE_PUBLIC,
$flags = self::READ_NORMAL
171 $idToName = array_fill_keys( $ids,
false );
173 $names = array_unique( $names );
174 $names = array_filter( $names,
function ( $name ) {
175 return $name !==
false && $name !==
'';
178 return array_values( $names );
192 $name, $audience = self::AUDIENCE_PUBLIC,
$flags = self::READ_NORMAL
195 return $nameToId[
$name];
207 array $names, $audience = self::AUDIENCE_PUBLIC,
$flags = self::READ_NORMAL
209 $nameToId = array_fill_keys( $names,
false );
211 $ids = array_unique( $ids );
212 $ids = array_filter( $ids,
function ( $id ) {
213 return $id !==
false;
216 return array_values( $ids );
231 $id, $audience = self::AUDIENCE_PUBLIC,
$flags = self::READ_NORMAL
234 if ( $name !==
null && $name !==
'' ) {
235 $user = User::newFromName( $name );
236 if ( $user && $user->getId() && $this->isAttached( $user ) ) {
255 User $user, $audience = self::AUDIENCE_PUBLIC,
$flags = self::READ_NORMAL
string $wgCentralIdLookupProvider
Central ID lookup provider to use by default.
$wgCentralIdLookupProviders
Central ID lookup providers Key is the provider ID, value is a specification for ObjectFactory.
The CentralIdLookup service allows for connecting local users with cluster-wide IDs.
static resetCache()
Reset internal cache for unit testing.
static factory( $providerId=null)
Fetch a CentralIdLookup.
nameFromCentralId( $id, $audience=self::AUDIENCE_PUBLIC, $flags=self::READ_NORMAL)
Given a central user ID, return the (local) user name.
isAttached(User $user, $wikiId=null)
Check that a User is attached on the specified wiki.
centralIdFromLocalUser(User $user, $audience=self::AUDIENCE_PUBLIC, $flags=self::READ_NORMAL)
Given a local User object, return the central ID.
static CentralIdLookup[] $instances
lookupCentralIds(array $idToName, $audience=self::AUDIENCE_PUBLIC, $flags=self::READ_NORMAL)
Given central user IDs, return the (local) user names.
centralIdFromName( $name, $audience=self::AUDIENCE_PUBLIC, $flags=self::READ_NORMAL)
Given a (local) user name, return the central ID.
namesFromCentralIds(array $ids, $audience=self::AUDIENCE_PUBLIC, $flags=self::READ_NORMAL)
Given a an array of central user IDs, return the (local) user names.
centralIdsFromNames(array $names, $audience=self::AUDIENCE_PUBLIC, $flags=self::READ_NORMAL)
Given an array of (local) user names, return the central IDs.
lookupUserNames(array $nameToId, $audience=self::AUDIENCE_PUBLIC, $flags=self::READ_NORMAL)
Given (local) user names, return the central IDs.
checkAudience( $audience)
Check that the "audience" parameter is valid.
localUserFromCentralId( $id, $audience=self::AUDIENCE_PUBLIC, $flags=self::READ_NORMAL)
Given a central user ID, return a local User object.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
getName()
Get the user name, or the IP of an anonymous user.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Allows to change the fields on the form that will be generated $name
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Interface for database access objects.