MediaWiki  1.34.0
AbstractSecondaryAuthenticationProvider.php
Go to the documentation of this file.
1 <?php
22 namespace MediaWiki\Auth;
23 
32 {
33 
34  public function continueSecondaryAuthentication( $user, array $reqs ) {
35  throw new \BadMethodCallException( __METHOD__ . ' is not implemented.' );
36  }
37 
39  }
40 
41  public function providerAllowsPropertyChange( $property ) {
42  return true;
43  }
44 
50  public function providerRevokeAccessForUser( $username ) {
51  $reqs = $this->getAuthenticationRequests(
52  AuthManager::ACTION_REMOVE, [ 'username' => $username ]
53  );
54  foreach ( $reqs as $req ) {
55  $req->username = $username;
56  $this->providerChangeAuthenticationData( $req );
57  }
58  }
59 
61  AuthenticationRequest $req, $checkData = true
62  ) {
63  return \StatusValue::newGood( 'ignored' );
64  }
65 
67  }
68 
69  public function testForAccountCreation( $user, $creator, array $reqs ) {
70  return \StatusValue::newGood();
71  }
72 
73  public function continueSecondaryAccountCreation( $user, $creator, array $reqs ) {
74  throw new \BadMethodCallException( __METHOD__ . ' is not implemented.' );
75  }
76 
77  public function postAccountCreation( $user, $creator, AuthenticationResponse $response ) {
78  }
79 
80  public function testUserForCreation( $user, $autocreate, array $options = [] ) {
81  return \StatusValue::newGood();
82  }
83 
84  public function autoCreatedAccount( $user, $source ) {
85  }
86 }
MediaWiki\Auth\AbstractSecondaryAuthenticationProvider\testUserForCreation
testUserForCreation( $user, $autocreate, array $options=[])
Determine whether an account may be created.
Definition: AbstractSecondaryAuthenticationProvider.php:80
MediaWiki\Auth\AbstractSecondaryAuthenticationProvider
A base class that implements some of the boilerplate for a SecondaryAuthenticationProvider.
Definition: AbstractSecondaryAuthenticationProvider.php:30
$response
$response
Definition: opensearch_desc.php:38
MediaWiki\Auth\AbstractSecondaryAuthenticationProvider\providerAllowsPropertyChange
providerAllowsPropertyChange( $property)
Determine whether a property can change.
Definition: AbstractSecondaryAuthenticationProvider.php:41
MediaWiki\Auth\AbstractSecondaryAuthenticationProvider\providerRevokeAccessForUser
providerRevokeAccessForUser( $username)
Revoke the user's credentials.This may cause the user to no longer exist for the provider,...
Definition: AbstractSecondaryAuthenticationProvider.php:50
MediaWiki\Auth\AbstractSecondaryAuthenticationProvider\providerChangeAuthenticationData
providerChangeAuthenticationData(AuthenticationRequest $req)
Change or remove authentication data (e.g.
Definition: AbstractSecondaryAuthenticationProvider.php:66
MediaWiki\Auth\AbstractSecondaryAuthenticationProvider\autoCreatedAccount
autoCreatedAccount( $user, $source)
Post-auto-creation callback.
Definition: AbstractSecondaryAuthenticationProvider.php:84
MediaWiki\Auth\AbstractSecondaryAuthenticationProvider\postAccountCreation
postAccountCreation( $user, $creator, AuthenticationResponse $response)
Post-creation callback.
Definition: AbstractSecondaryAuthenticationProvider.php:77
MediaWiki\Auth\AuthenticationResponse
This is a value object to hold authentication response data.
Definition: AuthenticationResponse.php:37
MediaWiki\Auth\SecondaryAuthenticationProvider
A secondary provider mostly acts when the submitted authentication data has already been associated t...
Definition: SecondaryAuthenticationProvider.php:52
MediaWiki\Auth\AbstractSecondaryAuthenticationProvider\testForAccountCreation
testForAccountCreation( $user, $creator, array $reqs)
Determine whether an account creation may begin.
Definition: AbstractSecondaryAuthenticationProvider.php:69
MediaWiki\Auth\AbstractSecondaryAuthenticationProvider\providerAllowsAuthenticationDataChange
providerAllowsAuthenticationDataChange(AuthenticationRequest $req, $checkData=true)
Validate a change of authentication data (e.g.
Definition: AbstractSecondaryAuthenticationProvider.php:60
MediaWiki\Auth\AuthenticationProvider\getAuthenticationRequests
getAuthenticationRequests( $action, array $options)
Return the applicable list of AuthenticationRequests.
MediaWiki\Auth\AbstractSecondaryAuthenticationProvider\continueSecondaryAccountCreation
continueSecondaryAccountCreation( $user, $creator, array $reqs)
Continue an authentication flow.
Definition: AbstractSecondaryAuthenticationProvider.php:73
MediaWiki\Auth\AbstractSecondaryAuthenticationProvider\continueSecondaryAuthentication
continueSecondaryAuthentication( $user, array $reqs)
Continue an authentication flow.
Definition: AbstractSecondaryAuthenticationProvider.php:34
MediaWiki\Auth\AuthManager\ACTION_REMOVE
const ACTION_REMOVE
Remove a user's credentials.
Definition: AuthManager.php:107
$source
$source
Definition: mwdoc-filter.php:34
MediaWiki\Auth\AbstractAuthenticationProvider
A base class that implements some of the boilerplate for an AuthenticationProvider.
Definition: AbstractAuthenticationProvider.php:32
MediaWiki\Auth
Definition: AbstractAuthenticationProvider.php:22
MediaWiki\Auth\AbstractSecondaryAuthenticationProvider\postAuthentication
postAuthentication( $user, AuthenticationResponse $response)
Post-login callback.
Definition: AbstractSecondaryAuthenticationProvider.php:38
MediaWiki\Auth\AuthenticationRequest
This is a value object for authentication requests.
Definition: AuthenticationRequest.php:37