MediaWiki  1.27.2
CheckBlocksSecondaryAuthenticationProvider.php
Go to the documentation of this file.
1 <?php
22 namespace MediaWiki\Auth;
23 
24 use Config;
26 use User;
27 
35 
37  protected $blockDisablesLogin = null;
38 
44  public function __construct( $params = [] ) {
45  if ( isset( $params['blockDisablesLogin'] ) ) {
46  $this->blockDisablesLogin = (bool)$params['blockDisablesLogin'];
47  }
48  }
49 
50  public function setConfig( Config $config ) {
51  parent::setConfig( $config );
52 
53  if ( $this->blockDisablesLogin === null ) {
54  $this->blockDisablesLogin = $this->config->get( 'BlockDisablesLogin' );
55  }
56  }
57 
59  return [];
60  }
61 
62  public function beginSecondaryAuthentication( $user, array $reqs ) {
63  if ( !$this->blockDisablesLogin ) {
65  } elseif ( $user->isBlocked() ) {
67  new \Message( 'login-userblocked', [ $user->getName() ] )
68  );
69  } else {
71  }
72  }
73 
74  public function beginSecondaryAccountCreation( $user, $creator, array $reqs ) {
76  }
77 
78  public function testUserForCreation( $user, $autocreate ) {
79  $block = $user->isBlockedFromCreateAccount();
80  if ( $block ) {
81  $errorParams = [
82  $block->getTarget(),
83  $block->mReason ?: \Message::newFromKey( 'blockednoreason' )->text(),
84  $block->getByName()
85  ];
86 
87  if ( $block->getType() === \Block::TYPE_RANGE ) {
88  $errorMessage = 'cantcreateaccount-range-text';
89  $errorParams[] = $this->manager->getRequest()->getIP();
90  } else {
91  $errorMessage = 'cantcreateaccount-text';
92  }
93 
94  return StatusValue::newFatal(
95  new \Message( $errorMessage, $errorParams )
96  );
97  } else {
98  return StatusValue::newGood();
99  }
100  }
101 
102 }
Check if the user is blocked, and prevent authentication if so.
testUserForCreation($user, $autocreate)
Determine whether an account may be created.
getAuthenticationRequests($action, array $options)
Return the applicable list of AuthenticationRequests.
the array() calling protocol came about after MediaWiki 1.4rc1.
const TYPE_RANGE
Definition: Block.php:77
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
static newFatal($message)
Factory function for fatal errors.
Definition: StatusValue.php:63
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist 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:1004
$params
A base class that implements some of the boilerplate for a SecondaryAuthenticationProvider.
static newGood($value=null)
Factory function for good results.
Definition: StatusValue.php:76
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 local account $user
Definition: hooks.txt:242
String $action
Cache what action this request is.
Definition: MediaWiki.php:42
static newFromKey($key)
Factory function that is just wrapper for the real constructor.
Definition: Message.php:379
beginSecondaryAccountCreation($user, $creator, array $reqs)
Start an account creation flow.
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
beginSecondaryAuthentication($user, array $reqs)
Start an authentication flow.