MediaWiki  1.33.0
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  // For phan check, to ensure that $req is instance of \TitleBlacklistAuthenticationRequest
37  // or null
38  if ( $req instanceof TitleBlacklistAuthenticationRequest ) {
39  $override = $req->ignoreTitleBlacklist;
40  } else {
41  $override = false;
42  }
43 
44  return TitleBlacklistHooks::testUserName( $user->getName(), $creator, $override, true );
45  }
46 
47  public function testUserForCreation( $user, $autocreate, array $options = [] ) {
48  $sv = StatusValue::newGood();
49  $creator = RequestContext::getMain()->getUser();
50 
51  if ( !$autocreate && empty( $options['creating'] ) || $this->blockAutoAccountCreation ) {
53  $user->getName(), $creator, true, (bool)$autocreate
54  ) );
55  }
56  return $sv;
57  }
58 }
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
TitleBlacklistPreAuthenticationProvider
Definition: TitleBlacklistPreAuthenticationProvider.php:7
TitleBlacklistPreAuthenticationProvider\getAuthenticationRequests
getAuthenticationRequests( $action, array $options)
Return the applicable list of AuthenticationRequests.
Definition: TitleBlacklistPreAuthenticationProvider.php:20
$req
this hook is for auditing only $req
Definition: hooks.txt:979
$params
$params
Definition: styleTest.css.php:44
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:585
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:47
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
TitleBlacklistPreAuthenticationProvider\testForAccountCreation
testForAccountCreation( $user, $creator, array $reqs)
Determine whether an account creation may begin.
Definition: TitleBlacklistPreAuthenticationProvider.php:32
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
StatusValue\newGood
static newGood( $value=null)
Factory function for good results.
Definition: StatusValue.php:81
RequestContext\getMain
static getMain()
Get the RequestContext object associated with the main request.
Definition: RequestContext.php:430
MediaWiki\Auth\AuthManager
This serves as the entry point to the authentication system.
Definition: AuthManager.php:84
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.php:342
$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:1985
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:1985
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: TitleBlacklistHooks.php:141
MediaWiki\Auth\AuthenticationRequest
This is a value object for authentication requests.
Definition: AuthenticationRequest.php:37
TitleBlacklistPreAuthenticationProvider\$blockAutoAccountCreation
$blockAutoAccountCreation
Definition: TitleBlacklistPreAuthenticationProvider.php:8