28use Psr\Log\LoggerAwareInterface;
29use Psr\Log\LoggerInterface;
34use Wikimedia\ObjectFactory;
148 if ( self::$instance ===
null ) {
149 self::$instance =
new self(
150 \RequestContext::getMain()->getRequest(),
188 $this->logger->warning(
"Overriding AuthManager primary authn because $why" );
190 if ( $this->primaryAuthenticationProviders !==
null ) {
191 $this->logger->warning(
192 'PrimaryAuthenticationProviders have already been accessed! I hope nothing breaks.'
195 $this->allAuthenticationProviders = array_diff_key(
196 $this->allAuthenticationProviders,
197 $this->primaryAuthenticationProviders
199 $session = $this->request->getSession();
200 $session->remove(
'AuthManager::authnState' );
201 $session->remove(
'AuthManager::accountCreationState' );
202 $session->remove(
'AuthManager::accountLinkState' );
203 $this->createdAccountAuthenticationRequests = [];
206 $this->primaryAuthenticationProviders = [];
207 foreach ( $providers as $provider ) {
209 throw new \RuntimeException(
210 'Expected instance of MediaWiki\\Auth\\PrimaryAuthenticationProvider, got ' .
211 get_class( $provider )
214 $provider->setLogger( $this->logger );
215 $provider->setManager( $this );
216 $provider->setConfig( $this->config );
217 $id = $provider->getUniqueId();
218 if ( isset( $this->allAuthenticationProviders[$id] ) ) {
219 throw new \RuntimeException(
220 "Duplicate specifications for id $id (classes " .
221 get_class( $provider ) .
' and ' .
222 get_class( $this->allAuthenticationProviders[$id] ) .
')'
225 $this->allAuthenticationProviders[$id] = $provider;
226 $this->primaryAuthenticationProviders[$id] = $provider;
263 return $this->request->getSession()->canSetUser();
285 $session = $this->request->getSession();
286 if ( !$session->canSetUser() ) {
288 $session->remove(
'AuthManager::authnState' );
289 throw new \LogicException(
'Authentication is not possible now' );
292 $guessUserName =
null;
293 foreach ( $reqs as
$req ) {
294 $req->returnToUrl = $returnToUrl;
296 if (
$req->username !==
null &&
$req->username !==
'' ) {
297 if ( $guessUserName ===
null ) {
298 $guessUserName =
$req->username;
299 } elseif ( $guessUserName !==
$req->username ) {
300 $guessUserName =
null;
309 $reqs, CreatedAccountAuthenticationRequest::class
312 if ( !in_array(
$req, $this->createdAccountAuthenticationRequests,
true ) ) {
313 throw new \LogicException(
314 'CreatedAccountAuthenticationRequests are only valid on ' .
315 'the same AuthManager that created the account'
322 throw new \UnexpectedValueException(
323 "CreatedAccountAuthenticationRequest had invalid username \"{$req->username}\""
325 } elseif ( $user->getId() !=
$req->id ) {
326 throw new \UnexpectedValueException(
327 "ID for \"{$req->username}\" was {$user->getId()}, expected {$req->id}"
332 $this->logger->info(
'Logging in {user} after account creation', [
333 'user' => $user->getName(),
338 $session->remove(
'AuthManager::authnState' );
339 \Hooks::run(
'AuthManagerLoginAuthenticateAudit', [
$ret, $user, $user->getName() ] );
346 $status = $provider->testForAuthentication( $reqs );
348 $this->logger->debug(
'Login failed in pre-authentication by ' . $provider->getUniqueId() );
350 Status::wrap(
$status )->getMessage()
355 \Hooks::run(
'AuthManagerLoginAuthenticateAudit', [
$ret,
null, $guessUserName ] );
362 'returnToUrl' => $returnToUrl,
363 'guessUserName' => $guessUserName,
365 'primaryResponse' =>
null,
368 'continueRequests' => [],
373 $reqs, CreateFromLoginAuthenticationRequest::class
376 $state[
'maybeLink'] =
$req->maybeLink;
379 $session = $this->request->getSession();
380 $session->setSecret(
'AuthManager::authnState', $state );
409 $session = $this->request->getSession();
411 if ( !$session->canSetUser() ) {
414 throw new \LogicException(
'Authentication is not possible now' );
418 $state = $session->getSecret(
'AuthManager::authnState' );
419 if ( !is_array( $state ) ) {
421 wfMessage(
'authmanager-authn-not-in-progress' )
424 $state[
'continueRequests'] = [];
426 $guessUserName = $state[
'guessUserName'];
428 foreach ( $reqs as
$req ) {
429 $req->returnToUrl = $state[
'returnToUrl'];
434 if ( $state[
'primary'] ===
null ) {
437 $guessUserName =
null;
438 foreach ( $reqs as
$req ) {
439 if (
$req->username !==
null &&
$req->username !==
'' ) {
440 if ( $guessUserName ===
null ) {
441 $guessUserName =
$req->username;
442 } elseif ( $guessUserName !==
$req->username ) {
443 $guessUserName =
null;
448 $state[
'guessUserName'] = $guessUserName;
450 $state[
'reqs'] = $reqs;
453 $res = $provider->beginPrimaryAuthentication( $reqs );
454 switch (
$res->status ) {
456 $state[
'primary'] = $id;
457 $state[
'primaryResponse'] =
$res;
458 $this->logger->debug(
"Primary login with $id succeeded" );
461 $this->logger->debug(
"Login failed in primary authentication by $id" );
462 if (
$res->createRequest || $state[
'maybeLink'] ) {
464 $res->createRequest, $state[
'maybeLink']
470 $session->remove(
'AuthManager::authnState' );
471 \Hooks::run(
'AuthManagerLoginAuthenticateAudit', [
$res,
null, $guessUserName ] );
478 $this->logger->debug(
"Primary login with $id returned $res->status" );
479 $this->
fillRequests(
$res->neededRequests, self::ACTION_LOGIN, $guessUserName );
480 $state[
'primary'] = $id;
481 $state[
'continueRequests'] =
$res->neededRequests;
482 $session->setSecret(
'AuthManager::authnState', $state );
487 throw new \DomainException(
488 get_class( $provider ) .
"::beginPrimaryAuthentication() returned $res->status"
493 if ( $state[
'primary'] ===
null ) {
494 $this->logger->debug(
'Login failed in primary authentication because no provider accepted' );
496 wfMessage(
'authmanager-authn-no-primary' )
501 $session->remove(
'AuthManager::authnState' );
504 } elseif ( $state[
'primaryResponse'] ===
null ) {
510 wfMessage(
'authmanager-authn-not-in-progress' )
515 $session->remove(
'AuthManager::authnState' );
519 $id = $provider->getUniqueId();
520 $res = $provider->continuePrimaryAuthentication( $reqs );
521 switch (
$res->status ) {
523 $state[
'primaryResponse'] =
$res;
524 $this->logger->debug(
"Primary login with $id succeeded" );
527 $this->logger->debug(
"Login failed in primary authentication by $id" );
528 if (
$res->createRequest || $state[
'maybeLink'] ) {
530 $res->createRequest, $state[
'maybeLink']
536 $session->remove(
'AuthManager::authnState' );
537 \Hooks::run(
'AuthManagerLoginAuthenticateAudit', [
$res,
null, $guessUserName ] );
541 $this->logger->debug(
"Primary login with $id returned $res->status" );
542 $this->
fillRequests(
$res->neededRequests, self::ACTION_LOGIN, $guessUserName );
543 $state[
'continueRequests'] =
$res->neededRequests;
544 $session->setSecret(
'AuthManager::authnState', $state );
547 throw new \DomainException(
548 get_class( $provider ) .
"::continuePrimaryAuthentication() returned $res->status"
553 $res = $state[
'primaryResponse'];
554 if (
$res->username ===
null ) {
560 wfMessage(
'authmanager-authn-not-in-progress' )
565 $session->remove(
'AuthManager::authnState' );
575 $state[
'maybeLink'][
$res->linkRequest->getUniqueId()] =
$res->linkRequest;
576 $msg =
'authmanager-authn-no-local-user-link';
578 $msg =
'authmanager-authn-no-local-user';
580 $this->logger->debug(
581 "Primary login with {$provider->getUniqueId()} succeeded, but returned no user"
589 if (
$res->createRequest || $state[
'maybeLink'] ) {
591 $res->createRequest, $state[
'maybeLink']
593 $ret->neededRequests[] =
$ret->createRequest;
595 $this->
fillRequests(
$ret->neededRequests, self::ACTION_LOGIN,
null,
true );
596 $session->setSecret(
'AuthManager::authnState', [
599 'primaryResponse' =>
null,
601 'continueRequests' =>
$ret->neededRequests,
612 throw new \DomainException(
613 get_class( $provider ) .
" returned an invalid username: {$res->username}"
616 if ( $user->getId() === 0 ) {
618 $this->logger->info(
'Auto-creating {user} on login', [
619 'user' => $user->getName(),
624 Status::wrap(
$status )->getMessage(
'authmanager-authn-autocreate-failed' )
627 $session->remove(
'AuthManager::authnState' );
628 \Hooks::run(
'AuthManagerLoginAuthenticateAudit', [
$ret, $user, $user->getName() ] );
635 $beginReqs = $state[
'reqs'];
638 if ( !isset( $state[
'secondary'][$id] ) ) {
642 $func =
'beginSecondaryAuthentication';
643 $res = $provider->beginSecondaryAuthentication( $user, $beginReqs );
644 } elseif ( !$state[
'secondary'][$id] ) {
645 $func =
'continueSecondaryAuthentication';
646 $res = $provider->continueSecondaryAuthentication( $user, $reqs );
650 switch (
$res->status ) {
652 $this->logger->debug(
"Secondary login with $id succeeded" );
655 $state[
'secondary'][$id] =
true;
658 $this->logger->debug(
"Login failed in secondary authentication by $id" );
660 $session->remove(
'AuthManager::authnState' );
661 \Hooks::run(
'AuthManagerLoginAuthenticateAudit', [
$res, $user, $user->getName() ] );
665 $this->logger->debug(
"Secondary login with $id returned " .
$res->status );
666 $this->
fillRequests(
$res->neededRequests, self::ACTION_LOGIN, $user->getName() );
667 $state[
'secondary'][$id] =
false;
668 $state[
'continueRequests'] =
$res->neededRequests;
669 $session->setSecret(
'AuthManager::authnState', $state );
674 throw new \DomainException(
675 get_class( $provider ) .
"::{$func}() returned $res->status"
684 $this->logger->info(
'Login for {user} succeeded from {clientip}', [
685 'user' => $user->getName(),
686 'clientip' => $this->request->getIP(),
690 $beginReqs, RememberMeAuthenticationRequest::class
695 $session->remove(
'AuthManager::authnState' );
697 \Hooks::run(
'AuthManagerLoginAuthenticateAudit', [
$ret, $user, $user->getName() ] );
699 }
catch ( \Exception $ex ) {
700 $session->remove(
'AuthManager::authnState' );
719 $this->logger->debug( __METHOD__ .
": Checking $operation" );
721 $session = $this->request->getSession();
722 $aId = $session->getUser()->getId();
726 $this->logger->info( __METHOD__ .
": Not logged in! $operation is $status" );
730 if ( $session->canSetUser() ) {
731 $id = $session->get(
'AuthManager:lastAuthId' );
732 $last = $session->get(
'AuthManager:lastAuthTimestamp' );
733 if ( $id !== $aId ||
$last ===
null ) {
734 $timeSinceLogin = PHP_INT_MAX;
736 $timeSinceLogin = max( 0, time() -
$last );
739 $thresholds = $this->config->get(
'ReauthenticateTime' );
740 if ( isset( $thresholds[$operation] ) ) {
741 $threshold = $thresholds[$operation];
742 } elseif ( isset( $thresholds[
'default'] ) ) {
743 $threshold = $thresholds[
'default'];
745 throw new \UnexpectedValueException(
'$wgReauthenticateTime lacks a default' );
748 if ( $threshold >= 0 && $timeSinceLogin > $threshold ) {
752 $timeSinceLogin = -1;
754 $pass = $this->config->get(
'AllowSecuritySensitiveOperationIfCannotReauthenticate' );
755 if ( isset( $pass[$operation] ) ) {
757 } elseif ( isset( $pass[
'default'] ) ) {
760 throw new \UnexpectedValueException(
761 '$wgAllowSecuritySensitiveOperationIfCannotReauthenticate lacks a default'
766 \Hooks::run(
'SecuritySensitiveOperationStatus', [
767 &
$status, $operation, $session, $timeSinceLogin
775 $this->logger->info( __METHOD__ .
": $operation is $status" );
791 if ( $provider->testUserCanAuthenticate(
$username ) ) {
815 $normalized = $provider->providerNormalizeUsername(
$username );
816 if ( $normalized !==
null ) {
817 $ret[$normalized] =
true;
820 return array_keys(
$ret );
838 $this->logger->info(
'Revoking access for {user}', [
857 foreach ( $providers as $provider ) {
858 $status = $provider->providerAllowsAuthenticationDataChange(
$req, $checkData );
860 return Status::wrap(
$status );
862 $any = $any ||
$status->value !==
'ignored';
865 $status = Status::newGood(
'ignored' );
866 $status->warning(
'authmanager-change-not-supported' );
869 return Status::newGood();
890 $this->logger->info(
'Changing authentication data for {user} class {what}', [
891 'user' => is_string(
$req->username ) ?
$req->username :
'<no name>',
892 'what' => get_class(
$req ),
899 if ( !$isAddition ) {
900 \BotPassword::invalidateAllPasswordsForUser(
$req->username );
917 switch ( $provider->accountCreationType() ) {
940 'flags' => User::READ_NORMAL,
946 return Status::newFatal(
'authmanager-create-disabled' );
950 return Status::newFatal(
'userexists' );
954 if ( !is_object( $user ) ) {
955 return Status::newFatal(
'noname' );
957 $user->load( $flags );
958 if ( $user->getId() !== 0 ) {
959 return Status::newFatal(
'userexists' );
967 foreach ( $providers as $provider ) {
970 return Status::wrap(
$status );
974 return Status::newGood();
989 $permErrors = \SpecialPage::getTitleFor(
'CreateAccount' )
990 ->getUserPermissionsErrors(
'createaccount', $creator,
'secure' );
993 foreach ( $permErrors as
$args ) {
999 $block = $creator->isBlockedFromCreateAccount();
1002 $block->getTarget(),
1003 $block->mReason ?:
wfMessage(
'blockednoreason' )->text(),
1008 $errorMessage =
'cantcreateaccount-range-text';
1009 $errorParams[] = $this->
getRequest()->getIP();
1011 $errorMessage =
'cantcreateaccount-text';
1014 return Status::newFatal(
wfMessage( $errorMessage, $errorParams ) );
1019 return Status::newFatal(
'sorbs_create_account_reason' );
1022 return Status::newGood();
1045 $session = $this->request->getSession();
1048 $session->remove(
'AuthManager::accountCreationState' );
1049 throw new \LogicException(
'Account creation is not possible' );
1054 }
catch ( \UnexpectedValueException $ex ) {
1058 $this->logger->debug( __METHOD__ .
': No username provided' );
1065 $this->logger->debug( __METHOD__ .
': {creator} cannot create users: {reason}', [
1067 'creator' => $creator->getName(),
1068 'reason' =>
$status->getWikiText(
null,
null,
'en' )
1077 $this->logger->debug( __METHOD__ .
': {user} cannot be created: {reason}', [
1079 'creator' => $creator->getName(),
1080 'reason' =>
$status->getWikiText(
null,
null,
'en' )
1086 foreach ( $reqs as
$req ) {
1088 $req->returnToUrl = $returnToUrl;
1093 $session->remove(
'AuthManager::accountCreationState' );
1094 $this->logger->debug( __METHOD__ .
': UserData is invalid: {reason}', [
1095 'user' => $user->getName(),
1096 'creator' => $creator->getName(),
1097 'reason' =>
$status->getWikiText(
null,
null,
'en' ),
1109 'creatorid' => $creator->getId(),
1110 'creatorname' => $creator->getName(),
1112 'returnToUrl' => $returnToUrl,
1114 'primaryResponse' =>
null,
1116 'continueRequests' => [],
1118 'ranPreTests' =>
false,
1123 $reqs, CreateFromLoginAuthenticationRequest::class
1126 $state[
'maybeLink'] =
$req->maybeLink;
1128 if (
$req->createRequest ) {
1129 $reqs[] =
$req->createRequest;
1130 $state[
'reqs'][] =
$req->createRequest;
1134 $session->setSecret(
'AuthManager::accountCreationState', $state );
1135 $session->persist();
1146 $session = $this->request->getSession();
1150 $session->remove(
'AuthManager::accountCreationState' );
1151 throw new \LogicException(
'Account creation is not possible' );
1154 $state = $session->getSecret(
'AuthManager::accountCreationState' );
1155 if ( !is_array( $state ) ) {
1157 wfMessage(
'authmanager-create-not-in-progress' )
1160 $state[
'continueRequests'] = [];
1165 if ( !is_object( $user ) ) {
1166 $session->remove(
'AuthManager::accountCreationState' );
1167 $this->logger->debug( __METHOD__ .
': Invalid username', [
1168 'user' => $state[
'username'],
1173 if ( $state[
'creatorid'] ) {
1176 $creator =
new User;
1177 $creator->
setName( $state[
'creatorname'] );
1181 $cache = \ObjectCache::getLocalClusterInstance();
1182 $lock =
$cache->getScopedLock(
$cache->makeGlobalKey(
'account', md5( $user->getName() ) ) );
1186 $this->logger->debug( __METHOD__ .
': Could not acquire account creation lock', [
1187 'user' => $user->getName(),
1188 'creator' => $creator->getName(),
1196 $this->logger->debug( __METHOD__ .
': {creator} cannot create users: {reason}', [
1197 'user' => $user->getName(),
1198 'creator' => $creator->getName(),
1199 'reason' =>
$status->getWikiText(
null,
null,
'en' )
1203 $session->remove(
'AuthManager::accountCreationState' );
1210 if ( $state[
'userid'] === 0 ) {
1211 if ( $user->getId() != 0 ) {
1212 $this->logger->debug( __METHOD__ .
': User exists locally', [
1213 'user' => $user->getName(),
1214 'creator' => $creator->getName(),
1218 $session->remove(
'AuthManager::accountCreationState' );
1222 if ( $user->getId() == 0 ) {
1223 $this->logger->debug( __METHOD__ .
': User does not exist locally when it should', [
1224 'user' => $user->getName(),
1225 'creator' => $creator->getName(),
1226 'expected_id' => $state[
'userid'],
1228 throw new \UnexpectedValueException(
1229 "User \"{$state['username']}\" should exist now, but doesn't!"
1232 if ( $user->getId() != $state[
'userid'] ) {
1233 $this->logger->debug( __METHOD__ .
': User ID/name mismatch', [
1234 'user' => $user->getName(),
1235 'creator' => $creator->getName(),
1236 'expected_id' => $state[
'userid'],
1237 'actual_id' => $user->getId(),
1239 throw new \UnexpectedValueException(
1240 "User \"{$state['username']}\" exists, but " .
1241 "ID {$user->getId()} != {$state['userid']}!"
1245 foreach ( $state[
'reqs'] as
$req ) {
1251 $this->logger->debug( __METHOD__ .
': UserData is invalid: {reason}', [
1252 'user' => $user->getName(),
1253 'creator' => $creator->getName(),
1254 'reason' =>
$status->getWikiText(
null,
null,
'en' ),
1258 $session->remove(
'AuthManager::accountCreationState' );
1264 foreach ( $reqs as
$req ) {
1265 $req->returnToUrl = $state[
'returnToUrl'];
1266 $req->username = $state[
'username'];
1270 if ( !$state[
'ranPreTests'] ) {
1274 foreach ( $providers as $id => $provider ) {
1275 $status = $provider->testForAccountCreation( $user, $creator, $reqs );
1277 $this->logger->debug( __METHOD__ .
": Fail in pre-authentication by $id", [
1278 'user' => $user->getName(),
1279 'creator' => $creator->getName(),
1282 Status::wrap(
$status )->getMessage()
1285 $session->remove(
'AuthManager::accountCreationState' );
1290 $state[
'ranPreTests'] =
true;
1295 if ( $state[
'primary'] ===
null ) {
1301 $res = $provider->beginPrimaryAccountCreation( $user, $creator, $reqs );
1302 switch (
$res->status ) {
1304 $this->logger->debug( __METHOD__ .
": Primary creation passed by $id", [
1305 'user' => $user->getName(),
1306 'creator' => $creator->getName(),
1308 $state[
'primary'] = $id;
1309 $state[
'primaryResponse'] =
$res;
1312 $this->logger->debug( __METHOD__ .
": Primary creation failed by $id", [
1313 'user' => $user->getName(),
1314 'creator' => $creator->getName(),
1317 $session->remove(
'AuthManager::accountCreationState' );
1324 $this->logger->debug( __METHOD__ .
": Primary creation $res->status by $id", [
1325 'user' => $user->getName(),
1326 'creator' => $creator->getName(),
1329 $state[
'primary'] = $id;
1330 $state[
'continueRequests'] =
$res->neededRequests;
1331 $session->setSecret(
'AuthManager::accountCreationState', $state );
1336 throw new \DomainException(
1337 get_class( $provider ) .
"::beginPrimaryAccountCreation() returned $res->status"
1342 if ( $state[
'primary'] ===
null ) {
1343 $this->logger->debug( __METHOD__ .
': Primary creation failed because no provider accepted', [
1344 'user' => $user->getName(),
1345 'creator' => $creator->getName(),
1348 wfMessage(
'authmanager-create-no-primary' )
1351 $session->remove(
'AuthManager::accountCreationState' );
1354 } elseif ( $state[
'primaryResponse'] ===
null ) {
1360 wfMessage(
'authmanager-create-not-in-progress' )
1363 $session->remove(
'AuthManager::accountCreationState' );
1367 $id = $provider->getUniqueId();
1368 $res = $provider->continuePrimaryAccountCreation( $user, $creator, $reqs );
1369 switch (
$res->status ) {
1371 $this->logger->debug( __METHOD__ .
": Primary creation passed by $id", [
1372 'user' => $user->getName(),
1373 'creator' => $creator->getName(),
1375 $state[
'primaryResponse'] =
$res;
1378 $this->logger->debug( __METHOD__ .
": Primary creation failed by $id", [
1379 'user' => $user->getName(),
1380 'creator' => $creator->getName(),
1383 $session->remove(
'AuthManager::accountCreationState' );
1387 $this->logger->debug( __METHOD__ .
": Primary creation $res->status by $id", [
1388 'user' => $user->getName(),
1389 'creator' => $creator->getName(),
1392 $state[
'continueRequests'] =
$res->neededRequests;
1393 $session->setSecret(
'AuthManager::accountCreationState', $state );
1396 throw new \DomainException(
1397 get_class( $provider ) .
"::continuePrimaryAccountCreation() returned $res->status"
1405 if ( $state[
'userid'] === 0 ) {
1406 $this->logger->info(
'Creating user {user} during account creation', [
1407 'user' => $user->getName(),
1408 'creator' => $creator->getName(),
1410 $status = $user->addToDatabase();
1415 $session->remove(
'AuthManager::accountCreationState' );
1420 \Hooks::run(
'LocalUserCreated', [ $user,
false ] );
1421 $user->saveSettings();
1422 $state[
'userid'] = $user->getId();
1431 $logSubtype = $provider->finishAccountCreation( $user, $creator, $state[
'primaryResponse'] );
1434 if ( $this->config->get(
'NewUserLog' ) ) {
1435 $isAnon = $creator->isAnon();
1436 $logEntry = new \ManualLogEntry(
1438 $logSubtype ?: ( $isAnon ?
'create' :
'create2' )
1440 $logEntry->setPerformer( $isAnon ? $user : $creator );
1441 $logEntry->setTarget( $user->getUserPage() );
1444 $state[
'reqs'], CreationReasonAuthenticationRequest::class
1446 $logEntry->setComment(
$req ?
$req->reason :
'' );
1447 $logEntry->setParameters( [
1448 '4::userid' => $user->getId(),
1450 $logid = $logEntry->insert();
1451 $logEntry->publish( $logid );
1457 $beginReqs = $state[
'reqs'];
1460 if ( !isset( $state[
'secondary'][$id] ) ) {
1464 $func =
'beginSecondaryAccountCreation';
1465 $res = $provider->beginSecondaryAccountCreation( $user, $creator, $beginReqs );
1466 } elseif ( !$state[
'secondary'][$id] ) {
1467 $func =
'continueSecondaryAccountCreation';
1468 $res = $provider->continueSecondaryAccountCreation( $user, $creator, $reqs );
1472 switch (
$res->status ) {
1474 $this->logger->debug( __METHOD__ .
": Secondary creation passed by $id", [
1475 'user' => $user->getName(),
1476 'creator' => $creator->getName(),
1480 $state[
'secondary'][$id] =
true;
1484 $this->logger->debug( __METHOD__ .
": Secondary creation $res->status by $id", [
1485 'user' => $user->getName(),
1486 'creator' => $creator->getName(),
1489 $state[
'secondary'][$id] =
false;
1490 $state[
'continueRequests'] =
$res->neededRequests;
1491 $session->setSecret(
'AuthManager::accountCreationState', $state );
1494 throw new \DomainException(
1495 get_class( $provider ) .
"::{$func}() returned $res->status." .
1496 ' Secondary providers are not allowed to fail account creation, that' .
1497 ' should have been done via testForAccountCreation().'
1501 throw new \DomainException(
1502 get_class( $provider ) .
"::{$func}() returned $res->status"
1508 $id = $user->getId();
1509 $name = $user->getName();
1513 $this->createdAccountAuthenticationRequests[] =
$req;
1515 $this->logger->info( __METHOD__ .
': Account creation succeeded for {user}', [
1516 'user' => $user->getName(),
1517 'creator' => $creator->getName(),
1521 $session->remove(
'AuthManager::accountCreationState' );
1524 }
catch ( \Exception $ex ) {
1525 $session->remove(
'AuthManager::accountCreationState' );
1546 if (
$source !== self::AUTOCREATE_SOURCE_SESSION &&
1549 throw new \InvalidArgumentException(
"Unknown auto-creation source: $source" );
1556 $flags = User::READ_NORMAL;
1566 $flags = User::READ_LATEST;
1571 $this->logger->debug( __METHOD__ .
': {username} already exists locally', [
1574 $user->setId( $localId );
1575 $user->loadFromId( $flags );
1580 $status->warning(
'userexists' );
1586 $this->logger->debug( __METHOD__ .
': denied by wfReadOnly(): {reason}', [
1591 $user->loadFromId();
1597 $session = $this->request->getSession();
1598 if ( $session->get(
'AuthManager::AutoCreateBlacklist' ) ) {
1599 $this->logger->debug( __METHOD__ .
': blacklisted in session {sessionid}', [
1601 'sessionid' => $session->getId(),
1604 $user->loadFromId();
1605 $reason = $session->get(
'AuthManager::AutoCreateBlacklist' );
1607 return Status::wrap( $reason );
1609 return Status::newFatal( $reason );
1615 $this->logger->debug( __METHOD__ .
': name "{username}" is not creatable', [
1618 $session->set(
'AuthManager::AutoCreateBlacklist',
'noname' );
1620 $user->loadFromId();
1621 return Status::newFatal(
'noname' );
1626 if ( !$anon->isAllowedAny(
'createaccount',
'autocreateaccount' ) ) {
1627 $this->logger->debug( __METHOD__ .
': IP lacks the ability to create or autocreate accounts', [
1629 'ip' => $anon->getName(),
1631 $session->set(
'AuthManager::AutoCreateBlacklist',
'authmanager-autocreate-noperm' );
1632 $session->persist();
1634 $user->loadFromId();
1635 return Status::newFatal(
'authmanager-autocreate-noperm' );
1639 $cache = \ObjectCache::getLocalClusterInstance();
1642 $this->logger->debug( __METHOD__ .
': Could not acquire account creation lock', [
1646 $user->loadFromId();
1647 return Status::newFatal(
'usernameinprogress' );
1652 'flags' => User::READ_LATEST,
1658 foreach ( $providers as $provider ) {
1662 $this->logger->debug( __METHOD__ .
': Provider denied creation of {username}: {reason}', [
1664 'reason' =>
$ret->getWikiText(
null,
null,
'en' ),
1666 $session->set(
'AuthManager::AutoCreateBlacklist',
$status );
1668 $user->loadFromId();
1673 $backoffKey =
$cache->makeKey(
'AuthManager',
'autocreate-failed', md5(
$username ) );
1674 if (
$cache->get( $backoffKey ) ) {
1675 $this->logger->debug( __METHOD__ .
': {username} denied by prior creation attempt failures', [
1679 $user->loadFromId();
1680 return Status::newFatal(
'authmanager-autocreate-exception' );
1684 $from = isset( $_SERVER[
'REQUEST_URI'] ) ? $_SERVER[
'REQUEST_URI'] :
'CLI';
1685 $this->logger->info( __METHOD__ .
': creating new user ({username}) - from: {from}', [
1691 $trxProfiler = \Profiler::instance()->getTransactionProfiler();
1692 $old = $trxProfiler->setSilenced(
true );
1694 $status = $user->addToDatabase();
1698 if ( $user->getId() ) {
1699 $this->logger->info( __METHOD__ .
': {username} already exists locally (race)', [
1706 $status->warning(
'userexists' );
1708 $this->logger->error( __METHOD__ .
': {username} failed with message {msg}', [
1710 'msg' =>
$status->getWikiText(
null,
null,
'en' )
1713 $user->loadFromId();
1717 }
catch ( \Exception $ex ) {
1718 $trxProfiler->setSilenced( $old );
1719 $this->logger->error( __METHOD__ .
': {username} failed with exception {exception}', [
1724 $cache->set( $backoffKey, 1, 600 );
1734 \Hooks::run(
'AuthPluginAutoCreate', [ $user ],
'1.27' );
1735 \Hooks::run(
'LocalUserCreated', [ $user,
true ] );
1736 $user->saveSettings();
1741 \DeferredUpdates::addCallableUpdate(
function () use ( $user ) {
1746 if ( $this->config->get(
'NewUserLog' ) ) {
1747 $logEntry = new \ManualLogEntry(
'newusers',
'autocreate' );
1748 $logEntry->setPerformer( $user );
1749 $logEntry->setTarget( $user->getUserPage() );
1750 $logEntry->setComment(
'' );
1751 $logEntry->setParameters( [
1752 '4::userid' => $user->getId(),
1754 $logEntry->insert();
1757 $trxProfiler->setSilenced( $old );
1763 return Status::newGood();
1796 $session = $this->request->getSession();
1797 $session->remove(
'AuthManager::accountLinkState' );
1801 throw new \LogicException(
'Account linking is not possible' );
1804 if ( $user->getId() === 0 ) {
1808 $msg =
wfMessage(
'authmanager-userdoesnotexist', $user->getName() );
1812 foreach ( $reqs as
$req ) {
1813 $req->username = $user->getName();
1814 $req->returnToUrl = $returnToUrl;
1820 foreach ( $providers as $id => $provider ) {
1821 $status = $provider->testForAccountLink( $user );
1823 $this->logger->debug( __METHOD__ .
": Account linking pre-check failed by $id", [
1824 'user' => $user->getName(),
1827 Status::wrap(
$status )->getMessage()
1835 'username' => $user->getName(),
1836 'userid' => $user->getId(),
1837 'returnToUrl' => $returnToUrl,
1839 'continueRequests' => [],
1843 foreach ( $providers as $id => $provider ) {
1848 $res = $provider->beginPrimaryAccountLink( $user, $reqs );
1849 switch (
$res->status ) {
1851 $this->logger->info(
"Account linked to {user} by $id", [
1852 'user' => $user->getName(),
1858 $this->logger->debug( __METHOD__ .
": Account linking failed by $id", [
1859 'user' => $user->getName(),
1870 $this->logger->debug( __METHOD__ .
": Account linking $res->status by $id", [
1871 'user' => $user->getName(),
1873 $this->
fillRequests(
$res->neededRequests, self::ACTION_LINK, $user->getName() );
1874 $state[
'primary'] = $id;
1875 $state[
'continueRequests'] =
$res->neededRequests;
1876 $session->setSecret(
'AuthManager::accountLinkState', $state );
1877 $session->persist();
1882 throw new \DomainException(
1883 get_class( $provider ) .
"::beginPrimaryAccountLink() returned $res->status"
1889 $this->logger->debug( __METHOD__ .
': Account linking failed because no provider accepted', [
1890 'user' => $user->getName(),
1893 wfMessage(
'authmanager-link-no-primary' )
1905 $session = $this->request->getSession();
1909 $session->remove(
'AuthManager::accountLinkState' );
1910 throw new \LogicException(
'Account linking is not possible' );
1913 $state = $session->getSecret(
'AuthManager::accountLinkState' );
1914 if ( !is_array( $state ) ) {
1916 wfMessage(
'authmanager-link-not-in-progress' )
1919 $state[
'continueRequests'] = [];
1924 if ( !is_object( $user ) ) {
1925 $session->remove(
'AuthManager::accountLinkState' );
1928 if ( $user->getId() != $state[
'userid'] ) {
1929 throw new \UnexpectedValueException(
1930 "User \"{$state['username']}\" is valid, but " .
1931 "ID {$user->getId()} != {$state['userid']}!"
1935 foreach ( $reqs as
$req ) {
1936 $req->username = $state[
'username'];
1937 $req->returnToUrl = $state[
'returnToUrl'];
1947 wfMessage(
'authmanager-link-not-in-progress' )
1950 $session->remove(
'AuthManager::accountLinkState' );
1954 $id = $provider->getUniqueId();
1955 $res = $provider->continuePrimaryAccountLink( $user, $reqs );
1956 switch (
$res->status ) {
1958 $this->logger->info(
"Account linked to {user} by $id", [
1959 'user' => $user->getName(),
1962 $session->remove(
'AuthManager::accountLinkState' );
1965 $this->logger->debug( __METHOD__ .
": Account linking failed by $id", [
1966 'user' => $user->getName(),
1969 $session->remove(
'AuthManager::accountLinkState' );
1973 $this->logger->debug( __METHOD__ .
": Account linking $res->status by $id", [
1974 'user' => $user->getName(),
1976 $this->
fillRequests(
$res->neededRequests, self::ACTION_LINK, $user->getName() );
1977 $state[
'continueRequests'] =
$res->neededRequests;
1978 $session->setSecret(
'AuthManager::accountLinkState', $state );
1981 throw new \DomainException(
1982 get_class( $provider ) .
"::continuePrimaryAccountLink() returned $res->status"
1985 }
catch ( \Exception $ex ) {
1986 $session->remove(
'AuthManager::accountLinkState' );
2018 $providerAction = $action;
2021 switch ( $action ) {
2030 $state = $this->request->getSession()->getSecret(
'AuthManager::authnState' );
2031 return is_array( $state ) ? $state[
'continueRequests'] : [];
2034 $state = $this->request->getSession()->getSecret(
'AuthManager::accountCreationState' );
2035 return is_array( $state ) ? $state[
'continueRequests'] : [];
2053 $state = $this->request->getSession()->getSecret(
'AuthManager::accountLinkState' );
2054 return is_array( $state ) ? $state[
'continueRequests'] : [];
2064 throw new \DomainException( __METHOD__ .
": Invalid action \"$action\"" );
2081 $providerAction, array
$options, array $providers,
User $user =
null
2083 $user = $user ?: \RequestContext::getMain()->getUser();
2084 $options[
'username'] = $user->isAnon() ? null : $user->getName();
2088 foreach ( $providers as $provider ) {
2090 foreach ( $provider->getAuthenticationRequests( $providerAction,
$options ) as
$req ) {
2091 $id =
$req->getUniqueId();
2095 if (
$req->required ) {
2101 !isset( $reqs[$id] )
2111 switch ( $providerAction ) {
2119 if (
$options[
'username'] !==
null ) {
2130 if ( $providerAction === self::ACTION_CHANGE || $providerAction === self::ACTION_REMOVE ) {
2131 $reqs = array_filter( $reqs,
function (
$req ) {
2136 return array_values( $reqs );
2147 foreach ( $reqs as
$req ) {
2148 if ( !
$req->action || $forceAction ) {
2149 $req->action = $action;
2151 if (
$req->username ===
null ) {
2165 if ( $provider->testUserExists(
$username, $flags ) ) {
2187 foreach ( $providers as $provider ) {
2188 if ( !$provider->providerAllowsPropertyChange(
$property ) ) {
2205 if ( isset( $this->allAuthenticationProviders[$id] ) ) {
2206 return $this->allAuthenticationProviders[$id];
2211 if ( isset( $providers[$id] ) ) {
2212 return $providers[$id];
2215 if ( isset( $providers[$id] ) ) {
2216 return $providers[$id];
2219 if ( isset( $providers[$id] ) ) {
2220 return $providers[$id];
2240 $session = $this->request->getSession();
2241 $arr = $session->getSecret(
'authData' );
2242 if ( !is_array( $arr ) ) {
2246 $session->setSecret(
'authData', $arr );
2257 $arr = $this->request->getSession()->getSecret(
'authData' );
2258 if ( is_array( $arr ) && array_key_exists( $key, $arr ) ) {
2271 $session = $this->request->getSession();
2272 if ( $key ===
null ) {
2273 $session->remove(
'authData' );
2275 $arr = $session->getSecret(
'authData' );
2276 if ( is_array( $arr ) && array_key_exists( $key, $arr ) ) {
2277 unset( $arr[$key] );
2278 $session->setSecret(
'authData', $arr );
2291 foreach ( $specs as &$spec ) {
2292 $spec = [
'sort2' => $i++ ] + $spec + [
'sort' => 0 ];
2295 usort( $specs,
function ( $a, $b ) {
2296 return ( (
int)$a[
'sort'] ) - ( (
int)$b[
'sort'] )
2297 ?: $a[
'sort2'] - $b[
'sort2'];
2301 foreach ( $specs as $spec ) {
2302 $provider = ObjectFactory::getObjectFromSpec( $spec );
2303 if ( !$provider instanceof $class ) {
2304 throw new \RuntimeException(
2305 "Expected instance of $class, got " . get_class( $provider )
2308 $provider->setLogger( $this->logger );
2309 $provider->setManager( $this );
2310 $provider->setConfig( $this->config );
2311 $id = $provider->getUniqueId();
2312 if ( isset( $this->allAuthenticationProviders[$id] ) ) {
2313 throw new \RuntimeException(
2314 "Duplicate specifications for id $id (classes " .
2315 get_class( $provider ) .
' and ' .
2316 get_class( $this->allAuthenticationProviders[$id] ) .
')'
2319 $this->allAuthenticationProviders[$id] = $provider;
2320 $ret[$id] = $provider;
2330 return $this->config->get(
'AuthManagerConfig' ) ?: $this->config->get(
'AuthManagerAutoConfig' );
2338 if ( $this->preAuthenticationProviders ===
null ) {
2341 PreAuthenticationProvider::class, $conf[
'preauth']
2352 if ( $this->primaryAuthenticationProviders ===
null ) {
2355 PrimaryAuthenticationProvider::class, $conf[
'primaryauth']
2366 if ( $this->secondaryAuthenticationProviders ===
null ) {
2369 SecondaryAuthenticationProvider::class, $conf[
'secondaryauth']
2381 $session = $this->request->getSession();
2382 $delay = $session->delaySave();
2384 $session->resetId();
2385 $session->resetAllTokens();
2386 if ( $session->canSetUser() ) {
2387 $session->setUser( $user );
2389 if ( $remember !==
null ) {
2390 $session->setRememberUser( $remember );
2392 $session->set(
'AuthManager:lastAuthId', $user->getId() );
2393 $session->set(
'AuthManager:lastAuthTimestamp', time() );
2394 $session->persist();
2396 \Wikimedia\ScopedCallback::consume( $delay );
2398 \Hooks::run(
'UserLoggedIn', [ $user ] );
2410 $lang = $useContextLang ? \RequestContext::getMain()->getLanguage() :
$wgContLang;
2411 $user->setOption(
'language',
$lang->getPreferredVariant() );
2414 $user->setOption(
'variant',
$wgContLang->getPreferredVariant() );
2434 foreach ( $providers as $provider ) {
2435 call_user_func_array( [ $provider, $method ],
$args );
2444 if ( !defined(
'MW_PHPUNIT_TEST' ) ) {
2446 throw new \MWException( __METHOD__ .
' may only be called from unit tests!' );
2450 self::$instance =
null;
$wgAuth $wgAuth
Authentication plugin.
wfReadOnly()
Check whether the wiki is in read-only mode.
wfReadOnlyReason()
Check if the site is in read-only mode and return the message if so.
static factory(array $deltas)
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
static isCreatableName( $name)
Usernames which fail to pass this function will be blocked from new account registrations,...
isDnsBlacklisted( $ip, $checkWhitelist=false)
Whether the given IP is in a DNS blacklist.
setName( $str)
Set the user name.
static newFromId( $id)
Static factory method for creation from a given user ID.
setId( $v)
Set the user and reload all fields according to a given ID.
static isUsableName( $name)
Usernames which fail to pass this function will be blocked from user login and new account registrati...
static idFromName( $name, $flags=self::READ_NORMAL)
Get database id given a user name.
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
this hook is for auditing only $req
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy: boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
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
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
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 & $ret
this hook is for auditing only or null if authentication failed before getting that far $username
Interface for configuration instances.
const READ_LOCKING
Constants for object loading bitfield flags (higher => higher QoS)
if(!isset( $args[0])) $lang