|
MediaWiki master
|
AuthManager is the authentication system in MediaWiki and serves entry point for authentication. More...
Inherits LoggerAwareInterface.

Public Member Functions | |
| __construct (private readonly WebRequest $request, private readonly Config $config, private readonly ChangeTagsStore $changeTagsStore, private readonly ObjectFactory $objectFactory, private readonly ObjectCacheFactory $objectCacheFactory, private readonly HookContainer $hookContainer, private readonly ReadOnlyMode $readOnlyMode, private readonly UserNameUtils $userNameUtils, private readonly BlockManager $blockManager, private readonly WatchlistManager $watchlistManager, private readonly ILoadBalancer $loadBalancer, private readonly Language $contentLanguage, private readonly LanguageConverterFactory $languageConverterFactory, private readonly BotPasswordStore $botPasswordStore, private readonly UserFactory $userFactory, private readonly UserIdentityLookup $userIdentityLookup, private readonly UserIdentityUtils $identityUtils, private readonly UserOptionsManager $userOptionsManager, private readonly NotificationService $notificationService, private readonly SessionManagerInterface $sessionManager,) | |
| getRequest () | |
| setAuthEventsLogger (LoggerInterface $authEventsLogger) | |
| setLogger (LoggerInterface $logger) | |
Authentication | |
| canAuthenticateNow () | |
| Indicate whether user authentication is possible. | |
| beginAuthentication (array $reqs, $returnToUrl) | |
| Start an authentication flow. | |
| continueAuthentication (array $reqs) | |
| Continue an authentication flow. | |
| securitySensitiveOperationStatus ( $operation) | |
| Whether security-sensitive operations should proceed. | |
| userCanAuthenticate ( $username) | |
| Determine whether a username can authenticate. | |
| normalizeUsername ( $username) | |
| Provide normalized versions of the username for security checks. | |
| setRequestContextUserFromSessionUser () | |
| Call this method to set the request context user for the current request from the context session user. | |
Authentication data changing | |
| revokeAccessForUser ( $username) | |
| Revoke any authentication credentials for a user. | |
| allowsAuthenticationDataChange (AuthenticationRequest $req, $checkData=true) | |
| Validate a change of authentication data (e.g. | |
| changeAuthenticationData (AuthenticationRequest $req, $isAddition=false) | |
| Change authentication data (e.g. | |
Account linking | |
| canLinkAccounts () | |
| Determine whether accounts can be linked. | |
| beginAccountLink (User $user, array $reqs, $returnToUrl) | |
| Start an account linking flow. | |
| continueAccountLink (array $reqs) | |
| Continue an account linking flow. | |
Public Attributes | |
| const | ACCOUNT_CREATION_STATE = 'AuthManager::accountCreationState' |
| const | ACCOUNT_LINK_STATE = 'AuthManager::accountLinkState' |
| const | ACTION_CHANGE = 'change' |
| Change a user's credentials. | |
| const | ACTION_CREATE = 'create' |
| Create a new user. | |
| const | ACTION_CREATE_CONTINUE = 'create-continue' |
| Continue a user creation process that was interrupted by the need for user input or communication with an external provider. | |
| const | ACTION_LINK = 'link' |
| Link an existing user to a third-party account. | |
| const | ACTION_LINK_CONTINUE = 'link-continue' |
| Continue a user linking process that was interrupted by the need for user input or communication with an external provider. | |
| const | ACTION_LOGIN = 'login' |
| Log in with an existing (not necessarily local) user. | |
| const | ACTION_LOGIN_CONTINUE = 'login-continue' |
| Continue a login process that was interrupted by the need for user input or communication with an external provider. | |
| const | ACTION_REMOVE = 'remove' |
| Remove a user's credentials. | |
| const | ACTION_UNLINK = 'unlink' |
| Like ACTION_REMOVE but for linking providers only. | |
| const | AUTHN_STATE = 'AuthManager::authnState' |
| const | AUTOCREATE_BLOCKLIST = 'AuthManager::AutoCreateBlacklist' |
| const | AUTOCREATE_SOURCE_MAINT = '::Maintenance::' |
| Auto-creation is due to a Maintenance script. | |
| const | AUTOCREATE_SOURCE_SESSION = SessionManager::class |
| Auto-creation is due to SessionManager. | |
| const | AUTOCREATE_SOURCE_TEMP = TempUserCreator::class |
| Auto-creation is due to temporary account creation on page save. | |
| const | SEC_FAIL = 'fail' |
| Security-sensitive should not be performed. | |
| const | SEC_OK = 'ok' |
| Security-sensitive operations are ok. | |
| const | SEC_REAUTH = 'reauth' |
| Security-sensitive operations should re-authenticate. | |
Account creation | |
| canCreateAccounts () | |
| Determine whether accounts can be created. | |
| canCreateAccount ( $username, $options=[]) | |
| Determine whether a particular account can be created. | |
| probablyCanCreateAccount (Authority $creator) | |
| Check whether $creator can create accounts. | |
| authorizeCreateAccount (Authority $creator) | |
| Authorize the account creation by $creator. | |
| beginAccountCreation (Authority $creator, array $reqs, $returnToUrl) | |
| Start an account creation flow. | |
| continueAccountCreation (array $reqs) | |
| Continue an account creation flow. | |
| autoCreateUser (User $user, $source, $login=true, $log=true, ?Authority $performer=null, array $tags=[]) | |
| Auto-create an account and optionally log into that account. | |
Information methods | |
| getAuthenticationRequests ( $action, ?UserIdentity $user=null) | |
| Return the applicable list of AuthenticationRequests. | |
| userExists ( $username, $flags=IDBAccessObject::READ_NORMAL) | |
| Determine whether a username exists. | |
| allowsPropertyChange ( $property) | |
| Determine whether a user property should be allowed to be changed. | |
| getAuthenticationProvider ( $id) | |
| Get a provider by ID. | |
Internal methods | |
| setAuthenticationSessionData ( $key, $data) | |
| Store authentication in the current session. | |
| getAuthenticationSessionData ( $key, $default=null) | |
| Fetch authentication data from the current session. | |
| removeAuthenticationSessionData ( $key) | |
| Remove authentication data. | |
| providerArrayFromSpecs ( $class, array $specs) | |
| Create an array of AuthenticationProviders from an array of ObjectFactory specs @template T of AuthenticationProvider. | |
| getPreAuthenticationProviders () | |
| Get the list of PreAuthenticationProviders. | |
| getPrimaryAuthenticationProviders () | |
| Get the list of PrimaryAuthenticationProviders. | |
| getSecondaryAuthenticationProviders () | |
| Get the list of SecondaryAuthenticationProviders. | |
AuthManager is the authentication system in MediaWiki and serves entry point for authentication.
In the future, it may also serve as the entry point to the authorization system.
If you are looking at this because you are working on an extension that creates its own login or signup page, then 1) you really shouldn't do that, 2) if you feel you absolutely have to, subclass AuthManagerSpecialPage or build it on the client side using the clientlogin or the createaccount API. Trying to call this class directly will very likely end up in security vulnerabilities or broken UX in edge cases.
If you are working on an extension that needs to integrate with the authentication system (e.g. by providing a new login method, or doing extra permission checks), you'll probably need to write an AuthenticationProvider.
If you want to create a "reserved" user programmatically, User::newSystemUser() might be what you are looking for. If you want to change user data, use User::changeAuthenticationData(). Code that is related to some SessionProvider or PrimaryAuthenticationProvider can create a (non-reserved) user by calling AuthManager::autoCreateUser(); it is then the provider's responsibility to ensure that the user can authenticate somehow (see especially PrimaryAuthenticationProvider::autoCreatedAccount()). The same functionality can also be used from Maintenance scripts such as createAndPromote.php. If you are writing code that is not associated with such a provider and needs to create accounts programmatically for real users, you should rethink your architecture. There is no good way to do that as such code has no knowledge of what authentication methods are enabled on the wiki and cannot provide any means for users to access the accounts it would create.
The two main control flows when using this class are as follows:
Definition at line 109 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::__construct | ( | private readonly WebRequest | $request, |
| private readonly Config | $config, | ||
| private readonly ChangeTagsStore | $changeTagsStore, | ||
| private readonly ObjectFactory | $objectFactory, | ||
| private readonly ObjectCacheFactory | $objectCacheFactory, | ||
| private readonly HookContainer | $hookContainer, | ||
| private readonly ReadOnlyMode | $readOnlyMode, | ||
| private readonly UserNameUtils | $userNameUtils, | ||
| private readonly BlockManager | $blockManager, | ||
| private readonly WatchlistManager | $watchlistManager, | ||
| private readonly ILoadBalancer | $loadBalancer, | ||
| private readonly Language | $contentLanguage, | ||
| private readonly LanguageConverterFactory | $languageConverterFactory, | ||
| private readonly BotPasswordStore | $botPasswordStore, | ||
| private readonly UserFactory | $userFactory, | ||
| private readonly UserIdentityLookup | $userIdentityLookup, | ||
| private readonly UserIdentityUtils | $identityUtils, | ||
| private readonly UserOptionsManager | $userOptionsManager, | ||
| private readonly NotificationService | $notificationService, | ||
| private readonly SessionManagerInterface | $sessionManager ) |
Definition at line 222 of file AuthManager.php.
References MediaWiki\Auth\AuthManager\setAuthEventsLogger(), and MediaWiki\Auth\AuthManager\setLogger().
| MediaWiki\Auth\AuthManager::allowsAuthenticationDataChange | ( | AuthenticationRequest | $req, |
| $checkData = true ) |
Validate a change of authentication data (e.g.
passwords)
| AuthenticationRequest | $req | |
| bool | $checkData | If false, $req hasn't been loaded from the submission so checks on user-submitted fields should be skipped. $req->username is considered user-submitted for this purpose, even if it cannot be changed via $req->loadFromSubmission. |
Definition at line 1042 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::allowsPropertyChange | ( | $property | ) |
Determine whether a user property should be allowed to be changed.
Supported properties are:
| string | $property |
Definition at line 2689 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::authorizeCreateAccount | ( | Authority | $creator | ) |
Authorize the account creation by $creator.
self::probablyCanCreateAccount instead.| Authority | $creator |
Definition at line 1238 of file AuthManager.php.
References MediaWiki\Permissions\Authority\authorizeWrite().
| MediaWiki\Auth\AuthManager::autoCreateUser | ( | User | $user, |
| $source, | |||
| $login = true, | |||
| $log = true, | |||
| ?Authority | $performer = null, | ||
| array | $tags = [] ) |
Auto-create an account and optionally log into that account.
PrimaryAuthenticationProviders can invoke this method by returning a PASS from beginPrimaryAuthentication() or continuePrimaryAuthentication() with the username of a non-existing user. SessionProviders can invoke it by returning a SessionInfo with the username of a non-existing user from provideSessionInfo(). Calling this method explicitly (e.g., from a maintenance script) is also fine.
| User | $user | User to auto-create |
| string | $source | What caused the auto-creation? This must be one of:
|
| bool | $login | Whether to also log the user in |
| bool | $log | Whether to generate a user creation log entry (since 1.36) |
| Authority | null | $performer | The performer of the action to use for user rights checking NOTE: In 1.46, for callers passing the performer as NULL, the user to be auto-created will be used as the performer (T408724). |
| string[] | $tags | Tags to apply to the user creation log entry if $log is true and the creation succeeds |
Definition at line 1914 of file AuthManager.php.
References $source, MediaWiki\User\User\addToDatabase(), StatusValue\error(), MediaWiki\User\User\getId(), MediaWiki\User\User\getName(), MediaWiki\User\User\getUserPage(), StatusValue\isGood(), StatusValue\isOK(), MediaWiki\User\User\loadFromId(), MediaWiki\User\User\saveSettings(), MediaWiki\User\User\setId(), StatusValue\warning(), and wfMessage().
| MediaWiki\Auth\AuthManager::beginAccountCreation | ( | Authority | $creator, |
| array | $reqs, | ||
| $returnToUrl ) |
Start an account creation flow.
In addition to the AuthenticationRequests returned by $this->getAuthenticationRequests(), a client might include a CreateFromLoginAuthenticationRequest from a previous login attempt. If $createFromLoginAuthenticationRequest->hasPrimaryStateForAction( AuthManager::ACTION_CREATE ) returns true, any AuthenticationRequest::PRIMARY_REQUIRED requests should be omitted. If the CreateFromLoginAuthenticationRequest has a username set, that username must be used for all other requests.
| Authority | $creator | User doing the account creation |
| AuthenticationRequest[] | $reqs | |
| string | $returnToUrl | Url that REDIRECT responses should eventually return to. |
Definition at line 1270 of file AuthManager.php.
References MediaWiki\Permissions\Authority\getUser(), MediaWiki\Permissions\Authority\isTemp(), and wfMessage().
| MediaWiki\Auth\AuthManager::beginAccountLink | ( | User | $user, |
| array | $reqs, | ||
| $returnToUrl ) |
Start an account linking flow.
| User | $user | User being linked |
| AuthenticationRequest[] | $reqs | |
| string | $returnToUrl | Url that REDIRECT responses should eventually return to. |
Definition at line 2251 of file AuthManager.php.
References MediaWiki\User\User\getId(), MediaWiki\User\User\getName(), StatusValue\isGood(), MediaWiki\User\User\isRegistered(), and wfMessage().
| MediaWiki\Auth\AuthManager::beginAuthentication | ( | array | $reqs, |
| $returnToUrl ) |
Start an authentication flow.
In addition to the AuthenticationRequests returned by $this->getAuthenticationRequests(), a client might include a CreateFromLoginAuthenticationRequest from a previous login attempt to preserve state.
Instead of the AuthenticationRequests returned by $this->getAuthenticationRequests(), a client might pass a CreatedAccountAuthenticationRequest from an account creation that just succeeded to log in to the just-created account.
| AuthenticationRequest[] | $reqs | |
| string | $returnToUrl | Url that REDIRECT responses should eventually return to. |
Definition at line 298 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::canAuthenticateNow | ( | ) |
Indicate whether user authentication is possible.
It may not be if the session is provided by something like OAuth for which each individual request includes authentication data.
Definition at line 276 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::canCreateAccount | ( | $username, | |
| $options = [] ) |
Determine whether a particular account can be created.
| string | $username | MediaWiki username |
| array | $options |
|
Definition at line 1129 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::canCreateAccounts | ( | ) |
Determine whether accounts can be created.
Definition at line 1110 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::canLinkAccounts | ( | ) |
Determine whether accounts can be linked.
Definition at line 2233 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::changeAuthenticationData | ( | AuthenticationRequest | $req, |
| $isAddition = false ) |
Change authentication data (e.g.
passwords)
If $req was returned for AuthManager::ACTION_CHANGE, using $req should result in a successful login in the future.
If $req was returned for AuthManager::ACTION_REMOVE, using $req should no longer result in a successful login.
This method should only be called if allowsAuthenticationDataChange( $req, true ) returned success.
| AuthenticationRequest | $req | |
| bool | $isAddition | Set true if this represents an addition of credentials rather than a change. The main difference is that additions should not invalidate BotPasswords. If you're not sure, leave it false. |
Definition at line 1083 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::continueAccountCreation | ( | array | $reqs | ) |
Continue an account creation flow.
| AuthenticationRequest[] | $reqs |
Definition at line 1395 of file AuthManager.php.
References wfMessage().
| MediaWiki\Auth\AuthManager::continueAccountLink | ( | array | $reqs | ) |
Continue an account linking flow.
| AuthenticationRequest[] | $reqs |
Definition at line 2370 of file AuthManager.php.
References wfMessage().
| MediaWiki\Auth\AuthManager::continueAuthentication | ( | array | $reqs | ) |
Continue an authentication flow.
Return values are interpreted as follows:
| AuthenticationRequest[] | $reqs |
Definition at line 431 of file AuthManager.php.
References wfMessage().
| MediaWiki\Auth\AuthManager::getAuthenticationProvider | ( | $id | ) |
Get a provider by ID.
| string | $id |
Definition at line 2708 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::getAuthenticationRequests | ( | $action, | |
| ?UserIdentity | $user = null ) |
Return the applicable list of AuthenticationRequests.
Possible values for $action:
| string | $action | One of the AuthManager::ACTION_* constants |
| UserIdentity | null | $user | User being acted on, instead of the current user. |
Definition at line 2511 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::getAuthenticationSessionData | ( | $key, | |
| $default = null ) |
Fetch authentication data from the current session.
| string | $key | |
| mixed | null | $default |
Definition at line 2760 of file AuthManager.php.
|
protected |
Get the list of PreAuthenticationProviders.
Definition at line 2829 of file AuthManager.php.
|
protected |
Get the list of PrimaryAuthenticationProviders.
Definition at line 2840 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::getRequest | ( | ) |
Definition at line 260 of file AuthManager.php.
|
protected |
Get the list of SecondaryAuthenticationProviders.
Definition at line 2851 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::normalizeUsername | ( | $username | ) |
Provide normalized versions of the username for security checks.
Since different providers can normalize the input in different ways, this returns an array of all the different ways the name might be normalized for authentication.
The returned strings should not be revealed to the user, as that might leak private information (e.g. an email address might be normalized to a username).
| string | $username |
Definition at line 971 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::probablyCanCreateAccount | ( | Authority | $creator | ) |
Check whether $creator can create accounts.
self::authorizeCreateAccount instead.| Authority | $creator |
Definition at line 1214 of file AuthManager.php.
References MediaWiki\Permissions\Authority\probablyCan().
|
protected |
Create an array of AuthenticationProviders from an array of ObjectFactory specs @template T of AuthenticationProvider.
| class-string<T> | $class | |
| array[] | $specs |
Definition at line 2794 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::removeAuthenticationSessionData | ( | $key | ) |
Remove authentication data.
| string | null | $key | If null, all data is removed |
Definition at line 2774 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::revokeAccessForUser | ( | $username | ) |
Revoke any authentication credentials for a user.
After this, the user should no longer be able to log in.
| string | $username |
Definition at line 1024 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::securitySensitiveOperationStatus | ( | $operation | ) |
Whether security-sensitive operations should proceed.
A "security-sensitive operation" is something like a password or email change, that would normally have a "reenter your password to confirm" box if we only supported password-based authentication.
| string | $operation | Operation being checked. This should be a message-key-like string such as 'change-password' or 'change-email'. |
Definition at line 865 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::setAuthenticationSessionData | ( | $key, | |
| $data ) |
Store authentication in the current session.
| string | $key | |
| mixed | $data | Must be serializable |
Definition at line 2743 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::setAuthEventsLogger | ( | LoggerInterface | $authEventsLogger | ) |
Definition at line 253 of file AuthManager.php.
Referenced by MediaWiki\Auth\AuthManager\__construct().
| MediaWiki\Auth\AuthManager::setLogger | ( | LoggerInterface | $logger | ) |
Definition at line 249 of file AuthManager.php.
Referenced by MediaWiki\Auth\AuthManager\__construct().
| MediaWiki\Auth\AuthManager::setRequestContextUserFromSessionUser | ( | ) |
Call this method to set the request context user for the current request from the context session user.
Useful in cases where we need to make sure that a MediaWiki request outputs correct context data for a user who has just been logged-in.
The method will also update the global language variable based on the session's user's context language.
This won't affect objects which already made a copy of the user or the context, so it shouldn't be relied on too heavily, but can help to make the UI more consistent after changing the user. Typically used after a successful AuthManager action that changed the session user (e.g. AuthManager::autoCreateUser() with the login flag set).
Definition at line 998 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::userCanAuthenticate | ( | $username | ) |
Determine whether a username can authenticate.
This is mainly for internal purposes and only takes authentication data into account, not things like blocks that can change without the authentication system being aware.
| string | $username | MediaWiki username |
Definition at line 948 of file AuthManager.php.
| MediaWiki\Auth\AuthManager::userExists | ( | $username, | |
| $flags = IDBAccessObject::READ_NORMAL ) |
Determine whether a username exists.
| string | $username | |
| int | $flags | Bitfield of IDBAccessObject::READ_* constants |
Definition at line 2668 of file AuthManager.php.
| const MediaWiki\Auth\AuthManager::ACCOUNT_CREATION_STATE = 'AuthManager::accountCreationState' |
Definition at line 120 of file AuthManager.php.
Referenced by MediaWiki\Auth\ConfirmLinkSecondaryAuthenticationProvider\beginSecondaryAccountCreation(), and MediaWiki\Auth\ConfirmLinkSecondaryAuthenticationProvider\continueSecondaryAccountCreation().
| const MediaWiki\Auth\AuthManager::ACCOUNT_LINK_STATE = 'AuthManager::accountLinkState' |
Definition at line 126 of file AuthManager.php.
| const MediaWiki\Auth\AuthManager::ACTION_CHANGE = 'change' |
Change a user's credentials.
Definition at line 154 of file AuthManager.php.
Referenced by MediaWiki\Auth\ConfirmLinkSecondaryAuthenticationProvider\continueLinkAttempt(), MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\getAuthenticationRequests(), MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\getAuthenticationRequests(), MediaWiki\Auth\PasswordAuthenticationRequest\getFieldInfo(), and MediaWiki\Auth\ResetPasswordSecondaryAuthenticationProvider\tryReset().
| const MediaWiki\Auth\AuthManager::ACTION_CREATE = 'create' |
Create a new user.
Definition at line 142 of file AuthManager.php.
Referenced by MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\getAuthenticationRequests(), MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\getAuthenticationRequests(), MediaWiki\Auth\CreateFromLoginAuthenticationRequest\hasPrimaryStateForAction(), and MediaWiki\Auth\CreateFromLoginAuthenticationRequest\hasStateForAction().
| const MediaWiki\Auth\AuthManager::ACTION_CREATE_CONTINUE = 'create-continue' |
Continue a user creation process that was interrupted by the need for user input or communication with an external provider.
Definition at line 146 of file AuthManager.php.
| const MediaWiki\Auth\AuthManager::ACTION_LINK = 'link' |
Link an existing user to a third-party account.
Definition at line 148 of file AuthManager.php.
| const MediaWiki\Auth\AuthManager::ACTION_LINK_CONTINUE = 'link-continue' |
Continue a user linking process that was interrupted by the need for user input or communication with an external provider.
Definition at line 152 of file AuthManager.php.
| const MediaWiki\Auth\AuthManager::ACTION_LOGIN = 'login' |
Log in with an existing (not necessarily local) user.
Definition at line 136 of file AuthManager.php.
Referenced by MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\getAuthenticationRequests(), MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\getAuthenticationRequests(), MediaWiki\Auth\PasswordAuthenticationRequest\getFieldInfo(), and MediaWiki\Auth\CreateFromLoginAuthenticationRequest\hasStateForAction().
| const MediaWiki\Auth\AuthManager::ACTION_LOGIN_CONTINUE = 'login-continue' |
Continue a login process that was interrupted by the need for user input or communication with an external provider.
Definition at line 140 of file AuthManager.php.
| const MediaWiki\Auth\AuthManager::ACTION_REMOVE = 'remove' |
Remove a user's credentials.
Definition at line 156 of file AuthManager.php.
Referenced by MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\getAuthenticationRequests(), MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\getAuthenticationRequests(), MediaWiki\Auth\PasswordAuthenticationRequest\getFieldInfo(), MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\providerChangeAuthenticationData(), MediaWiki\Auth\AbstractPrimaryAuthenticationProvider\providerRevokeAccessForUser(), and MediaWiki\Auth\AbstractSecondaryAuthenticationProvider\providerRevokeAccessForUser().
| const MediaWiki\Auth\AuthManager::ACTION_UNLINK = 'unlink' |
Like ACTION_REMOVE but for linking providers only.
Definition at line 158 of file AuthManager.php.
| const MediaWiki\Auth\AuthManager::AUTHN_STATE = 'AuthManager::authnState' |
Definition at line 114 of file AuthManager.php.
Referenced by MediaWiki\Auth\ConfirmLinkSecondaryAuthenticationProvider\beginSecondaryAuthentication(), and MediaWiki\Auth\ConfirmLinkSecondaryAuthenticationProvider\continueSecondaryAuthentication().
| const MediaWiki\Auth\AuthManager::AUTOCREATE_BLOCKLIST = 'AuthManager::AutoCreateBlacklist' |
Definition at line 133 of file AuthManager.php.
| const MediaWiki\Auth\AuthManager::AUTOCREATE_SOURCE_MAINT = '::Maintenance::' |
Auto-creation is due to a Maintenance script.
Definition at line 171 of file AuthManager.php.
| const MediaWiki\Auth\AuthManager::AUTOCREATE_SOURCE_SESSION = SessionManager::class |
Auto-creation is due to SessionManager.
Definition at line 168 of file AuthManager.php.
| const MediaWiki\Auth\AuthManager::AUTOCREATE_SOURCE_TEMP = TempUserCreator::class |
Auto-creation is due to temporary account creation on page save.
Definition at line 174 of file AuthManager.php.
| const MediaWiki\Auth\AuthManager::SEC_FAIL = 'fail' |
Security-sensitive should not be performed.
Definition at line 165 of file AuthManager.php.
| const MediaWiki\Auth\AuthManager::SEC_OK = 'ok' |
Security-sensitive operations are ok.
Definition at line 161 of file AuthManager.php.
| const MediaWiki\Auth\AuthManager::SEC_REAUTH = 'reauth' |
Security-sensitive operations should re-authenticate.
Definition at line 163 of file AuthManager.php.