Go to the documentation of this file.
32 use Wikimedia\ScopedCallback;
100 'mEmailAuthenticated',
102 'mEmailTokenExpires',
167 'move-categorypages',
168 'move-rootuserpages',
172 'override-export-depth',
194 'userrights-interwiki',
330 return (
string)$this->
getName();
356 $this->mLoadedItems ===
true || $this->mFrom !==
'session';
364 public function load( $flags = self::READ_NORMAL ) {
367 if ( $this->mLoadedItems ===
true ) {
373 $this->mLoadedItems =
true;
374 $this->queryFlagsUsed = $flags;
379 ->warning(
'User::loadFromSession called before the end of Setup.php', [
380 'exception' =>
new Exception(
'User::loadFromSession called before the end of Setup.php' ),
383 $this->mLoadedItems = $oldLoadedItems;
387 switch ( $this->mFrom ) {
393 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
394 if ( $lb->hasOrMadeRecentMasterChanges() ) {
395 $flags |= self::READ_LATEST;
396 $this->queryFlagsUsed = $flags;
409 if ( $this->mId != 0 ) {
410 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
411 if ( $lb->hasOrMadeRecentMasterChanges() ) {
412 $flags |= self::READ_LATEST;
413 $this->queryFlagsUsed = $flags;
421 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
422 if ( $lb->hasOrMadeRecentMasterChanges() ) {
423 $flags |= self::READ_LATEST;
424 $this->queryFlagsUsed = $flags;
428 $row =
wfGetDB( $index )->selectRow(
430 [
'actor_user',
'actor_name' ],
431 [
'actor_id' => $this->mActorId ],
439 } elseif ( $row->actor_user ) {
440 $this->mId = $row->actor_user;
451 Hooks::run(
'UserLoadAfterLoadFromSession', [ $this ] );
454 throw new UnexpectedValueException(
455 "Unrecognised value for User->mFrom: \"{$this->mFrom}\"" );
465 if ( $this->mId == 0 ) {
483 $this->mLoadedItems =
true;
484 $this->queryFlagsUsed = $flags;
494 public static function purge( $wikiId, $userId ) {
495 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
496 $key =
$cache->makeGlobalKey(
'user',
'id', $wikiId, $userId );
506 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
507 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
509 return $cache->makeGlobalKey(
'user',
'id', $lbFactory->getLocalDomainID(),
$this->mId );
518 $id = $this->
getId();
520 return $id ? [ $this->
getCacheKey( $cache ) ] : [];
531 $data =
$cache->getWithSetCallback(
536 wfDebug(
"User: cache miss for user {$this->mId}\n" );
543 foreach ( self::$mCacheVars
as $name ) {
544 $data[
$name] = $this->$name;
551 foreach ( $this->mGroupMemberships
as $ugm ) {
552 if ( $ugm->getExpiry() ) {
553 $secondsUntilExpiry =
wfTimestamp( TS_UNIX, $ugm->getExpiry() ) - time();
554 if ( $secondsUntilExpiry > 0 && $secondsUntilExpiry < $ttl ) {
555 $ttl = $secondsUntilExpiry;
562 [
'pcTTL' => $cache::TTL_PROC_LONG,
'version' =>
self::VERSION ]
566 foreach ( self::$mCacheVars
as $name ) {
567 $this->$name = $data[
$name];
593 if ( $validate ===
true ) {
597 if (
$name ===
false ) {
604 $u->setItemLoaded(
'name' );
619 $u->setItemLoaded(
'id' );
636 throw new BadMethodCallException(
637 'Cannot use ' . __METHOD__
638 .
' when $wgActorTableSchemaMigrationStage lacks SCHEMA_COMPAT_NEW'
645 $u->setItemLoaded(
'actor' );
659 if ( $identity instanceof
User ) {
664 $identity->
getId() === 0 ? null : $identity->
getId(),
686 $user->mFrom =
'defaults';
691 $user->mActorId = (int)$actorId;
692 if (
$user->mActorId !== 0 ) {
693 $user->mFrom =
'actor';
695 $user->setItemLoaded(
'actor' );
698 if ( $userName !==
null && $userName !==
'' ) {
699 $user->mName = $userName;
700 $user->mFrom =
'name';
701 $user->setItemLoaded(
'name' );
704 if ( $userId !==
null ) {
705 $user->mId = (int)$userId;
706 if (
$user->mId !== 0 ) {
709 $user->setItemLoaded(
'id' );
712 if (
$user->mFrom ===
'defaults' ) {
713 throw new InvalidArgumentException(
714 'Cannot create a user with no name, no ID, and no actor ID'
733 $db = ( $flags & self::READ_LATEST ) == self::READ_LATEST
737 $id = $db->selectField(
741 'user_email_token' => md5(
$code ),
742 'user_email_token_expires > ' . $db->addQuotes( $db->timestamp() ),
758 $user->mFrom =
'session';
780 $user->loadFromRow( $row, $data );
821 'validate' =>
'valid',
827 if (
$name ===
false ) {
833 $row =
$dbr->selectRow(
834 $userQuery[
'tables'],
835 $userQuery[
'fields'],
836 [
'user_name' =>
$name ],
844 $row = $dbw->selectRow(
845 $userQuery[
'tables'],
846 $userQuery[
'fields'],
847 [
'user_name' =>
$name ],
865 if (
$user->mEmail ||
$user->mToken !== self::INVALID_TOKEN ||
866 AuthManager::singleton()->userCanAuthenticate(
$name )
873 AuthManager::singleton()->revokeAccessForUser(
$name );
875 $user->invalidateEmail();
877 $user->saveSettings();
878 SessionManager::singleton()->preventSessionsForUser(
$user->getName() );
891 public static function whoIs( $id ) {
913 if ( is_null( $nt ) ) {
918 if ( !( $flags & self::READ_LATEST ) && array_key_exists(
$name, self::$idCacheByName ) ) {
919 return self::$idCacheByName[
$name];
928 [
'user_name' => $nt->getText() ],
933 if (
$s ===
false ) {
941 if (
count( self::$idCacheByName ) > 1000 ) {
942 self::$idCacheByName = [];
952 self::$idCacheByName = [];
972 return preg_match(
'/^\d{1,3}\.\d{1,3}\.\d{1,3}\.(?:xxx|\d{1,3})$/',
$name )
1001 || self::isIP(
$name )
1002 || strpos(
$name,
'/' ) !==
false
1004 ||
$name != MediaWikiServices::getInstance()->getContentLanguage()->ucfirst(
$name )
1012 if ( is_null( $parsed )
1013 || $parsed->getNamespace()
1014 || strcmp(
$name, $parsed->getPrefixedText() ) ) {
1020 $unicodeBlacklist =
'/[' .
1021 '\x{0080}-\x{009f}' . # iso-8859-1 control chars
1022 '\x{00a0}' . # non-breaking space
1023 '\x{2000}-\x{200f}' . # various whitespace
1024 '\x{2028}-\x{202f}' . # breaks
and control chars
1025 '\x{3000}' . # ideographic space
1026 '\x{e000}-\x{f8ff}' . #
private use
1028 if ( preg_match( $unicodeBlacklist,
$name ) ) {
1049 if ( !self::isValidUserName(
$name ) ) {
1053 static $reservedUsernames =
false;
1054 if ( !$reservedUsernames ) {
1056 Hooks::run(
'UserGetReservedNames', [ &$reservedUsernames ] );
1060 foreach ( $reservedUsernames
as $reserved ) {
1061 if ( substr( $reserved, 0, 4 ) ==
'msg:' ) {
1062 $reserved =
wfMessage( substr( $reserved, 4 ) )->inContentLanguage()->plain();
1064 if ( $reserved ==
$name ) {
1082 if ( $groups === [] ) {
1086 $groups = array_unique( (
array)$groups );
1087 $limit = min( 5000, $limit );
1089 $conds = [
'ug_group' => $groups ];
1090 if ( $after !==
null ) {
1091 $conds[] =
'ug_user > ' . (int)$after;
1095 $ids =
$dbr->selectFieldValues(
1102 'ORDER BY' =>
'ug_user',
1127 if ( strlen(
$name ) > 235 ) {
1129 ": '$name' invalid due to length" );
1137 ": '$name' invalid due to wgInvalidUsernameCharacters" );
1168 foreach (
$result->getErrorsByType(
'error' )
as $error ) {
1171 foreach (
$result->getErrorsByType(
'warning' )
as $warning ) {
1215 $status->merge( $upp->checkUserPassword( $this, $password ) );
1217 } elseif (
$result ===
true ) {
1240 $name = MediaWikiServices::getInstance()->getContentLanguage()->ucfirst(
$name );
1242 # Reject names containing '#'; these will be cleaned up
1243 # with title normalisation, but then it's too late to
1245 if ( strpos(
$name,
'#' ) !==
false ) {
1251 $t = ( $validate !==
false ) ?
1254 if ( is_null(
$t ) ||
$t->getNamespace() !==
NS_USER ||
$t->isExternal() ) {
1259 $name = AuthManager::callLegacyAuthPlugin(
1260 'getCanonicalName', [
$t->getText() ],
$t->getText()
1263 switch ( $validate ) {
1267 if ( !self::isValidUserName(
$name ) ) {
1272 if ( !self::isUsableName(
$name ) ) {
1277 if ( !self::isCreatableName(
$name ) ) {
1282 throw new InvalidArgumentException(
1283 'Invalid parameter value for $validate in ' . __METHOD__ );
1309 $this->mName =
$name;
1310 $this->mActorId =
null;
1311 $this->mRealName =
'';
1313 $this->mOptionOverrides =
null;
1314 $this->mOptionsLoaded =
false;
1316 $loggedOut = $this->mRequest && !defined(
'MW_NO_SESSION' )
1317 ? $this->mRequest->getSession()->getLoggedOutTimestamp() : 0;
1318 if ( $loggedOut !== 0 ) {
1319 $this->mTouched =
wfTimestamp( TS_MW, $loggedOut );
1321 $this->mTouched =
'1'; # Allow
any pages to be cached
1324 $this->mToken =
null;
1325 $this->mEmailAuthenticated =
null;
1326 $this->mEmailToken =
'';
1327 $this->mEmailTokenExpires =
null;
1329 $this->mGroupMemberships = [];
1347 return ( $this->mLoadedItems ===
true && $all ===
'all' ) ||
1348 ( isset( $this->mLoadedItems[$item] ) && $this->mLoadedItems[$item] ===
true );
1357 if ( is_array( $this->mLoadedItems ) ) {
1358 $this->mLoadedItems[$item] =
true;
1377 $session = $this->
getRequest()->getSession();
1378 $user = $session->getUser();
1379 if (
$user->isLoggedIn() ) {
1381 if (
$user->isBlocked() ) {
1389 $session->set(
'wsUserID', $this->
getId() );
1390 $session->set(
'wsUserName', $this->
getName() );
1391 $session->set(
'wsToken', $this->
getToken() );
1404 if ( $block && $this->
getRequest()->getCookie(
'BlockID' ) ===
null ) {
1406 $shouldSetCookie =
false;
1408 if ( $this->
isAnon() && $config->get(
'CookieSetOnIpBlock' ) ) {
1410 $shouldSetCookie = in_array( $block->getType(), [
1413 if ( $shouldSetCookie ) {
1414 $block->setCookie( $this->
getRequest()->response() );
1417 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
1418 $stats->increment(
'block.ipblock.setCookie.success' );
1420 } elseif ( $this->
isLoggedIn() && $config->get(
'CookieSetOnAutoblock' ) ) {
1421 $shouldSetCookie = $block->getType() ===
Block::TYPE_USER && $block->isAutoblocking();
1422 if ( $shouldSetCookie ) {
1423 $block->setCookie( $this->
getRequest()->response() );
1438 $this->mId = intval( $this->mId );
1440 if ( !$this->mId ) {
1450 $s = $db->selectRow(
1451 $userQuery[
'tables'],
1452 $userQuery[
'fields'],
1453 [
'user_id' => $this->mId ],
1459 $this->queryFlagsUsed = $flags;
1462 if (
$s !==
false ) {
1465 $this->mGroupMemberships =
null;
1491 if ( !is_object( $row ) ) {
1492 throw new InvalidArgumentException(
'$row must be an object' );
1497 $this->mGroupMemberships =
null;
1502 if ( isset( $row->actor_id ) ) {
1503 $this->mActorId = (int)$row->actor_id;
1504 if ( $this->mActorId !== 0 ) {
1505 $this->mFrom =
'actor';
1513 if ( isset( $row->user_name ) && $row->user_name !==
'' ) {
1514 $this->mName = $row->user_name;
1515 $this->mFrom =
'name';
1521 if ( isset( $row->user_real_name ) ) {
1522 $this->mRealName = $row->user_real_name;
1528 if ( isset( $row->user_id ) ) {
1529 $this->mId = intval( $row->user_id );
1530 if ( $this->mId !== 0 ) {
1531 $this->mFrom =
'id';
1538 if ( isset( $row->user_id ) && isset( $row->user_name ) && $row->user_name !==
'' ) {
1539 self::$idCacheByName[$row->user_name] = $row->user_id;
1542 if ( isset( $row->user_editcount ) ) {
1543 $this->mEditCount = $row->user_editcount;
1548 if ( isset( $row->user_touched ) ) {
1549 $this->mTouched =
wfTimestamp( TS_MW, $row->user_touched );
1554 if ( isset( $row->user_token ) ) {
1558 $this->mToken = rtrim( $row->user_token,
" \0" );
1559 if ( $this->mToken ===
'' ) {
1560 $this->mToken =
null;
1566 if ( isset( $row->user_email ) ) {
1567 $this->mEmail = $row->user_email;
1568 $this->mEmailAuthenticated =
wfTimestampOrNull( TS_MW, $row->user_email_authenticated );
1569 $this->mEmailToken = $row->user_email_token;
1570 $this->mEmailTokenExpires =
wfTimestampOrNull( TS_MW, $row->user_email_token_expires );
1577 $this->mLoadedItems =
true;
1580 if ( is_array( $data ) ) {
1581 if ( isset( $data[
'user_groups'] ) && is_array( $data[
'user_groups'] ) ) {
1582 if ( !
count( $data[
'user_groups'] ) ) {
1583 $this->mGroupMemberships = [];
1585 $firstGroup = reset( $data[
'user_groups'] );
1586 if ( is_array( $firstGroup ) || is_object( $firstGroup ) ) {
1587 $this->mGroupMemberships = [];
1588 foreach ( $data[
'user_groups']
as $row ) {
1590 $this->mGroupMemberships[$ugm->getGroup()] = $ugm;
1595 if ( isset( $data[
'user_properties'] ) && is_array( $data[
'user_properties'] ) ) {
1608 foreach ( self::$mCacheVars
as $var ) {
1609 $this->$var =
$user->$var;
1617 if ( is_null( $this->mGroupMemberships ) ) {
1618 $db = ( $this->queryFlagsUsed & self::READ_LATEST )
1648 if ( !
count( $toPromote ) ) {
1658 foreach ( $toPromote
as $group ) {
1661 $newGroups = array_merge( $oldGroups, $toPromote );
1665 Hooks::run(
'UserGroupsChanged', [ $this, $toPromote, [],
false,
false, $oldUGMs, $newUGMs ] );
1666 AuthManager::callLegacyAuthPlugin(
'updateExternalDBGroups', [ $this, $toPromote ] );
1669 $logEntry->setPerformer( $this );
1671 $logEntry->setParameters( [
1672 '4::oldgroups' => $oldGroups,
1673 '5::newgroups' => $newGroups,
1675 $logid = $logEntry->insert();
1677 $logEntry->publish( $logid );
1693 if ( $this->mTouched ) {
1695 $conditions[
'user_touched'] = $db->
timestamp( $this->mTouched );
1713 if ( !$this->mId ) {
1721 $dbw->update(
'user',
1722 [
'user_touched' => $dbw->timestamp( $newTouched ) ],
1724 'user_id' => $this->mId,
1728 $success = ( $dbw->affectedRows() > 0 );
1731 $this->mTouched = $newTouched;
1749 $this->mNewtalk = -1;
1750 $this->mDatePreference =
null;
1751 $this->mBlockedby = -1; # Unset
1752 $this->mHash =
false;
1753 $this->mRights =
null;
1754 $this->mEffectiveGroups =
null;
1755 $this->mImplicitGroups =
null;
1756 $this->mGroupMemberships =
null;
1757 $this->mOptions =
null;
1758 $this->mOptionsLoaded =
false;
1759 $this->mEditCount =
null;
1761 if ( $reloadFrom ) {
1762 $this->mLoadedItems = [];
1763 $this->mFrom = $reloadFrom;
1776 static $defOpt =
null;
1777 static $defOptLang =
null;
1779 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
1780 if ( $defOpt !==
null && $defOptLang === $contLang->getCode() ) {
1789 $defOptLang = $contLang->getCode();
1790 $defOpt[
'language'] = $defOptLang;
1791 foreach ( LanguageConverter::$languagesWithVariants
as $langCode ) {
1792 if ( $langCode === $contLang->getCode() ) {
1793 $defOpt[
'variant'] = $langCode;
1795 $defOpt[
"variant-$langCode"] = $langCode;
1803 $defOpt[
'searchNs' . $nsnum] = (bool)$val;
1807 Hooks::run(
'UserGetDefaultOptions', [ &$defOpt ] );
1820 if ( isset( $defOpts[
$opt] ) ) {
1821 return $defOpts[
$opt];
1836 if ( -1 != $this->mBlockedby ) {
1840 wfDebug( __METHOD__ .
": checking...\n" );
1849 # We only need to worry about passing the IP address to the Block generator if the
1850 # user is not immune to autoblocks/hardblocks, and they are the current user so we
1851 # know which IP address they're actually coming from
1853 if ( !$this->
isAllowed(
'ipblock-exempt' ) ) {
1856 $globalUserName = $wgUser->isSafeToLoad()
1857 ? $wgUser->getName()
1859 if ( $this->
getName() === $globalUserName ) {
1868 if ( !$block instanceof
Block ) {
1875 if ( self::isLocallyBlockedProxy( $ip ) ) {
1876 $block =
new Block( [
1880 'systemBlock' =>
'proxy',
1883 $block =
new Block( [
1887 'systemBlock' =>
'dnsbl',
1893 if ( !$block instanceof
Block
1898 $xff = $this->
getRequest()->getHeader(
'X-Forwarded-For' );
1899 $xff = array_map(
'trim', explode(
',', $xff ) );
1900 $xff = array_diff( $xff, [ $ip ] );
1903 if ( $block instanceof
Block ) {
1904 # Mangle the reason to alert the user that the block
1905 # originated from matching the X-Forwarded-For header.
1906 $block->mReason =
wfMessage(
'xffblockreason', $block->mReason )->plain();
1910 if ( !$block instanceof
Block
1915 $block =
new Block( [
1917 'byText' =>
'MediaWiki default',
1920 'systemBlock' =>
'wgSoftBlockRanges',
1924 if ( $block instanceof
Block ) {
1925 wfDebug( __METHOD__ .
": Found block.\n" );
1926 $this->mBlock = $block;
1927 $this->mBlockedby = $block->getByName();
1928 $this->mBlockreason = $block->mReason;
1929 $this->mHideName = $block->mHideName;
1930 $this->mAllowUsertalk = !$block->prevents(
'editownusertalk' );
1932 $this->mBlock =
null;
1933 $this->mBlockedby =
'';
1934 $this->mBlockreason =
'';
1935 $this->mHideName = 0;
1936 $this->mAllowUsertalk =
false;
1952 if ( strlen( $blockCookieVal ) < 1 || !is_numeric( substr( $blockCookieVal, 0, 1 ) ) ) {
1957 if ( $blockCookieId !==
null ) {
1960 if ( $tmpBlock instanceof
Block ) {
1963 switch ( $tmpBlock->getType() ) {
1965 $blockIsValid = !$tmpBlock->isExpired() && $tmpBlock->isAutoblocking();
1966 $useBlockCookie = ( $config->get(
'CookieSetOnAutoblock' ) ===
true );
1971 $blockIsValid = !$tmpBlock->isExpired() && !$this->
isLoggedIn();
1972 $useBlockCookie = ( $config->get(
'CookieSetOnIpBlock' ) ===
true );
1975 $blockIsValid =
false;
1976 $useBlockCookie =
false;
1979 if ( $blockIsValid && $useBlockCookie ) {
2027 $ipReversed = implode(
'.', array_reverse( explode(
'.', $ip ) ) );
2033 if ( is_array(
$base ) ) {
2036 $host =
"{$base[1]}.$ipReversed.{$base[0]}";
2038 $host =
"$ipReversed.{$base[0]}";
2040 $basename =
$base[0];
2042 $host =
"$ipReversed.$base";
2046 $ipList = gethostbynamel( $host );
2049 wfDebugLog(
'dnsblacklist',
"Hostname $host is {$ipList[0]}, it's a proxy says $basename!" );
2053 wfDebugLog(
'dnsblacklist',
"Requested $host, not found in $basename." );
2080 $resultProxyList = [];
2081 $deprecatedIPEntries = [];
2087 if ( $keyIsIP && !$valueIsIP ) {
2088 $deprecatedIPEntries[] = $key;
2089 $resultProxyList[] = $key;
2090 } elseif ( $keyIsIP && $valueIsIP ) {
2091 $deprecatedIPEntries[] = $key;
2092 $resultProxyList[] = $key;
2093 $resultProxyList[] =
$value;
2095 $resultProxyList[] =
$value;
2099 if ( $deprecatedIPEntries ) {
2101 'IP addresses in the keys of $wgProxyList (found the following IP addresses in keys: ' .
2102 implode(
', ', $deprecatedIPEntries ) .
', please move them to values)',
'1.30' );
2105 $proxyListIPSet =
new IPSet( $resultProxyList );
2106 return $proxyListIPSet->match( $ip );
2122 return !$this->
isAllowed(
'noratelimit' );
2153 $limits = array_merge(
2154 [
'&can-bypass' =>
true ],
2164 $id = $this->
getId();
2171 if ( isset( $limits[
'anon'] ) ) {
2172 $keys[
$cache->makeKey(
'limiter', $action,
'anon' )] = $limits[
'anon'];
2176 if ( isset( $limits[
'user'] ) ) {
2177 $userLimit = $limits[
'user'];
2184 if ( isset( $limits[
'ip'] ) ) {
2186 $keys[
"mediawiki:limiter:$action:ip:$ip"] = $limits[
'ip'];
2189 if ( isset( $limits[
'subnet'] ) ) {
2192 if ( $subnet !==
false ) {
2193 $keys[
"mediawiki:limiter:$action:subnet:$subnet"] = $limits[
'subnet'];
2201 if ( isset( $limits[$group] ) ) {
2202 if ( $userLimit ===
false
2203 || $limits[$group][0] / $limits[$group][1] > $userLimit[0] / $userLimit[1]
2205 $userLimit = $limits[$group];
2211 if ( $id !== 0 && $isNewbie && isset( $limits[
'newbie'] ) ) {
2212 $userLimit = $limits[
'newbie'];
2216 if ( $userLimit !==
false ) {
2217 list( $max, $period ) = $userLimit;
2218 wfDebug( __METHOD__ .
": effective user limit: $max in {$period}s\n" );
2219 $keys[
$cache->makeKey(
'limiter', $action,
'user', $id )] = $userLimit;
2223 if ( isset( $limits[
'ip-all'] ) ) {
2226 if ( $isNewbie || $userLimit ===
false
2227 || $limits[
'ip-all'][0] / $limits[
'ip-all'][1] > $userLimit[0] / $userLimit[1] ) {
2228 $keys[
"mediawiki:limiter:$action:ip-all:$ip"] = $limits[
'ip-all'];
2233 if ( isset( $limits[
'subnet-all'] ) ) {
2236 if ( $subnet !==
false ) {
2238 if ( $isNewbie || $userLimit ===
false
2239 || $limits[
'ip-all'][0] / $limits[
'ip-all'][1]
2240 > $userLimit[0] / $userLimit[1] ) {
2241 $keys[
"mediawiki:limiter:$action:subnet-all:$subnet"] = $limits[
'subnet-all'];
2247 foreach (
$keys as $key => $limit ) {
2248 list( $max, $period ) = $limit;
2249 $summary =
"(limit $max in {$period}s)";
2250 $count =
$cache->get( $key );
2253 if ( $count >= $max ) {
2254 wfDebugLog(
'ratelimit',
"User '{$this->getName()}' " .
2255 "(IP {$this->getRequest()->getIP()}) tripped $key at $count $summary" );
2258 wfDebug( __METHOD__ .
": ok. $key at $count $summary\n" );
2261 wfDebug( __METHOD__ .
": adding record for $key $summary\n" );
2262 if ( $incrBy > 0 ) {
2263 $cache->add( $key, 0, intval( $period ) );
2266 if ( $incrBy > 0 ) {
2267 $cache->incr( $key, $incrBy );
2293 return $this->mBlock instanceof
Block ? $this->mBlock :
null;
2306 $blocked = $this->
isBlocked( $bFromSlave );
2309 if ( !$this->mHideName && $allowUsertalk &&
$title->getText() === $this->
getName()
2312 wfDebug( __METHOD__ .
": self-talk page, ignoring any blocks\n" );
2315 Hooks::run(
'UserIsBlockedFrom', [ $this,
$title, &$blocked, &$allowUsertalk ] );
2344 return ( $this->mBlock ? $this->mBlock->getId() :
false );
2370 if ( $this->mGlobalBlock !==
null ) {
2371 return $this->mGlobalBlock ?:
null;
2383 Hooks::run(
'UserIsBlockedGlobally', [ &
$user, $ip, &$blocked, &$block ] );
2385 if ( $blocked && $block ===
null ) {
2387 $block =
new Block( [
2389 'systemBlock' =>
'global-block'
2393 $this->mGlobalBlock = $blocked ? $block :
false;
2394 return $this->mGlobalBlock ?:
null;
2403 if ( $this->mLocked !==
null ) {
2408 $authUser = AuthManager::callLegacyAuthPlugin(
'getUserInstance', [ &
$user ],
null );
2409 $this->mLocked = $authUser && $authUser->isLocked();
2410 Hooks::run(
'UserIsLocked', [ $this, &$this->mLocked ] );
2420 if ( $this->mHideName !==
null ) {
2424 if ( !$this->mHideName ) {
2427 $authUser = AuthManager::callLegacyAuthPlugin(
'getUserInstance', [ &
$user ],
null );
2428 $this->mHideName = $authUser && $authUser->isHidden();
2429 Hooks::run(
'UserIsHidden', [ $this, &$this->mHideName ] );
2439 if ( $this->mId ===
null && $this->mName !==
null && self::isIP( $this->mName ) ) {
2469 if ( $this->mName ===
false ) {
2492 $this->mName = $str;
2519 if ( $this->mActorId ===
null || !$this->mActorId && $dbw ) {
2521 'actor_user' => $this->
getId() ?:
null,
2525 if ( $q[
'actor_user'] ===
null && self::isUsableName( $q[
'actor_name'] ) ) {
2527 'Cannot create an actor for a usable name that is not an existing user'
2530 if ( $q[
'actor_name'] ===
'' ) {
2533 $dbw->insert(
'actor', $q, __METHOD__, [
'IGNORE' ] );
2534 if ( $dbw->affectedRows() ) {
2535 $this->mActorId = (int)$dbw->insertId();
2539 $this->mActorId = (int)$dbw->selectField(
2544 [
'LOCK IN SHARE MODE' ]
2546 if ( !$this->mActorId ) {
2548 "Cannot create actor ID for user_id={$this->getId()} user_name={$this->getName()}"
2556 $this->mActorId = (int)$db->selectField(
'actor',
'actor_id', $q, __METHOD__,
$options );
2569 return str_replace(
' ',
'_', $this->
getName() );
2580 if ( $this->mNewtalk === -1 ) {
2581 $this->mNewtalk =
false; # reset talk
page status
2585 if ( !$this->mId ) {
2589 $this->mNewtalk =
false;
2594 $this->mNewtalk = $this->
checkNewtalk(
'user_id', $this->mId );
2626 $timestamp =
$dbr->selectField(
'user_newtalk',
2627 'MIN(user_last_timestamp)',
2628 $this->
isAnon() ? [
'user_ip' => $this->
getName() ] : [
'user_id' => $this->
getId() ],
2631 return [ [
'wiki' =>
wfWikiID(),
'link' => $utp->getLocalURL(),
'rev' =>
$rev ] ];
2640 $newMessageRevisionId =
null;
2642 if ( $newMessageLinks ) {
2646 if (
count( $newMessageLinks ) === 1
2647 && $newMessageLinks[0][
'wiki'] ===
wfWikiID()
2648 && $newMessageLinks[0][
'rev']
2651 $newMessageRevision = $newMessageLinks[0][
'rev'];
2652 $newMessageRevisionId = $newMessageRevision->getId();
2655 return $newMessageRevisionId;
2669 $ok =
$dbr->selectField(
'user_newtalk', $field, [ $field => $id ], __METHOD__ );
2671 return $ok !==
false;
2683 $prevRev = $curRev ? $curRev->getPrevious() :
false;
2684 $ts = $prevRev ? $prevRev->getTimestamp() :
null;
2687 $dbw->insert(
'user_newtalk',
2688 [ $field => $id,
'user_last_timestamp' => $dbw->timestampOrNull( $ts ) ],
2691 if ( $dbw->affectedRows() ) {
2692 wfDebug( __METHOD__ .
": set on ($field, $id)\n" );
2695 wfDebug( __METHOD__ .
" already set ($field, $id)\n" );
2708 $dbw->delete(
'user_newtalk',
2711 if ( $dbw->affectedRows() ) {
2712 wfDebug( __METHOD__ .
": killed on ($field, $id)\n" );
2715 wfDebug( __METHOD__ .
": already gone ($field, $id)\n" );
2732 $this->mNewtalk = $val;
2739 $id = $this->
getId();
2762 if ( $this->mTouched && $time <= $this->mTouched ) {
2780 if ( !$this->
getId() ) {
2786 if ( $mode ===
'refresh' ) {
2787 $cache->delete( $key, 1 );
2789 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
2790 if ( $lb->hasOrMadeRecentMasterChanges() ) {
2791 $lb->getConnection(
DB_MASTER )->onTransactionPreCommitOrIdle(
2826 $id = $this->
getId();
2828 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
2829 $key =
$cache->makeKey(
'user-quicktouched',
'id', $id );
2830 $cache->touchCheckKey( $key );
2831 $this->mQuickTouched =
null;
2841 return ( $timestamp >= $this->
getTouched() );
2856 if ( $this->mQuickTouched ===
null ) {
2857 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
2858 $key =
$cache->makeKey(
'user-quicktouched',
'id', $this->mId );
2863 return max( $this->mTouched, $this->mQuickTouched );
2923 $manager = AuthManager::singleton();
2926 if ( !$manager->userExists( $this->getName() ) ) {
2927 throw new LogicException(
'Cannot set a password for a user that is not in the database.' );
2931 'username' => $this->
getName(),
2937 ->info( __METHOD__ .
': Password change rejected: '
2938 .
$status->getWikiText(
null,
null,
'en' ) );
2942 $this->
setOption(
'watchlisttoken',
false );
2943 SessionManager::singleton()->invalidateSessionsForUser( $this );
2961 $manager = AuthManager::singleton();
2962 $reqs = $manager->getAuthenticationRequests( AuthManager::ACTION_CHANGE, $this );
2963 $reqs = AuthenticationRequest::loadRequestsFromSubmission( $reqs, $data );
2966 foreach ( $reqs
as $req ) {
2967 $status->merge( $manager->allowsAuthenticationDataChange(
$req ),
true );
2969 if (
$status->getValue() ===
'ignored' ) {
2970 $status->warning(
'authenticationdatachange-ignored' );
2974 foreach ( $reqs
as $req ) {
2975 $manager->changeAuthenticationData(
$req );
2991 if ( !$this->mToken && $forceCreation ) {
2995 if ( !$this->mToken ) {
2998 } elseif ( $this->mToken === self::INVALID_TOKEN ) {
3010 $len = max( 32, self::TOKEN_LENGTH );
3011 if ( strlen(
$ret ) < $len ) {
3013 throw new \UnexpectedValueException(
'Hmac returned less than 128 bits' );
3015 return substr(
$ret, -$len );
3027 if ( $this->mToken === self::INVALID_TOKEN ) {
3029 ->debug( __METHOD__ .
": Ignoring attempt to set token for system user \"$this\"" );
3030 } elseif ( !$token ) {
3033 $this->mToken = $token;
3046 throw new BadMethodCallException( __METHOD__ .
' has been removed in 1.27' );
3055 Hooks::run(
'UserGetEmail', [ $this, &$this->mEmail ] );
3065 Hooks::run(
'UserGetEmailAuthenticationTimestamp', [ $this, &$this->mEmailAuthenticated ] );
3075 if ( $str == $this->mEmail ) {
3079 $this->mEmail = $str;
3080 Hooks::run(
'UserSetEmail', [ $this, &$this->mEmail ] );
3098 if ( $str === $oldaddr ) {
3102 $type = $oldaddr !=
'' ?
'changed' :
'set';
3103 $notificationResult =
null;
3108 if (
$type ==
'changed' ) {
3109 $change = $str !=
'' ?
'changed' :
'removed';
3110 $notificationResult = $this->
sendMail(
3111 wfMessage(
'notificationemail_subject_' . $change )->
text(),
3112 wfMessage(
'notificationemail_body_' . $change,
3126 if ( $notificationResult !==
null ) {
3127 $result->merge( $notificationResult );
3159 $this->mRealName = $str;
3172 public function getOption( $oname, $defaultOverride =
null, $ignoreHidden =
false ) {
3176 # We want 'disabled' preferences to always behave as the default value for
3177 # users, even if they have set the option explicitly in their settings (ie they
3178 # set it, and then it was disabled removing their ability to change it). But
3179 # we don't want to erase the preferences in the database in case the preference
3180 # is re-enabled again. So don't touch $mOptions, just override the returned value
3185 if ( array_key_exists( $oname, $this->mOptions ) ) {
3186 return $this->mOptions[$oname];
3188 return $defaultOverride;
3205 # We want 'disabled' preferences to always behave as the default value for
3206 # users, even if they have set the option explicitly in their settings (ie they
3207 # set it, and then it was disabled removing their ability to change it). But
3208 # we don't want to erase the preferences in the database in case the preference
3209 # is re-enabled again. So don't touch $mOptions, just override the returned value
3210 foreach ( $wgHiddenPrefs
as $pref ) {
3212 if ( $default !==
null ) {
3217 if ( $flags & self::GETOPTIONS_EXCLUDE_DEFAULTS ) {
3232 return (
bool)$this->
getOption( $oname );
3246 $val = $defaultOverride;
3248 return intval( $val );
3263 if ( is_null( $val ) ) {
3267 $this->mOptions[$oname] = $val;
3283 $id = $this->
getId();
3293 $token = hash_hmac(
'sha1',
"$oname:$id", $this->
getToken() );
3345 'registered-multiselect',
3346 'registered-checkmatrix',
3371 $preferencesFactory = MediaWikiServices::getInstance()->getPreferencesFactory();
3372 $prefs = $preferencesFactory->getFormDescriptor( $this,
$context );
3377 $specialOptions = array_fill_keys( $preferencesFactory->getSaveBlacklist(),
true );
3379 unset( $prefs[
$name] );
3384 $multiselectOptions = [];
3385 foreach ( $prefs
as $name => $info ) {
3386 if ( ( isset( $info[
'type'] ) && $info[
'type'] ==
'multiselect' ) ||
3389 $prefix = $info[
'prefix'] ??
$name;
3392 $multiselectOptions[
"$prefix$value"] =
true;
3395 unset( $prefs[
$name] );
3398 $checkmatrixOptions = [];
3399 foreach ( $prefs
as $name => $info ) {
3400 if ( ( isset( $info[
'type'] ) && $info[
'type'] ==
'checkmatrix' ) ||
3404 $prefix = $info[
'prefix'] ??
$name;
3406 foreach ( $columns
as $column ) {
3408 $checkmatrixOptions[
"$prefix$column-$row"] =
true;
3412 unset( $prefs[
$name] );
3418 if ( isset( $prefs[$key] ) ) {
3419 $mapping[$key] =
'registered';
3420 } elseif ( isset( $multiselectOptions[$key] ) ) {
3421 $mapping[$key] =
'registered-multiselect';
3422 } elseif ( isset( $checkmatrixOptions[$key] ) ) {
3423 $mapping[$key] =
'registered-checkmatrix';
3424 } elseif ( isset( $specialOptions[$key] ) ) {
3425 $mapping[$key] =
'special';
3426 } elseif ( substr( $key, 0, 7 ) ===
'userjs-' ) {
3427 $mapping[$key] =
'userjs';
3429 $mapping[$key] =
'unused';
3451 $resetKinds = [
'registered',
'registered-multiselect',
'registered-checkmatrix',
'unused' ],
3457 if ( !is_array( $resetKinds ) ) {
3458 $resetKinds = [ $resetKinds ];
3461 if ( in_array(
'all', $resetKinds ) ) {
3462 $newOptions = $defaultOptions;
3469 $resetKinds = array_intersect( $resetKinds, self::listOptionKinds() );
3474 foreach ( $this->mOptions
as $key =>
$value ) {
3475 if ( in_array( $optionKinds[$key], $resetKinds ) ) {
3476 if ( array_key_exists( $key, $defaultOptions ) ) {
3477 $newOptions[$key] = $defaultOptions[$key];
3480 $newOptions[$key] =
$value;
3485 Hooks::run(
'UserResetAllOptions', [ $this, &$newOptions, $this->mOptions, $resetKinds ] );
3487 $this->mOptions = $newOptions;
3488 $this->mOptionsLoaded =
true;
3497 if ( is_null( $this->mDatePreference ) ) {
3500 $map =
$wgLang->getDatePreferenceMigrationMap();
3501 if ( isset( $map[
$value] ) ) {
3504 $this->mDatePreference =
$value;
3521 Hooks::run(
'UserRequiresHTTPS', [ $this, &$https ] );
3550 if ( is_null( $this->mRights ) ) {
3552 Hooks::run(
'UserGetRights', [ $this, &$this->mRights ] );
3556 if ( !defined(
'MW_NO_SESSION' ) ) {
3557 $allowedRights = $this->
getRequest()->getSession()->getAllowedUserRights();
3558 if ( $allowedRights !==
null ) {
3559 $this->mRights = array_intersect( $this->mRights, $allowedRights );
3563 Hooks::run(
'UserGetRightsRemove', [ $this, &$this->mRights ] );
3565 $this->mRights = array_values( array_unique( $this->mRights ) );
3576 $config->get(
'BlockDisablesLogin' ) &&
3580 $this->mRights = array_intersect( $this->mRights, $anon->getRights() );
3594 return array_keys( $this->mGroupMemberships );
3618 if ( $recache || is_null( $this->mEffectiveGroups ) ) {
3619 $this->mEffectiveGroups = array_unique( array_merge(
3626 Hooks::run(
'UserEffectiveGroups', [ &
$user, &$this->mEffectiveGroups ] );
3628 $this->mEffectiveGroups = array_values( array_unique( $this->mEffectiveGroups ) );
3641 if ( $recache || is_null( $this->mImplicitGroups ) ) {
3642 $this->mImplicitGroups = [
'*' ];
3643 if ( $this->
getId() ) {
3644 $this->mImplicitGroups[] =
'user';
3646 $this->mImplicitGroups = array_unique( array_merge(
3647 $this->mImplicitGroups,
3654 $this->mEffectiveGroups =
null;
3672 if ( is_null( $this->mFormerGroups ) ) {
3673 $db = ( $this->queryFlagsUsed & self::READ_LATEST )
3676 $res = $db->select(
'user_former_groups',
3678 [
'ufg_user' => $this->mId ],
3680 $this->mFormerGroups = [];
3681 foreach (
$res as $row ) {
3682 $this->mFormerGroups[] = $row->ufg_group;
3694 if ( !$this->
getId() ) {
3698 if ( $this->mEditCount ===
null ) {
3702 $count =
$dbr->selectField(
3703 'user',
'user_editcount',
3704 [
'user_id' => $this->mId ],
3708 if ( $count ===
null ) {
3712 $this->mEditCount = $count;
3736 if ( !
Hooks::run(
'UserAddGroup', [ $this, &$group, &$expiry ] ) ) {
3742 if ( !$ugm->insert(
true ) ) {
3746 $this->mGroupMemberships[$group] = $ugm;
3751 $this->mRights =
null;
3767 if ( !
Hooks::run(
'UserRemoveGroup', [ $this, &$group ] ) ) {
3773 if ( !$ugm || !$ugm->delete() ) {
3778 unset( $this->mGroupMemberships[$group] );
3783 $this->mRights =
null;
3795 return $this->
getId() != 0;
3816 Hooks::run(
"UserIsBot", [ $this, &$isBot ] );
3828 $permissions = func_get_args();
3829 foreach ( $permissions
as $permission ) {
3830 if ( $this->
isAllowed( $permission ) ) {
3843 $permissions = func_get_args();
3844 foreach ( $permissions
as $permission ) {
3845 if ( !$this->
isAllowed( $permission ) ) {
3858 if ( $action ===
'' ) {
3863 return in_array( $action, $this->
getRights(),
true );
3905 if ( $this->mRequest ) {
3922 if (
$title->isWatchable() && ( !$checkRights || $this->
isAllowed(
'viewmywatchlist' ) ) ) {
3923 return MediaWikiServices::getInstance()->getWatchedItemStore()->isWatched( $this,
$title );
3936 if ( !$checkRights || $this->
isAllowed(
'editmywatchlist' ) ) {
3937 MediaWikiServices::getInstance()->getWatchedItemStore()->addWatchBatchForUser(
3953 if ( !$checkRights || $this->
isAllowed(
'editmywatchlist' ) ) {
3954 $store = MediaWikiServices::getInstance()->getWatchedItemStore();
3955 $store->removeWatch( $this,
$title->getSubjectPage() );
3956 $store->removeWatch( $this,
$title->getTalkPage() );
3978 if ( !$this->
isAllowed(
'editmywatchlist' ) ) {
3986 if ( !
Hooks::run(
'UserClearNewTalkNotification', [ &
$user, $oldid ] ) ) {
4027 MediaWikiServices::getInstance()->getWatchedItemStore()
4028 ->resetNotificationTimestamp( $this,
$title, $force, $oldid );
4049 $id = $this->
getId();
4054 $watchedItemStore = MediaWikiServices::getInstance()->getWatchedItemStore();
4055 $watchedItemStore->resetAllNotificationTimestampsForUser( $this );
4084 $registration > $learnerRegistration
4089 $registration <= $experiencedRegistration
4091 return 'experienced';
4107 if ( 0 == $this->mId ) {
4111 $session = $this->
getRequest()->getSession();
4113 $session = $session->sessionWithRequest(
$request );
4115 $delay = $session->delaySave();
4117 if ( !$session->getUser()->equals( $this ) ) {
4118 if ( !$session->canSetUser() ) {
4120 ->warning( __METHOD__ .
4121 ": Cannot save user \"$this\" to a user \"{$session->getUser()}\"'s immutable session"
4125 $session->setUser( $this );
4128 $session->setRememberUser( $rememberMe );
4129 if ( $secure !==
null ) {
4130 $session->setForceHTTPS( $secure );
4133 $session->persist();
4135 ScopedCallback::consume( $delay );
4154 $session = $this->
getRequest()->getSession();
4155 if ( !$session->canSetUser() ) {
4157 ->warning( __METHOD__ .
": Cannot log out of an immutable session" );
4158 $error =
'immutable';
4159 } elseif ( !$session->getUser()->equals( $this ) ) {
4161 ->warning( __METHOD__ .
4162 ": Cannot log user \"$this\" out of a user \"{$session->getUser()}\"'s session"
4166 $error =
'wronguser';
4169 $delay = $session->delaySave();
4170 $session->unpersist();
4171 $session->setLoggedOutTimestamp( time() );
4172 $session->setUser(
new User );
4173 $session->set(
'wsUserID', 0 );
4174 $session->resetAllTokens();
4175 ScopedCallback::consume( $delay );
4179 'event' =>
'logout',
4180 'successful' => $error ===
false,
4181 'status' => $error ?:
'success',
4195 "Could not update user with ID '{$this->mId}'; DB is read-only."
4201 if ( 0 == $this->mId ) {
4211 $dbw->doAtomicSection( __METHOD__,
function ( $dbw,
$fname )
use ( $newTouched ) {
4214 $dbw->update(
'user',
4216 'user_name' => $this->mName,
4217 'user_real_name' => $this->mRealName,
4218 'user_email' => $this->mEmail,
4219 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
4220 'user_touched' => $dbw->timestamp( $newTouched ),
4221 'user_token' => strval( $this->mToken ),
4223 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires ),
4225 'user_id' => $this->mId,
4229 if ( !$dbw->affectedRows() ) {
4233 $from = ( $this->queryFlagsUsed & self::READ_LATEST ) ?
'master' :
'replica';
4234 LoggerFactory::getInstance(
'preferences' )->warning(
4235 "CAS update failed on user_touched for user ID '{user_id}' ({db_flag} read)",
4236 [
'user_id' => $this->mId,
'db_flag' => $from ]
4238 throw new MWException(
"CAS update failed on user_touched. " .
4239 "The version of the user to be saved is older than the current version."
4246 [
'actor_name' => $this->mName ],
4247 [
'actor_user' => $this->mId ],
4253 $this->mTouched = $newTouched;
4273 $db = ( ( $flags & self::READ_LATEST ) == self::READ_LATEST )
4278 ? [
'LOCK IN SHARE MODE' ]
4281 $id = $db->selectField(
'user',
4282 'user_id', [
'user_name' =>
$s ], __METHOD__,
$options );
4303 foreach ( [
'password',
'newpassword',
'newpass_time',
'password_expires' ]
as $field ) {
4304 if ( isset(
$params[$field] ) ) {
4305 wfDeprecated( __METHOD__ .
" with param '$field'",
'1.27' );
4313 if ( isset(
$params[
'options'] ) ) {
4322 'user_name' =>
$name,
4323 'user_password' => $noPass,
4324 'user_newpassword' => $noPass,
4325 'user_email' =>
$user->mEmail,
4326 'user_email_authenticated' => $dbw->timestampOrNull(
$user->mEmailAuthenticated ),
4327 'user_real_name' =>
$user->mRealName,
4328 'user_token' => strval(
$user->mToken ),
4329 'user_registration' => $dbw->timestamp(
$user->mRegistration ),
4330 'user_editcount' => 0,
4331 'user_touched' => $dbw->timestamp(
$user->newTouchedTimestamp() ),
4334 $fields[
"user_$name"] =
$value;
4337 return $dbw->doAtomicSection( __METHOD__,
function ( $dbw,
$fname )
use ( $fields ) {
4338 $dbw->insert(
'user', $fields,
$fname, [
'IGNORE' ] );
4339 if ( $dbw->affectedRows() ) {
4341 $newUser->mName = $fields[
'user_name'];
4342 $newUser->updateActorId( $dbw );
4344 $newUser->load( self::READ_LATEST );
4380 if ( !$this->mToken ) {
4384 if ( !is_string( $this->mName ) ) {
4385 throw new RuntimeException(
"User name field is not set." );
4391 $status = $dbw->doAtomicSection( __METHOD__,
function ( $dbw,
$fname ) {
4393 $dbw->insert(
'user',
4395 'user_name' => $this->mName,
4396 'user_password' => $noPass,
4397 'user_newpassword' => $noPass,
4398 'user_email' => $this->mEmail,
4399 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
4401 'user_token' => strval( $this->mToken ),
4402 'user_registration' => $dbw->timestamp( $this->mRegistration ),
4403 'user_editcount' => 0,
4404 'user_touched' => $dbw->timestamp( $this->mTouched ),
4408 if ( !$dbw->affectedRows() ) {
4410 $this->mId = $dbw->selectField(
4413 [
'user_name' => $this->mName ],
4415 [
'LOCK IN SHARE MODE' ]
4425 "to insert user '{$this->mName}' row, but it was not present in select!" );
4429 $this->mId = $dbw->insertId();
4456 [
'actor_user' => $this->mId,
'actor_name' => $this->mName ],
4459 $this->mActorId = (int)$dbw->
insertId();
4482 wfDebug( __METHOD__ .
"()\n" );
4484 if ( $this->mId == 0 ) {
4489 if ( !$userblock ) {
4493 return (
bool)$userblock->doAutoblock( $this->
getRequest()->getIP() );
4502 if ( $this->mBlock && $this->mBlock->prevents(
'createaccount' ) ) {
4506 # T15611: if the IP address the user is trying to create an account from is
4507 # blocked with createaccount disabled, prevent new account creation there even
4508 # when the user is logged in
4509 if ( $this->mBlockedFromCreateAccount ===
false && !$this->
isAllowed(
'ipblock-exempt' ) ) {
4512 return $this->mBlockedFromCreateAccount instanceof
Block
4513 && $this->mBlockedFromCreateAccount->
prevents(
'createaccount' )
4514 ? $this->mBlockedFromCreateAccount
4524 return $this->mBlock && $this->mBlock->prevents(
'sendemail' );
4551 return $title->getTalkPage();
4560 return !$this->
isAllowed(
'autoconfirmed' );
4572 $manager = AuthManager::singleton();
4573 $reqs = AuthenticationRequest::loadRequestsFromSubmission(
4574 $manager->getAuthenticationRequests( AuthManager::ACTION_LOGIN ),
4576 'username' => $this->
getName(),
4577 'password' => $password,
4580 $res = AuthManager::singleton()->beginAuthentication( $reqs,
'null:' );
4581 switch (
$res->status ) {
4582 case AuthenticationResponse::PASS:
4584 case AuthenticationResponse::FAIL:
4587 ->info( __METHOD__ .
': Authentication failed: ' .
$res->message->plain() );
4590 throw new BadMethodCallException(
4591 'AuthManager returned a response unsupported by ' . __METHOD__
4629 return $request->getSession()->getToken( $salt );
4676 $val = substr( $val, 0, strspn( $val,
'0123456789abcdef' ) ) . Token::SUFFIX;
4695 if (
$type ==
'created' ||
$type ===
false ) {
4696 $message =
'confirmemail_body';
4697 } elseif (
$type ===
true ) {
4698 $message =
'confirmemail_body_changed';
4701 $message =
'confirmemail_body_' .
$type;
4709 $wgLang->userTimeAndDate( $expiration, $this ),
4711 $wgLang->userDate( $expiration, $this ),
4712 $wgLang->userTime( $expiration, $this ) )->
text() );
4726 public function sendMail( $subject, $body, $from =
null, $replyto =
null ) {
4729 if ( $from instanceof
User ) {
4738 'replyTo' => $replyto,
4759 $hash = md5( $token );
4760 $this->mEmailToken = $hash;
4761 $this->mEmailTokenExpires = $expiration;
4771 return $this->
getTokenUrl(
'ConfirmEmail', $token );
4780 return $this->
getTokenUrl(
'InvalidateEmail', $token );
4800 return $title->getCanonicalURL();
4815 Hooks::run(
'ConfirmEmailComplete', [ $this ] );
4829 $this->mEmailToken =
null;
4830 $this->mEmailTokenExpires =
null;
4833 Hooks::run(
'InvalidateEmailComplete', [ $this ] );
4843 $this->mEmailAuthenticated = $timestamp;
4844 Hooks::run(
'UserSetEmailAuthenticationTimestamp', [ $this, &$this->mEmailAuthenticated ] );
4893 if ( !Sanitizer::validateEmail( $this->mEmail ) ) {
4913 $this->mEmailToken &&
4939 if ( $this->
getId() == 0 ) {
4945 [
'revision' ] + $actorWhere[
'tables'],
4947 [ $actorWhere[
'conds'] ],
4949 [
'ORDER BY' =>
'rev_timestamp ASC' ],
4950 $actorWhere[
'joins']
4968 foreach ( $groups
as $group ) {
4970 $rights = array_merge( $rights,
4976 foreach ( $groups
as $group ) {
4978 $rights = array_diff( $rights,
4982 return array_unique( $rights );
4993 $allowedGroups = [];
4995 if ( self::groupHasPermission( $group, $role ) ) {
4996 $allowedGroups[] = $group;
4999 return $allowedGroups;
5040 if ( isset(
$cache[$right] ) && !defined(
'MW_PHPUNIT_TEST' ) ) {
5051 if ( isset( $rights[$right] ) && $rights[$right] ) {
5059 if ( !defined(
'MW_NO_SESSION' ) ) {
5060 $allowedRights = SessionManager::getGlobalSession()->getAllowedUserRights();
5061 if ( $allowedRights !==
null && !in_array( $right, $allowedRights,
true ) ) {
5068 if ( !
Hooks::run(
'UserIsEveryoneAllowed', [ $right ] ) ) {
5110 return array_values( array_diff(
5112 self::getImplicitGroups()
5121 if ( self::$mAllRights ===
false ) {
5124 self::$mAllRights = array_unique( array_merge( self::$mCoreRights,
$wgAvailableRights ) );
5128 Hooks::run(
'UserGetAllRights', [ &self::$mAllRights ] );
5169 if ( $text ==
'' ) {
5174 return MediaWikiServices::getInstance()
5175 ->getLinkRenderer()->makeLink(
$title, $text );
5177 return htmlspecialchars( $text );
5194 if ( $text ==
'' ) {
5199 $page =
$title->getFullText();
5200 return "[[$page|$text]]";
5246 if ( is_int( $key ) ) {
5254 if ( is_int( $key ) ) {
5289 if ( $this->
isAllowed(
'userrights' ) ) {
5294 $all = array_merge( self::getAllGroups() );
5312 foreach ( $addergroups
as $addergroup ) {
5313 $groups = array_merge_recursive(
5316 $groups[
'add'] = array_unique( $groups[
'add'] );
5317 $groups[
'remove'] = array_unique( $groups[
'remove'] );
5318 $groups[
'add-self'] = array_unique( $groups[
'add-self'] );
5319 $groups[
'remove-self'] = array_unique( $groups[
'remove-self'] );
5353 [
'user_editcount=user_editcount+1' ],
5354 [
'user_id' => $this->
getId(),
'user_editcount IS NOT NULL' ],
5358 if ( $dbw->affectedRows() == 0 ) {
5361 if (
$dbr !== $dbw ) {
5373 if ( $this->mEditCount ===
null ) {
5376 $this->mEditCount += (
$dbr !== $dbw ) ? 1 : 0;
5378 $this->mEditCount++;
5396 $count = (int)
$dbr->selectField(
5397 [
'revision' ] + $actorWhere[
'tables'],
5399 [ $actorWhere[
'conds'] ],
5402 $actorWhere[
'joins']
5404 $count = $count + $add;
5409 [
'user_editcount' => $count ],
5410 [
'user_id' => $this->
getId() ],
5425 $key =
"right-$right";
5427 return $msg->isDisabled() ? $right : $msg->text();
5438 $key =
"grant-$grant";
5440 return $msg->isDisabled() ? $grant : $msg->text();
5489 if ( $this->mOptionsLoaded ) {
5495 if ( !$this->
getId() ) {
5500 $variant = MediaWikiServices::getInstance()->getContentLanguage()->getDefaultVariant();
5501 $this->mOptions[
'variant'] = $variant;
5502 $this->mOptions[
'language'] = $variant;
5503 $this->mOptionsLoaded =
true;
5508 if ( !is_null( $this->mOptionOverrides ) ) {
5509 wfDebug(
"User: loading options for user " . $this->
getId() .
" from override cache.\n" );
5510 foreach ( $this->mOptionOverrides
as $key =>
$value ) {
5511 $this->mOptions[$key] =
$value;
5514 if ( !is_array( $data ) ) {
5515 wfDebug(
"User: loading options for user " . $this->
getId() .
" from database.\n" );
5517 $dbr = ( $this->queryFlagsUsed & self::READ_LATEST )
5523 [
'up_property',
'up_value' ],
5524 [
'up_user' => $this->
getId() ],
5528 $this->mOptionOverrides = [];
5530 foreach (
$res as $row ) {
5535 if ( $row->up_value ===
'0' ) {
5538 $data[$row->up_property] = $row->up_value;
5550 $this->mOptions[
'language']
5553 $this->mOptionsLoaded =
true;
5555 Hooks::run(
'UserLoadOptions', [ $this, &$this->mOptions ] );
5571 if ( !
Hooks::run(
'UserSaveOptions', [ $this, &$saveOptions ] ) ) {
5575 $userId = $this->
getId();
5578 foreach ( $saveOptions
as $key =>
$value ) {
5581 if ( ( $defaultOption ===
null &&
$value !==
false &&
$value !==
null )
5582 ||
$value != $defaultOption
5585 'up_user' => $userId,
5586 'up_property' => $key,
5594 $res = $dbw->select(
'user_properties',
5595 [
'up_property',
'up_value' ], [
'up_user' => $userId ], __METHOD__ );
5600 foreach (
$res as $row ) {
5601 if ( !isset( $saveOptions[$row->up_property] )
5602 || strcmp( $saveOptions[$row->up_property], $row->up_value ) != 0
5604 $keysDelete[] = $row->up_property;
5608 if (
count( $keysDelete ) ) {
5616 $dbw->delete(
'user_properties',
5617 [
'up_user' => $userId,
'up_property' => $keysDelete ], __METHOD__ );
5620 $dbw->insert(
'user_properties', $insert_rows, __METHOD__, [
'IGNORE' ] );
5638 'user_email_authenticated',
5640 'user_email_token_expires',
5641 'user_registration',
5659 'tables' => [
'user' ],
5667 'user_email_authenticated',
5669 'user_email_token_expires',
5670 'user_registration',
5679 $ret[
'tables'][
'user_actor'] =
'actor';
5680 $ret[
'fields'][] =
'user_actor.actor_id';
5681 $ret[
'joins'][
'user_actor'] = [
5683 [
'user_actor.actor_user = user_id' ]
5701 foreach ( self::getGroupsWithPermission( $permission )
as $group ) {
5722 if ( !$this->
getId() ) {
5727 if ( !
$user->loadFromId( self::READ_EXCLUSIVE ) ) {
static getDefaultOption( $opt)
Get a given default option value.
saveOptions()
Saves the non-default options for this user, as previously set e.g.
$wgHiddenPrefs
An array of preferences to not show for the user.
prevents( $action, $x=null)
Get/set whether the Block prevents a given action.
static replaceDeprecatedCodes( $code)
Replace deprecated language codes that were used in previous versions of MediaWiki to up-to-date,...
updateNewtalk( $field, $id, $curRev=null)
Add or update the new messages flag.
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. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header '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
loadFromId( $flags=self::READ_NORMAL)
Load user table data, given mId has already been set.
load( $flags=self::READ_NORMAL)
Load the user table data for this object from the source given by mFrom.
getNewtalk()
Check if the user has new messages.
$mOptionsLoaded
Bool Whether the cache variables have been loaded.
$wgProxyWhitelist
Proxy whitelist, list of addresses that are assumed to be non-proxy despite what the other methods mi...
inDnsBlacklist( $ip, $bases)
Whether the given IP is in a given DNS blacklist.
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
static newFromId( $id)
Static factory method for creation from a given user ID.
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
confirmationTokenUrl( $token)
Return a URL the user can use to confirm their email address.
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going and make changes or fix bugs In we can take all the code that deals with the little used title reversing we can concentrate it all in an extension file
$wgProxyList
Big list of banned IP addresses.
clearSharedCache( $mode='changed')
Clear user data from memcached.
const SCHEMA_COMPAT_READ_NEW
wfCanIPUseHTTPS( $ip)
Determine whether the client at a given source IP is likely to be able to access the wiki via HTTPS.
processing should stop and the error should be shown to the user * false
static getLocalClusterInstance()
Get the main cluster-local cache object.
isValidPassword( $password)
Is the input a valid password for this user?
getId()
Get the user's ID.
static newFromId( $id, $flags=0)
Load a page revision from a given revision ID number.
static makeGroupLinkWiki( $group, $text='')
Create a link to the group in Wikitext, if available; else return the group name.
useFilePatrol()
Check whether to enable new files patrol features for this user.
$wgMaxArticleSize
Maximum article size in kilobytes.
static hmac( $data, $key, $raw=true)
Generate an acceptably unstable one-way-hmac of some text making use of the best hash algorithm that ...
isAnon()
Get whether the user is anonymous.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
static clearCookie(WebResponse $response)
Unset the 'BlockID' cookie.
getTokenUrl( $page, $token)
Internal function to format the e-mail validation/invalidation URLs.
getActorId(IDatabase $dbw=null)
Get the user's actor ID.
static isLocallyBlockedProxy( $ip)
Check if an IP address is in the local proxy list.
$wgRevokePermissions
Permission keys revoked from users in each group.
resetTokenFromOption( $oname)
Reset a token stored in the preferences (like the watchlist one).
$wgBlockAllowsUTEdit
Set this to true to allow blocked users to edit their own user talk page.
loadFromUserObject( $user)
Load the data for this user object from another user object.
static newFatalPermissionDeniedStatus( $permission)
Factory function for fatal permission-denied errors.
getEditTokenObject( $salt='', $request=null)
Initialize (if necessary) and return a session token value which can be used in edit forms to show th...
$wgShowUpdatedMarker
Show "Updated (since my last visit)" marker in RC view, watchlist and history view for watched pages ...
static isInRanges( $ip, $ranges)
Determines if an IP address is a list of CIDR a.b.c.d/n ranges.
static newFromID( $id)
Load a blocked user from their block id.
newTouchedTimestamp()
Generate a current or new-future timestamp to be stored in the user_touched field when we update thin...
$wgExperiencedUserMemberSince
Name of the external diff engine to use.
getEditCount()
Get the user's edit count.
spreadBlock()
If this (non-anonymous) user is blocked, block the IP address they've successfully logged in from.
incEditCount()
Deferred version of incEditCountImmediate()
static newFromSession(WebRequest $request=null)
Create a new user object using data from session.
static send( $to, $from, $subject, $body, $options=[])
This function will perform a direct (authenticated) login to a SMTP Server to use for mail relaying i...
getOptionKinds(IContextSource $context, $options=null)
Return an associative array mapping preferences keys to the kind of a preference they're used for.
static chooseBlock(array $blocks, array $ipChain)
From a list of multiple blocks, find the most exact and strongest Block.
getBlock( $bFromSlave=true)
Get the block affecting the user, or null if the user is not blocked.
isEmailConfirmationPending()
Check whether there is an outstanding request for e-mail confirmation.
getBlockId()
If user is blocked, return the ID for the block.
getIntOption( $oname, $defaultOverride=0)
Get the user's current setting for a given option, as an integer value.
getOptions( $flags=0)
Get all user's options.
static getGroupName( $group)
Gets the localized friendly name for a group, if it exists.
string $mTouched
TS_MW timestamp from the DB.
__construct()
Lightweight constructor for an anonymous user.
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED since 1.16! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
getToken( $forceCreation=true)
Get the user's current token.
spreadAnyEditBlock()
If this user is logged-in and blocked, block any IP address they've successfully logged in from.
string[] $wgSoftBlockRanges
IP ranges that should be considered soft-blocked (anon-only, account creation allowed).
getNewMessageRevisionId()
Get the revision ID for the last talk page revision viewed by the talk page owner.
loadDefaults( $name=false)
Set cached properties to default.
$wgEmailAuthentication
Require email authentication before sending mail to an email address.
$mNewtalk
Lazy-initialized variables, invalidated with clearInstanceCache.
loadOptions( $data=null)
Load the user options either from cache, the database or an array.
static makeGroupLinkHTML( $group, $text='')
Create a link to the group in HTML, if available; else return the group name.
$wgDefaultUserOptions
Settings added to this array will override the default globals for the user preferences used by anony...
this hook is for auditing only $req
setNewpassword( $str, $throttle=true)
Set the password for a password reminder or new account email.
static newFatal( $message)
Factory function for fatal errors.
setEmailWithConfirmation( $str)
Set the user's e-mail address and a confirmation mail if needed.
$wgEnableUserEmail
Set to true to enable user-to-user e-mail.
getStubThreshold()
Get the user preferred stub threshold.
static newFromTarget( $specificTarget, $vagueTarget=null, $fromMaster=false)
Given a target and the target's type, get an existing Block object if possible.
wfReadOnly()
Check whether the wiki is in read-only mode.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
loadFromRow( $row, $data=null)
Initialize this object from a row from the user table.
setEmailAuthenticationTimestamp( $timestamp)
Set the e-mail authentication timestamp.
static isIPv6( $ip)
Given a string, determine if it as valid IP in IPv6 only.
getUserPage()
Get this user's personal page title.
getGroups()
Get the list of explicit group memberships this user has.
static newFromAnyId( $userId, $userName, $actorId)
Static factory method for creation from an ID, name, and/or actor ID.
getBlockFromCookieValue( $blockCookieVal)
Try to load a Block from an ID given in a cookie value.
static generateRandomPasswordString( $minLength=10)
Generate a random string suitable for a password.
static newFromIdentity(UserIdentity $identity)
Returns a User object corresponding to the given UserIdentity.
useNPPatrol()
Check whether to enable new pages patrol features for this user.
static getDBOptions( $bitfield)
Get an appropriate DB index, options, and fallback DB index for a query.
getDatePreference()
Get the user's preferred date format.
isSafeToLoad()
Test if it's safe to load this User object.
setEmail( $str)
Set the user's e-mail address.
idForName( $flags=0)
If only this user's username is known, and it exists, return the user ID.
static isValidUserName( $name)
Is the input a valid username?
sendConfirmationMail( $type='created')
Generate a new e-mail confirmation token and send a confirmation/invalidation mail to the user's give...
static groupHasPermission( $group, $role)
Check, if the given group has the given permission.
getEmailAuthenticationTimestamp()
Get the timestamp of the user's e-mail authentication.
pingLimiter( $action='edit', $incrBy=1)
Primitive rate limits: enforce maximum actions per time period to put a brake on flooding.
$mFrom
String Initialization data source if mLoadedItems!==true.
initEditCount( $add=0)
Initialize user_editcount from data out of the revision table.
Interface for database access objects.
useRCPatrol()
Check whether to enable recent changes patrol features for this user.
invalidateEmail()
Invalidate the user's e-mail confirmation, and unauthenticate the e-mail address if it was already co...
static getGroupPage( $group)
Gets the title of a page describing a particular user group.
static newFromRow( $row, $data=null)
Create a new user object from a user row.
$wgUseRCPatrol
Use RC Patrolling to check for vandalism (from recent changes and watchlists) New pages and new files...
loadGroups()
Load the groups from the database if they aren't already loaded.
$wgUseNPPatrol
Use new page patrolling to check new pages on Special:Newpages.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
isIPRange()
Is the user an IP range?
deleteNewtalk( $field, $id)
Clear the new messages flag for the given user.
static newMigration()
Static constructor.
static newFromUser(User $user)
Create a new MailAddress object for the given user.
static $mCacheVars
Array of Strings List of member variables which are saved to the shared cache (memcached).
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
The ContentHandler facility adds support for arbitrary content types on wiki pages
getRights()
Get the permissions this user has.
$wgClockSkewFudge
Clock skew or the one-second resolution of time() can occasionally cause cache problems when the user...
static createNew( $name, $params=[])
Add a user to the database, return the user object.
getRequest()
Get the WebRequest object to use with this object.
getAutomaticGroups( $recache=false)
Get the list of implicit group memberships this user has.
const INVALID_TOKEN
@const string An invalid value for user_token
setPassword( $str)
Set the password and reset the random token.
static getDefaultOptions()
Combine the language default options with any site-specific options and add the default language vari...
getInstanceForUpdate()
Get a new instance of this user that was loaded from the master via a locking read.
$wgMaxNameChars
Maximum number of bytes in username.
const READ_LOCKING
Constants for object loading bitfield flags (higher => higher QoS)
isBlockedFrom( $title, $bFromSlave=false)
Check if user is blocked from editing a particular article.
$wgExperiencedUserEdits
Name of the external diff engine to use.
static newSystemUser( $name, $options=[])
Static factory method for creation of a "system" user from username.
static getMembershipsForUser( $userId, IDatabase $db=null)
Returns UserGroupMembership objects for all the groups a user currently belongs to.
addGroup( $group, $expiry=null)
Add the user to the given group.
Stores a single person's name and email address.
Value object representing a logged-out user's edit token.
matchEditToken( $val, $salt='', $request=null, $maxage=null)
Check given value against the token value stored in the session.
getEmail()
Get the user's e-mail address.
getTalkPage()
Get this user's talk page title.
addToDatabase()
Add this existing user object to the database.
makeUpdateConditions(Database $db, array $conditions)
Builds update conditions.
static isValidRange( $ipRange)
Validate an IP range (valid address with a valid CIDR prefix).
invalidateCache()
Immediately touch the user data cache for this account.
setInternalPassword( $str)
Set the password and reset the random token unconditionally.
invalidationTokenUrl( $token)
Return a URL the user can use to invalidate their email address.
namespace and then decline to actually register it file or subcat img or subcat $title
isLocked()
Check if user account is locked.
string null $wgAuthenticationTokenVersion
Versioning for authentication tokens.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
checkPasswordValidity( $password)
Check if this is a valid password for this user.
static normalizeKey( $key)
Normalize a skin preference value to a form that can be loaded.
confirmEmail()
Mark the e-mail address confirmed.
setItemLoaded( $item)
Set that an item has been loaded.
static getLink( $ugm, IContextSource $context, $format, $userName=null)
Gets a link for a user group, possibly including the expiry date if relevant.
blockedFor()
If user is blocked, return the specified reason for the block.
setNewtalk( $val, $curRev=null)
Update the 'You have new messages!' status.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Block $mBlockedFromCreateAccount
null for the wiki Added in
isAllowedToCreateAccount()
Get whether the user is allowed to create an account.
logout()
Log this user out.
confirmationToken(&$expiration)
Generate, store, and return a new e-mail confirmation code.
getCacheKey(WANObjectCache $cache)
wfTimestampOrNull( $outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
static getImplicitGroups()
Get a list of implicit groups TODO: Should we deprecate this? It's trivial, but we don't want to enco...
isHidden()
Check if user account is hidden.
static randomPassword()
Return a random password.
static newFromRow( $row)
Creates a new UserGroupMembership object from a database row.
static getSubnet( $ip)
Returns the subnet of a given IP.
isBlockedFromEmailuser()
Get whether the user is blocked from using Special:Emailuser.
static isIP( $name)
Does the string match an anonymous IP address?
validateCache( $timestamp)
Validate the cache for this account.
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
getEffectiveGroups( $recache=false)
Get the list of implicit group memberships this user has.
isPingLimitable()
Is this user subject to rate limiting?
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
removeGroup( $group)
Remove the user from the given group.
canReceiveEmail()
Is this user allowed to receive e-mails within limits of current site configuration?
$wgImplicitGroups
Implicit groups, aren't shown on Special:Listusers or somewhere else.
isNewbie()
Determine whether the user is a newbie.
touch()
Update the "touched" timestamp for the user.
clearInstanceCache( $reloadFrom=false)
Clear various cached data stored in this object.
$wgEnableEmail
Set to true to enable the e-mail basic features: Password reminders, etc.
$wgEnableDnsBlacklist
Whether to use DNS blacklists in $wgDnsBlacklistUrls to check for open proxies.
const TOKEN_LENGTH
@const int Number of characters in user_token field.
$wgDefaultSkin
Default skin, for new users and anonymous visitors.
see documentation in includes Linker php for Linker::makeImageLink & $time
$wgReservedUsernames
Array of usernames which may not be registered or logged in from Maintenance scripts can still use th...
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
addWatch( $title, $checkRights=self::CHECK_USER_RIGHTS)
Watch an article.
string $mQuickTouched
TS_MW timestamp from cache.
setName( $str)
Set the user name.
resetOptions( $resetKinds=[ 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused'], IContextSource $context=null)
Reset certain (or all) options to the site defaults.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
UserGroupMembership[] $mGroupMemberships
Associative array of (group name => UserGroupMembership object)
Check if a user's password complies with any password policies that apply to that user,...
$wgUseFilePatrol
Use file patrolling to check new files on Special:Newfiles.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
$mLoadedItems
Array with already loaded items or true if all items have been loaded.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
clearNotification(&$title, $oldid=0)
Clear the user's notification timestamp for the given title.
saveSettings()
Save this user's settings into the database.
addNewUserLogEntry( $action=false, $reason='')
Add a newuser log entry for this user.
static getBlocksForIPList(array $ipChain, $isAnon, $fromMaster=false)
Get all blocks that match any IP from an array of IP addresses.
static $mCoreRights
Array of Strings Core rights.
foreach( $wgExtensionFunctions as $func) if(!defined( 'MW_NO_SESSION') &&! $wgCommandLineMode) if(! $wgCommandLineMode) $wgFullyInitialised
getFirstEditTimestamp()
Get the timestamp of the first edit.
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
$wgAutopromoteOnceLogInRC
Put user rights log entries for autopromotion in recent changes?
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
const GETOPTIONS_EXCLUDE_DEFAULTS
Exclude user options that are set to their default value.
setRealName( $str)
Set the user's real name.
Allows to change the fields on the form that will be generated $name
const EDIT_TOKEN_SUFFIX
Global constant made accessible as class constants so that autoloader magic can be used.
getNewMessageLinks()
Return the data needed to construct links for new talk page message alerts.
they could even be mouse clicks or menu items whatever suits your program You should also get your if any
getBlockedStatus( $bFromSlave=true)
Get blocking information.
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
getFormerGroups()
Returns the groups the user has belonged to.
static whoIs( $id)
Get the username corresponding to a given user ID.
static getIdFromCookieValue( $cookieValue)
Get the stored ID from the 'BlockID' cookie.
static hasFlags( $bitfield, $flags)
incEditCountImmediate()
Increment the user's edit-count field.
loadFromSession()
Load user data from the session.
$wgRateLimits
Simple rate limiter options to brake edit floods.
isBlockedGlobally( $ip='')
Check if user is blocked on all wikis.
getOption( $oname, $defaultOverride=null, $ignoreHidden=false)
Get the user's current setting for a given option.
static newGood( $value=null)
Factory function for good results.
isDnsBlacklisted( $ip, $checkWhitelist=false)
Whether the given IP is in a DNS blacklist.
getTouched()
Get the user touched timestamp.
getGlobalBlock( $ip='')
Check if user is blocked on all wikis.
const GAID_FOR_UPDATE
Used to be GAID_FOR_UPDATE define.
Exception thrown when an actor can't be created.
checkAndSetTouched()
Bump user_touched if it didn't change since this object was loaded.
Multi-datacenter aware caching interface.
getRealName()
Get the user's real name.
updateActorId(IDatabase $dbw)
Update the actor ID after an insert.
setCookies( $request=null, $secure=null, $rememberMe=false)
Persist this user's session (e.g.
static getGroupPermissions( $groups)
Get the permissions associated with a given list of groups.
static getGroupPage( $group)
Get the title of a page describing a particular group.
changeableGroups()
Returns an array of groups that this user can add and remove.
clearAllNotifications()
Resets all of the given user's page-change notification timestamps.
const VERSION
@const int Serialized record version.
const SCHEMA_COMPAT_WRITE_NEW
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
matchEditTokenNoSuffix( $val, $salt='', $request=null, $maxage=null)
Check given value against the token value stored in the session, ignoring the suffix.
$wgAddGroups
$wgAddGroups and $wgRemoveGroups can be used to give finer control over who can assign which groups a...
checkPassword( $password)
Check to see if the given clear-text password is one of the accepted passwords.
static getAllGroups()
Return the set of defined explicit groups.
removeWatch( $title, $checkRights=self::CHECK_USER_RIGHTS)
Stop watching an article.
static getAllRights()
Get a list of all available permissions.
static generateHex( $chars)
Generate a run of cryptographically random data and return it in hexadecimal string format.
$wgInvalidUsernameCharacters
Characters to prevent during new account creations.
static getMain()
Get the RequestContext object associated with the main request.
static getQueryInfo()
Return the tables, fields, and join conditions to be selected to create a new user object.
blockedBy()
If user is blocked, return the name of the user who placed the block.
$wgLearnerEdits
The following variables define 3 user experience levels:
getDBTouched()
Get the user_touched timestamp field (time of last DB updates)
static getGroupMember( $group, $username='#')
Get the localized descriptive name for a member of a group, if it exists.
static isIPv4( $ip)
Given a string, determine if it as valid IP in IPv4 only.
Interface for objects which can provide a MediaWiki context on request.
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
static changeableByGroup( $group)
Returns an array of the groups that a particular group can add/remove.
static getGroupName( $group)
Get the localized descriptive name for a group, if it exists.
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
setId( $v)
Set the user and reload all fields according to a given ID.
getExperienceLevel()
Compute experienced level based on edit count and registration date.
and how to run hooks for an and one after Each event has a preferably in CamelCase For ArticleDelete hook A clump of code and data that should be run when an event happens This can be either a function and a chunk of or an object and a method hook function The function part of a third party developers and administrators to define code that will be run at certain points in the mainline and to modify the data run by that mainline code Hooks can keep mainline code and make it easier to write extensions Hooks are a principled alternative to patches for two options in MediaWiki One reverses the order of a title before displaying the article
$wgUserEmailConfirmationTokenExpiry
The time, in seconds, when an email confirmation email expires.
getRegistration()
Get the timestamp of account creation.
static newInvalidPassword()
Create an InvalidPassword.
static sanitizeIP( $ip)
Convert an IP into a verbose, uppercase, normalized form.
static isEveryoneAllowed( $right)
Check if all users may be assumed to have the given permission.
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
isAllowedAny()
Check if user is allowed to access a feature / make an action.
static getRightDescription( $right)
Get the description of a given right.
changeAuthenticationData(array $data)
Changes credentials of the user.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
$wgRateLimitsExcludedIPs
Array of IPs / CIDR ranges which should be excluded from rate limits.
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
static getMainWANInstance()
Get the main WAN cache object.
$wgApplyIpBlocksToXff
Whether to look at the X-Forwarded-For header's list of (potentially spoofed) IPs and apply IP blocks...
isLoggedIn()
Get whether the user is logged in.
checkTemporaryPassword( $plaintext)
Check if the given clear-text password matches the temporary password sent by e-mail for password res...
getTitleKey()
Get the user's name escaped by underscores.
setToken( $token=false)
Set the random token (used for persistent authentication) Called from loadDefaults() among other plac...
static idFromName( $name, $flags=self::READ_NORMAL)
Get database id given a user name.
static resetIdByNameCache()
Reset the cache used in idFromName().
string $mEmailTokenExpires
static findUsersByGroup( $groups, $limit=5000, $after=null)
Return the users who are members of the given group(s).
static getCanonicalName( $name, $validate='valid')
Given unvalidated user input, return a canonical username, or false if the username is invalid.
isEmailConfirmed()
Is this user's e-mail address valid-looking and confirmed within limits of the current site configura...
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static getGrantName( $grant)
Get the name of a given grant.
static loadFromTimestamp( $db, $title, $timestamp)
Load the revision for the given title with the given timestamp.
static newFromActorId( $id)
Static factory method for creation from a given actor ID.
$wgDnsBlacklistUrls
List of DNS blacklists to use, if $wgEnableDnsBlacklist is true.
loadFromCache()
Load user data from shared cache, given mId has already been set.
$wgLearnerMemberSince
Name of the external diff engine to use.
addAutopromoteOnceGroups( $event)
Add the user to the group if he/she meets given criteria.
sendMail( $subject, $body, $from=null, $replyto=null)
Send an e-mail to this user's account.
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
getTokenFromOption( $oname)
Get a token stored in the preferences (like the watchlist one), resetting it if it's empty (and savin...
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
Class for creating new log entries and inserting them into the database.
equals(UserIdentity $user)
Checks if two user objects point to the same user.
checkNewtalk( $field, $id)
Internal uncached check for new messages.
loadFromDatabase( $flags=self::READ_LATEST)
Load user and user_group data from the database.
static selectFields()
Return the list of user fields that should be selected to create a new user object.
$wgGroupPermissions['sysop']['replacetext']
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
$wgPasswordPolicy
Password policy for local wiki users.
addNewUserLogEntryAutoCreate()
Add an autocreate newuser log entry for this user Used by things like CentralAuth and perhaps other a...
static newFromConfirmationCode( $code, $flags=0)
Factory method to fetch whichever user has a given email confirmation code.
if(! $wgDBerrorLogTZ) $wgRequest
isWatched( $title, $checkRights=self::CHECK_USER_RIGHTS)
Check the watched status of an article.
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 MediaWikiServices
static getMembership( $userId, $group, IDatabase $db=null)
Returns a UserGroupMembership object that pertains to the given user and group, or false if the user ...
getBoolOption( $oname)
Get the user's current setting for a given option, as a boolean value.
$wgMinimalPasswordLength
Specifies the minimal length of a user password.
$wgGroupsAddToSelf
A map of group names that the user is in, to group names that those users are allowed to add or revok...
static isUsableName( $name)
Usernames which fail to pass this function will be blocked from user login and new account registrati...
isBlocked( $bFromSlave=true)
Check if user is blocked.
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 use $formDescriptor instead 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 "<
$wgPasswordSender
Sender email address for e-mail notifications.
isBlockedFromCreateAccount()
Get whether the user is explicitly blocked from account creation.
getEditToken( $salt='', $request=null)
Initialize (if necessary) and return a session token value which can be used in edit forms to show th...
requiresHTTPS()
Determine based on the wiki configuration and the user's options, whether this user must be over HTTP...
static $mAllRights
String Cached results of getAllRights()
isItemLoaded( $item, $all='all')
Return whether an item has been loaded.
static purge( $wikiId, $userId)
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static addCallableUpdate( $callable, $stage=self::POSTSEND, $dbw=null)
Add a callable update.
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
setOption( $oname, $val)
Set the given option for a user.
int $queryFlagsUsed
User::READ_* constant bitfield used to load data.
this hook is for auditing only or null if authentication failed before getting that far $username
getPasswordValidity( $password)
Given unvalidated password input, return error message on failure.
static whoIsReal( $id)
Get the real name of a user given their user ID.
getName()
Get the user name, or the IP of an anonymous user.
$wgSecureLogin
This is to let user authenticate using https when they come from http.
static getGroupMemberName( $group, $username)
Gets the localized name for a member of a group, if it exists.
doLogout()
Clear the user's session, and reset the instance cache.
getGroupMemberships()
Get the list of explicit group memberships this user has, stored as UserGroupMembership objects.
canSendEmail()
Is this user allowed to send e-mails within limits of current site configuration?
static isCreatableName( $name)
Usernames which fail to pass this function will be blocked from new account registrations,...
$wgNamespacesToBeSearchedDefault
List of namespaces which are searched by default.
getMutableCacheKeys(WANObjectCache $cache)
setPasswordInternal( $str)
Actually set the password and such.
$wgDisableAnonTalk
Disable links to talk pages of anonymous users (IPs) in listings on special pages like page history,...
Represents a "user group membership" – a specific instance of a user belonging to a group.
static isIPAddress( $ip)
Determine if a string is as valid IP address or network (CIDR prefix).
string $mEmailAuthenticated
static getGroupsWithPermission( $role)
Get all the groups who have a given permission.
isAllowed( $action='')
Internal mechanics of testing a permission.
static logException( $e, $catcher=self::CAUGHT_BY_OTHER)
Log an exception to the exception log (if enabled).
static listOptionKinds()
Return a list of the types of user options currently returned by User::getOptionKinds().
int $wgActorTableSchemaMigrationStage
Actor table schema migration stage.
trackBlockWithCookie()
Set the 'BlockID' cookie depending on block type and user authentication status.