mediawiki-extensions-TitleB.../TitleBlacklistPreAuthenticationProvider.php
Gergő Tisza 17d3a9e313 Update for AuthManager
Bug: T110469
Change-Id: I9690d2fe6b172fcc85e1a8f7f91af21c6422d870
Depends-On: I8b52ec8ddf494f23941807638f149f15b5e46b0c
2016-05-12 00:23:11 +00:00

49 lines
1.6 KiB
PHP

<?php
use MediaWiki\Auth\AbstractPreAuthenticationProvider;
use MediaWiki\Auth\AuthenticationRequest;
use MediaWiki\Auth\AuthManager;
class TitleBlacklistPreAuthenticationProvider extends AbstractPreAuthenticationProvider {
protected $blockAutoAccountCreation;
public function __construct( $params = [] ) {
global $wgTitleBlacklistBlockAutoAccountCreation;
$params += [
'blockAutoAccountCreation' => $wgTitleBlacklistBlockAutoAccountCreation
];
$this->blockAutoAccountCreation = (bool)$params['blockAutoAccountCreation'];
}
public function getAuthenticationRequests( $action, array $options ) {
$needOverrideOption = false;
switch ( $action ) {
case AuthManager::ACTION_CREATE:
$user = User::newFromName( $options['username'] ) ?: new User();
$needOverrideOption = TitleBlacklist::userCanOverride( $user, 'new-account' );
break;
}
return $needOverrideOption ? [ new TitleBlacklistAuthenticationRequest() ] : [];
}
public function testForAccountCreation( $user, $creator, array $reqs ) {
/** @var TitleBlacklistAuthenticationRequest $req */
$req = AuthenticationRequest::getRequestByClass( $reqs,
TitleBlacklistAuthenticationRequest::class );
$override = $req && $req->ignoreTitleBlacklist;
return TitleBlacklistHooks::testUserName( $user->getName(), $creator, $override, true );
}
public function testUserForCreation( $user, $autocreate ) {
$sv = StatusValue::newGood();
// only check autocreation here, testForAccountCreation will catch the rest
if ( $autocreate && $this->blockAutoAccountCreation ) {
$sv->merge( TitleBlacklistHooks::testUserName( $user->getName(), $user, false, true ) );
}
return $sv;
}
}