MediaWiki  1.33.0
ExternalUserNames Class Reference

Class to parse and build external user names. More...

Collaboration diagram for ExternalUserNames:

Public Member Functions

 __construct ( $usernamePrefix, $assignKnownUsers)
 
 addPrefix ( $name)
 Add an interwiki prefix to the username regardless of circumstances. More...
 
 applyPrefix ( $name)
 Add an interwiki prefix to the username, if appropriate. More...
 

Static Public Member Functions

static getLocal ( $username)
 Get local part of the user name. More...
 
static getUserLinkTitle ( $userName)
 Get a target Title to link a username. More...
 
static isExternal ( $username)
 Tells whether the username is external or not. More...
 

Private Attributes

bool $assignKnownUsers = false
 
bool[] $triedCreations = []
 
string $usernamePrefix = 'imported'
 

Detailed Description

Class to parse and build external user names.

Since
1.31

Definition at line 29 of file ExternalUserNames.php.

Constructor & Destructor Documentation

◆ __construct()

ExternalUserNames::__construct (   $usernamePrefix,
  $assignKnownUsers 
)
Parameters
string$usernamePrefixPrefix to apply to unknown (and possibly also known) usernames
bool$assignKnownUsersWhether to apply the prefix to usernames that exist locally

Definition at line 50 of file ExternalUserNames.php.

References $assignKnownUsers, and $usernamePrefix.

Member Function Documentation

◆ addPrefix()

ExternalUserNames::addPrefix (   $name)

Add an interwiki prefix to the username regardless of circumstances.

Parameters
string$name
Returns
string Prefixed username, using ">" as separator

Definition at line 125 of file ExternalUserNames.php.

References $name.

Referenced by applyPrefix().

◆ applyPrefix()

ExternalUserNames::applyPrefix (   $name)

Add an interwiki prefix to the username, if appropriate.

This method does have a side-effect on SUL (single user login) wikis: Calling this calls the ImportHandleUnknownUser hook from the CentralAuth extension, which assigns a local ID to the global user name, if possible. No prefix is applied if this is successful.

See also
https://meta.wikimedia.org/wiki/Help:Unified_login
https://www.mediawiki.org/wiki/Manual:Hooks/ImportHandleUnknownUser
Parameters
string$name
Returns
string Either the unchanged username if it's a known local user (or not a valid username), otherwise the name with the prefix prepended.

Definition at line 95 of file ExternalUserNames.php.

References $name, addPrefix(), User\idFromName(), User\isUsableName(), and Hooks\run().

◆ getLocal()

static ExternalUserNames::getLocal (   $username)
static

Get local part of the user name.

Parameters
string$usernameUsername to get
Returns
string

Definition at line 145 of file ExternalUserNames.php.

References $username.

Referenced by RCCacheEntryFactory\getUserLink(), and ExternalUserNamesTest\testGetLocal().

◆ getUserLinkTitle()

static ExternalUserNames::getUserLinkTitle (   $userName)
static

Get a target Title to link a username.

Parameters
string$userNameUsername to link
Returns
null|Title

Definition at line 62 of file ExternalUserNames.php.

References $title, MWNamespace\getCanonicalName(), SpecialPage\getTitleFor(), Title\makeTitle(), NS_MAIN, and NS_USER.

Referenced by ExternalUserNamesTest\testGetUserLinkTitle(), and Linker\userLink().

◆ isExternal()

static ExternalUserNames::isExternal (   $username)
static

Tells whether the username is external or not.

Parameters
string$usernameUsername to check
Returns
bool true if it's external, false otherwise.

Definition at line 135 of file ExternalUserNames.php.

References $username.

Referenced by SpecialContributions\execute(), ApiQueryUserContribs\execute(), ExternalUserNamesTest\testIsExternal(), Linker\userLink(), Linker\userToolLinks(), and ApiBase\validateUser().

Member Data Documentation

◆ $assignKnownUsers

bool ExternalUserNames::$assignKnownUsers = false
private

Definition at line 39 of file ExternalUserNames.php.

Referenced by __construct().

◆ $triedCreations

bool [] ExternalUserNames::$triedCreations = []
private

Definition at line 44 of file ExternalUserNames.php.

◆ $usernamePrefix

string ExternalUserNames::$usernamePrefix = 'imported'
private

Definition at line 34 of file ExternalUserNames.php.

Referenced by __construct().


The documentation for this class was generated from the following file: