MediaWiki  1.30.1
TitleBlacklistPreAuthenticationProvider.php
Go to the documentation of this file.
1 <?php
2 
6 
9 
10  public function __construct( $params = [] ) {
11  global $wgTitleBlacklistBlockAutoAccountCreation;
12 
13  $params += [
14  'blockAutoAccountCreation' => $wgTitleBlacklistBlockAutoAccountCreation
15  ];
16 
17  $this->blockAutoAccountCreation = (bool)$params['blockAutoAccountCreation'];
18  }
19 
20  public function getAuthenticationRequests( $action, array $options ) {
21  $needOverrideOption = false;
22  switch ( $action ) {
23  case AuthManager::ACTION_CREATE:
24  $user = User::newFromName( $options['username'] ) ?: new User();
25  $needOverrideOption = TitleBlacklist::userCanOverride( $user, 'new-account' );
26  break;
27  }
28 
29  return $needOverrideOption ? [ new TitleBlacklistAuthenticationRequest() ] : [];
30  }
31 
32  public function testForAccountCreation( $user, $creator, array $reqs ) {
34  $req = AuthenticationRequest::getRequestByClass( $reqs,
36  $override = $req && $req->ignoreTitleBlacklist;
37  return TitleBlacklistHooks::testUserName( $user->getName(), $creator, $override, true );
38  }
39 
40  public function testUserForCreation( $user, $autocreate, array $options = [] ) {
41  $sv = StatusValue::newGood();
42  $creator = RequestContext::getMain()->getUser();
43 
44  if ( !$autocreate && empty( $options['creating'] ) || $this->blockAutoAccountCreation ) {
46  $user->getName(), $creator, true, (bool)$autocreate
47  ) );
48  }
49  return $sv;
50  }
51 }
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:244
TitleBlacklistPreAuthenticationProvider
Definition: TitleBlacklistPreAuthenticationProvider.php:7
TitleBlacklistPreAuthenticationProvider\getAuthenticationRequests
getAuthenticationRequests( $action, array $options)
Return the applicable list of AuthenticationRequests.
Definition: TitleBlacklistPreAuthenticationProvider.php:20
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
$req
this hook is for auditing only $req
Definition: hooks.txt:988
$params
$params
Definition: styleTest.css.php:40
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:550
User
User
Definition: All_system_messages.txt:425
php
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:35
TitleBlacklistAuthenticationRequest
An authentication request that allows users with sufficiently high privileges to skip the title black...
Definition: TitleBlacklistAuthenticationRequest.php:9
TitleBlacklistPreAuthenticationProvider\testUserForCreation
testUserForCreation( $user, $autocreate, array $options=[])
Determine whether an account may be created.
Definition: TitleBlacklistPreAuthenticationProvider.php:40
TitleBlacklistPreAuthenticationProvider\testForAccountCreation
testForAccountCreation( $user, $creator, array $reqs)
Determine whether an account creation may begin.
Definition: TitleBlacklistPreAuthenticationProvider.php:32
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
StatusValue\newGood
static newGood( $value=null)
Factory function for good results.
Definition: StatusValue.php:81
RequestContext\getMain
static getMain()
Static methods.
Definition: RequestContext.php:470
MediaWiki\Auth\AuthManager
This serves as the entry point to the authentication system.
Definition: AuthManager.php:82
TitleBlacklistPreAuthenticationProvider\__construct
__construct( $params=[])
Definition: TitleBlacklistPreAuthenticationProvider.php:10
TitleBlacklist::userCanOverride
static userCanOverride( $user, $action)
Inidcates whether user can override blacklist on certain action.
Definition: TitleBlacklist.list.php:338
$options
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition: hooks.txt:1965
true
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition: hooks.txt:1965
MediaWiki\Auth\AbstractPreAuthenticationProvider
A base class that implements some of the boilerplate for a PreAuthenticationProvider.
Definition: AbstractPreAuthenticationProvider.php:29
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
TitleBlacklistHooks::testUserName
static testUserName( $userName, User $creatingUser, $override=true, $log=false)
Check whether a user name is acceptable for account creation or autocreation, and explain why not if ...
Definition: TitleBlacklist.hooks.php:186
MediaWiki\Auth\AuthenticationRequest
This is a value object for authentication requests.
Definition: AuthenticationRequest.php:37
array
the array() calling protocol came about after MediaWiki 1.4rc1.
TitleBlacklistPreAuthenticationProvider\$blockAutoAccountCreation
$blockAutoAccountCreation
Definition: TitleBlacklistPreAuthenticationProvider.php:8