MediaWiki REL1_31
MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider Class Reference

A primary authentication provider that uses the temporary password field in the 'user' table. More...

Inheritance diagram for MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider:
Collaboration diagram for MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider:

Public Member Functions

 __construct ( $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.
 
 getAuthenticationRequests ( $action, array $options)
 Return the applicable list of AuthenticationRequests.
 
 providerAllowsAuthenticationDataChange (AuthenticationRequest $req, $checkData=true)
 Validate a change of authentication data (e.g.
 
 providerChangeAuthenticationData (AuthenticationRequest $req)
 Change or remove authentication data (e.g.
 
 setConfig (\Config $config)
 
 testForAccountCreation ( $user, $creator, array $reqs)
 Determine whether an account creation may begin.
 
 testUserCanAuthenticate ( $username)
 Test whether the named user can authenticate with this provider.
 
 testUserExists ( $username, $flags=User::READ_NORMAL)
 Test whether the named user exists.
 
- 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)
 Continue an authentication flow.
 
 postAccountCreation ( $user, $creator, AuthenticationResponse $response)
 Post-creation callback.
 
 postAccountLink ( $user, AuthenticationResponse $response)
 Post-link callback.
 
 postAuthentication ( $user, AuthenticationResponse $response)
 Post-login callback.
 
 providerAllowsPropertyChange ( $property)
 Determine whether a property can change.
 
 providerNormalizeUsername ( $username)
 @inheritDoc
 
 providerRevokeAccessForUser ( $username)
 @inheritDoc
 
 testUserForCreation ( $user, $autocreate, array $options=[])
 Determine whether an account may be created.
 
- Public Member Functions inherited from MediaWiki\Auth\AbstractAuthenticationProvider
 getUniqueId ()
 @inheritDoc
 
 setConfig (Config $config)
 Set configuration.
 
 setLogger (LoggerInterface $logger)
 
 setManager (AuthManager $manager)
 Set AuthManager.
 

Protected Member Functions

 getPasswordResetData ( $username, $data)
 Get password reset data, if any.
 
 isTimestampValid ( $timestamp)
 Check that a temporary password is still valid (hasn't expired).
 
 sendNewAccountEmail (User $user, User $creatingUser, $password)
 Send an email about the new account creation and the temporary password.
 
 sendPasswordResetEmail (TemporaryPasswordAuthenticationRequest $req)
 
- 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.
 
 getNewPasswordExpiry ( $username)
 Get expiration date for a new password, if any.
 
 getPassword ( $hash)
 Get a Password object from the hash.
 
 getPasswordFactory ()
 Get the PasswordFactory.
 
 setPasswordResetFlag ( $username, Status $status, $data=null)
 Check if the password should be reset.
 

Protected Attributes

bool $emailEnabled = null
 
int $newPasswordExpiry = null
 
int $passwordReminderResendTime = null
 
- 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
 

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.
 

Detailed Description

A primary authentication provider that uses the temporary password field in the 'user' table.

A successful login will force a password reset.

Note
For proper operation, this should generally come before any other password-based authentication providers.
Since
1.27

Definition at line 37 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

Constructor & Destructor Documentation

◆ __construct()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::__construct (   $params = [])
Parameters
array$params
  • emailEnabled: (bool) must be true for the option to email passwords to be present
  • newPasswordExpiry: (int) expiraton time of temporary passwords, in seconds
  • passwordReminderResendTime: (int) cooldown period in hours until a password reminder can be sent to the same user again,

Definition at line 56 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References $params.

Member Function Documentation

◆ accountCreationType()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::accountCreationType ( )

Fetch the account-creation type.

Returns
string One of the TYPE_* constants

Implements MediaWiki\Auth\PrimaryAuthenticationProvider.

Definition at line 327 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References MediaWiki\Auth\PrimaryAuthenticationProvider\TYPE_CREATE.

◆ beginPrimaryAccountCreation()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::beginPrimaryAccountCreation (   $user,
  $creator,
array  $reqs 
)

Start an account creation flow.

Parameters
User$userUser being created (not added to the database yet). This may become a "UserValue" in the future, or User may be refactored into such.
User$creatorUser doing the creation. This may become a "UserValue" in the future, or User may be refactored into such.
AuthenticationRequest[]$reqs
Returns
AuthenticationResponse Expected responses:
  • PASS: The user may be created. Secondary providers will now run.
  • FAIL: The user may not be created. Fail the creation process.
  • ABSTAIN: These $reqs are not handled. Some other primary provider may handle it.
  • UI: The $reqs are accepted, no other primary provider will run. Additional AuthenticationRequests are needed to complete the process.
  • REDIRECT: The $reqs are accepted, no other primary provider will run. Redirection to a third party is needed to complete the process.

Implements MediaWiki\Auth\PrimaryAuthenticationProvider.

Definition at line 354 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References $req, $ret, $user, MediaWiki\Auth\AuthenticationRequest\getRequestByClass(), MediaWiki\Auth\AuthenticationResponse\newAbstain(), and MediaWiki\Auth\AuthenticationResponse\newPass().

◆ beginPrimaryAuthentication()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::beginPrimaryAuthentication ( array  $reqs)

Start an authentication flow.

Parameters
AuthenticationRequest[]$reqs
Returns
AuthenticationResponse Expected responses:
  • PASS: The user is authenticated. Secondary providers will now run.
  • FAIL: The user is not authenticated. Fail the authentication process.
  • ABSTAIN: These $reqs are not handled. Some other primary provider may handle it.
  • UI: The $reqs are accepted, no other primary provider will run. Additional AuthenticationRequests are needed to complete the process.
  • REDIRECT: The $reqs are accepted, no other primary provider will run. Redirection to a third party is needed to complete the process.

Implements MediaWiki\Auth\PrimaryAuthenticationProvider.

Definition at line 118 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References $dbr, $req, $username, MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\checkPasswordValidity(), DB_REPLICA, MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\failResponse(), User\getCanonicalName(), MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\getPassword(), MediaWiki\Auth\AuthenticationRequest\getRequestByClass(), MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider\isTimestampValid(), MediaWiki\Auth\AuthenticationResponse\newAbstain(), MediaWiki\Auth\AuthenticationResponse\newFail(), MediaWiki\Auth\AuthenticationResponse\newPass(), MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\setPasswordResetFlag(), and wfGetDB().

◆ finishAccountCreation()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::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.

Parameters
User$userUser 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$creatorUser doing the creation. This may become a "UserValue" in the future, or User may be refactored into such.
AuthenticationResponse$responsePASS response returned earlier
Returns
string|null 'newusers' log subtype to use for logging the account creation. If null, either 'create' or 'create2' will be used depending on $creator.

Reimplemented from MediaWiki\Auth\AbstractPrimaryAuthenticationProvider.

Definition at line 380 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References $req, $res, $user, DB_MASTER, MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider\providerChangeAuthenticationData(), MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider\sendNewAccountEmail(), use, and wfGetDB().

◆ getAuthenticationRequests()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::getAuthenticationRequests (   $action,
array  $options 
)

Return the applicable list of AuthenticationRequests.

Possible values for $action depend on whether the implementing class is also a PreAuthenticationProvider, PrimaryAuthenticationProvider, or SecondaryAuthenticationProvider.

  • ACTION_LOGIN: Valid for passing to beginAuthentication. Called on all providers.
  • ACTION_CREATE: Valid for passing to beginAccountCreation. Called on all providers.
  • ACTION_LINK: Valid for passing to beginAccountLink. Called on linking primary providers only.
  • ACTION_CHANGE: Valid for passing to AuthManager::changeAuthenticationData to change credentials. Called on primary and secondary providers.
  • ACTION_REMOVE: Valid for passing to AuthManager::changeAuthenticationData to remove credentials. Must work without additional user input (i.e. without calling loadFromSubmission). Called on primary and secondary providers.
See also
AuthManager::getAuthenticationRequests()
Parameters
string$action
array$optionsOptions are:
  • username: User name related to the action, or null/unset if anon.
    • ACTION_LOGIN: The currently logged-in user, if any.
    • ACTION_CREATE: The account creator, if non-anonymous.
    • ACTION_LINK: The local user being linked to.
    • ACTION_CHANGE: The user having data changed.
    • ACTION_REMOVE: The user having data removed. If you leave the username property of the returned requests empty, this will automatically be copied there (except for ACTION_CREATE where it wouldn't really make sense).
Returns
AuthenticationRequest[]

Reimplemented from MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider.

Definition at line 92 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References $options, 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().

◆ getPasswordResetData()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::getPasswordResetData (   $username,
  $data 
)
protected

Get password reset data, if any.

Parameters
string$username
mixed$data
Returns
object|null { 'hard' => bool, 'msg' => Message }

Reimplemented from MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider.

Definition at line 84 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References wfMessage().

◆ isTimestampValid()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::isTimestampValid (   $timestamp)
protected

◆ providerAllowsAuthenticationDataChange()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::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.

Parameters
AuthenticationRequest$req
bool$checkDataIf 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.
Returns
StatusValue

Implements MediaWiki\Auth\PrimaryAuthenticationProvider.

Definition at line 216 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References $req, $username, MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\checkPasswordValidity(), DB_MASTER, User\getCanonicalName(), User\newFromName(), wfGetDB(), and wfTimestamp().

◆ providerChangeAuthenticationData()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::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).

Parameters
AuthenticationRequest$req

Implements MediaWiki\Auth\PrimaryAuthenticationProvider.

Definition at line 284 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References $req, $username, MediaWiki\Auth\AuthManager\ACTION_REMOVE, DB_MASTER, User\getCanonicalName(), MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\getPasswordFactory(), MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider\sendPasswordResetEmail(), use, and wfGetDB().

Referenced by MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider\finishAccountCreation().

◆ sendNewAccountEmail()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::sendNewAccountEmail ( User  $user,
User  $creatingUser,
  $password 
)
protected

Send an email about the new account creation and the temporary password.

Parameters
User$userThe new user account
User$creatingUserThe user who created the account (can be anonymous)
string$passwordThe temporary password
Returns
\Status

Definition at line 425 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References $user, User\getRequest(), and wfMessage().

Referenced by MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider\finishAccountCreation().

◆ sendPasswordResetEmail()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::sendPasswordResetEmail ( TemporaryPasswordAuthenticationRequest  $req)
protected
Parameters
TemporaryPasswordAuthenticationRequest$req
Returns
\Status

Definition at line 459 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References $req, $user, User\newFromName(), and wfMessage().

Referenced by MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider\providerChangeAuthenticationData().

◆ setConfig()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::setConfig ( \Config  $config)

◆ testForAccountCreation()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::testForAccountCreation (   $user,
  $creator,
array  $reqs 
)

Determine whether an account creation may begin.

Called from AuthManager::beginAccountCreation()

Note
No need to test if the account exists, AuthManager checks that
Parameters
User$userUser being created (not added to the database yet). This may become a "UserValue" in the future, or User may be refactored into such.
User$creatorUser doing the creation. This may become a "UserValue" in the future, or User may be refactored into such.
AuthenticationRequest[]$reqs
Returns
StatusValue

Reimplemented from MediaWiki\Auth\AbstractPrimaryAuthenticationProvider.

Definition at line 331 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References $req, $ret, $user, MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\checkPasswordValidity(), and MediaWiki\Auth\AuthenticationRequest\getRequestByClass().

◆ testUserCanAuthenticate()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::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.

Parameters
string$usernameMediaWiki username
Returns
bool

Reimplemented from MediaWiki\Auth\AbstractPrimaryAuthenticationProvider.

Definition at line 172 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References $dbr, $username, DB_REPLICA, User\getCanonicalName(), MediaWiki\Auth\AbstractPasswordPrimaryAuthenticationProvider\getPassword(), MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider\isTimestampValid(), and wfGetDB().

◆ testUserExists()

MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::testUserExists (   $username,
  $flags = User::READ_NORMAL 
)

Test whether the named user exists.

Single-sign-on providers can use this to reserve a username for autocreation.

Parameters
string$usernameMediaWiki username
int$flagsBitfield of User:READ_* constants
Returns
bool

Implements MediaWiki\Auth\PrimaryAuthenticationProvider.

Definition at line 200 of file TemporaryPasswordPrimaryAuthenticationProvider.php.

References $options, $username, User\getCanonicalName(), list, and wfGetDB().

Member Data Documentation

◆ $emailEnabled

bool MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::$emailEnabled = null
protected

◆ $newPasswordExpiry

int MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::$newPasswordExpiry = null
protected

◆ $passwordReminderResendTime

int MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::$passwordReminderResendTime = null
protected

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