MediaWiki master
|
A primary authentication provider that uses a temporary password. More...
Inherits MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider.
Inherited by MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider.
Public Member Functions | ||||||||||
__construct (IConnectionProvider $dbProvider, UserOptionsLookup $userOptionsLookup, $params=[]) | ||||||||||
accountCreationType () | ||||||||||
Fetch the account-creation type. | ||||||||||
beginPrimaryAccountCreation ( $user, $creator, array $reqs) | ||||||||||
Start an account creation flow. | ||||||||||
beginPrimaryAuthentication (array $reqs) | ||||||||||
Start an authentication flow. | ||||||||||
finishAccountCreation ( $user, $creator, AuthenticationResponse $res) | ||||||||||
Post-creation callback.Called after the user is added to the database, before secondary authentication providers are run. Only called if this provider was the one that issued a PASS.
| ||||||||||
getAuthenticationRequests ( $action, array $options) | ||||||||||
providerAllowsAuthenticationDataChange (AuthenticationRequest $req, $checkData=true) | ||||||||||
Validate a change of authentication data (e.g. | ||||||||||
providerChangeAuthenticationData (AuthenticationRequest $req) | ||||||||||
Change or remove authentication data (e.g. | ||||||||||
testForAccountCreation ( $user, $creator, array $reqs) | ||||||||||
Determine whether an account creation may begin.Called from AuthManager::beginAccountCreation()
| ||||||||||
testUserCanAuthenticate ( $username) | ||||||||||
Test whether the named user can authenticate with this provider.Should return true if the provider has any data for this user which can be used to authenticate it, even if the user is temporarily prevented from authentication somehow.
| ||||||||||
Public Member Functions inherited from MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider | ||||||||||
__construct (array $params=[]) | ||||||||||
Public Member Functions inherited from MediaWiki\Auth\AbstractPrimaryAuthenticationProvider | ||||||||||
autoCreatedAccount ( $user, $source) | ||||||||||
Post-auto-creation callback.
| ||||||||||
beginPrimaryAccountLink ( $user, array $reqs) | ||||||||||
Start linking an account to an existing user.
| ||||||||||
continuePrimaryAccountCreation ( $user, $creator, array $reqs) | ||||||||||
Continue an account creation flow.
| ||||||||||
continuePrimaryAccountLink ( $user, array $reqs) | ||||||||||
Continue linking an account to an existing user.
| ||||||||||
continuePrimaryAuthentication (array $reqs) | ||||||||||
postAccountCreation ( $user, $creator, AuthenticationResponse $response) | ||||||||||
Post-creation callback.This will be called at the end of any account creation attempt, regardless of whether this provider was the one that handled it. It will not be called if the account creation process results in a session timeout (possibly after a successful user creation, while a secondary provider is waiting for a response).
| ||||||||||
postAccountLink ( $user, AuthenticationResponse $response) | ||||||||||
Post-link callback.This will be called at the end of any account linking attempt, regardless of whether this provider was the one that handled it.
| ||||||||||
postAuthentication ( $user, AuthenticationResponse $response) | ||||||||||
Post-login callback.This will be called at the end of any login attempt, regardless of whether this provider was the one that handled it. It will not be called for unfinished login attempts that fail by the session timing out.
| ||||||||||
providerAllowsPropertyChange ( $property) | ||||||||||
Determine whether a property can change.
| ||||||||||
providerNormalizeUsername ( $username) | ||||||||||
Normalize the username for authentication.Any two inputs that would result in the same user being authenticated should return the same string here, while inputs that would result in different users should return different strings.If possible, the best thing to do here is to return the canonicalized name of the local user account that would be used. If not, return something that would be invalid as a local username (e.g. wrap an email address in "<>", or append "#servicename" to the username passed to a third-party service).If the provider doesn't use a username at all in its AuthenticationRequests, return null. If the name is syntactically invalid, it's probably best to return null.
| ||||||||||
providerRevokeAccessForUser ( $username) | ||||||||||
Revoke the user's credentials.This may cause the user to no longer exist for the provider, or the user may continue to exist in a "disabled" state.The intention is that the named account will never again be usable for normal login (i.e. there is no way to undo the revocation of access).
| ||||||||||
testUserForCreation ( $user, $autocreate, array $options=[]) | ||||||||||
Determine whether an account may be created.
| ||||||||||
Public Member Functions inherited from MediaWiki\Auth\AbstractAuthenticationProvider | ||||||||||
getUniqueId () | ||||||||||
Return a unique identifier for this instance.This must be the same across requests. If multiple instances return the same ID, exceptions will be thrown from AuthManager.
| ||||||||||
init (LoggerInterface $logger, AuthManager $manager, HookContainer $hookContainer, Config $config, UserNameUtils $userNameUtils) | ||||||||||
Initialise with dependencies of an AuthenticationProvider. | ||||||||||
Public Member Functions inherited from MediaWiki\Auth\PrimaryAuthenticationProvider | ||||||||||
testUserExists ( $username, $flags=IDBAccessObject::READ_NORMAL) | ||||||||||
Test whether the named user exists. | ||||||||||
Protected Member Functions | |
getPasswordResetData ( $username, $data) | |
Get password reset data, if any. | |
getTemporaryPassword (string $username, $flags=IDBAccessObject::READ_NORMAL) | |
Return a tuple of temporary password and the time when it was generated. | |
isTimestampValid ( $timestamp) | |
Check that a temporary password is still valid (hasn't expired). | |
maybeSendNewAccountEmail (User $user, User $creatingUser, $password) | |
Wait for the new account to be recorded, and if successful, send an email about the new account creation and the temporary password. | |
maybeSendPasswordResetEmail (TemporaryPasswordAuthenticationRequest $req) | |
Wait for the new temporary password to be recorded, and if successful, send an email about it. | |
postInitSetup () | |
A provider can override this to do any necessary setup after init() is called. | |
sendNewAccountEmail (User $user, User $creatingUser, $password) | |
Send an email about the new account creation and the temporary password. | |
sendPasswordResetEmail (TemporaryPasswordAuthenticationRequest $req) | |
Send an email about the new temporary password. | |
setTemporaryPassword (string $username, Password $tempPassHash, $tempPassTime) | |
Set a temporary password and the time when it was generated. | |
Protected Member Functions inherited from MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider | |
checkPasswordValidity ( $username, $password) | |
Check that the password is valid. | |
failResponse (PasswordAuthenticationRequest $req) | |
Return the appropriate response for failure. | |
getFatalPasswordErrorResponse (string $username, Status $status) | |
Adds user-friendly description to a fatal password validity check error. | |
getNewPasswordExpiry ( $username) | |
Get expiration date for a new password, if any. | |
getPassword ( $hash) | |
Get a Password object from the hash. | |
getPasswordFactory () | |
setPasswordResetFlag ( $username, Status $status, $data=null) | |
Check if the password should be reset. | |
Protected Member Functions inherited from MediaWiki\Auth\AbstractAuthenticationProvider | |
getHookContainer () | |
getHookRunner () | |
Protected Attributes | |
IConnectionProvider | $dbProvider |
bool | $emailEnabled = null |
int | $newPasswordExpiry = null |
int | $passwordReminderResendTime = null |
UserOptionsLookup | $userOptionsLookup |
Protected Attributes inherited from MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider | |
bool | $authoritative |
Whether this provider should ABSTAIN (false) or FAIL (true) on password failure. | |
Protected Attributes inherited from MediaWiki\Auth\AbstractAuthenticationProvider | |
Config | $config |
LoggerInterface | $logger |
AuthManager | $manager |
UserNameUtils | $userNameUtils |
Additional Inherited Members | |
Public Attributes inherited from MediaWiki\Auth\PrimaryAuthenticationProvider | |
const | TYPE_CREATE = 'create' |
Provider can create accounts. | |
const | TYPE_LINK = 'link' |
Provider can link to existing accounts elsewhere. | |
const | TYPE_NONE = 'none' |
Provider cannot create or link to accounts. | |
A primary authentication provider that uses a temporary password.
A successful login will force a password reset.
Definition at line 48 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider::__construct | ( | IConnectionProvider | $dbProvider, |
UserOptionsLookup | $userOptionsLookup, | ||
$params = [] ) |
IConnectionProvider | $dbProvider | |
UserOptionsLookup | $userOptionsLookup | |
array | $params |
|
Definition at line 72 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\$dbProvider, $params, and MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\$userOptionsLookup.
MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider::accountCreationType | ( | ) |
Fetch the account-creation type.
Implements MediaWiki\Auth\PrimaryAuthenticationProvider.
Definition at line 286 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References MediaWiki\Auth\PrimaryAuthenticationProvider\TYPE_CREATE.
MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider::beginPrimaryAccountCreation | ( | $user, | |
$creator, | |||
array | $reqs ) |
Start an account creation flow.
User | $user | User being created (not added to the database yet). This may become a "UserValue" in the future, or User may be refactored into such. |
User | $creator | User doing the creation. This may become a "UserValue" in the future, or User may be refactored into such. |
AuthenticationRequest[] | $reqs |
Implements MediaWiki\Auth\PrimaryAuthenticationProvider.
Definition at line 313 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References MediaWiki\Auth\AuthenticationRequest\getRequestByClass(), MediaWiki\Auth\AuthenticationResponse\newAbstain(), and MediaWiki\Auth\AuthenticationResponse\newPass().
MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider::beginPrimaryAuthentication | ( | array | $reqs | ) |
Start an authentication flow.
AuthenticationRequest[] | $reqs |
Implements MediaWiki\Auth\PrimaryAuthenticationProvider.
Definition at line 138 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\checkPasswordValidity(), MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\failResponse(), MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\getFatalPasswordErrorResponse(), MediaWiki\Auth\AuthenticationRequest\getRequestByClass(), MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\getTemporaryPassword(), MediaWiki\Auth\AuthenticationResponse\newAbstain(), MediaWiki\Auth\AuthenticationResponse\newPass(), and MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\setPasswordResetFlag().
MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider::finishAccountCreation | ( | $user, | |
$creator, | |||
AuthenticationResponse | $response ) |
Post-creation callback.Called after the user is added to the database, before secondary authentication providers are run. Only called if this provider was the one that issued a PASS.
User | $user | User being created (has been added to the database now). This may become a "UserValue" in the future, or User may be refactored into such. |
User | $creator | User doing the creation. This may become a "UserValue" in the future, or User may be refactored into such. |
AuthenticationResponse | $response | PASS response returned earlier |
Reimplemented from MediaWiki\Auth\AbstractPrimaryAuthenticationProvider.
Definition at line 337 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\maybeSendNewAccountEmail(), and MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\providerChangeAuthenticationData().
MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider::getAuthenticationRequests | ( | $action, | |
array | $options ) |
string | $action | |
array | $options |
Reimplemented from MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider.
Definition at line 107 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References MediaWiki\Auth\AuthManager\ACTION_CHANGE, MediaWiki\Auth\AuthManager\ACTION_CREATE, MediaWiki\Auth\AuthManager\ACTION_LOGIN, MediaWiki\Auth\AuthManager\ACTION_REMOVE, and MediaWiki\Auth\TemporaryPasswordAuthenticationRequest\newRandom().
|
protected |
Get password reset data, if any.
string | $username | |
\\stdClass | null | $data |
Reimplemented from MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider.
Definition at line 99 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References wfMessage().
|
abstractprotected |
Return a tuple of temporary password and the time when it was generated.
The password may be an InvalidPassword to represent that it was unset, or null if the user can't authenticate for other reasons.
The time is a a timestamp in the database's format or null (use wfTimestampOrNull() to parse it). If it's null, the password doesn't expire. Otherwise, the password should be considered expired after $wgNewPasswordExpiry seconds since that time.
string | $username | Canonical username |
int | $flags | Bitfield of IDBAccessObject::READ_* constants |
Reimplemented in MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider.
Referenced by MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\beginPrimaryAuthentication(), MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\providerAllowsAuthenticationDataChange(), and MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\testUserCanAuthenticate().
|
protected |
Check that a temporary password is still valid (hasn't expired).
string | int | null | $timestamp | Timestamp in the database's format; null means it doesn't expire |
Definition at line 360 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\$newPasswordExpiry, wfTimestamp(), and wfTimestampOrNull().
Referenced by MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\testUserCanAuthenticate().
|
protected |
Wait for the new account to be recorded, and if successful, send an email about the new account creation and the temporary password.
If overridden, the override must call sendNewAccountEmail().
User | $user | The new user account |
User | $creatingUser | The user who created the account (can be anonymous) |
string | $password | The temporary password |
Definition at line 382 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\sendNewAccountEmail().
Referenced by MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\finishAccountCreation().
|
protected |
Wait for the new temporary password to be recorded, and if successful, send an email about it.
If overridden, the override must call sendPasswordResetEmail().
TemporaryPasswordAuthenticationRequest | $req |
Definition at line 435 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
Referenced by MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\providerChangeAuthenticationData().
|
protected |
A provider can override this to do any necessary setup after init() is called.
Reimplemented from MediaWiki\Auth\AbstractAuthenticationProvider.
Definition at line 92 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References MediaWiki\MainConfigNames\EnableEmail, MediaWiki\MainConfigNames\NewPasswordExpiry, and MediaWiki\MainConfigNames\PasswordReminderResendTime.
MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider::providerAllowsAuthenticationDataChange | ( | AuthenticationRequest | $req, |
$checkData = true ) |
Validate a change of authentication data (e.g.
passwords)
Return StatusValue::newGood( 'ignored' ) if you don't support this AuthenticationRequest type.
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. |
Implements MediaWiki\Auth\PrimaryAuthenticationProvider.
Definition at line 194 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\checkPasswordValidity(), MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\getTemporaryPassword(), and wfTimestamp().
MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider::providerChangeAuthenticationData | ( | AuthenticationRequest | $req | ) |
Change or remove authentication data (e.g.
passwords)
If $req was returned for AuthManager::ACTION_CHANGE, the corresponding credentials should result in a successful login in the future.
If $req was returned for AuthManager::ACTION_REMOVE, the corresponding credentials should no longer result in a successful login.
It can be assumed that providerAllowsAuthenticationDataChange with $checkData === true was called before this, and passed. This method should never fail (other than throwing an exception).
Implements MediaWiki\Auth\PrimaryAuthenticationProvider.
Definition at line 257 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References MediaWiki\Auth\AuthManager\ACTION_REMOVE, MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\getPasswordFactory(), MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\maybeSendPasswordResetEmail(), MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\setTemporaryPassword(), and wfTimestampNow().
Referenced by MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\finishAccountCreation().
|
protected |
Send an email about the new account creation and the temporary password.
User | $user | The new user account |
User | $creatingUser | The user who created the account (can be anonymous) |
string | $password | The temporary password |
Definition at line 400 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
Referenced by MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\maybeSendNewAccountEmail().
|
protected |
Send an email about the new temporary password.
TemporaryPasswordAuthenticationRequest | $req |
Definition at line 451 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
|
abstractprotected |
Set a temporary password and the time when it was generated.
string | $username | Canonical username |
Password | $tempPassHash | Password, or an InvalidPassword to unset |
string | int | null | $tempPassTime | Timestamp in a format accepted by wfTimestampOrNull(); null means it doesn't expire |
Reimplemented in MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider.
Referenced by MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\providerChangeAuthenticationData().
MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider::testForAccountCreation | ( | $user, | |
$creator, | |||
array | $reqs ) |
Determine whether an account creation may begin.Called from AuthManager::beginAccountCreation()
User | $user | User being created (not added to the database yet). This may become a "UserValue" in the future, or User may be refactored into such. |
User | $creator | User doing the creation. This may become a "UserValue" in the future, or User may be refactored into such. |
AuthenticationRequest[] | $reqs |
Reimplemented from MediaWiki\Auth\AbstractPrimaryAuthenticationProvider.
Definition at line 290 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\checkPasswordValidity(), and MediaWiki\Auth\AuthenticationRequest\getRequestByClass().
MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider::testUserCanAuthenticate | ( | $username | ) |
Test whether the named user can authenticate with this provider.Should return true if the provider has any data for this user which can be used to authenticate it, even if the user is temporarily prevented from authentication somehow.
string | $username | MediaWiki username |
Reimplemented from MediaWiki\Auth\AbstractPrimaryAuthenticationProvider.
Definition at line 182 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
References MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\getTemporaryPassword(), and MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\isTimestampValid().
|
protected |
Definition at line 60 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
Referenced by MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\__construct().
|
protected |
Definition at line 52 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
|
protected |
Definition at line 55 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
Referenced by MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\isTimestampValid().
|
protected |
Definition at line 58 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
|
protected |
Definition at line 61 of file AbstractTemporaryPasswordPrimaryAuthenticationProvider.php.
Referenced by MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider\__construct().