MediaWiki  1.29.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 }
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
$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:246
$req
this hook is for auditing only $req
Definition: hooks.txt:990
$params
$params
Definition: styleTest.css.php:40
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:556
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:76
RequestContext\getMain
static getMain()
Static methods.
Definition: RequestContext.php:468
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:323
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:1956
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:174
$options
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1049
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