2016-05-15 15:35:33 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use MediaWiki\Auth\AbstractPreAuthenticationProvider;
|
|
|
|
|
|
|
|
class AbuseFilterPreAuthenticationProvider extends AbstractPreAuthenticationProvider {
|
|
|
|
public function testForAccountCreation( $user, $creator, array $reqs ) {
|
|
|
|
return $this->testUser( $user, $creator, false );
|
|
|
|
}
|
|
|
|
|
2016-06-16 21:33:42 +00:00
|
|
|
public function testUserForCreation( $user, $autocreate, array $options = [] ) {
|
2016-05-15 15:35:33 +00:00
|
|
|
// if this is not an autocreation, testForAccountCreation already handled it
|
|
|
|
if ( $autocreate ) {
|
|
|
|
return $this->testUser( $user, $user, true );
|
|
|
|
}
|
|
|
|
return StatusValue::newGood();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param User $user The user being created or autocreated
|
|
|
|
* @param User $creator The user who caused $user to be created (or $user itself on autocreation)
|
|
|
|
* @param bool $autocreate Is this an autocreation?
|
|
|
|
* @return StatusValue
|
|
|
|
*/
|
|
|
|
protected function testUser( $user, $creator, $autocreate ) {
|
|
|
|
if ( $user->getName() == wfMessage( 'abusefilter-blocker' )->inContentLanguage()->text() ) {
|
|
|
|
return StatusValue::newFatal( 'abusefilter-accountreserved' );
|
|
|
|
}
|
|
|
|
|
|
|
|
$vars = new AbuseFilterVariableHolder;
|
|
|
|
|
|
|
|
// generateUserVars records $creator->getName() which would be the IP for unregistered users
|
|
|
|
if ( $creator->isLoggedIn() ) {
|
|
|
|
$vars->addHolders( AbuseFilter::generateUserVars( $creator ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
$vars->setVar( 'ACTION', $autocreate ? 'autocreateaccount' : 'createaccount' );
|
|
|
|
$vars->setVar( 'ACCOUNTNAME', $user->getName() );
|
|
|
|
|
|
|
|
// pass creator in explicitly to prevent recording the current user on autocreation - T135360
|
|
|
|
$status = AbuseFilter::filterAction( $vars, SpecialPage::getTitleFor( 'Userlogin' ),
|
|
|
|
'default', $creator );
|
|
|
|
|
|
|
|
return $status->getStatusValue();
|
|
|
|
}
|
|
|
|
}
|