MediaWiki REL1_27
SecondaryAuthenticationProvider.php
Go to the documentation of this file.
1<?php
24namespace MediaWiki\Auth;
25
27use User;
28
42
60 public function beginSecondaryAuthentication( $user, array $reqs );
61
74 public function continueSecondaryAuthentication( $user, array $reqs );
75
84
97
105
120 AuthenticationRequest $req, $checkData = true
121 );
122
135
150 public function testForAccountCreation( $user, $creator, array $reqs );
151
166 public function beginSecondaryAccountCreation( $user, $creator, array $reqs );
167
182 public function continueSecondaryAccountCreation( $user, $creator, array $reqs );
183
193 public function postAccountCreation( $user, $creator, AuthenticationResponse $response );
194
205 public function testUserForCreation( $user, $autocreate );
206
215 public function autoCreatedAccount( $user, $source );
216
217}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
This is a value object for authentication requests.
This is a value object to hold authentication response data.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:47
this hook is for auditing only $req
Definition hooks.txt:968
the array() calling protocol came about after MediaWiki 1.4rc1.
this hook is for auditing only or null if authentication failed before getting that far $username
Definition hooks.txt:767
this hook is for auditing only $response
Definition hooks.txt:765
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
An AuthenticationProvider is used by AuthManager when authenticating users.
A secondary authentication provider performs additional authentication steps after a PrimaryAuthentic...
providerAllowsPropertyChange( $property)
Determine whether a property can change.
beginSecondaryAuthentication( $user, array $reqs)
Start an authentication flow.
postAuthentication( $user, AuthenticationResponse $response)
Post-login callback.
testUserForCreation( $user, $autocreate)
Determine whether an account may be created.
providerAllowsAuthenticationDataChange(AuthenticationRequest $req, $checkData=true)
Validate a change of authentication data (e.g.
providerRevokeAccessForUser( $username)
Revoke the user's credentials.
testForAccountCreation( $user, $creator, array $reqs)
Determine whether an account creation may begin.
postAccountCreation( $user, $creator, AuthenticationResponse $response)
Post-creation callback.
autoCreatedAccount( $user, $source)
Post-auto-creation callback.
continueSecondaryAuthentication( $user, array $reqs)
Continue an authentication flow.
beginSecondaryAccountCreation( $user, $creator, array $reqs)
Start an account creation flow.
providerChangeAuthenticationData(AuthenticationRequest $req)
Change or remove authentication data (e.g.
continueSecondaryAccountCreation( $user, $creator, array $reqs)
Continue an authentication flow.
$source
$property