MediaWiki master
|
A primary authentication provider that uses the temporary password field in the 'user' table. More...
Inherits MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider.
Public Member Functions | ||||||||||
testUserExists ( $username, $flags=IDBAccessObject::READ_NORMAL) | ||||||||||
Test whether the named user exists. | ||||||||||
Public Member Functions inherited from MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider | ||||||||||
__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. | ||||||||||
Protected Member Functions | |
getTemporaryPassword (string $username, $flags=IDBAccessObject::READ_NORMAL) | |
Return a tuple of temporary password and the time when it was generated. | |
setTemporaryPassword (string $username, Password $tempPassHash, $tempPassTime) | |
Set a temporary password and the time when it was generated. | |
Protected Member Functions inherited from MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider | |
getPasswordResetData ( $username, $data) | |
Get password reset data, if any. | |
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. | |
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 () | |
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. | |
Protected Attributes inherited from MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider | |
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 |
A primary authentication provider that uses the temporary password field in the 'user' table.
A successful login will force a password reset.
Definition at line 40 of file TemporaryPasswordPrimaryAuthenticationProvider.php.
|
protected |
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 from MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider.
Definition at line 57 of file TemporaryPasswordPrimaryAuthenticationProvider.php.
|
protected |
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 from MediaWiki\Auth\AbstractTemporaryPasswordPrimaryAuthenticationProvider.
Definition at line 74 of file TemporaryPasswordPrimaryAuthenticationProvider.php.
MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::testUserExists | ( | $username, | |
$flags = IDBAccessObject::READ_NORMAL ) |
Test whether the named user exists.
Single-sign-on providers can use this to reserve a username for autocreation.
string | $username | MediaWiki username |
int | $flags | Bitfield of IDBAccessObject::READ_* constants |
Implements MediaWiki\Auth\PrimaryAuthenticationProvider.
Definition at line 44 of file TemporaryPasswordPrimaryAuthenticationProvider.php.