3 * Implements the User class for the %MediaWiki software.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
23 use MediaWiki\MediaWikiServices
;
24 use MediaWiki\Session\SessionManager
;
25 use MediaWiki\Session\Token
;
26 use MediaWiki\Auth\AuthManager
;
27 use MediaWiki\Auth\AuthenticationResponse
;
28 use MediaWiki\Auth\AuthenticationRequest
;
29 use Wikimedia\ScopedCallback
;
32 * String Some punctuation to prevent editing from broken text-mangling proxies.
33 * @deprecated since 1.27, use \MediaWiki\Session\Token::SUFFIX
36 define( 'EDIT_TOKEN_SUFFIX', Token
::SUFFIX
);
39 * The User object encapsulates all of the user-specific settings (user_id,
40 * name, rights, email address, options, last login time). Client
41 * classes use the getXXX() functions to access these fields. These functions
42 * do all the work of determining whether the user is logged in,
43 * whether the requested option can be satisfied from cookies or
44 * whether a database query is needed. Most of the settings needed
45 * for rendering normal pages are set in the cookie to minimize use
48 class User
implements IDBAccessObject
{
50 * @const int Number of characters in user_token field.
52 const TOKEN_LENGTH
= 32;
55 * @const string An invalid value for user_token
57 const INVALID_TOKEN
= '*** INVALID ***';
60 * Global constant made accessible as class constants so that autoloader
62 * @deprecated since 1.27, use \MediaWiki\Session\Token::SUFFIX
64 const EDIT_TOKEN_SUFFIX
= EDIT_TOKEN_SUFFIX
;
67 * @const int Serialized record version.
72 * Exclude user options that are set to their default value.
75 const GETOPTIONS_EXCLUDE_DEFAULTS
= 1;
80 const CHECK_USER_RIGHTS
= true;
85 const IGNORE_USER_RIGHTS
= false;
88 * Array of Strings List of member variables which are saved to the
89 * shared cache (memcached). Any operation which changes the
90 * corresponding database fields must call a cache-clearing function.
93 protected static $mCacheVars = [
101 'mEmailAuthenticated',
103 'mEmailTokenExpires',
108 // user_properties table
113 * Array of Strings Core rights.
114 * Each of these should have a corresponding message of the form
118 protected static $mCoreRights = [
149 'editusercssjs', # deprecated
162 'move-categorypages',
163 'move-rootuserpages',
167 'override-export-depth',
189 'userrights-interwiki',
197 * String Cached results of getAllRights()
199 protected static $mAllRights = false;
201 /** Cache variables */
212 /** @var string TS_MW timestamp from the DB */
214 /** @var string TS_MW timestamp from cache */
215 protected $mQuickTouched;
219 public $mEmailAuthenticated;
221 protected $mEmailToken;
223 protected $mEmailTokenExpires;
225 protected $mRegistration;
227 protected $mEditCount;
229 * @var array No longer used since 1.29; use User::getGroups() instead
230 * @deprecated since 1.29
233 /** @var array Associative array of (group name => UserGroupMembership object) */
234 protected $mGroupMemberships;
236 protected $mOptionOverrides;
240 * Bool Whether the cache variables have been loaded.
243 public $mOptionsLoaded;
246 * Array with already loaded items or true if all items have been loaded.
248 protected $mLoadedItems = [];
252 * String Initialization data source if mLoadedItems!==true. May be one of:
253 * - 'defaults' anonymous user initialised from class defaults
254 * - 'name' initialise from mName
255 * - 'id' initialise from mId
256 * - 'session' log in from session if possible
258 * Use the User::newFrom*() family of functions to set this.
263 * Lazy-initialized variables, invalidated with clearInstanceCache
267 protected $mDatePreference;
275 protected $mBlockreason;
277 protected $mEffectiveGroups;
279 protected $mImplicitGroups;
281 protected $mFormerGroups;
283 protected $mGlobalBlock;
291 /** @var WebRequest */
298 protected $mAllowUsertalk;
301 private $mBlockedFromCreateAccount = false;
303 /** @var integer User::READ_* constant bitfield used to load data */
304 protected $queryFlagsUsed = self
::READ_NORMAL
;
306 /** @var string Indicates type of block (used for eventlogging)
307 * Permitted values: 'cookie-block', 'proxy-block', 'openproxy-block', 'xff-block',
310 public $blockTrigger = false;
312 public static $idCacheByName = [];
315 * Lightweight constructor for an anonymous user.
316 * Use the User::newFrom* factory functions for other kinds of users.
320 * @see newFromConfirmationCode()
321 * @see newFromSession()
324 public function __construct() {
325 $this->clearInstanceCache( 'defaults' );
331 public function __toString() {
332 return (string)$this->getName();
336 * Test if it's safe to load this User object.
338 * You should typically check this before using $wgUser or
339 * RequestContext::getUser in a method that might be called before the
340 * system has been fully initialized. If the object is unsafe, you should
341 * use an anonymous user:
343 * $user = $wgUser->isSafeToLoad() ? $wgUser : new User;
349 public function isSafeToLoad() {
350 global $wgFullyInitialised;
352 // The user is safe to load if:
353 // * MW_NO_SESSION is undefined AND $wgFullyInitialised is true (safe to use session data)
354 // * mLoadedItems === true (already loaded)
355 // * mFrom !== 'session' (sessions not involved at all)
357 return ( !defined( 'MW_NO_SESSION' ) && $wgFullyInitialised ) ||
358 $this->mLoadedItems
=== true ||
$this->mFrom
!== 'session';
362 * Load the user table data for this object from the source given by mFrom.
364 * @param integer $flags User::READ_* constant bitfield
366 public function load( $flags = self
::READ_NORMAL
) {
367 global $wgFullyInitialised;
369 if ( $this->mLoadedItems
=== true ) {
373 // Set it now to avoid infinite recursion in accessors
374 $oldLoadedItems = $this->mLoadedItems
;
375 $this->mLoadedItems
= true;
376 $this->queryFlagsUsed
= $flags;
378 // If this is called too early, things are likely to break.
379 if ( !$wgFullyInitialised && $this->mFrom
=== 'session' ) {
380 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
381 ->warning( 'User::loadFromSession called before the end of Setup.php', [
382 'exception' => new Exception( 'User::loadFromSession called before the end of Setup.php' ),
384 $this->loadDefaults();
385 $this->mLoadedItems
= $oldLoadedItems;
389 switch ( $this->mFrom
) {
391 $this->loadDefaults();
394 // Make sure this thread sees its own changes
395 if ( wfGetLB()->hasOrMadeRecentMasterChanges() ) {
396 $flags |
= self
::READ_LATEST
;
397 $this->queryFlagsUsed
= $flags;
400 $this->mId
= self
::idFromName( $this->mName
, $flags );
402 // Nonexistent user placeholder object
403 $this->loadDefaults( $this->mName
);
405 $this->loadFromId( $flags );
409 $this->loadFromId( $flags );
412 if ( !$this->loadFromSession() ) {
413 // Loading from session failed. Load defaults.
414 $this->loadDefaults();
416 Hooks
::run( 'UserLoadAfterLoadFromSession', [ $this ] );
419 throw new UnexpectedValueException(
420 "Unrecognised value for User->mFrom: \"{$this->mFrom}\"" );
425 * Load user table data, given mId has already been set.
426 * @param integer $flags User::READ_* constant bitfield
427 * @return bool False if the ID does not exist, true otherwise
429 public function loadFromId( $flags = self
::READ_NORMAL
) {
430 if ( $this->mId
== 0 ) {
431 // Anonymous users are not in the database (don't need cache)
432 $this->loadDefaults();
436 // Try cache (unless this needs data from the master DB).
437 // NOTE: if this thread called saveSettings(), the cache was cleared.
438 $latest = DBAccessObjectUtils
::hasFlags( $flags, self
::READ_LATEST
);
440 if ( !$this->loadFromDatabase( $flags ) ) {
441 // Can't load from ID
445 $this->loadFromCache();
448 $this->mLoadedItems
= true;
449 $this->queryFlagsUsed
= $flags;
456 * @param string $wikiId
457 * @param integer $userId
459 public static function purge( $wikiId, $userId ) {
460 $cache = ObjectCache
::getMainWANInstance();
461 $key = $cache->makeGlobalKey( 'user', 'id', $wikiId, $userId );
462 $cache->delete( $key );
467 * @param WANObjectCache $cache
470 protected function getCacheKey( WANObjectCache
$cache ) {
471 return $cache->makeGlobalKey( 'user', 'id', wfWikiID(), $this->mId
);
475 * @param WANObjectCache $cache
479 public function getMutableCacheKeys( WANObjectCache
$cache ) {
480 $id = $this->getId();
482 return $id ?
[ $this->getCacheKey( $cache ) ] : [];
486 * Load user data from shared cache, given mId has already been set.
491 protected function loadFromCache() {
492 $cache = ObjectCache
::getMainWANInstance();
493 $data = $cache->getWithSetCallback(
494 $this->getCacheKey( $cache ),
496 function ( $oldValue, &$ttl, array &$setOpts ) use ( $cache ) {
497 $setOpts +
= Database
::getCacheSetOptions( wfGetDB( DB_REPLICA
) );
498 wfDebug( "User: cache miss for user {$this->mId}\n" );
500 $this->loadFromDatabase( self
::READ_NORMAL
);
502 $this->loadOptions();
505 foreach ( self
::$mCacheVars as $name ) {
506 $data[$name] = $this->$name;
509 $ttl = $cache->adaptiveTTL( wfTimestamp( TS_UNIX
, $this->mTouched
), $ttl );
514 [ 'pcTTL' => $cache::TTL_PROC_LONG
, 'version' => self
::VERSION
]
517 // Restore from cache
518 foreach ( self
::$mCacheVars as $name ) {
519 $this->$name = $data[$name];
525 /** @name newFrom*() static factory methods */
529 * Static factory method for creation from username.
531 * This is slightly less efficient than newFromId(), so use newFromId() if
532 * you have both an ID and a name handy.
534 * @param string $name Username, validated by Title::newFromText()
535 * @param string|bool $validate Validate username. Takes the same parameters as
536 * User::getCanonicalName(), except that true is accepted as an alias
537 * for 'valid', for BC.
539 * @return User|bool User object, or false if the username is invalid
540 * (e.g. if it contains illegal characters or is an IP address). If the
541 * username is not present in the database, the result will be a user object
542 * with a name, zero user ID and default settings.
544 public static function newFromName( $name, $validate = 'valid' ) {
545 if ( $validate === true ) {
548 $name = self
::getCanonicalName( $name, $validate );
549 if ( $name === false ) {
552 // Create unloaded user object
556 $u->setItemLoaded( 'name' );
562 * Static factory method for creation from a given user ID.
564 * @param int $id Valid user ID
565 * @return User The corresponding User object
567 public static function newFromId( $id ) {
571 $u->setItemLoaded( 'id' );
576 * Factory method to fetch whichever user has a given email confirmation code.
577 * This code is generated when an account is created or its e-mail address
580 * If the code is invalid or has expired, returns NULL.
582 * @param string $code Confirmation code
583 * @param int $flags User::READ_* bitfield
586 public static function newFromConfirmationCode( $code, $flags = 0 ) {
587 $db = ( $flags & self
::READ_LATEST
) == self
::READ_LATEST
588 ?
wfGetDB( DB_MASTER
)
589 : wfGetDB( DB_REPLICA
);
591 $id = $db->selectField(
595 'user_email_token' => md5( $code ),
596 'user_email_token_expires > ' . $db->addQuotes( $db->timestamp() ),
600 return $id ? User
::newFromId( $id ) : null;
604 * Create a new user object using data from session. If the login
605 * credentials are invalid, the result is an anonymous user.
607 * @param WebRequest|null $request Object to use; $wgRequest will be used if omitted.
610 public static function newFromSession( WebRequest
$request = null ) {
612 $user->mFrom
= 'session';
613 $user->mRequest
= $request;
618 * Create a new user object from a user row.
619 * The row should have the following fields from the user table in it:
620 * - either user_name or user_id to load further data if needed (or both)
622 * - all other fields (email, etc.)
623 * It is useless to provide the remaining fields if either user_id,
624 * user_name and user_real_name are not provided because the whole row
625 * will be loaded once more from the database when accessing them.
627 * @param stdClass $row A row from the user table
628 * @param array $data Further data to load into the object (see User::loadFromRow for valid keys)
631 public static function newFromRow( $row, $data = null ) {
633 $user->loadFromRow( $row, $data );
638 * Static factory method for creation of a "system" user from username.
640 * A "system" user is an account that's used to attribute logged actions
641 * taken by MediaWiki itself, as opposed to a bot or human user. Examples
642 * might include the 'Maintenance script' or 'Conversion script' accounts
643 * used by various scripts in the maintenance/ directory or accounts such
644 * as 'MediaWiki message delivery' used by the MassMessage extension.
646 * This can optionally create the user if it doesn't exist, and "steal" the
647 * account if it does exist.
649 * "Stealing" an existing user is intended to make it impossible for normal
650 * authentication processes to use the account, effectively disabling the
651 * account for normal use:
652 * - Email is invalidated, to prevent account recovery by emailing a
653 * temporary password and to disassociate the account from the existing
655 * - The token is set to a magic invalid value, to kill existing sessions
656 * and to prevent $this->setToken() calls from resetting the token to a
658 * - SessionManager is instructed to prevent new sessions for the user, to
659 * do things like deauthorizing OAuth consumers.
660 * - AuthManager is instructed to revoke access, to invalidate or remove
661 * passwords and other credentials.
663 * @param string $name Username
664 * @param array $options Options are:
665 * - validate: As for User::getCanonicalName(), default 'valid'
666 * - create: Whether to create the user if it doesn't already exist, default true
667 * - steal: Whether to "disable" the account for normal use if it already
668 * exists, default false
672 public static function newSystemUser( $name, $options = [] ) {
674 'validate' => 'valid',
679 $name = self
::getCanonicalName( $name, $options['validate'] );
680 if ( $name === false ) {
684 $fields = self
::selectFields();
686 $dbw = wfGetDB( DB_MASTER
);
687 $row = $dbw->selectRow(
690 [ 'user_name' => $name ],
694 // No user. Create it?
695 return $options['create'] ? self
::createNew( $name, [ 'token' => self
::INVALID_TOKEN
] ) : null;
697 $user = self
::newFromRow( $row );
699 // A user is considered to exist as a non-system user if it can
700 // authenticate, or has an email set, or has a non-invalid token.
701 if ( $user->mEmail ||
$user->mToken
!== self
::INVALID_TOKEN ||
702 AuthManager
::singleton()->userCanAuthenticate( $name )
704 // User exists. Steal it?
705 if ( !$options['steal'] ) {
709 AuthManager
::singleton()->revokeAccessForUser( $name );
711 $user->invalidateEmail();
712 $user->mToken
= self
::INVALID_TOKEN
;
713 $user->saveSettings();
714 SessionManager
::singleton()->preventSessionsForUser( $user->getName() );
723 * Get the username corresponding to a given user ID
724 * @param int $id User ID
725 * @return string|bool The corresponding username
727 public static function whoIs( $id ) {
728 return UserCache
::singleton()->getProp( $id, 'name' );
732 * Get the real name of a user given their user ID
734 * @param int $id User ID
735 * @return string|bool The corresponding user's real name
737 public static function whoIsReal( $id ) {
738 return UserCache
::singleton()->getProp( $id, 'real_name' );
742 * Get database id given a user name
743 * @param string $name Username
744 * @param integer $flags User::READ_* constant bitfield
745 * @return int|null The corresponding user's ID, or null if user is nonexistent
747 public static function idFromName( $name, $flags = self
::READ_NORMAL
) {
748 $nt = Title
::makeTitleSafe( NS_USER
, $name );
749 if ( is_null( $nt ) ) {
754 if ( !( $flags & self
::READ_LATEST
) && isset( self
::$idCacheByName[$name] ) ) {
755 return self
::$idCacheByName[$name];
758 list( $index, $options ) = DBAccessObjectUtils
::getDBOptions( $flags );
759 $db = wfGetDB( $index );
764 [ 'user_name' => $nt->getText() ],
769 if ( $s === false ) {
772 $result = $s->user_id
;
775 self
::$idCacheByName[$name] = $result;
777 if ( count( self
::$idCacheByName ) > 1000 ) {
778 self
::$idCacheByName = [];
785 * Reset the cache used in idFromName(). For use in tests.
787 public static function resetIdByNameCache() {
788 self
::$idCacheByName = [];
792 * Does the string match an anonymous IP address?
794 * This function exists for username validation, in order to reject
795 * usernames which are similar in form to IP addresses. Strings such
796 * as 300.300.300.300 will return true because it looks like an IP
797 * address, despite not being strictly valid.
799 * We match "\d{1,3}\.\d{1,3}\.\d{1,3}\.xxx" as an anonymous IP
800 * address because the usemod software would "cloak" anonymous IP
801 * addresses like this, if we allowed accounts like this to be created
802 * new users could get the old edits of these anonymous users.
804 * @param string $name Name to match
807 public static function isIP( $name ) {
808 return preg_match( '/^\d{1,3}\.\d{1,3}\.\d{1,3}\.(?:xxx|\d{1,3})$/', $name )
809 || IP
::isIPv6( $name );
813 * Is the input a valid username?
815 * Checks if the input is a valid username, we don't want an empty string,
816 * an IP address, anything that contains slashes (would mess up subpages),
817 * is longer than the maximum allowed username size or doesn't begin with
820 * @param string $name Name to match
823 public static function isValidUserName( $name ) {
824 global $wgContLang, $wgMaxNameChars;
827 || User
::isIP( $name )
828 ||
strpos( $name, '/' ) !== false
829 ||
strlen( $name ) > $wgMaxNameChars
830 ||
$name != $wgContLang->ucfirst( $name )
835 // Ensure that the name can't be misresolved as a different title,
836 // such as with extra namespace keys at the start.
837 $parsed = Title
::newFromText( $name );
838 if ( is_null( $parsed )
839 ||
$parsed->getNamespace()
840 ||
strcmp( $name, $parsed->getPrefixedText() ) ) {
844 // Check an additional blacklist of troublemaker characters.
845 // Should these be merged into the title char list?
846 $unicodeBlacklist = '/[' .
847 '\x{0080}-\x{009f}' . # iso-8859-1 control chars
848 '\x{00a0}' . # non-breaking space
849 '\x{2000}-\x{200f}' . # various whitespace
850 '\x{2028}-\x{202f}' . # breaks and control chars
851 '\x{3000}' . # ideographic space
852 '\x{e000}-\x{f8ff}' . # private use
854 if ( preg_match( $unicodeBlacklist, $name ) ) {
862 * Usernames which fail to pass this function will be blocked
863 * from user login and new account registrations, but may be used
864 * internally by batch processes.
866 * If an account already exists in this form, login will be blocked
867 * by a failure to pass this function.
869 * @param string $name Name to match
872 public static function isUsableName( $name ) {
873 global $wgReservedUsernames;
874 // Must be a valid username, obviously ;)
875 if ( !self
::isValidUserName( $name ) ) {
879 static $reservedUsernames = false;
880 if ( !$reservedUsernames ) {
881 $reservedUsernames = $wgReservedUsernames;
882 Hooks
::run( 'UserGetReservedNames', [ &$reservedUsernames ] );
885 // Certain names may be reserved for batch processes.
886 foreach ( $reservedUsernames as $reserved ) {
887 if ( substr( $reserved, 0, 4 ) == 'msg:' ) {
888 $reserved = wfMessage( substr( $reserved, 4 ) )->inContentLanguage()->text();
890 if ( $reserved == $name ) {
898 * Return the users who are members of the given group(s). In case of multiple groups,
899 * users who are members of at least one of them are returned.
901 * @param string|array $groups A single group name or an array of group names
902 * @param int $limit Max number of users to return. The actual limit will never exceed 5000
903 * records; larger values are ignored.
904 * @param int $after ID the user to start after
905 * @return UserArrayFromResult
907 public static function findUsersByGroup( $groups, $limit = 5000, $after = null ) {
908 if ( $groups === [] ) {
909 return UserArrayFromResult
::newFromIDs( [] );
912 $groups = array_unique( (array)$groups );
913 $limit = min( 5000, $limit );
915 $conds = [ 'ug_group' => $groups ];
916 if ( $after !== null ) {
917 $conds[] = 'ug_user > ' . (int)$after;
920 $dbr = wfGetDB( DB_REPLICA
);
921 $ids = $dbr->selectFieldValues(
928 'ORDER BY' => 'ug_user',
932 return UserArray
::newFromIDs( $ids );
936 * Usernames which fail to pass this function will be blocked
937 * from new account registrations, but may be used internally
938 * either by batch processes or by user accounts which have
939 * already been created.
941 * Additional blacklisting may be added here rather than in
942 * isValidUserName() to avoid disrupting existing accounts.
944 * @param string $name String to match
947 public static function isCreatableName( $name ) {
948 global $wgInvalidUsernameCharacters;
950 // Ensure that the username isn't longer than 235 bytes, so that
951 // (at least for the builtin skins) user javascript and css files
952 // will work. (T25080)
953 if ( strlen( $name ) > 235 ) {
954 wfDebugLog( 'username', __METHOD__
.
955 ": '$name' invalid due to length" );
959 // Preg yells if you try to give it an empty string
960 if ( $wgInvalidUsernameCharacters !== '' ) {
961 if ( preg_match( '/[' . preg_quote( $wgInvalidUsernameCharacters, '/' ) . ']/', $name ) ) {
962 wfDebugLog( 'username', __METHOD__
.
963 ": '$name' invalid due to wgInvalidUsernameCharacters" );
968 return self
::isUsableName( $name );
972 * Is the input a valid password for this user?
974 * @param string $password Desired password
977 public function isValidPassword( $password ) {
978 // simple boolean wrapper for getPasswordValidity
979 return $this->getPasswordValidity( $password ) === true;
983 * Given unvalidated password input, return error message on failure.
985 * @param string $password Desired password
986 * @return bool|string|array True on success, string or array of error message on failure
988 public function getPasswordValidity( $password ) {
989 $result = $this->checkPasswordValidity( $password );
990 if ( $result->isGood() ) {
994 foreach ( $result->getErrorsByType( 'error' ) as $error ) {
995 $messages[] = $error['message'];
997 foreach ( $result->getErrorsByType( 'warning' ) as $warning ) {
998 $messages[] = $warning['message'];
1000 if ( count( $messages ) === 1 ) {
1001 return $messages[0];
1008 * Check if this is a valid password for this user
1010 * Create a Status object based on the password's validity.
1011 * The Status should be set to fatal if the user should not
1012 * be allowed to log in, and should have any errors that
1013 * would block changing the password.
1015 * If the return value of this is not OK, the password
1016 * should not be checked. If the return value is not Good,
1017 * the password can be checked, but the user should not be
1018 * able to set their password to this.
1020 * @param string $password Desired password
1024 public function checkPasswordValidity( $password ) {
1025 global $wgPasswordPolicy;
1027 $upp = new UserPasswordPolicy(
1028 $wgPasswordPolicy['policies'],
1029 $wgPasswordPolicy['checks']
1032 $status = Status
::newGood();
1033 $result = false; // init $result to false for the internal checks
1035 if ( !Hooks
::run( 'isValidPassword', [ $password, &$result, $this ] ) ) {
1036 $status->error( $result );
1040 if ( $result === false ) {
1041 $status->merge( $upp->checkUserPassword( $this, $password ) );
1043 } elseif ( $result === true ) {
1046 $status->error( $result );
1047 return $status; // the isValidPassword hook set a string $result and returned true
1052 * Given unvalidated user input, return a canonical username, or false if
1053 * the username is invalid.
1054 * @param string $name User input
1055 * @param string|bool $validate Type of validation to use:
1056 * - false No validation
1057 * - 'valid' Valid for batch processes
1058 * - 'usable' Valid for batch processes and login
1059 * - 'creatable' Valid for batch processes, login and account creation
1061 * @throws InvalidArgumentException
1062 * @return bool|string
1064 public static function getCanonicalName( $name, $validate = 'valid' ) {
1065 // Force usernames to capital
1067 $name = $wgContLang->ucfirst( $name );
1069 # Reject names containing '#'; these will be cleaned up
1070 # with title normalisation, but then it's too late to
1072 if ( strpos( $name, '#' ) !== false ) {
1076 // Clean up name according to title rules,
1077 // but only when validation is requested (T14654)
1078 $t = ( $validate !== false ) ?
1079 Title
::newFromText( $name, NS_USER
) : Title
::makeTitle( NS_USER
, $name );
1080 // Check for invalid titles
1081 if ( is_null( $t ) ||
$t->getNamespace() !== NS_USER ||
$t->isExternal() ) {
1085 // Reject various classes of invalid names
1086 $name = AuthManager
::callLegacyAuthPlugin(
1087 'getCanonicalName', [ $t->getText() ], $t->getText()
1090 switch ( $validate ) {
1094 if ( !User
::isValidUserName( $name ) ) {
1099 if ( !User
::isUsableName( $name ) ) {
1104 if ( !User
::isCreatableName( $name ) ) {
1109 throw new InvalidArgumentException(
1110 'Invalid parameter value for $validate in ' . __METHOD__
);
1116 * Return a random password.
1118 * @deprecated since 1.27, use PasswordFactory::generateRandomPasswordString()
1119 * @return string New random password
1121 public static function randomPassword() {
1122 global $wgMinimalPasswordLength;
1123 return PasswordFactory
::generateRandomPasswordString( $wgMinimalPasswordLength );
1127 * Set cached properties to default.
1129 * @note This no longer clears uncached lazy-initialised properties;
1130 * the constructor does that instead.
1132 * @param string|bool $name
1134 public function loadDefaults( $name = false ) {
1136 $this->mName
= $name;
1137 $this->mRealName
= '';
1139 $this->mOptionOverrides
= null;
1140 $this->mOptionsLoaded
= false;
1142 $loggedOut = $this->mRequest
&& !defined( 'MW_NO_SESSION' )
1143 ?
$this->mRequest
->getSession()->getLoggedOutTimestamp() : 0;
1144 if ( $loggedOut !== 0 ) {
1145 $this->mTouched
= wfTimestamp( TS_MW
, $loggedOut );
1147 $this->mTouched
= '1'; # Allow any pages to be cached
1150 $this->mToken
= null; // Don't run cryptographic functions till we need a token
1151 $this->mEmailAuthenticated
= null;
1152 $this->mEmailToken
= '';
1153 $this->mEmailTokenExpires
= null;
1154 $this->mRegistration
= wfTimestamp( TS_MW
);
1155 $this->mGroupMemberships
= [];
1157 Hooks
::run( 'UserLoadDefaults', [ $this, $name ] );
1161 * Return whether an item has been loaded.
1163 * @param string $item Item to check. Current possibilities:
1167 * @param string $all 'all' to check if the whole object has been loaded
1168 * or any other string to check if only the item is available (e.g.
1172 public function isItemLoaded( $item, $all = 'all' ) {
1173 return ( $this->mLoadedItems
=== true && $all === 'all' ) ||
1174 ( isset( $this->mLoadedItems
[$item] ) && $this->mLoadedItems
[$item] === true );
1178 * Set that an item has been loaded
1180 * @param string $item
1182 protected function setItemLoaded( $item ) {
1183 if ( is_array( $this->mLoadedItems
) ) {
1184 $this->mLoadedItems
[$item] = true;
1189 * Load user data from the session.
1191 * @return bool True if the user is logged in, false otherwise.
1193 private function loadFromSession() {
1196 Hooks
::run( 'UserLoadFromSession', [ $this, &$result ], '1.27' );
1197 if ( $result !== null ) {
1201 // MediaWiki\Session\Session already did the necessary authentication of the user
1202 // returned here, so just use it if applicable.
1203 $session = $this->getRequest()->getSession();
1204 $user = $session->getUser();
1205 if ( $user->isLoggedIn() ) {
1206 $this->loadFromUserObject( $user );
1208 // If this user is autoblocked, set a cookie to track the Block. This has to be done on
1209 // every session load, because an autoblocked editor might not edit again from the same
1210 // IP address after being blocked.
1211 $config = RequestContext
::getMain()->getConfig();
1212 if ( $config->get( 'CookieSetOnAutoblock' ) === true ) {
1213 $block = $this->getBlock();
1214 $shouldSetCookie = $this->getRequest()->getCookie( 'BlockID' ) === null
1216 && $block->getType() === Block
::TYPE_USER
1217 && $block->isAutoblocking();
1218 if ( $shouldSetCookie ) {
1219 wfDebug( __METHOD__
. ': User is autoblocked, setting cookie to track' );
1220 $block->setCookie( $this->getRequest()->response() );
1224 // Other code expects these to be set in the session, so set them.
1225 $session->set( 'wsUserID', $this->getId() );
1226 $session->set( 'wsUserName', $this->getName() );
1227 $session->set( 'wsToken', $this->getToken() );
1234 * Load user and user_group data from the database.
1235 * $this->mId must be set, this is how the user is identified.
1237 * @param integer $flags User::READ_* constant bitfield
1238 * @return bool True if the user exists, false if the user is anonymous
1240 public function loadFromDatabase( $flags = self
::READ_LATEST
) {
1242 $this->mId
= intval( $this->mId
);
1244 if ( !$this->mId
) {
1245 // Anonymous users are not in the database
1246 $this->loadDefaults();
1250 list( $index, $options ) = DBAccessObjectUtils
::getDBOptions( $flags );
1251 $db = wfGetDB( $index );
1253 $s = $db->selectRow(
1255 self
::selectFields(),
1256 [ 'user_id' => $this->mId
],
1261 $this->queryFlagsUsed
= $flags;
1262 Hooks
::run( 'UserLoadFromDatabase', [ $this, &$s ] );
1264 if ( $s !== false ) {
1265 // Initialise user table data
1266 $this->loadFromRow( $s );
1267 $this->mGroupMemberships
= null; // deferred
1268 $this->getEditCount(); // revalidation for nulls
1273 $this->loadDefaults();
1279 * Initialize this object from a row from the user table.
1281 * @param stdClass $row Row from the user table to load.
1282 * @param array $data Further user data to load into the object
1284 * user_groups Array of arrays or stdClass result rows out of the user_groups
1285 * table. Previously you were supposed to pass an array of strings
1286 * here, but we also need expiry info nowadays, so an array of
1287 * strings is ignored.
1288 * user_properties Array with properties out of the user_properties table
1290 protected function loadFromRow( $row, $data = null ) {
1293 $this->mGroupMemberships
= null; // deferred
1295 if ( isset( $row->user_name
) ) {
1296 $this->mName
= $row->user_name
;
1297 $this->mFrom
= 'name';
1298 $this->setItemLoaded( 'name' );
1303 if ( isset( $row->user_real_name
) ) {
1304 $this->mRealName
= $row->user_real_name
;
1305 $this->setItemLoaded( 'realname' );
1310 if ( isset( $row->user_id
) ) {
1311 $this->mId
= intval( $row->user_id
);
1312 $this->mFrom
= 'id';
1313 $this->setItemLoaded( 'id' );
1318 if ( isset( $row->user_id
) && isset( $row->user_name
) ) {
1319 self
::$idCacheByName[$row->user_name
] = $row->user_id
;
1322 if ( isset( $row->user_editcount
) ) {
1323 $this->mEditCount
= $row->user_editcount
;
1328 if ( isset( $row->user_touched
) ) {
1329 $this->mTouched
= wfTimestamp( TS_MW
, $row->user_touched
);
1334 if ( isset( $row->user_token
) ) {
1335 // The definition for the column is binary(32), so trim the NULs
1336 // that appends. The previous definition was char(32), so trim
1338 $this->mToken
= rtrim( $row->user_token
, " \0" );
1339 if ( $this->mToken
=== '' ) {
1340 $this->mToken
= null;
1346 if ( isset( $row->user_email
) ) {
1347 $this->mEmail
= $row->user_email
;
1348 $this->mEmailAuthenticated
= wfTimestampOrNull( TS_MW
, $row->user_email_authenticated
);
1349 $this->mEmailToken
= $row->user_email_token
;
1350 $this->mEmailTokenExpires
= wfTimestampOrNull( TS_MW
, $row->user_email_token_expires
);
1351 $this->mRegistration
= wfTimestampOrNull( TS_MW
, $row->user_registration
);
1357 $this->mLoadedItems
= true;
1360 if ( is_array( $data ) ) {
1361 if ( isset( $data['user_groups'] ) && is_array( $data['user_groups'] ) ) {
1362 if ( !count( $data['user_groups'] ) ) {
1363 $this->mGroupMemberships
= [];
1365 $firstGroup = reset( $data['user_groups'] );
1366 if ( is_array( $firstGroup ) ||
is_object( $firstGroup ) ) {
1367 $this->mGroupMemberships
= [];
1368 foreach ( $data['user_groups'] as $row ) {
1369 $ugm = UserGroupMembership
::newFromRow( (object)$row );
1370 $this->mGroupMemberships
[$ugm->getGroup()] = $ugm;
1375 if ( isset( $data['user_properties'] ) && is_array( $data['user_properties'] ) ) {
1376 $this->loadOptions( $data['user_properties'] );
1382 * Load the data for this user object from another user object.
1386 protected function loadFromUserObject( $user ) {
1388 foreach ( self
::$mCacheVars as $var ) {
1389 $this->$var = $user->$var;
1394 * Load the groups from the database if they aren't already loaded.
1396 private function loadGroups() {
1397 if ( is_null( $this->mGroupMemberships
) ) {
1398 $db = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
1399 ?
wfGetDB( DB_MASTER
)
1400 : wfGetDB( DB_REPLICA
);
1401 $this->mGroupMemberships
= UserGroupMembership
::getMembershipsForUser(
1407 * Add the user to the group if he/she meets given criteria.
1409 * Contrary to autopromotion by \ref $wgAutopromote, the group will be
1410 * possible to remove manually via Special:UserRights. In such case it
1411 * will not be re-added automatically. The user will also not lose the
1412 * group if they no longer meet the criteria.
1414 * @param string $event Key in $wgAutopromoteOnce (each one has groups/criteria)
1416 * @return array Array of groups the user has been promoted to.
1418 * @see $wgAutopromoteOnce
1420 public function addAutopromoteOnceGroups( $event ) {
1421 global $wgAutopromoteOnceLogInRC;
1423 if ( wfReadOnly() ||
!$this->getId() ) {
1427 $toPromote = Autopromote
::getAutopromoteOnceGroups( $this, $event );
1428 if ( !count( $toPromote ) ) {
1432 if ( !$this->checkAndSetTouched() ) {
1433 return []; // raced out (bug T48834)
1436 $oldGroups = $this->getGroups(); // previous groups
1437 foreach ( $toPromote as $group ) {
1438 $this->addGroup( $group );
1440 // update groups in external authentication database
1441 Hooks
::run( 'UserGroupsChanged', [ $this, $toPromote, [], false, false ] );
1442 AuthManager
::callLegacyAuthPlugin( 'updateExternalDBGroups', [ $this, $toPromote ] );
1444 $newGroups = array_merge( $oldGroups, $toPromote ); // all groups
1446 $logEntry = new ManualLogEntry( 'rights', 'autopromote' );
1447 $logEntry->setPerformer( $this );
1448 $logEntry->setTarget( $this->getUserPage() );
1449 $logEntry->setParameters( [
1450 '4::oldgroups' => $oldGroups,
1451 '5::newgroups' => $newGroups,
1453 $logid = $logEntry->insert();
1454 if ( $wgAutopromoteOnceLogInRC ) {
1455 $logEntry->publish( $logid );
1462 * Builds update conditions. Additional conditions may be added to $conditions to
1463 * protected against race conditions using a compare-and-set (CAS) mechanism
1464 * based on comparing $this->mTouched with the user_touched field.
1466 * @param Database $db
1467 * @param array $conditions WHERE conditions for use with Database::update
1468 * @return array WHERE conditions for use with Database::update
1470 protected function makeUpdateConditions( Database
$db, array $conditions ) {
1471 if ( $this->mTouched
) {
1472 // CAS check: only update if the row wasn't changed sicne it was loaded.
1473 $conditions['user_touched'] = $db->timestamp( $this->mTouched
);
1480 * Bump user_touched if it didn't change since this object was loaded
1482 * On success, the mTouched field is updated.
1483 * The user serialization cache is always cleared.
1485 * @return bool Whether user_touched was actually updated
1488 protected function checkAndSetTouched() {
1491 if ( !$this->mId
) {
1492 return false; // anon
1495 // Get a new user_touched that is higher than the old one
1496 $newTouched = $this->newTouchedTimestamp();
1498 $dbw = wfGetDB( DB_MASTER
);
1499 $dbw->update( 'user',
1500 [ 'user_touched' => $dbw->timestamp( $newTouched ) ],
1501 $this->makeUpdateConditions( $dbw, [
1502 'user_id' => $this->mId
,
1506 $success = ( $dbw->affectedRows() > 0 );
1509 $this->mTouched
= $newTouched;
1510 $this->clearSharedCache();
1512 // Clears on failure too since that is desired if the cache is stale
1513 $this->clearSharedCache( 'refresh' );
1520 * Clear various cached data stored in this object. The cache of the user table
1521 * data (i.e. self::$mCacheVars) is not cleared unless $reloadFrom is given.
1523 * @param bool|string $reloadFrom Reload user and user_groups table data from a
1524 * given source. May be "name", "id", "defaults", "session", or false for no reload.
1526 public function clearInstanceCache( $reloadFrom = false ) {
1527 $this->mNewtalk
= -1;
1528 $this->mDatePreference
= null;
1529 $this->mBlockedby
= -1; # Unset
1530 $this->mHash
= false;
1531 $this->mRights
= null;
1532 $this->mEffectiveGroups
= null;
1533 $this->mImplicitGroups
= null;
1534 $this->mGroupMemberships
= null;
1535 $this->mOptions
= null;
1536 $this->mOptionsLoaded
= false;
1537 $this->mEditCount
= null;
1539 if ( $reloadFrom ) {
1540 $this->mLoadedItems
= [];
1541 $this->mFrom
= $reloadFrom;
1546 * Combine the language default options with any site-specific options
1547 * and add the default language variants.
1549 * @return array Array of String options
1551 public static function getDefaultOptions() {
1552 global $wgNamespacesToBeSearchedDefault, $wgDefaultUserOptions, $wgContLang, $wgDefaultSkin;
1554 static $defOpt = null;
1555 static $defOptLang = null;
1557 if ( $defOpt !== null && $defOptLang === $wgContLang->getCode() ) {
1558 // $wgContLang does not change (and should not change) mid-request,
1559 // but the unit tests change it anyway, and expect this method to
1560 // return values relevant to the current $wgContLang.
1564 $defOpt = $wgDefaultUserOptions;
1565 // Default language setting
1566 $defOptLang = $wgContLang->getCode();
1567 $defOpt['language'] = $defOptLang;
1568 foreach ( LanguageConverter
::$languagesWithVariants as $langCode ) {
1569 $defOpt[$langCode == $wgContLang->getCode() ?
'variant' : "variant-$langCode"] = $langCode;
1572 // NOTE: don't use SearchEngineConfig::getSearchableNamespaces here,
1573 // since extensions may change the set of searchable namespaces depending
1574 // on user groups/permissions.
1575 foreach ( $wgNamespacesToBeSearchedDefault as $nsnum => $val ) {
1576 $defOpt['searchNs' . $nsnum] = (boolean
)$val;
1578 $defOpt['skin'] = Skin
::normalizeKey( $wgDefaultSkin );
1580 Hooks
::run( 'UserGetDefaultOptions', [ &$defOpt ] );
1586 * Get a given default option value.
1588 * @param string $opt Name of option to retrieve
1589 * @return string Default option value
1591 public static function getDefaultOption( $opt ) {
1592 $defOpts = self
::getDefaultOptions();
1593 if ( isset( $defOpts[$opt] ) ) {
1594 return $defOpts[$opt];
1601 * Get blocking information
1602 * @param bool $bFromSlave Whether to check the replica DB first.
1603 * To improve performance, non-critical checks are done against replica DBs.
1604 * Check when actually saving should be done against master.
1606 private function getBlockedStatus( $bFromSlave = true ) {
1607 global $wgProxyWhitelist, $wgUser, $wgApplyIpBlocksToXff, $wgSoftBlockRanges;
1609 if ( -1 != $this->mBlockedby
) {
1613 wfDebug( __METHOD__
. ": checking...\n" );
1615 // Initialize data...
1616 // Otherwise something ends up stomping on $this->mBlockedby when
1617 // things get lazy-loaded later, causing false positive block hits
1618 // due to -1 !== 0. Probably session-related... Nothing should be
1619 // overwriting mBlockedby, surely?
1622 # We only need to worry about passing the IP address to the Block generator if the
1623 # user is not immune to autoblocks/hardblocks, and they are the current user so we
1624 # know which IP address they're actually coming from
1626 if ( !$this->isAllowed( 'ipblock-exempt' ) ) {
1627 // $wgUser->getName() only works after the end of Setup.php. Until
1628 // then, assume it's a logged-out user.
1629 $globalUserName = $wgUser->isSafeToLoad()
1630 ?
$wgUser->getName()
1631 : IP
::sanitizeIP( $wgUser->getRequest()->getIP() );
1632 if ( $this->getName() === $globalUserName ) {
1633 $ip = $this->getRequest()->getIP();
1638 $block = Block
::newFromTarget( $this, $ip, !$bFromSlave );
1641 if ( !$block instanceof Block
) {
1642 $block = $this->getBlockFromCookieValue( $this->getRequest()->getCookie( 'BlockID' ) );
1646 if ( !$block instanceof Block
&& $ip !== null && !in_array( $ip, $wgProxyWhitelist ) ) {
1648 if ( self
::isLocallyBlockedProxy( $ip ) ) {
1649 $block = new Block( [
1650 'byText' => wfMessage( 'proxyblocker' )->text(),
1651 'reason' => wfMessage( 'proxyblockreason' )->text(),
1653 'systemBlock' => 'proxy',
1655 $this->blockTrigger
= 'proxy-block';
1656 } elseif ( $this->isAnon() && $this->isDnsBlacklisted( $ip ) ) {
1657 $block = new Block( [
1658 'byText' => wfMessage( 'sorbs' )->text(),
1659 'reason' => wfMessage( 'sorbsreason' )->text(),
1661 'systemBlock' => 'dnsbl',
1663 $this->blockTrigger
= 'openproxy-block';
1667 // (T25343) Apply IP blocks to the contents of XFF headers, if enabled
1668 if ( !$block instanceof Block
1669 && $wgApplyIpBlocksToXff
1671 && !in_array( $ip, $wgProxyWhitelist )
1673 $xff = $this->getRequest()->getHeader( 'X-Forwarded-For' );
1674 $xff = array_map( 'trim', explode( ',', $xff ) );
1675 $xff = array_diff( $xff, [ $ip ] );
1676 $xffblocks = Block
::getBlocksForIPList( $xff, $this->isAnon(), !$bFromSlave );
1677 $block = Block
::chooseBlock( $xffblocks, $xff );
1678 if ( $block instanceof Block
) {
1679 # Mangle the reason to alert the user that the block
1680 # originated from matching the X-Forwarded-For header.
1681 $block->mReason
= wfMessage( 'xffblockreason', $block->mReason
)->text();
1682 $this->blockTrigger
= 'xff-block';
1686 if ( !$block instanceof Block
1689 && IP
::isInRanges( $ip, $wgSoftBlockRanges )
1691 $block = new Block( [
1693 'byText' => 'MediaWiki default',
1694 'reason' => wfMessage( 'softblockrangesreason', $ip )->text(),
1696 'systemBlock' => 'wgSoftBlockRanges',
1698 $this->blockTrigger
= 'config-block';
1701 if ( $block instanceof Block
) {
1702 wfDebug( __METHOD__
. ": Found block.\n" );
1703 $this->mBlock
= $block;
1704 $this->mBlockedby
= $block->getByName();
1705 $this->mBlockreason
= $block->mReason
;
1706 $this->mHideName
= $block->mHideName
;
1707 $this->mAllowUsertalk
= !$block->prevents( 'editownusertalk' );
1709 $this->mBlockedby
= '';
1710 $this->mHideName
= 0;
1711 $this->mAllowUsertalk
= false;
1712 $this->blockTrigger
= false;
1715 // Avoid PHP 7.1 warning of passing $this by reference
1718 Hooks
::run( 'GetBlockedStatus', [ &$user ] );
1722 * Try to load a Block from an ID given in a cookie value.
1723 * @param string|null $blockCookieVal The cookie value to check.
1724 * @return Block|bool The Block object, or false if none could be loaded.
1726 protected function getBlockFromCookieValue( $blockCookieVal ) {
1727 // Make sure there's something to check. The cookie value must start with a number.
1728 if ( strlen( $blockCookieVal ) < 1 ||
!is_numeric( substr( $blockCookieVal, 0, 1 ) ) ) {
1731 // Load the Block from the ID in the cookie.
1732 $blockCookieId = Block
::getIdFromCookieValue( $blockCookieVal );
1733 if ( $blockCookieId !== null ) {
1734 // An ID was found in the cookie.
1735 $tmpBlock = Block
::newFromID( $blockCookieId );
1736 if ( $tmpBlock instanceof Block
) {
1737 // Check the validity of the block.
1738 $blockIsValid = $tmpBlock->getType() == Block
::TYPE_USER
1739 && !$tmpBlock->isExpired()
1740 && $tmpBlock->isAutoblocking();
1741 $config = RequestContext
::getMain()->getConfig();
1742 $useBlockCookie = ( $config->get( 'CookieSetOnAutoblock' ) === true );
1743 if ( $blockIsValid && $useBlockCookie ) {
1745 $this->blockTrigger
= 'cookie-block';
1748 // If the block is not valid, clear the block cookie (but don't delete it,
1749 // because it needs to be cleared from LocalStorage as well and an empty string
1750 // value is checked for in the mediawiki.user.blockcookie module).
1751 $tmpBlock->setCookie( $this->getRequest()->response(), true );
1759 * Whether the given IP is in a DNS blacklist.
1761 * @param string $ip IP to check
1762 * @param bool $checkWhitelist Whether to check the whitelist first
1763 * @return bool True if blacklisted.
1765 public function isDnsBlacklisted( $ip, $checkWhitelist = false ) {
1766 global $wgEnableDnsBlacklist, $wgDnsBlacklistUrls, $wgProxyWhitelist;
1768 if ( !$wgEnableDnsBlacklist ) {
1772 if ( $checkWhitelist && in_array( $ip, $wgProxyWhitelist ) ) {
1776 return $this->inDnsBlacklist( $ip, $wgDnsBlacklistUrls );
1780 * Whether the given IP is in a given DNS blacklist.
1782 * @param string $ip IP to check
1783 * @param string|array $bases Array of Strings: URL of the DNS blacklist
1784 * @return bool True if blacklisted.
1786 public function inDnsBlacklist( $ip, $bases ) {
1788 // @todo FIXME: IPv6 ??? (https://bugs.php.net/bug.php?id=33170)
1789 if ( IP
::isIPv4( $ip ) ) {
1790 // Reverse IP, T23255
1791 $ipReversed = implode( '.', array_reverse( explode( '.', $ip ) ) );
1793 foreach ( (array)$bases as $base ) {
1795 // If we have an access key, use that too (ProjectHoneypot, etc.)
1797 if ( is_array( $base ) ) {
1798 if ( count( $base ) >= 2 ) {
1799 // Access key is 1, base URL is 0
1800 $host = "{$base[1]}.$ipReversed.{$base[0]}";
1802 $host = "$ipReversed.{$base[0]}";
1804 $basename = $base[0];
1806 $host = "$ipReversed.$base";
1810 $ipList = gethostbynamel( $host );
1813 wfDebugLog( 'dnsblacklist', "Hostname $host is {$ipList[0]}, it's a proxy says $basename!" );
1817 wfDebugLog( 'dnsblacklist', "Requested $host, not found in $basename." );
1826 * Check if an IP address is in the local proxy list
1832 public static function isLocallyBlockedProxy( $ip ) {
1833 global $wgProxyList;
1835 if ( !$wgProxyList ) {
1839 if ( !is_array( $wgProxyList ) ) {
1840 // Load values from the specified file
1841 $wgProxyList = array_map( 'trim', file( $wgProxyList ) );
1844 if ( is_array( $wgProxyList ) ) {
1846 // Look for IP as value
1847 array_search( $ip, $wgProxyList ) !== false ||
1848 // Look for IP as key (for backwards-compatility)
1849 array_key_exists( $ip, $wgProxyList )
1859 * Is this user subject to rate limiting?
1861 * @return bool True if rate limited
1863 public function isPingLimitable() {
1864 global $wgRateLimitsExcludedIPs;
1865 if ( IP
::isInRanges( $this->getRequest()->getIP(), $wgRateLimitsExcludedIPs ) ) {
1866 // No other good way currently to disable rate limits
1867 // for specific IPs. :P
1868 // But this is a crappy hack and should die.
1871 return !$this->isAllowed( 'noratelimit' );
1875 * Primitive rate limits: enforce maximum actions per time period
1876 * to put a brake on flooding.
1878 * The method generates both a generic profiling point and a per action one
1879 * (suffix being "-$action".
1881 * @note When using a shared cache like memcached, IP-address
1882 * last-hit counters will be shared across wikis.
1884 * @param string $action Action to enforce; 'edit' if unspecified
1885 * @param int $incrBy Positive amount to increment counter by [defaults to 1]
1886 * @return bool True if a rate limiter was tripped
1888 public function pingLimiter( $action = 'edit', $incrBy = 1 ) {
1889 // Avoid PHP 7.1 warning of passing $this by reference
1891 // Call the 'PingLimiter' hook
1893 if ( !Hooks
::run( 'PingLimiter', [ &$user, $action, &$result, $incrBy ] ) ) {
1897 global $wgRateLimits;
1898 if ( !isset( $wgRateLimits[$action] ) ) {
1902 $limits = array_merge(
1903 [ '&can-bypass' => true ],
1904 $wgRateLimits[$action]
1907 // Some groups shouldn't trigger the ping limiter, ever
1908 if ( $limits['&can-bypass'] && !$this->isPingLimitable() ) {
1913 $id = $this->getId();
1915 $isNewbie = $this->isNewbie();
1919 if ( isset( $limits['anon'] ) ) {
1920 $keys[wfMemcKey( 'limiter', $action, 'anon' )] = $limits['anon'];
1923 // limits for logged-in users
1924 if ( isset( $limits['user'] ) ) {
1925 $userLimit = $limits['user'];
1927 // limits for newbie logged-in users
1928 if ( $isNewbie && isset( $limits['newbie'] ) ) {
1929 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $limits['newbie'];
1933 // limits for anons and for newbie logged-in users
1936 if ( isset( $limits['ip'] ) ) {
1937 $ip = $this->getRequest()->getIP();
1938 $keys["mediawiki:limiter:$action:ip:$ip"] = $limits['ip'];
1940 // subnet-based limits
1941 if ( isset( $limits['subnet'] ) ) {
1942 $ip = $this->getRequest()->getIP();
1943 $subnet = IP
::getSubnet( $ip );
1944 if ( $subnet !== false ) {
1945 $keys["mediawiki:limiter:$action:subnet:$subnet"] = $limits['subnet'];
1950 // Check for group-specific permissions
1951 // If more than one group applies, use the group with the highest limit ratio (max/period)
1952 foreach ( $this->getGroups() as $group ) {
1953 if ( isset( $limits[$group] ) ) {
1954 if ( $userLimit === false
1955 ||
$limits[$group][0] / $limits[$group][1] > $userLimit[0] / $userLimit[1]
1957 $userLimit = $limits[$group];
1962 // Set the user limit key
1963 if ( $userLimit !== false ) {
1964 list( $max, $period ) = $userLimit;
1965 wfDebug( __METHOD__
. ": effective user limit: $max in {$period}s\n" );
1966 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $userLimit;
1969 // ip-based limits for all ping-limitable users
1970 if ( isset( $limits['ip-all'] ) ) {
1971 $ip = $this->getRequest()->getIP();
1972 // ignore if user limit is more permissive
1973 if ( $isNewbie ||
$userLimit === false
1974 ||
$limits['ip-all'][0] / $limits['ip-all'][1] > $userLimit[0] / $userLimit[1] ) {
1975 $keys["mediawiki:limiter:$action:ip-all:$ip"] = $limits['ip-all'];
1979 // subnet-based limits for all ping-limitable users
1980 if ( isset( $limits['subnet-all'] ) ) {
1981 $ip = $this->getRequest()->getIP();
1982 $subnet = IP
::getSubnet( $ip );
1983 if ( $subnet !== false ) {
1984 // ignore if user limit is more permissive
1985 if ( $isNewbie ||
$userLimit === false
1986 ||
$limits['ip-all'][0] / $limits['ip-all'][1]
1987 > $userLimit[0] / $userLimit[1] ) {
1988 $keys["mediawiki:limiter:$action:subnet-all:$subnet"] = $limits['subnet-all'];
1993 $cache = ObjectCache
::getLocalClusterInstance();
1996 foreach ( $keys as $key => $limit ) {
1997 list( $max, $period ) = $limit;
1998 $summary = "(limit $max in {$period}s)";
1999 $count = $cache->get( $key );
2002 if ( $count >= $max ) {
2003 wfDebugLog( 'ratelimit', "User '{$this->getName()}' " .
2004 "(IP {$this->getRequest()->getIP()}) tripped $key at $count $summary" );
2007 wfDebug( __METHOD__
. ": ok. $key at $count $summary\n" );
2010 wfDebug( __METHOD__
. ": adding record for $key $summary\n" );
2011 if ( $incrBy > 0 ) {
2012 $cache->add( $key, 0, intval( $period ) ); // first ping
2015 if ( $incrBy > 0 ) {
2016 $cache->incr( $key, $incrBy );
2024 * Check if user is blocked
2026 * @param bool $bFromSlave Whether to check the replica DB instead of
2027 * the master. Hacked from false due to horrible probs on site.
2028 * @return bool True if blocked, false otherwise
2030 public function isBlocked( $bFromSlave = true ) {
2031 return $this->getBlock( $bFromSlave ) instanceof Block
&& $this->getBlock()->prevents( 'edit' );
2035 * Get the block affecting the user, or null if the user is not blocked
2037 * @param bool $bFromSlave Whether to check the replica DB instead of the master
2038 * @return Block|null
2040 public function getBlock( $bFromSlave = true ) {
2041 $this->getBlockedStatus( $bFromSlave );
2042 return $this->mBlock
instanceof Block ?
$this->mBlock
: null;
2046 * Check if user is blocked from editing a particular article
2048 * @param Title $title Title to check
2049 * @param bool $bFromSlave Whether to check the replica DB instead of the master
2052 public function isBlockedFrom( $title, $bFromSlave = false ) {
2053 global $wgBlockAllowsUTEdit;
2055 $blocked = $this->isBlocked( $bFromSlave );
2056 $allowUsertalk = ( $wgBlockAllowsUTEdit ?
$this->mAllowUsertalk
: false );
2057 // If a user's name is suppressed, they cannot make edits anywhere
2058 if ( !$this->mHideName
&& $allowUsertalk && $title->getText() === $this->getName()
2059 && $title->getNamespace() == NS_USER_TALK
) {
2061 wfDebug( __METHOD__
. ": self-talk page, ignoring any blocks\n" );
2064 Hooks
::run( 'UserIsBlockedFrom', [ $this, $title, &$blocked, &$allowUsertalk ] );
2070 * If user is blocked, return the name of the user who placed the block
2071 * @return string Name of blocker
2073 public function blockedBy() {
2074 $this->getBlockedStatus();
2075 return $this->mBlockedby
;
2079 * If user is blocked, return the specified reason for the block
2080 * @return string Blocking reason
2082 public function blockedFor() {
2083 $this->getBlockedStatus();
2084 return $this->mBlockreason
;
2088 * If user is blocked, return the ID for the block
2089 * @return int Block ID
2091 public function getBlockId() {
2092 $this->getBlockedStatus();
2093 return ( $this->mBlock ?
$this->mBlock
->getId() : false );
2097 * Check if user is blocked on all wikis.
2098 * Do not use for actual edit permission checks!
2099 * This is intended for quick UI checks.
2101 * @param string $ip IP address, uses current client if none given
2102 * @return bool True if blocked, false otherwise
2104 public function isBlockedGlobally( $ip = '' ) {
2105 return $this->getGlobalBlock( $ip ) instanceof Block
;
2109 * Check if user is blocked on all wikis.
2110 * Do not use for actual edit permission checks!
2111 * This is intended for quick UI checks.
2113 * @param string $ip IP address, uses current client if none given
2114 * @return Block|null Block object if blocked, null otherwise
2115 * @throws FatalError
2116 * @throws MWException
2118 public function getGlobalBlock( $ip = '' ) {
2119 if ( $this->mGlobalBlock
!== null ) {
2120 return $this->mGlobalBlock ?
: null;
2122 // User is already an IP?
2123 if ( IP
::isIPAddress( $this->getName() ) ) {
2124 $ip = $this->getName();
2126 $ip = $this->getRequest()->getIP();
2128 // Avoid PHP 7.1 warning of passing $this by reference
2132 Hooks
::run( 'UserIsBlockedGlobally', [ &$user, $ip, &$blocked, &$block ] );
2134 if ( $blocked && $block === null ) {
2135 // back-compat: UserIsBlockedGlobally didn't have $block param first
2136 $block = new Block( [
2138 'systemBlock' => 'global-block'
2142 $this->mGlobalBlock
= $blocked ?
$block : false;
2143 return $this->mGlobalBlock ?
: null;
2147 * Check if user account is locked
2149 * @return bool True if locked, false otherwise
2151 public function isLocked() {
2152 if ( $this->mLocked
!== null ) {
2153 return $this->mLocked
;
2155 // Avoid PHP 7.1 warning of passing $this by reference
2157 $authUser = AuthManager
::callLegacyAuthPlugin( 'getUserInstance', [ &$user ], null );
2158 $this->mLocked
= $authUser && $authUser->isLocked();
2159 Hooks
::run( 'UserIsLocked', [ $this, &$this->mLocked
] );
2160 return $this->mLocked
;
2164 * Check if user account is hidden
2166 * @return bool True if hidden, false otherwise
2168 public function isHidden() {
2169 if ( $this->mHideName
!== null ) {
2170 return $this->mHideName
;
2172 $this->getBlockedStatus();
2173 if ( !$this->mHideName
) {
2174 // Avoid PHP 7.1 warning of passing $this by reference
2176 $authUser = AuthManager
::callLegacyAuthPlugin( 'getUserInstance', [ &$user ], null );
2177 $this->mHideName
= $authUser && $authUser->isHidden();
2178 Hooks
::run( 'UserIsHidden', [ $this, &$this->mHideName
] );
2180 return $this->mHideName
;
2184 * Get the user's ID.
2185 * @return int The user's ID; 0 if the user is anonymous or nonexistent
2187 public function getId() {
2188 if ( $this->mId
=== null && $this->mName
!== null && User
::isIP( $this->mName
) ) {
2189 // Special case, we know the user is anonymous
2191 } elseif ( !$this->isItemLoaded( 'id' ) ) {
2192 // Don't load if this was initialized from an ID
2196 return (int)$this->mId
;
2200 * Set the user and reload all fields according to a given ID
2201 * @param int $v User ID to reload
2203 public function setId( $v ) {
2205 $this->clearInstanceCache( 'id' );
2209 * Get the user name, or the IP of an anonymous user
2210 * @return string User's name or IP address
2212 public function getName() {
2213 if ( $this->isItemLoaded( 'name', 'only' ) ) {
2214 // Special case optimisation
2215 return $this->mName
;
2218 if ( $this->mName
=== false ) {
2220 $this->mName
= IP
::sanitizeIP( $this->getRequest()->getIP() );
2222 return $this->mName
;
2227 * Set the user name.
2229 * This does not reload fields from the database according to the given
2230 * name. Rather, it is used to create a temporary "nonexistent user" for
2231 * later addition to the database. It can also be used to set the IP
2232 * address for an anonymous user to something other than the current
2235 * @note User::newFromName() has roughly the same function, when the named user
2237 * @param string $str New user name to set
2239 public function setName( $str ) {
2241 $this->mName
= $str;
2245 * Get the user's name escaped by underscores.
2246 * @return string Username escaped by underscores.
2248 public function getTitleKey() {
2249 return str_replace( ' ', '_', $this->getName() );
2253 * Check if the user has new messages.
2254 * @return bool True if the user has new messages
2256 public function getNewtalk() {
2259 // Load the newtalk status if it is unloaded (mNewtalk=-1)
2260 if ( $this->mNewtalk
=== -1 ) {
2261 $this->mNewtalk
= false; # reset talk page status
2263 // Check memcached separately for anons, who have no
2264 // entire User object stored in there.
2265 if ( !$this->mId
) {
2266 global $wgDisableAnonTalk;
2267 if ( $wgDisableAnonTalk ) {
2268 // Anon newtalk disabled by configuration.
2269 $this->mNewtalk
= false;
2271 $this->mNewtalk
= $this->checkNewtalk( 'user_ip', $this->getName() );
2274 $this->mNewtalk
= $this->checkNewtalk( 'user_id', $this->mId
);
2278 return (bool)$this->mNewtalk
;
2282 * Return the data needed to construct links for new talk page message
2283 * alerts. If there are new messages, this will return an associative array
2284 * with the following data:
2285 * wiki: The database name of the wiki
2286 * link: Root-relative link to the user's talk page
2287 * rev: The last talk page revision that the user has seen or null. This
2288 * is useful for building diff links.
2289 * If there are no new messages, it returns an empty array.
2290 * @note This function was designed to accomodate multiple talk pages, but
2291 * currently only returns a single link and revision.
2294 public function getNewMessageLinks() {
2295 // Avoid PHP 7.1 warning of passing $this by reference
2298 if ( !Hooks
::run( 'UserRetrieveNewTalks', [ &$user, &$talks ] ) ) {
2300 } elseif ( !$this->getNewtalk() ) {
2303 $utp = $this->getTalkPage();
2304 $dbr = wfGetDB( DB_REPLICA
);
2305 // Get the "last viewed rev" timestamp from the oldest message notification
2306 $timestamp = $dbr->selectField( 'user_newtalk',
2307 'MIN(user_last_timestamp)',
2308 $this->isAnon() ?
[ 'user_ip' => $this->getName() ] : [ 'user_id' => $this->getId() ],
2310 $rev = $timestamp ? Revision
::loadFromTimestamp( $dbr, $utp, $timestamp ) : null;
2311 return [ [ 'wiki' => wfWikiID(), 'link' => $utp->getLocalURL(), 'rev' => $rev ] ];
2315 * Get the revision ID for the last talk page revision viewed by the talk
2317 * @return int|null Revision ID or null
2319 public function getNewMessageRevisionId() {
2320 $newMessageRevisionId = null;
2321 $newMessageLinks = $this->getNewMessageLinks();
2322 if ( $newMessageLinks ) {
2323 // Note: getNewMessageLinks() never returns more than a single link
2324 // and it is always for the same wiki, but we double-check here in
2325 // case that changes some time in the future.
2326 if ( count( $newMessageLinks ) === 1
2327 && $newMessageLinks[0]['wiki'] === wfWikiID()
2328 && $newMessageLinks[0]['rev']
2330 /** @var Revision $newMessageRevision */
2331 $newMessageRevision = $newMessageLinks[0]['rev'];
2332 $newMessageRevisionId = $newMessageRevision->getId();
2335 return $newMessageRevisionId;
2339 * Internal uncached check for new messages
2342 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2343 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2344 * @return bool True if the user has new messages
2346 protected function checkNewtalk( $field, $id ) {
2347 $dbr = wfGetDB( DB_REPLICA
);
2349 $ok = $dbr->selectField( 'user_newtalk', $field, [ $field => $id ], __METHOD__
);
2351 return $ok !== false;
2355 * Add or update the new messages flag
2356 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2357 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2358 * @param Revision|null $curRev New, as yet unseen revision of the user talk page. Ignored if null.
2359 * @return bool True if successful, false otherwise
2361 protected function updateNewtalk( $field, $id, $curRev = null ) {
2362 // Get timestamp of the talk page revision prior to the current one
2363 $prevRev = $curRev ?
$curRev->getPrevious() : false;
2364 $ts = $prevRev ?
$prevRev->getTimestamp() : null;
2365 // Mark the user as having new messages since this revision
2366 $dbw = wfGetDB( DB_MASTER
);
2367 $dbw->insert( 'user_newtalk',
2368 [ $field => $id, 'user_last_timestamp' => $dbw->timestampOrNull( $ts ) ],
2371 if ( $dbw->affectedRows() ) {
2372 wfDebug( __METHOD__
. ": set on ($field, $id)\n" );
2375 wfDebug( __METHOD__
. " already set ($field, $id)\n" );
2381 * Clear the new messages flag for the given user
2382 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2383 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2384 * @return bool True if successful, false otherwise
2386 protected function deleteNewtalk( $field, $id ) {
2387 $dbw = wfGetDB( DB_MASTER
);
2388 $dbw->delete( 'user_newtalk',
2391 if ( $dbw->affectedRows() ) {
2392 wfDebug( __METHOD__
. ": killed on ($field, $id)\n" );
2395 wfDebug( __METHOD__
. ": already gone ($field, $id)\n" );
2401 * Update the 'You have new messages!' status.
2402 * @param bool $val Whether the user has new messages
2403 * @param Revision $curRev New, as yet unseen revision of the user talk
2404 * page. Ignored if null or !$val.
2406 public function setNewtalk( $val, $curRev = null ) {
2407 if ( wfReadOnly() ) {
2412 $this->mNewtalk
= $val;
2414 if ( $this->isAnon() ) {
2416 $id = $this->getName();
2419 $id = $this->getId();
2423 $changed = $this->updateNewtalk( $field, $id, $curRev );
2425 $changed = $this->deleteNewtalk( $field, $id );
2429 $this->invalidateCache();
2434 * Generate a current or new-future timestamp to be stored in the
2435 * user_touched field when we update things.
2436 * @return string Timestamp in TS_MW format
2438 private function newTouchedTimestamp() {
2439 global $wgClockSkewFudge;
2441 $time = wfTimestamp( TS_MW
, time() +
$wgClockSkewFudge );
2442 if ( $this->mTouched
&& $time <= $this->mTouched
) {
2443 $time = wfTimestamp( TS_MW
, wfTimestamp( TS_UNIX
, $this->mTouched
) +
1 );
2450 * Clear user data from memcached
2452 * Use after applying updates to the database; caller's
2453 * responsibility to update user_touched if appropriate.
2455 * Called implicitly from invalidateCache() and saveSettings().
2457 * @param string $mode Use 'refresh' to clear now; otherwise before DB commit
2459 public function clearSharedCache( $mode = 'changed' ) {
2460 if ( !$this->getId() ) {
2464 $cache = ObjectCache
::getMainWANInstance();
2465 $key = $this->getCacheKey( $cache );
2466 if ( $mode === 'refresh' ) {
2467 $cache->delete( $key, 1 );
2469 wfGetDB( DB_MASTER
)->onTransactionPreCommitOrIdle(
2470 function() use ( $cache, $key ) {
2471 $cache->delete( $key );
2479 * Immediately touch the user data cache for this account
2481 * Calls touch() and removes account data from memcached
2483 public function invalidateCache() {
2485 $this->clearSharedCache();
2489 * Update the "touched" timestamp for the user
2491 * This is useful on various login/logout events when making sure that
2492 * a browser or proxy that has multiple tenants does not suffer cache
2493 * pollution where the new user sees the old users content. The value
2494 * of getTouched() is checked when determining 304 vs 200 responses.
2495 * Unlike invalidateCache(), this preserves the User object cache and
2496 * avoids database writes.
2500 public function touch() {
2501 $id = $this->getId();
2503 $key = wfMemcKey( 'user-quicktouched', 'id', $id );
2504 ObjectCache
::getMainWANInstance()->touchCheckKey( $key );
2505 $this->mQuickTouched
= null;
2510 * Validate the cache for this account.
2511 * @param string $timestamp A timestamp in TS_MW format
2514 public function validateCache( $timestamp ) {
2515 return ( $timestamp >= $this->getTouched() );
2519 * Get the user touched timestamp
2521 * Use this value only to validate caches via inequalities
2522 * such as in the case of HTTP If-Modified-Since response logic
2524 * @return string TS_MW Timestamp
2526 public function getTouched() {
2530 if ( $this->mQuickTouched
=== null ) {
2531 $key = wfMemcKey( 'user-quicktouched', 'id', $this->mId
);
2532 $cache = ObjectCache
::getMainWANInstance();
2534 $this->mQuickTouched
= wfTimestamp( TS_MW
, $cache->getCheckKeyTime( $key ) );
2537 return max( $this->mTouched
, $this->mQuickTouched
);
2540 return $this->mTouched
;
2544 * Get the user_touched timestamp field (time of last DB updates)
2545 * @return string TS_MW Timestamp
2548 public function getDBTouched() {
2551 return $this->mTouched
;
2555 * Set the password and reset the random token.
2556 * Calls through to authentication plugin if necessary;
2557 * will have no effect if the auth plugin refuses to
2558 * pass the change through or if the legal password
2561 * As a special case, setting the password to null
2562 * wipes it, so the account cannot be logged in until
2563 * a new password is set, for instance via e-mail.
2565 * @deprecated since 1.27, use AuthManager instead
2566 * @param string $str New password to set
2567 * @throws PasswordError On failure
2570 public function setPassword( $str ) {
2571 return $this->setPasswordInternal( $str );
2575 * Set the password and reset the random token unconditionally.
2577 * @deprecated since 1.27, use AuthManager instead
2578 * @param string|null $str New password to set or null to set an invalid
2579 * password hash meaning that the user will not be able to log in
2580 * through the web interface.
2582 public function setInternalPassword( $str ) {
2583 $this->setPasswordInternal( $str );
2587 * Actually set the password and such
2588 * @since 1.27 cannot set a password for a user not in the database
2589 * @param string|null $str New password to set or null to set an invalid
2590 * password hash meaning that the user will not be able to log in
2591 * through the web interface.
2592 * @return bool Success
2594 private function setPasswordInternal( $str ) {
2595 $manager = AuthManager
::singleton();
2597 // If the user doesn't exist yet, fail
2598 if ( !$manager->userExists( $this->getName() ) ) {
2599 throw new LogicException( 'Cannot set a password for a user that is not in the database.' );
2602 $status = $this->changeAuthenticationData( [
2603 'username' => $this->getName(),
2607 if ( !$status->isGood() ) {
2608 \MediaWiki\Logger\LoggerFactory
::getInstance( 'authentication' )
2609 ->info( __METHOD__
. ': Password change rejected: '
2610 . $status->getWikiText( null, null, 'en' ) );
2614 $this->setOption( 'watchlisttoken', false );
2615 SessionManager
::singleton()->invalidateSessionsForUser( $this );
2621 * Changes credentials of the user.
2623 * This is a convenience wrapper around AuthManager::changeAuthenticationData.
2624 * Note that this can return a status that isOK() but not isGood() on certain types of failures,
2625 * e.g. when no provider handled the change.
2627 * @param array $data A set of authentication data in fieldname => value format. This is the
2628 * same data you would pass the changeauthenticationdata API - 'username', 'password' etc.
2632 public function changeAuthenticationData( array $data ) {
2633 $manager = AuthManager
::singleton();
2634 $reqs = $manager->getAuthenticationRequests( AuthManager
::ACTION_CHANGE
, $this );
2635 $reqs = AuthenticationRequest
::loadRequestsFromSubmission( $reqs, $data );
2637 $status = Status
::newGood( 'ignored' );
2638 foreach ( $reqs as $req ) {
2639 $status->merge( $manager->allowsAuthenticationDataChange( $req ), true );
2641 if ( $status->getValue() === 'ignored' ) {
2642 $status->warning( 'authenticationdatachange-ignored' );
2645 if ( $status->isGood() ) {
2646 foreach ( $reqs as $req ) {
2647 $manager->changeAuthenticationData( $req );
2654 * Get the user's current token.
2655 * @param bool $forceCreation Force the generation of a new token if the
2656 * user doesn't have one (default=true for backwards compatibility).
2657 * @return string|null Token
2659 public function getToken( $forceCreation = true ) {
2660 global $wgAuthenticationTokenVersion;
2663 if ( !$this->mToken
&& $forceCreation ) {
2667 if ( !$this->mToken
) {
2668 // The user doesn't have a token, return null to indicate that.
2670 } elseif ( $this->mToken
=== self
::INVALID_TOKEN
) {
2671 // We return a random value here so existing token checks are very
2673 return MWCryptRand
::generateHex( self
::TOKEN_LENGTH
);
2674 } elseif ( $wgAuthenticationTokenVersion === null ) {
2675 // $wgAuthenticationTokenVersion not in use, so return the raw secret
2676 return $this->mToken
;
2678 // $wgAuthenticationTokenVersion in use, so hmac it.
2679 $ret = MWCryptHash
::hmac( $wgAuthenticationTokenVersion, $this->mToken
, false );
2681 // The raw hash can be overly long. Shorten it up.
2682 $len = max( 32, self
::TOKEN_LENGTH
);
2683 if ( strlen( $ret ) < $len ) {
2684 // Should never happen, even md5 is 128 bits
2685 throw new \
UnexpectedValueException( 'Hmac returned less than 128 bits' );
2687 return substr( $ret, -$len );
2692 * Set the random token (used for persistent authentication)
2693 * Called from loadDefaults() among other places.
2695 * @param string|bool $token If specified, set the token to this value
2697 public function setToken( $token = false ) {
2699 if ( $this->mToken
=== self
::INVALID_TOKEN
) {
2700 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
2701 ->debug( __METHOD__
. ": Ignoring attempt to set token for system user \"$this\"" );
2702 } elseif ( !$token ) {
2703 $this->mToken
= MWCryptRand
::generateHex( self
::TOKEN_LENGTH
);
2705 $this->mToken
= $token;
2710 * Set the password for a password reminder or new account email
2712 * @deprecated Removed in 1.27. Use PasswordReset instead.
2713 * @param string $str New password to set or null to set an invalid
2714 * password hash meaning that the user will not be able to use it
2715 * @param bool $throttle If true, reset the throttle timestamp to the present
2717 public function setNewpassword( $str, $throttle = true ) {
2718 throw new BadMethodCallException( __METHOD__
. ' has been removed in 1.27' );
2722 * Get the user's e-mail address
2723 * @return string User's email address
2725 public function getEmail() {
2727 Hooks
::run( 'UserGetEmail', [ $this, &$this->mEmail
] );
2728 return $this->mEmail
;
2732 * Get the timestamp of the user's e-mail authentication
2733 * @return string TS_MW timestamp
2735 public function getEmailAuthenticationTimestamp() {
2737 Hooks
::run( 'UserGetEmailAuthenticationTimestamp', [ $this, &$this->mEmailAuthenticated
] );
2738 return $this->mEmailAuthenticated
;
2742 * Set the user's e-mail address
2743 * @param string $str New e-mail address
2745 public function setEmail( $str ) {
2747 if ( $str == $this->mEmail
) {
2750 $this->invalidateEmail();
2751 $this->mEmail
= $str;
2752 Hooks
::run( 'UserSetEmail', [ $this, &$this->mEmail
] );
2756 * Set the user's e-mail address and a confirmation mail if needed.
2759 * @param string $str New e-mail address
2762 public function setEmailWithConfirmation( $str ) {
2763 global $wgEnableEmail, $wgEmailAuthentication;
2765 if ( !$wgEnableEmail ) {
2766 return Status
::newFatal( 'emaildisabled' );
2769 $oldaddr = $this->getEmail();
2770 if ( $str === $oldaddr ) {
2771 return Status
::newGood( true );
2774 $type = $oldaddr != '' ?
'changed' : 'set';
2775 $notificationResult = null;
2777 if ( $wgEmailAuthentication ) {
2778 // Send the user an email notifying the user of the change in registered
2779 // email address on their previous email address
2780 if ( $type == 'changed' ) {
2781 $change = $str != '' ?
'changed' : 'removed';
2782 $notificationResult = $this->sendMail(
2783 wfMessage( 'notificationemail_subject_' . $change )->text(),
2784 wfMessage( 'notificationemail_body_' . $change,
2785 $this->getRequest()->getIP(),
2792 $this->setEmail( $str );
2794 if ( $str !== '' && $wgEmailAuthentication ) {
2795 // Send a confirmation request to the new address if needed
2796 $result = $this->sendConfirmationMail( $type );
2798 if ( $notificationResult !== null ) {
2799 $result->merge( $notificationResult );
2802 if ( $result->isGood() ) {
2803 // Say to the caller that a confirmation and notification mail has been sent
2804 $result->value
= 'eauth';
2807 $result = Status
::newGood( true );
2814 * Get the user's real name
2815 * @return string User's real name
2817 public function getRealName() {
2818 if ( !$this->isItemLoaded( 'realname' ) ) {
2822 return $this->mRealName
;
2826 * Set the user's real name
2827 * @param string $str New real name
2829 public function setRealName( $str ) {
2831 $this->mRealName
= $str;
2835 * Get the user's current setting for a given option.
2837 * @param string $oname The option to check
2838 * @param string $defaultOverride A default value returned if the option does not exist
2839 * @param bool $ignoreHidden Whether to ignore the effects of $wgHiddenPrefs
2840 * @return string|null User's current value for the option
2841 * @see getBoolOption()
2842 * @see getIntOption()
2844 public function getOption( $oname, $defaultOverride = null, $ignoreHidden = false ) {
2845 global $wgHiddenPrefs;
2846 $this->loadOptions();
2848 # We want 'disabled' preferences to always behave as the default value for
2849 # users, even if they have set the option explicitly in their settings (ie they
2850 # set it, and then it was disabled removing their ability to change it). But
2851 # we don't want to erase the preferences in the database in case the preference
2852 # is re-enabled again. So don't touch $mOptions, just override the returned value
2853 if ( !$ignoreHidden && in_array( $oname, $wgHiddenPrefs ) ) {
2854 return self
::getDefaultOption( $oname );
2857 if ( array_key_exists( $oname, $this->mOptions
) ) {
2858 return $this->mOptions
[$oname];
2860 return $defaultOverride;
2865 * Get all user's options
2867 * @param int $flags Bitwise combination of:
2868 * User::GETOPTIONS_EXCLUDE_DEFAULTS Exclude user options that are set
2869 * to the default value. (Since 1.25)
2872 public function getOptions( $flags = 0 ) {
2873 global $wgHiddenPrefs;
2874 $this->loadOptions();
2875 $options = $this->mOptions
;
2877 # We want 'disabled' preferences to always behave as the default value for
2878 # users, even if they have set the option explicitly in their settings (ie they
2879 # set it, and then it was disabled removing their ability to change it). But
2880 # we don't want to erase the preferences in the database in case the preference
2881 # is re-enabled again. So don't touch $mOptions, just override the returned value
2882 foreach ( $wgHiddenPrefs as $pref ) {
2883 $default = self
::getDefaultOption( $pref );
2884 if ( $default !== null ) {
2885 $options[$pref] = $default;
2889 if ( $flags & self
::GETOPTIONS_EXCLUDE_DEFAULTS
) {
2890 $options = array_diff_assoc( $options, self
::getDefaultOptions() );
2897 * Get the user's current setting for a given option, as a boolean value.
2899 * @param string $oname The option to check
2900 * @return bool User's current value for the option
2903 public function getBoolOption( $oname ) {
2904 return (bool)$this->getOption( $oname );
2908 * Get the user's current setting for a given option, as an integer value.
2910 * @param string $oname The option to check
2911 * @param int $defaultOverride A default value returned if the option does not exist
2912 * @return int User's current value for the option
2915 public function getIntOption( $oname, $defaultOverride = 0 ) {
2916 $val = $this->getOption( $oname );
2918 $val = $defaultOverride;
2920 return intval( $val );
2924 * Set the given option for a user.
2926 * You need to call saveSettings() to actually write to the database.
2928 * @param string $oname The option to set
2929 * @param mixed $val New value to set
2931 public function setOption( $oname, $val ) {
2932 $this->loadOptions();
2934 // Explicitly NULL values should refer to defaults
2935 if ( is_null( $val ) ) {
2936 $val = self
::getDefaultOption( $oname );
2939 $this->mOptions
[$oname] = $val;
2943 * Get a token stored in the preferences (like the watchlist one),
2944 * resetting it if it's empty (and saving changes).
2946 * @param string $oname The option name to retrieve the token from
2947 * @return string|bool User's current value for the option, or false if this option is disabled.
2948 * @see resetTokenFromOption()
2950 * @deprecated since 1.26 Applications should use the OAuth extension
2952 public function getTokenFromOption( $oname ) {
2953 global $wgHiddenPrefs;
2955 $id = $this->getId();
2956 if ( !$id ||
in_array( $oname, $wgHiddenPrefs ) ) {
2960 $token = $this->getOption( $oname );
2962 // Default to a value based on the user token to avoid space
2963 // wasted on storing tokens for all users. When this option
2964 // is set manually by the user, only then is it stored.
2965 $token = hash_hmac( 'sha1', "$oname:$id", $this->getToken() );
2972 * Reset a token stored in the preferences (like the watchlist one).
2973 * *Does not* save user's preferences (similarly to setOption()).
2975 * @param string $oname The option name to reset the token in
2976 * @return string|bool New token value, or false if this option is disabled.
2977 * @see getTokenFromOption()
2980 public function resetTokenFromOption( $oname ) {
2981 global $wgHiddenPrefs;
2982 if ( in_array( $oname, $wgHiddenPrefs ) ) {
2986 $token = MWCryptRand
::generateHex( 40 );
2987 $this->setOption( $oname, $token );
2992 * Return a list of the types of user options currently returned by
2993 * User::getOptionKinds().
2995 * Currently, the option kinds are:
2996 * - 'registered' - preferences which are registered in core MediaWiki or
2997 * by extensions using the UserGetDefaultOptions hook.
2998 * - 'registered-multiselect' - as above, using the 'multiselect' type.
2999 * - 'registered-checkmatrix' - as above, using the 'checkmatrix' type.
3000 * - 'userjs' - preferences with names starting with 'userjs-', intended to
3001 * be used by user scripts.
3002 * - 'special' - "preferences" that are not accessible via User::getOptions
3003 * or User::setOptions.
3004 * - 'unused' - preferences about which MediaWiki doesn't know anything.
3005 * These are usually legacy options, removed in newer versions.
3007 * The API (and possibly others) use this function to determine the possible
3008 * option types for validation purposes, so make sure to update this when a
3009 * new option kind is added.
3011 * @see User::getOptionKinds
3012 * @return array Option kinds
3014 public static function listOptionKinds() {
3017 'registered-multiselect',
3018 'registered-checkmatrix',
3026 * Return an associative array mapping preferences keys to the kind of a preference they're
3027 * used for. Different kinds are handled differently when setting or reading preferences.
3029 * See User::listOptionKinds for the list of valid option types that can be provided.
3031 * @see User::listOptionKinds
3032 * @param IContextSource $context
3033 * @param array $options Assoc. array with options keys to check as keys.
3034 * Defaults to $this->mOptions.
3035 * @return array The key => kind mapping data
3037 public function getOptionKinds( IContextSource
$context, $options = null ) {
3038 $this->loadOptions();
3039 if ( $options === null ) {
3040 $options = $this->mOptions
;
3043 $prefs = Preferences
::getPreferences( $this, $context );
3046 // Pull out the "special" options, so they don't get converted as
3047 // multiselect or checkmatrix.
3048 $specialOptions = array_fill_keys( Preferences
::getSaveBlacklist(), true );
3049 foreach ( $specialOptions as $name => $value ) {
3050 unset( $prefs[$name] );
3053 // Multiselect and checkmatrix options are stored in the database with
3054 // one key per option, each having a boolean value. Extract those keys.
3055 $multiselectOptions = [];
3056 foreach ( $prefs as $name => $info ) {
3057 if ( ( isset( $info['type'] ) && $info['type'] == 'multiselect' ) ||
3058 ( isset( $info['class'] ) && $info['class'] == 'HTMLMultiSelectField' ) ) {
3059 $opts = HTMLFormField
::flattenOptions( $info['options'] );
3060 $prefix = isset( $info['prefix'] ) ?
$info['prefix'] : $name;
3062 foreach ( $opts as $value ) {
3063 $multiselectOptions["$prefix$value"] = true;
3066 unset( $prefs[$name] );
3069 $checkmatrixOptions = [];
3070 foreach ( $prefs as $name => $info ) {
3071 if ( ( isset( $info['type'] ) && $info['type'] == 'checkmatrix' ) ||
3072 ( isset( $info['class'] ) && $info['class'] == 'HTMLCheckMatrix' ) ) {
3073 $columns = HTMLFormField
::flattenOptions( $info['columns'] );
3074 $rows = HTMLFormField
::flattenOptions( $info['rows'] );
3075 $prefix = isset( $info['prefix'] ) ?
$info['prefix'] : $name;
3077 foreach ( $columns as $column ) {
3078 foreach ( $rows as $row ) {
3079 $checkmatrixOptions["$prefix$column-$row"] = true;
3083 unset( $prefs[$name] );
3087 // $value is ignored
3088 foreach ( $options as $key => $value ) {
3089 if ( isset( $prefs[$key] ) ) {
3090 $mapping[$key] = 'registered';
3091 } elseif ( isset( $multiselectOptions[$key] ) ) {
3092 $mapping[$key] = 'registered-multiselect';
3093 } elseif ( isset( $checkmatrixOptions[$key] ) ) {
3094 $mapping[$key] = 'registered-checkmatrix';
3095 } elseif ( isset( $specialOptions[$key] ) ) {
3096 $mapping[$key] = 'special';
3097 } elseif ( substr( $key, 0, 7 ) === 'userjs-' ) {
3098 $mapping[$key] = 'userjs';
3100 $mapping[$key] = 'unused';
3108 * Reset certain (or all) options to the site defaults
3110 * The optional parameter determines which kinds of preferences will be reset.
3111 * Supported values are everything that can be reported by getOptionKinds()
3112 * and 'all', which forces a reset of *all* preferences and overrides everything else.
3114 * @param array|string $resetKinds Which kinds of preferences to reset. Defaults to
3115 * array( 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' )
3116 * for backwards-compatibility.
3117 * @param IContextSource|null $context Context source used when $resetKinds
3118 * does not contain 'all', passed to getOptionKinds().
3119 * Defaults to RequestContext::getMain() when null.
3121 public function resetOptions(
3122 $resetKinds = [ 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' ],
3123 IContextSource
$context = null
3126 $defaultOptions = self
::getDefaultOptions();
3128 if ( !is_array( $resetKinds ) ) {
3129 $resetKinds = [ $resetKinds ];
3132 if ( in_array( 'all', $resetKinds ) ) {
3133 $newOptions = $defaultOptions;
3135 if ( $context === null ) {
3136 $context = RequestContext
::getMain();
3139 $optionKinds = $this->getOptionKinds( $context );
3140 $resetKinds = array_intersect( $resetKinds, self
::listOptionKinds() );
3143 // Use default values for the options that should be deleted, and
3144 // copy old values for the ones that shouldn't.
3145 foreach ( $this->mOptions
as $key => $value ) {
3146 if ( in_array( $optionKinds[$key], $resetKinds ) ) {
3147 if ( array_key_exists( $key, $defaultOptions ) ) {
3148 $newOptions[$key] = $defaultOptions[$key];
3151 $newOptions[$key] = $value;
3156 Hooks
::run( 'UserResetAllOptions', [ $this, &$newOptions, $this->mOptions
, $resetKinds ] );
3158 $this->mOptions
= $newOptions;
3159 $this->mOptionsLoaded
= true;
3163 * Get the user's preferred date format.
3164 * @return string User's preferred date format
3166 public function getDatePreference() {
3167 // Important migration for old data rows
3168 if ( is_null( $this->mDatePreference
) ) {
3170 $value = $this->getOption( 'date' );
3171 $map = $wgLang->getDatePreferenceMigrationMap();
3172 if ( isset( $map[$value] ) ) {
3173 $value = $map[$value];
3175 $this->mDatePreference
= $value;
3177 return $this->mDatePreference
;
3181 * Determine based on the wiki configuration and the user's options,
3182 * whether this user must be over HTTPS no matter what.
3186 public function requiresHTTPS() {
3187 global $wgSecureLogin;
3188 if ( !$wgSecureLogin ) {
3191 $https = $this->getBoolOption( 'prefershttps' );
3192 Hooks
::run( 'UserRequiresHTTPS', [ $this, &$https ] );
3194 $https = wfCanIPUseHTTPS( $this->getRequest()->getIP() );
3201 * Get the user preferred stub threshold
3205 public function getStubThreshold() {
3206 global $wgMaxArticleSize; # Maximum article size, in Kb
3207 $threshold = $this->getIntOption( 'stubthreshold' );
3208 if ( $threshold > $wgMaxArticleSize * 1024 ) {
3209 // If they have set an impossible value, disable the preference
3210 // so we can use the parser cache again.
3217 * Get the permissions this user has.
3218 * @return array Array of String permission names
3220 public function getRights() {
3221 if ( is_null( $this->mRights
) ) {
3222 $this->mRights
= self
::getGroupPermissions( $this->getEffectiveGroups() );
3223 Hooks
::run( 'UserGetRights', [ $this, &$this->mRights
] );
3225 // Deny any rights denied by the user's session, unless this
3226 // endpoint has no sessions.
3227 if ( !defined( 'MW_NO_SESSION' ) ) {
3228 $allowedRights = $this->getRequest()->getSession()->getAllowedUserRights();
3229 if ( $allowedRights !== null ) {
3230 $this->mRights
= array_intersect( $this->mRights
, $allowedRights );
3234 // Force reindexation of rights when a hook has unset one of them
3235 $this->mRights
= array_values( array_unique( $this->mRights
) );
3237 // If block disables login, we should also remove any
3238 // extra rights blocked users might have, in case the
3239 // blocked user has a pre-existing session (T129738).
3240 // This is checked here for cases where people only call
3241 // $user->isAllowed(). It is also checked in Title::checkUserBlock()
3242 // to give a better error message in the common case.
3243 $config = RequestContext
::getMain()->getConfig();
3245 $this->isLoggedIn() &&
3246 $config->get( 'BlockDisablesLogin' ) &&
3250 $this->mRights
= array_intersect( $this->mRights
, $anon->getRights() );
3253 return $this->mRights
;
3257 * Get the list of explicit group memberships this user has.
3258 * The implicit * and user groups are not included.
3259 * @return array Array of String internal group names
3261 public function getGroups() {
3263 $this->loadGroups();
3264 return array_keys( $this->mGroupMemberships
);
3268 * Get the list of explicit group memberships this user has, stored as
3269 * UserGroupMembership objects. Implicit groups are not included.
3271 * @return array Associative array of (group name as string => UserGroupMembership object)
3274 public function getGroupMemberships() {
3276 $this->loadGroups();
3277 return $this->mGroupMemberships
;
3281 * Get the list of implicit group memberships this user has.
3282 * This includes all explicit groups, plus 'user' if logged in,
3283 * '*' for all accounts, and autopromoted groups
3284 * @param bool $recache Whether to avoid the cache
3285 * @return array Array of String internal group names
3287 public function getEffectiveGroups( $recache = false ) {
3288 if ( $recache ||
is_null( $this->mEffectiveGroups
) ) {
3289 $this->mEffectiveGroups
= array_unique( array_merge(
3290 $this->getGroups(), // explicit groups
3291 $this->getAutomaticGroups( $recache ) // implicit groups
3293 // Avoid PHP 7.1 warning of passing $this by reference
3295 // Hook for additional groups
3296 Hooks
::run( 'UserEffectiveGroups', [ &$user, &$this->mEffectiveGroups
] );
3297 // Force reindexation of groups when a hook has unset one of them
3298 $this->mEffectiveGroups
= array_values( array_unique( $this->mEffectiveGroups
) );
3300 return $this->mEffectiveGroups
;
3304 * Get the list of implicit group memberships this user has.
3305 * This includes 'user' if logged in, '*' for all accounts,
3306 * and autopromoted groups
3307 * @param bool $recache Whether to avoid the cache
3308 * @return array Array of String internal group names
3310 public function getAutomaticGroups( $recache = false ) {
3311 if ( $recache ||
is_null( $this->mImplicitGroups
) ) {
3312 $this->mImplicitGroups
= [ '*' ];
3313 if ( $this->getId() ) {
3314 $this->mImplicitGroups
[] = 'user';
3316 $this->mImplicitGroups
= array_unique( array_merge(
3317 $this->mImplicitGroups
,
3318 Autopromote
::getAutopromoteGroups( $this )
3322 // Assure data consistency with rights/groups,
3323 // as getEffectiveGroups() depends on this function
3324 $this->mEffectiveGroups
= null;
3327 return $this->mImplicitGroups
;
3331 * Returns the groups the user has belonged to.
3333 * The user may still belong to the returned groups. Compare with getGroups().
3335 * The function will not return groups the user had belonged to before MW 1.17
3337 * @return array Names of the groups the user has belonged to.
3339 public function getFormerGroups() {
3342 if ( is_null( $this->mFormerGroups
) ) {
3343 $db = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
3344 ?
wfGetDB( DB_MASTER
)
3345 : wfGetDB( DB_REPLICA
);
3346 $res = $db->select( 'user_former_groups',
3348 [ 'ufg_user' => $this->mId
],
3350 $this->mFormerGroups
= [];
3351 foreach ( $res as $row ) {
3352 $this->mFormerGroups
[] = $row->ufg_group
;
3356 return $this->mFormerGroups
;
3360 * Get the user's edit count.
3361 * @return int|null Null for anonymous users
3363 public function getEditCount() {
3364 if ( !$this->getId() ) {
3368 if ( $this->mEditCount
=== null ) {
3369 /* Populate the count, if it has not been populated yet */
3370 $dbr = wfGetDB( DB_REPLICA
);
3371 // check if the user_editcount field has been initialized
3372 $count = $dbr->selectField(
3373 'user', 'user_editcount',
3374 [ 'user_id' => $this->mId
],
3378 if ( $count === null ) {
3379 // it has not been initialized. do so.
3380 $count = $this->initEditCount();
3382 $this->mEditCount
= $count;
3384 return (int)$this->mEditCount
;
3388 * Add the user to the given group. This takes immediate effect.
3389 * If the user is already in the group, the expiry time will be updated to the new
3390 * expiry time. (If $expiry is omitted or null, the membership will be altered to
3393 * @param string $group Name of the group to add
3394 * @param string $expiry Optional expiry timestamp in any format acceptable to
3395 * wfTimestamp(), or null if the group assignment should not expire
3398 public function addGroup( $group, $expiry = null ) {
3400 $this->loadGroups();
3403 $expiry = wfTimestamp( TS_MW
, $expiry );
3406 if ( !Hooks
::run( 'UserAddGroup', [ $this, &$group, &$expiry ] ) ) {
3410 // create the new UserGroupMembership and put it in the DB
3411 $ugm = new UserGroupMembership( $this->mId
, $group, $expiry );
3412 if ( !$ugm->insert( true ) ) {
3416 $this->mGroupMemberships
[$group] = $ugm;
3418 // Refresh the groups caches, and clear the rights cache so it will be
3419 // refreshed on the next call to $this->getRights().
3420 $this->getEffectiveGroups( true );
3421 $this->mRights
= null;
3423 $this->invalidateCache();
3429 * Remove the user from the given group.
3430 * This takes immediate effect.
3431 * @param string $group Name of the group to remove
3434 public function removeGroup( $group ) {
3437 if ( !Hooks
::run( 'UserRemoveGroup', [ $this, &$group ] ) ) {
3441 $ugm = UserGroupMembership
::getMembership( $this->mId
, $group );
3442 // delete the membership entry
3443 if ( !$ugm ||
!$ugm->delete() ) {
3447 $this->loadGroups();
3448 unset( $this->mGroupMemberships
[$group] );
3450 // Refresh the groups caches, and clear the rights cache so it will be
3451 // refreshed on the next call to $this->getRights().
3452 $this->getEffectiveGroups( true );
3453 $this->mRights
= null;
3455 $this->invalidateCache();
3461 * Get whether the user is logged in
3464 public function isLoggedIn() {
3465 return $this->getId() != 0;
3469 * Get whether the user is anonymous
3472 public function isAnon() {
3473 return !$this->isLoggedIn();
3477 * @return bool Whether this user is flagged as being a bot role account
3480 public function isBot() {
3481 if ( in_array( 'bot', $this->getGroups() ) && $this->isAllowed( 'bot' ) ) {
3486 Hooks
::run( "UserIsBot", [ $this, &$isBot ] );
3492 * Check if user is allowed to access a feature / make an action
3494 * @param string ... Permissions to test
3495 * @return bool True if user is allowed to perform *any* of the given actions
3497 public function isAllowedAny() {
3498 $permissions = func_get_args();
3499 foreach ( $permissions as $permission ) {
3500 if ( $this->isAllowed( $permission ) ) {
3509 * @param string ... Permissions to test
3510 * @return bool True if the user is allowed to perform *all* of the given actions
3512 public function isAllowedAll() {
3513 $permissions = func_get_args();
3514 foreach ( $permissions as $permission ) {
3515 if ( !$this->isAllowed( $permission ) ) {
3523 * Internal mechanics of testing a permission
3524 * @param string $action
3527 public function isAllowed( $action = '' ) {
3528 if ( $action === '' ) {
3529 return true; // In the spirit of DWIM
3531 // Use strict parameter to avoid matching numeric 0 accidentally inserted
3532 // by misconfiguration: 0 == 'foo'
3533 return in_array( $action, $this->getRights(), true );
3537 * Check whether to enable recent changes patrol features for this user
3538 * @return bool True or false
3540 public function useRCPatrol() {
3541 global $wgUseRCPatrol;
3542 return $wgUseRCPatrol && $this->isAllowedAny( 'patrol', 'patrolmarks' );
3546 * Check whether to enable new pages patrol features for this user
3547 * @return bool True or false
3549 public function useNPPatrol() {
3550 global $wgUseRCPatrol, $wgUseNPPatrol;
3552 ( $wgUseRCPatrol ||
$wgUseNPPatrol )
3553 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3558 * Check whether to enable new files patrol features for this user
3559 * @return bool True or false
3561 public function useFilePatrol() {
3562 global $wgUseRCPatrol, $wgUseFilePatrol;
3564 ( $wgUseRCPatrol ||
$wgUseFilePatrol )
3565 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3570 * Get the WebRequest object to use with this object
3572 * @return WebRequest
3574 public function getRequest() {
3575 if ( $this->mRequest
) {
3576 return $this->mRequest
;
3584 * Check the watched status of an article.
3585 * @since 1.22 $checkRights parameter added
3586 * @param Title $title Title of the article to look at
3587 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3588 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3591 public function isWatched( $title, $checkRights = self
::CHECK_USER_RIGHTS
) {
3592 if ( $title->isWatchable() && ( !$checkRights ||
$this->isAllowed( 'viewmywatchlist' ) ) ) {
3593 return MediaWikiServices
::getInstance()->getWatchedItemStore()->isWatched( $this, $title );
3600 * @since 1.22 $checkRights parameter added
3601 * @param Title $title Title of the article to look at
3602 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3603 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3605 public function addWatch( $title, $checkRights = self
::CHECK_USER_RIGHTS
) {
3606 if ( !$checkRights ||
$this->isAllowed( 'editmywatchlist' ) ) {
3607 MediaWikiServices
::getInstance()->getWatchedItemStore()->addWatchBatchForUser(
3609 [ $title->getSubjectPage(), $title->getTalkPage() ]
3612 $this->invalidateCache();
3616 * Stop watching an article.
3617 * @since 1.22 $checkRights parameter added
3618 * @param Title $title Title of the article to look at
3619 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3620 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3622 public function removeWatch( $title, $checkRights = self
::CHECK_USER_RIGHTS
) {
3623 if ( !$checkRights ||
$this->isAllowed( 'editmywatchlist' ) ) {
3624 $store = MediaWikiServices
::getInstance()->getWatchedItemStore();
3625 $store->removeWatch( $this, $title->getSubjectPage() );
3626 $store->removeWatch( $this, $title->getTalkPage() );
3628 $this->invalidateCache();
3632 * Clear the user's notification timestamp for the given title.
3633 * If e-notif e-mails are on, they will receive notification mails on
3634 * the next change of the page if it's watched etc.
3635 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3636 * @param Title $title Title of the article to look at
3637 * @param int $oldid The revision id being viewed. If not given or 0, latest revision is assumed.
3639 public function clearNotification( &$title, $oldid = 0 ) {
3640 global $wgUseEnotif, $wgShowUpdatedMarker;
3642 // Do nothing if the database is locked to writes
3643 if ( wfReadOnly() ) {
3647 // Do nothing if not allowed to edit the watchlist
3648 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
3652 // If we're working on user's talk page, we should update the talk page message indicator
3653 if ( $title->getNamespace() == NS_USER_TALK
&& $title->getText() == $this->getName() ) {
3654 // Avoid PHP 7.1 warning of passing $this by reference
3656 if ( !Hooks
::run( 'UserClearNewTalkNotification', [ &$user, $oldid ] ) ) {
3660 // Try to update the DB post-send and only if needed...
3661 DeferredUpdates
::addCallableUpdate( function() use ( $title, $oldid ) {
3662 if ( !$this->getNewtalk() ) {
3663 return; // no notifications to clear
3666 // Delete the last notifications (they stack up)
3667 $this->setNewtalk( false );
3669 // If there is a new, unseen, revision, use its timestamp
3671 ?
$title->getNextRevisionID( $oldid, Title
::GAID_FOR_UPDATE
)
3674 $this->setNewtalk( true, Revision
::newFromId( $nextid ) );
3679 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3683 if ( $this->isAnon() ) {
3684 // Nothing else to do...
3688 // Only update the timestamp if the page is being watched.
3689 // The query to find out if it is watched is cached both in memcached and per-invocation,
3690 // and when it does have to be executed, it can be on a replica DB
3691 // If this is the user's newtalk page, we always update the timestamp
3693 if ( $title->getNamespace() == NS_USER_TALK
&& $title->getText() == $this->getName() ) {
3697 MediaWikiServices
::getInstance()->getWatchedItemStore()
3698 ->resetNotificationTimestamp( $this, $title, $force, $oldid );
3702 * Resets all of the given user's page-change notification timestamps.
3703 * If e-notif e-mails are on, they will receive notification mails on
3704 * the next change of any watched page.
3705 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3707 public function clearAllNotifications() {
3708 global $wgUseEnotif, $wgShowUpdatedMarker;
3709 // Do nothing if not allowed to edit the watchlist
3710 if ( wfReadOnly() ||
!$this->isAllowed( 'editmywatchlist' ) ) {
3714 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3715 $this->setNewtalk( false );
3719 $id = $this->getId();
3724 $dbw = wfGetDB( DB_MASTER
);
3725 $asOfTimes = array_unique( $dbw->selectFieldValues(
3727 'wl_notificationtimestamp',
3728 [ 'wl_user' => $id, 'wl_notificationtimestamp IS NOT NULL' ],
3730 [ 'ORDER BY' => 'wl_notificationtimestamp DESC', 'LIMIT' => 500 ]
3732 if ( !$asOfTimes ) {
3735 // Immediately update the most recent touched rows, which hopefully covers what
3736 // the user sees on the watchlist page before pressing "mark all pages visited"....
3739 [ 'wl_notificationtimestamp' => null ],
3740 [ 'wl_user' => $id, 'wl_notificationtimestamp' => $asOfTimes ],
3743 // ...and finish the older ones in a post-send update with lag checks...
3744 DeferredUpdates
::addUpdate( new AutoCommitUpdate(
3747 function () use ( $dbw, $id ) {
3748 global $wgUpdateRowsPerQuery;
3750 $lbFactory = MediaWikiServices
::getInstance()->getDBLoadBalancerFactory();
3751 $ticket = $lbFactory->getEmptyTransactionTicket( __METHOD__
);
3752 $asOfTimes = array_unique( $dbw->selectFieldValues(
3754 'wl_notificationtimestamp',
3755 [ 'wl_user' => $id, 'wl_notificationtimestamp IS NOT NULL' ],
3758 foreach ( array_chunk( $asOfTimes, $wgUpdateRowsPerQuery ) as $asOfTimeBatch ) {
3761 [ 'wl_notificationtimestamp' => null ],
3762 [ 'wl_user' => $id, 'wl_notificationtimestamp' => $asOfTimeBatch ],
3765 $lbFactory->commitAndWaitForReplication( __METHOD__
, $ticket );
3769 // We also need to clear here the "you have new message" notification for the own
3770 // user_talk page; it's cleared one page view later in WikiPage::doViewUpdates().
3774 * Compute experienced level based on edit count and registration date.
3776 * @return string 'newcomer', 'learner', or 'experienced'
3778 public function getExperienceLevel() {
3779 global $wgLearnerEdits,
3780 $wgExperiencedUserEdits,
3781 $wgLearnerMemberSince,
3782 $wgExperiencedUserMemberSince;
3784 if ( $this->isAnon() ) {
3788 $editCount = $this->getEditCount();
3789 $registration = $this->getRegistration();
3791 $learnerRegistration = wfTimestamp( TS_MW
, $now - $wgLearnerMemberSince * 86400 );
3792 $experiencedRegistration = wfTimestamp( TS_MW
, $now - $wgExperiencedUserMemberSince * 86400 );
3795 $editCount < $wgLearnerEdits ||
3796 $registration > $learnerRegistration
3800 $editCount > $wgExperiencedUserEdits &&
3801 $registration <= $experiencedRegistration
3803 return 'experienced';
3810 * Set a cookie on the user's client. Wrapper for
3811 * WebResponse::setCookie
3812 * @deprecated since 1.27
3813 * @param string $name Name of the cookie to set
3814 * @param string $value Value to set
3815 * @param int $exp Expiration time, as a UNIX time value;
3816 * if 0 or not specified, use the default $wgCookieExpiration
3817 * @param bool $secure
3818 * true: Force setting the secure attribute when setting the cookie
3819 * false: Force NOT setting the secure attribute when setting the cookie
3820 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3821 * @param array $params Array of options sent passed to WebResponse::setcookie()
3822 * @param WebRequest|null $request WebRequest object to use; $wgRequest will be used if null
3825 protected function setCookie(
3826 $name, $value, $exp = 0, $secure = null, $params = [], $request = null
3828 wfDeprecated( __METHOD__
, '1.27' );
3829 if ( $request === null ) {
3830 $request = $this->getRequest();
3832 $params['secure'] = $secure;
3833 $request->response()->setCookie( $name, $value, $exp, $params );
3837 * Clear a cookie on the user's client
3838 * @deprecated since 1.27
3839 * @param string $name Name of the cookie to clear
3840 * @param bool $secure
3841 * true: Force setting the secure attribute when setting the cookie
3842 * false: Force NOT setting the secure attribute when setting the cookie
3843 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3844 * @param array $params Array of options sent passed to WebResponse::setcookie()
3846 protected function clearCookie( $name, $secure = null, $params = [] ) {
3847 wfDeprecated( __METHOD__
, '1.27' );
3848 $this->setCookie( $name, '', time() - 86400, $secure, $params );
3852 * Set an extended login cookie on the user's client. The expiry of the cookie
3853 * is controlled by the $wgExtendedLoginCookieExpiration configuration
3856 * @see User::setCookie
3858 * @deprecated since 1.27
3859 * @param string $name Name of the cookie to set
3860 * @param string $value Value to set
3861 * @param bool $secure
3862 * true: Force setting the secure attribute when setting the cookie
3863 * false: Force NOT setting the secure attribute when setting the cookie
3864 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3866 protected function setExtendedLoginCookie( $name, $value, $secure ) {
3867 global $wgExtendedLoginCookieExpiration, $wgCookieExpiration;
3869 wfDeprecated( __METHOD__
, '1.27' );
3872 $exp +
= $wgExtendedLoginCookieExpiration !== null
3873 ?
$wgExtendedLoginCookieExpiration
3874 : $wgCookieExpiration;
3876 $this->setCookie( $name, $value, $exp, $secure );
3880 * Persist this user's session (e.g. set cookies)
3882 * @param WebRequest|null $request WebRequest object to use; $wgRequest will be used if null
3884 * @param bool $secure Whether to force secure/insecure cookies or use default
3885 * @param bool $rememberMe Whether to add a Token cookie for elongated sessions
3887 public function setCookies( $request = null, $secure = null, $rememberMe = false ) {
3889 if ( 0 == $this->mId
) {
3893 $session = $this->getRequest()->getSession();
3894 if ( $request && $session->getRequest() !== $request ) {
3895 $session = $session->sessionWithRequest( $request );
3897 $delay = $session->delaySave();
3899 if ( !$session->getUser()->equals( $this ) ) {
3900 if ( !$session->canSetUser() ) {
3901 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
3902 ->warning( __METHOD__
.
3903 ": Cannot save user \"$this\" to a user \"{$session->getUser()}\"'s immutable session"
3907 $session->setUser( $this );
3910 $session->setRememberUser( $rememberMe );
3911 if ( $secure !== null ) {
3912 $session->setForceHTTPS( $secure );
3915 $session->persist();
3917 ScopedCallback
::consume( $delay );
3921 * Log this user out.
3923 public function logout() {
3924 // Avoid PHP 7.1 warning of passing $this by reference
3926 if ( Hooks
::run( 'UserLogout', [ &$user ] ) ) {
3932 * Clear the user's session, and reset the instance cache.
3935 public function doLogout() {
3936 $session = $this->getRequest()->getSession();
3937 if ( !$session->canSetUser() ) {
3938 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
3939 ->warning( __METHOD__
. ": Cannot log out of an immutable session" );
3940 $error = 'immutable';
3941 } elseif ( !$session->getUser()->equals( $this ) ) {
3942 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
3943 ->warning( __METHOD__
.
3944 ": Cannot log user \"$this\" out of a user \"{$session->getUser()}\"'s session"
3946 // But we still may as well make this user object anon
3947 $this->clearInstanceCache( 'defaults' );
3948 $error = 'wronguser';
3950 $this->clearInstanceCache( 'defaults' );
3951 $delay = $session->delaySave();
3952 $session->unpersist(); // Clear cookies (T127436)
3953 $session->setLoggedOutTimestamp( time() );
3954 $session->setUser( new User
);
3955 $session->set( 'wsUserID', 0 ); // Other code expects this
3956 $session->resetAllTokens();
3957 ScopedCallback
::consume( $delay );
3960 \MediaWiki\Logger\LoggerFactory
::getInstance( 'authevents' )->info( 'Logout', [
3961 'event' => 'logout',
3962 'successful' => $error === false,
3963 'status' => $error ?
: 'success',
3968 * Save this user's settings into the database.
3969 * @todo Only rarely do all these fields need to be set!
3971 public function saveSettings() {
3972 if ( wfReadOnly() ) {
3973 // @TODO: caller should deal with this instead!
3974 // This should really just be an exception.
3975 MWExceptionHandler
::logException( new DBExpectedError(
3977 "Could not update user with ID '{$this->mId}'; DB is read-only."
3983 if ( 0 == $this->mId
) {
3987 // Get a new user_touched that is higher than the old one.
3988 // This will be used for a CAS check as a last-resort safety
3989 // check against race conditions and replica DB lag.
3990 $newTouched = $this->newTouchedTimestamp();
3992 $dbw = wfGetDB( DB_MASTER
);
3993 $dbw->update( 'user',
3995 'user_name' => $this->mName
,
3996 'user_real_name' => $this->mRealName
,
3997 'user_email' => $this->mEmail
,
3998 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated
),
3999 'user_touched' => $dbw->timestamp( $newTouched ),
4000 'user_token' => strval( $this->mToken
),
4001 'user_email_token' => $this->mEmailToken
,
4002 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires
),
4003 ], $this->makeUpdateConditions( $dbw, [ /* WHERE */
4004 'user_id' => $this->mId
,
4008 if ( !$dbw->affectedRows() ) {
4009 // Maybe the problem was a missed cache update; clear it to be safe
4010 $this->clearSharedCache( 'refresh' );
4011 // User was changed in the meantime or loaded with stale data
4012 $from = ( $this->queryFlagsUsed
& self
::READ_LATEST
) ?
'master' : 'replica';
4013 throw new MWException(
4014 "CAS update failed on user_touched for user ID '{$this->mId}' (read from $from);" .
4015 " the version of the user to be saved is older than the current version."
4019 $this->mTouched
= $newTouched;
4020 $this->saveOptions();
4022 Hooks
::run( 'UserSaveSettings', [ $this ] );
4023 $this->clearSharedCache();
4024 $this->getUserPage()->invalidateCache();
4028 * If only this user's username is known, and it exists, return the user ID.
4030 * @param int $flags Bitfield of User:READ_* constants; useful for existence checks
4033 public function idForName( $flags = 0 ) {
4034 $s = trim( $this->getName() );
4039 $db = ( ( $flags & self
::READ_LATEST
) == self
::READ_LATEST
)
4040 ?
wfGetDB( DB_MASTER
)
4041 : wfGetDB( DB_REPLICA
);
4043 $options = ( ( $flags & self
::READ_LOCKING
) == self
::READ_LOCKING
)
4044 ?
[ 'LOCK IN SHARE MODE' ]
4047 $id = $db->selectField( 'user',
4048 'user_id', [ 'user_name' => $s ], __METHOD__
, $options );
4054 * Add a user to the database, return the user object
4056 * @param string $name Username to add
4057 * @param array $params Array of Strings Non-default parameters to save to
4058 * the database as user_* fields:
4059 * - email: The user's email address.
4060 * - email_authenticated: The email authentication timestamp.
4061 * - real_name: The user's real name.
4062 * - options: An associative array of non-default options.
4063 * - token: Random authentication token. Do not set.
4064 * - registration: Registration timestamp. Do not set.
4066 * @return User|null User object, or null if the username already exists.
4068 public static function createNew( $name, $params = [] ) {
4069 foreach ( [ 'password', 'newpassword', 'newpass_time', 'password_expires' ] as $field ) {
4070 if ( isset( $params[$field] ) ) {
4071 wfDeprecated( __METHOD__
. " with param '$field'", '1.27' );
4072 unset( $params[$field] );
4078 $user->setToken(); // init token
4079 if ( isset( $params['options'] ) ) {
4080 $user->mOptions
= $params['options'] +
(array)$user->mOptions
;
4081 unset( $params['options'] );
4083 $dbw = wfGetDB( DB_MASTER
);
4084 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
4086 $noPass = PasswordFactory
::newInvalidPassword()->toString();
4089 'user_id' => $seqVal,
4090 'user_name' => $name,
4091 'user_password' => $noPass,
4092 'user_newpassword' => $noPass,
4093 'user_email' => $user->mEmail
,
4094 'user_email_authenticated' => $dbw->timestampOrNull( $user->mEmailAuthenticated
),
4095 'user_real_name' => $user->mRealName
,
4096 'user_token' => strval( $user->mToken
),
4097 'user_registration' => $dbw->timestamp( $user->mRegistration
),
4098 'user_editcount' => 0,
4099 'user_touched' => $dbw->timestamp( $user->newTouchedTimestamp() ),
4101 foreach ( $params as $name => $value ) {
4102 $fields["user_$name"] = $value;
4104 $dbw->insert( 'user', $fields, __METHOD__
, [ 'IGNORE' ] );
4105 if ( $dbw->affectedRows() ) {
4106 $newUser = User
::newFromId( $dbw->insertId() );
4114 * Add this existing user object to the database. If the user already
4115 * exists, a fatal status object is returned, and the user object is
4116 * initialised with the data from the database.
4118 * Previously, this function generated a DB error due to a key conflict
4119 * if the user already existed. Many extension callers use this function
4120 * in code along the lines of:
4122 * $user = User::newFromName( $name );
4123 * if ( !$user->isLoggedIn() ) {
4124 * $user->addToDatabase();
4126 * // do something with $user...
4128 * However, this was vulnerable to a race condition (T18020). By
4129 * initialising the user object if the user exists, we aim to support this
4130 * calling sequence as far as possible.
4132 * Note that if the user exists, this function will acquire a write lock,
4133 * so it is still advisable to make the call conditional on isLoggedIn(),
4134 * and to commit the transaction after calling.
4136 * @throws MWException
4139 public function addToDatabase() {
4141 if ( !$this->mToken
) {
4142 $this->setToken(); // init token
4145 $this->mTouched
= $this->newTouchedTimestamp();
4147 $noPass = PasswordFactory
::newInvalidPassword()->toString();
4149 $dbw = wfGetDB( DB_MASTER
);
4150 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
4151 $dbw->insert( 'user',
4153 'user_id' => $seqVal,
4154 'user_name' => $this->mName
,
4155 'user_password' => $noPass,
4156 'user_newpassword' => $noPass,
4157 'user_email' => $this->mEmail
,
4158 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated
),
4159 'user_real_name' => $this->mRealName
,
4160 'user_token' => strval( $this->mToken
),
4161 'user_registration' => $dbw->timestamp( $this->mRegistration
),
4162 'user_editcount' => 0,
4163 'user_touched' => $dbw->timestamp( $this->mTouched
),
4167 if ( !$dbw->affectedRows() ) {
4168 // Use locking reads to bypass any REPEATABLE-READ snapshot.
4169 $this->mId
= $dbw->selectField(
4172 [ 'user_name' => $this->mName
],
4174 [ 'LOCK IN SHARE MODE' ]
4178 if ( $this->loadFromDatabase( self
::READ_LOCKING
) ) {
4183 throw new MWException( __METHOD__
. ": hit a key conflict attempting " .
4184 "to insert user '{$this->mName}' row, but it was not present in select!" );
4186 return Status
::newFatal( 'userexists' );
4188 $this->mId
= $dbw->insertId();
4189 self
::$idCacheByName[$this->mName
] = $this->mId
;
4191 // Clear instance cache other than user table data, which is already accurate
4192 $this->clearInstanceCache();
4194 $this->saveOptions();
4195 return Status
::newGood();
4199 * If this user is logged-in and blocked,
4200 * block any IP address they've successfully logged in from.
4201 * @return bool A block was spread
4203 public function spreadAnyEditBlock() {
4204 if ( $this->isLoggedIn() && $this->isBlocked() ) {
4205 return $this->spreadBlock();
4212 * If this (non-anonymous) user is blocked,
4213 * block the IP address they've successfully logged in from.
4214 * @return bool A block was spread
4216 protected function spreadBlock() {
4217 wfDebug( __METHOD__
. "()\n" );
4219 if ( $this->mId
== 0 ) {
4223 $userblock = Block
::newFromTarget( $this->getName() );
4224 if ( !$userblock ) {
4228 return (bool)$userblock->doAutoblock( $this->getRequest()->getIP() );
4232 * Get whether the user is explicitly blocked from account creation.
4233 * @return bool|Block
4235 public function isBlockedFromCreateAccount() {
4236 $this->getBlockedStatus();
4237 if ( $this->mBlock
&& $this->mBlock
->prevents( 'createaccount' ) ) {
4238 return $this->mBlock
;
4241 # T15611: if the IP address the user is trying to create an account from is
4242 # blocked with createaccount disabled, prevent new account creation there even
4243 # when the user is logged in
4244 if ( $this->mBlockedFromCreateAccount
=== false && !$this->isAllowed( 'ipblock-exempt' ) ) {
4245 $this->mBlockedFromCreateAccount
= Block
::newFromTarget( null, $this->getRequest()->getIP() );
4247 return $this->mBlockedFromCreateAccount
instanceof Block
4248 && $this->mBlockedFromCreateAccount
->prevents( 'createaccount' )
4249 ?
$this->mBlockedFromCreateAccount
4254 * Get whether the user is blocked from using Special:Emailuser.
4257 public function isBlockedFromEmailuser() {
4258 $this->getBlockedStatus();
4259 return $this->mBlock
&& $this->mBlock
->prevents( 'sendemail' );
4263 * Get whether the user is allowed to create an account.
4266 public function isAllowedToCreateAccount() {
4267 return $this->isAllowed( 'createaccount' ) && !$this->isBlockedFromCreateAccount();
4271 * Get this user's personal page title.
4273 * @return Title User's personal page title
4275 public function getUserPage() {
4276 return Title
::makeTitle( NS_USER
, $this->getName() );
4280 * Get this user's talk page title.
4282 * @return Title User's talk page title
4284 public function getTalkPage() {
4285 $title = $this->getUserPage();
4286 return $title->getTalkPage();
4290 * Determine whether the user is a newbie. Newbies are either
4291 * anonymous IPs, or the most recently created accounts.
4294 public function isNewbie() {
4295 return !$this->isAllowed( 'autoconfirmed' );
4299 * Check to see if the given clear-text password is one of the accepted passwords
4300 * @deprecated since 1.27, use AuthManager instead
4301 * @param string $password User password
4302 * @return bool True if the given password is correct, otherwise False
4304 public function checkPassword( $password ) {
4305 $manager = AuthManager
::singleton();
4306 $reqs = AuthenticationRequest
::loadRequestsFromSubmission(
4307 $manager->getAuthenticationRequests( AuthManager
::ACTION_LOGIN
),
4309 'username' => $this->getName(),
4310 'password' => $password,
4313 $res = AuthManager
::singleton()->beginAuthentication( $reqs, 'null:' );
4314 switch ( $res->status
) {
4315 case AuthenticationResponse
::PASS
:
4317 case AuthenticationResponse
::FAIL
:
4318 // Hope it's not a PreAuthenticationProvider that failed...
4319 \MediaWiki\Logger\LoggerFactory
::getInstance( 'authentication' )
4320 ->info( __METHOD__
. ': Authentication failed: ' . $res->message
->plain() );
4323 throw new BadMethodCallException(
4324 'AuthManager returned a response unsupported by ' . __METHOD__
4330 * Check if the given clear-text password matches the temporary password
4331 * sent by e-mail for password reset operations.
4333 * @deprecated since 1.27, use AuthManager instead
4334 * @param string $plaintext
4335 * @return bool True if matches, false otherwise
4337 public function checkTemporaryPassword( $plaintext ) {
4338 // Can't check the temporary password individually.
4339 return $this->checkPassword( $plaintext );
4343 * Initialize (if necessary) and return a session token value
4344 * which can be used in edit forms to show that the user's
4345 * login credentials aren't being hijacked with a foreign form
4349 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4350 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4351 * @return MediaWiki\Session\Token The new edit token
4353 public function getEditTokenObject( $salt = '', $request = null ) {
4354 if ( $this->isAnon() ) {
4355 return new LoggedOutEditToken();
4359 $request = $this->getRequest();
4361 return $request->getSession()->getToken( $salt );
4365 * Initialize (if necessary) and return a session token value
4366 * which can be used in edit forms to show that the user's
4367 * login credentials aren't being hijacked with a foreign form
4370 * The $salt for 'edit' and 'csrf' tokens is the default (empty string).
4373 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4374 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4375 * @return string The new edit token
4377 public function getEditToken( $salt = '', $request = null ) {
4378 return $this->getEditTokenObject( $salt, $request )->toString();
4382 * Get the embedded timestamp from a token.
4383 * @deprecated since 1.27, use \MediaWiki\Session\Token::getTimestamp instead.
4384 * @param string $val Input token
4387 public static function getEditTokenTimestamp( $val ) {
4388 wfDeprecated( __METHOD__
, '1.27' );
4389 return MediaWiki\Session\Token
::getTimestamp( $val );
4393 * Check given value against the token value stored in the session.
4394 * A match should confirm that the form was submitted from the
4395 * user's own login session, not a form submission from a third-party
4398 * @param string $val Input value to compare
4399 * @param string $salt Optional function-specific data for hashing
4400 * @param WebRequest|null $request Object to use or null to use $wgRequest
4401 * @param int $maxage Fail tokens older than this, in seconds
4402 * @return bool Whether the token matches
4404 public function matchEditToken( $val, $salt = '', $request = null, $maxage = null ) {
4405 return $this->getEditTokenObject( $salt, $request )->match( $val, $maxage );
4409 * Check given value against the token value stored in the session,
4410 * ignoring the suffix.
4412 * @param string $val Input value to compare
4413 * @param string $salt Optional function-specific data for hashing
4414 * @param WebRequest|null $request Object to use or null to use $wgRequest
4415 * @param int $maxage Fail tokens older than this, in seconds
4416 * @return bool Whether the token matches
4418 public function matchEditTokenNoSuffix( $val, $salt = '', $request = null, $maxage = null ) {
4419 $val = substr( $val, 0, strspn( $val, '0123456789abcdef' ) ) . Token
::SUFFIX
;
4420 return $this->matchEditToken( $val, $salt, $request, $maxage );
4424 * Generate a new e-mail confirmation token and send a confirmation/invalidation
4425 * mail to the user's given address.
4427 * @param string $type Message to send, either "created", "changed" or "set"
4430 public function sendConfirmationMail( $type = 'created' ) {
4432 $expiration = null; // gets passed-by-ref and defined in next line.
4433 $token = $this->confirmationToken( $expiration );
4434 $url = $this->confirmationTokenUrl( $token );
4435 $invalidateURL = $this->invalidationTokenUrl( $token );
4436 $this->saveSettings();
4438 if ( $type == 'created' ||
$type === false ) {
4439 $message = 'confirmemail_body';
4440 } elseif ( $type === true ) {
4441 $message = 'confirmemail_body_changed';
4443 // Messages: confirmemail_body_changed, confirmemail_body_set
4444 $message = 'confirmemail_body_' . $type;
4447 return $this->sendMail( wfMessage( 'confirmemail_subject' )->text(),
4448 wfMessage( $message,
4449 $this->getRequest()->getIP(),
4452 $wgLang->userTimeAndDate( $expiration, $this ),
4454 $wgLang->userDate( $expiration, $this ),
4455 $wgLang->userTime( $expiration, $this ) )->text() );
4459 * Send an e-mail to this user's account. Does not check for
4460 * confirmed status or validity.
4462 * @param string $subject Message subject
4463 * @param string $body Message body
4464 * @param User|null $from Optional sending user; if unspecified, default
4465 * $wgPasswordSender will be used.
4466 * @param string $replyto Reply-To address
4469 public function sendMail( $subject, $body, $from = null, $replyto = null ) {
4470 global $wgPasswordSender;
4472 if ( $from instanceof User
) {
4473 $sender = MailAddress
::newFromUser( $from );
4475 $sender = new MailAddress( $wgPasswordSender,
4476 wfMessage( 'emailsender' )->inContentLanguage()->text() );
4478 $to = MailAddress
::newFromUser( $this );
4480 return UserMailer
::send( $to, $sender, $subject, $body, [
4481 'replyTo' => $replyto,
4486 * Generate, store, and return a new e-mail confirmation code.
4487 * A hash (unsalted, since it's used as a key) is stored.
4489 * @note Call saveSettings() after calling this function to commit
4490 * this change to the database.
4492 * @param string &$expiration Accepts the expiration time
4493 * @return string New token
4495 protected function confirmationToken( &$expiration ) {
4496 global $wgUserEmailConfirmationTokenExpiry;
4498 $expires = $now +
$wgUserEmailConfirmationTokenExpiry;
4499 $expiration = wfTimestamp( TS_MW
, $expires );
4501 $token = MWCryptRand
::generateHex( 32 );
4502 $hash = md5( $token );
4503 $this->mEmailToken
= $hash;
4504 $this->mEmailTokenExpires
= $expiration;
4509 * Return a URL the user can use to confirm their email address.
4510 * @param string $token Accepts the email confirmation token
4511 * @return string New token URL
4513 protected function confirmationTokenUrl( $token ) {
4514 return $this->getTokenUrl( 'ConfirmEmail', $token );
4518 * Return a URL the user can use to invalidate their email address.
4519 * @param string $token Accepts the email confirmation token
4520 * @return string New token URL
4522 protected function invalidationTokenUrl( $token ) {
4523 return $this->getTokenUrl( 'InvalidateEmail', $token );
4527 * Internal function to format the e-mail validation/invalidation URLs.
4528 * This uses a quickie hack to use the
4529 * hardcoded English names of the Special: pages, for ASCII safety.
4531 * @note Since these URLs get dropped directly into emails, using the
4532 * short English names avoids insanely long URL-encoded links, which
4533 * also sometimes can get corrupted in some browsers/mailers
4534 * (T8957 with Gmail and Internet Explorer).
4536 * @param string $page Special page
4537 * @param string $token Token
4538 * @return string Formatted URL
4540 protected function getTokenUrl( $page, $token ) {
4541 // Hack to bypass localization of 'Special:'
4542 $title = Title
::makeTitle( NS_MAIN
, "Special:$page/$token" );
4543 return $title->getCanonicalURL();
4547 * Mark the e-mail address confirmed.
4549 * @note Call saveSettings() after calling this function to commit the change.
4553 public function confirmEmail() {
4554 // Check if it's already confirmed, so we don't touch the database
4555 // and fire the ConfirmEmailComplete hook on redundant confirmations.
4556 if ( !$this->isEmailConfirmed() ) {
4557 $this->setEmailAuthenticationTimestamp( wfTimestampNow() );
4558 Hooks
::run( 'ConfirmEmailComplete', [ $this ] );
4564 * Invalidate the user's e-mail confirmation, and unauthenticate the e-mail
4565 * address if it was already confirmed.
4567 * @note Call saveSettings() after calling this function to commit the change.
4568 * @return bool Returns true
4570 public function invalidateEmail() {
4572 $this->mEmailToken
= null;
4573 $this->mEmailTokenExpires
= null;
4574 $this->setEmailAuthenticationTimestamp( null );
4576 Hooks
::run( 'InvalidateEmailComplete', [ $this ] );
4581 * Set the e-mail authentication timestamp.
4582 * @param string $timestamp TS_MW timestamp
4584 public function setEmailAuthenticationTimestamp( $timestamp ) {
4586 $this->mEmailAuthenticated
= $timestamp;
4587 Hooks
::run( 'UserSetEmailAuthenticationTimestamp', [ $this, &$this->mEmailAuthenticated
] );
4591 * Is this user allowed to send e-mails within limits of current
4592 * site configuration?
4595 public function canSendEmail() {
4596 global $wgEnableEmail, $wgEnableUserEmail;
4597 if ( !$wgEnableEmail ||
!$wgEnableUserEmail ||
!$this->isAllowed( 'sendemail' ) ) {
4600 $canSend = $this->isEmailConfirmed();
4601 // Avoid PHP 7.1 warning of passing $this by reference
4603 Hooks
::run( 'UserCanSendEmail', [ &$user, &$canSend ] );
4608 * Is this user allowed to receive e-mails within limits of current
4609 * site configuration?
4612 public function canReceiveEmail() {
4613 return $this->isEmailConfirmed() && !$this->getOption( 'disablemail' );
4617 * Is this user's e-mail address valid-looking and confirmed within
4618 * limits of the current site configuration?
4620 * @note If $wgEmailAuthentication is on, this may require the user to have
4621 * confirmed their address by returning a code or using a password
4622 * sent to the address from the wiki.
4626 public function isEmailConfirmed() {
4627 global $wgEmailAuthentication;
4629 // Avoid PHP 7.1 warning of passing $this by reference
4632 if ( Hooks
::run( 'EmailConfirmed', [ &$user, &$confirmed ] ) ) {
4633 if ( $this->isAnon() ) {
4636 if ( !Sanitizer
::validateEmail( $this->mEmail
) ) {
4639 if ( $wgEmailAuthentication && !$this->getEmailAuthenticationTimestamp() ) {
4649 * Check whether there is an outstanding request for e-mail confirmation.
4652 public function isEmailConfirmationPending() {
4653 global $wgEmailAuthentication;
4654 return $wgEmailAuthentication &&
4655 !$this->isEmailConfirmed() &&
4656 $this->mEmailToken
&&
4657 $this->mEmailTokenExpires
> wfTimestamp();
4661 * Get the timestamp of account creation.
4663 * @return string|bool|null Timestamp of account creation, false for
4664 * non-existent/anonymous user accounts, or null if existing account
4665 * but information is not in database.
4667 public function getRegistration() {
4668 if ( $this->isAnon() ) {
4672 return $this->mRegistration
;
4676 * Get the timestamp of the first edit
4678 * @return string|bool Timestamp of first edit, or false for
4679 * non-existent/anonymous user accounts.
4681 public function getFirstEditTimestamp() {
4682 if ( $this->getId() == 0 ) {
4683 return false; // anons
4685 $dbr = wfGetDB( DB_REPLICA
);
4686 $time = $dbr->selectField( 'revision', 'rev_timestamp',
4687 [ 'rev_user' => $this->getId() ],
4689 [ 'ORDER BY' => 'rev_timestamp ASC' ]
4692 return false; // no edits
4694 return wfTimestamp( TS_MW
, $time );
4698 * Get the permissions associated with a given list of groups
4700 * @param array $groups Array of Strings List of internal group names
4701 * @return array Array of Strings List of permission key names for given groups combined
4703 public static function getGroupPermissions( $groups ) {
4704 global $wgGroupPermissions, $wgRevokePermissions;
4706 // grant every granted permission first
4707 foreach ( $groups as $group ) {
4708 if ( isset( $wgGroupPermissions[$group] ) ) {
4709 $rights = array_merge( $rights,
4710 // array_filter removes empty items
4711 array_keys( array_filter( $wgGroupPermissions[$group] ) ) );
4714 // now revoke the revoked permissions
4715 foreach ( $groups as $group ) {
4716 if ( isset( $wgRevokePermissions[$group] ) ) {
4717 $rights = array_diff( $rights,
4718 array_keys( array_filter( $wgRevokePermissions[$group] ) ) );
4721 return array_unique( $rights );
4725 * Get all the groups who have a given permission
4727 * @param string $role Role to check
4728 * @return array Array of Strings List of internal group names with the given permission
4730 public static function getGroupsWithPermission( $role ) {
4731 global $wgGroupPermissions;
4732 $allowedGroups = [];
4733 foreach ( array_keys( $wgGroupPermissions ) as $group ) {
4734 if ( self
::groupHasPermission( $group, $role ) ) {
4735 $allowedGroups[] = $group;
4738 return $allowedGroups;
4742 * Check, if the given group has the given permission
4744 * If you're wanting to check whether all users have a permission, use
4745 * User::isEveryoneAllowed() instead. That properly checks if it's revoked
4749 * @param string $group Group to check
4750 * @param string $role Role to check
4753 public static function groupHasPermission( $group, $role ) {
4754 global $wgGroupPermissions, $wgRevokePermissions;
4755 return isset( $wgGroupPermissions[$group][$role] ) && $wgGroupPermissions[$group][$role]
4756 && !( isset( $wgRevokePermissions[$group][$role] ) && $wgRevokePermissions[$group][$role] );
4760 * Check if all users may be assumed to have the given permission
4762 * We generally assume so if the right is granted to '*' and isn't revoked
4763 * on any group. It doesn't attempt to take grants or other extension
4764 * limitations on rights into account in the general case, though, as that
4765 * would require it to always return false and defeat the purpose.
4766 * Specifically, session-based rights restrictions (such as OAuth or bot
4767 * passwords) are applied based on the current session.
4770 * @param string $right Right to check
4773 public static function isEveryoneAllowed( $right ) {
4774 global $wgGroupPermissions, $wgRevokePermissions;
4777 // Use the cached results, except in unit tests which rely on
4778 // being able change the permission mid-request
4779 if ( isset( $cache[$right] ) && !defined( 'MW_PHPUNIT_TEST' ) ) {
4780 return $cache[$right];
4783 if ( !isset( $wgGroupPermissions['*'][$right] ) ||
!$wgGroupPermissions['*'][$right] ) {
4784 $cache[$right] = false;
4788 // If it's revoked anywhere, then everyone doesn't have it
4789 foreach ( $wgRevokePermissions as $rights ) {
4790 if ( isset( $rights[$right] ) && $rights[$right] ) {
4791 $cache[$right] = false;
4796 // Remove any rights that aren't allowed to the global-session user,
4797 // unless there are no sessions for this endpoint.
4798 if ( !defined( 'MW_NO_SESSION' ) ) {
4799 $allowedRights = SessionManager
::getGlobalSession()->getAllowedUserRights();
4800 if ( $allowedRights !== null && !in_array( $right, $allowedRights, true ) ) {
4801 $cache[$right] = false;
4806 // Allow extensions to say false
4807 if ( !Hooks
::run( 'UserIsEveryoneAllowed', [ $right ] ) ) {
4808 $cache[$right] = false;
4812 $cache[$right] = true;
4817 * Get the localized descriptive name for a group, if it exists
4818 * @deprecated since 1.29 Use UserGroupMembership::getGroupName instead
4820 * @param string $group Internal group name
4821 * @return string Localized descriptive group name
4823 public static function getGroupName( $group ) {
4824 wfDeprecated( __METHOD__
, '1.29' );
4825 return UserGroupMembership
::getGroupName( $group );
4829 * Get the localized descriptive name for a member of a group, if it exists
4830 * @deprecated since 1.29 Use UserGroupMembership::getGroupMemberName instead
4832 * @param string $group Internal group name
4833 * @param string $username Username for gender (since 1.19)
4834 * @return string Localized name for group member
4836 public static function getGroupMember( $group, $username = '#' ) {
4837 wfDeprecated( __METHOD__
, '1.29' );
4838 return UserGroupMembership
::getGroupMemberName( $group, $username );
4842 * Return the set of defined explicit groups.
4843 * The implicit groups (by default *, 'user' and 'autoconfirmed')
4844 * are not included, as they are defined automatically, not in the database.
4845 * @return array Array of internal group names
4847 public static function getAllGroups() {
4848 global $wgGroupPermissions, $wgRevokePermissions;
4850 array_merge( array_keys( $wgGroupPermissions ), array_keys( $wgRevokePermissions ) ),
4851 self
::getImplicitGroups()
4856 * Get a list of all available permissions.
4857 * @return string[] Array of permission names
4859 public static function getAllRights() {
4860 if ( self
::$mAllRights === false ) {
4861 global $wgAvailableRights;
4862 if ( count( $wgAvailableRights ) ) {
4863 self
::$mAllRights = array_unique( array_merge( self
::$mCoreRights, $wgAvailableRights ) );
4865 self
::$mAllRights = self
::$mCoreRights;
4867 Hooks
::run( 'UserGetAllRights', [ &self
::$mAllRights ] );
4869 return self
::$mAllRights;
4873 * Get a list of implicit groups
4874 * @return array Array of Strings Array of internal group names
4876 public static function getImplicitGroups() {
4877 global $wgImplicitGroups;
4879 $groups = $wgImplicitGroups;
4880 # Deprecated, use $wgImplicitGroups instead
4881 Hooks
::run( 'UserGetImplicitGroups', [ &$groups ], '1.25' );
4887 * Get the title of a page describing a particular group
4888 * @deprecated since 1.29 Use UserGroupMembership::getGroupPage instead
4890 * @param string $group Internal group name
4891 * @return Title|bool Title of the page if it exists, false otherwise
4893 public static function getGroupPage( $group ) {
4894 wfDeprecated( __METHOD__
, '1.29' );
4895 return UserGroupMembership
::getGroupPage( $group );
4899 * Create a link to the group in HTML, if available;
4900 * else return the group name.
4901 * @deprecated since 1.29 Use UserGroupMembership::getLink instead, or
4902 * make the link yourself if you need custom text
4904 * @param string $group Internal name of the group
4905 * @param string $text The text of the link
4906 * @return string HTML link to the group
4908 public static function makeGroupLinkHTML( $group, $text = '' ) {
4909 wfDeprecated( __METHOD__
, '1.29' );
4911 if ( $text == '' ) {
4912 $text = UserGroupMembership
::getGroupName( $group );
4914 $title = UserGroupMembership
::getGroupPage( $group );
4916 return Linker
::link( $title, htmlspecialchars( $text ) );
4918 return htmlspecialchars( $text );
4923 * Create a link to the group in Wikitext, if available;
4924 * else return the group name.
4925 * @deprecated since 1.29 Use UserGroupMembership::getLink instead, or
4926 * make the link yourself if you need custom text
4928 * @param string $group Internal name of the group
4929 * @param string $text The text of the link
4930 * @return string Wikilink to the group
4932 public static function makeGroupLinkWiki( $group, $text = '' ) {
4933 wfDeprecated( __METHOD__
, '1.29' );
4935 if ( $text == '' ) {
4936 $text = UserGroupMembership
::getGroupName( $group );
4938 $title = UserGroupMembership
::getGroupPage( $group );
4940 $page = $title->getFullText();
4941 return "[[$page|$text]]";
4948 * Returns an array of the groups that a particular group can add/remove.
4950 * @param string $group The group to check for whether it can add/remove
4951 * @return array Array( 'add' => array( addablegroups ),
4952 * 'remove' => array( removablegroups ),
4953 * 'add-self' => array( addablegroups to self),
4954 * 'remove-self' => array( removable groups from self) )
4956 public static function changeableByGroup( $group ) {
4957 global $wgAddGroups, $wgRemoveGroups, $wgGroupsAddToSelf, $wgGroupsRemoveFromSelf;
4966 if ( empty( $wgAddGroups[$group] ) ) {
4967 // Don't add anything to $groups
4968 } elseif ( $wgAddGroups[$group] === true ) {
4969 // You get everything
4970 $groups['add'] = self
::getAllGroups();
4971 } elseif ( is_array( $wgAddGroups[$group] ) ) {
4972 $groups['add'] = $wgAddGroups[$group];
4975 // Same thing for remove
4976 if ( empty( $wgRemoveGroups[$group] ) ) {
4978 } elseif ( $wgRemoveGroups[$group] === true ) {
4979 $groups['remove'] = self
::getAllGroups();
4980 } elseif ( is_array( $wgRemoveGroups[$group] ) ) {
4981 $groups['remove'] = $wgRemoveGroups[$group];
4984 // Re-map numeric keys of AddToSelf/RemoveFromSelf to the 'user' key for backwards compatibility
4985 if ( empty( $wgGroupsAddToSelf['user'] ) ||
$wgGroupsAddToSelf['user'] !== true ) {
4986 foreach ( $wgGroupsAddToSelf as $key => $value ) {
4987 if ( is_int( $key ) ) {
4988 $wgGroupsAddToSelf['user'][] = $value;
4993 if ( empty( $wgGroupsRemoveFromSelf['user'] ) ||
$wgGroupsRemoveFromSelf['user'] !== true ) {
4994 foreach ( $wgGroupsRemoveFromSelf as $key => $value ) {
4995 if ( is_int( $key ) ) {
4996 $wgGroupsRemoveFromSelf['user'][] = $value;
5001 // Now figure out what groups the user can add to him/herself
5002 if ( empty( $wgGroupsAddToSelf[$group] ) ) {
5004 } elseif ( $wgGroupsAddToSelf[$group] === true ) {
5005 // No idea WHY this would be used, but it's there
5006 $groups['add-self'] = User
::getAllGroups();
5007 } elseif ( is_array( $wgGroupsAddToSelf[$group] ) ) {
5008 $groups['add-self'] = $wgGroupsAddToSelf[$group];
5011 if ( empty( $wgGroupsRemoveFromSelf[$group] ) ) {
5013 } elseif ( $wgGroupsRemoveFromSelf[$group] === true ) {
5014 $groups['remove-self'] = User
::getAllGroups();
5015 } elseif ( is_array( $wgGroupsRemoveFromSelf[$group] ) ) {
5016 $groups['remove-self'] = $wgGroupsRemoveFromSelf[$group];
5023 * Returns an array of groups that this user can add and remove
5024 * @return array Array( 'add' => array( addablegroups ),
5025 * 'remove' => array( removablegroups ),
5026 * 'add-self' => array( addablegroups to self),
5027 * 'remove-self' => array( removable groups from self) )
5029 public function changeableGroups() {
5030 if ( $this->isAllowed( 'userrights' ) ) {
5031 // This group gives the right to modify everything (reverse-
5032 // compatibility with old "userrights lets you change
5034 // Using array_merge to make the groups reindexed
5035 $all = array_merge( User
::getAllGroups() );
5044 // Okay, it's not so simple, we will have to go through the arrays
5051 $addergroups = $this->getEffectiveGroups();
5053 foreach ( $addergroups as $addergroup ) {
5054 $groups = array_merge_recursive(
5055 $groups, $this->changeableByGroup( $addergroup )
5057 $groups['add'] = array_unique( $groups['add'] );
5058 $groups['remove'] = array_unique( $groups['remove'] );
5059 $groups['add-self'] = array_unique( $groups['add-self'] );
5060 $groups['remove-self'] = array_unique( $groups['remove-self'] );
5066 * Deferred version of incEditCountImmediate()
5068 public function incEditCount() {
5069 wfGetDB( DB_MASTER
)->onTransactionPreCommitOrIdle(
5071 $this->incEditCountImmediate();
5078 * Increment the user's edit-count field.
5079 * Will have no effect for anonymous users.
5082 public function incEditCountImmediate() {
5083 if ( $this->isAnon() ) {
5087 $dbw = wfGetDB( DB_MASTER
);
5088 // No rows will be "affected" if user_editcount is NULL
5091 [ 'user_editcount=user_editcount+1' ],
5092 [ 'user_id' => $this->getId(), 'user_editcount IS NOT NULL' ],
5095 // Lazy initialization check...
5096 if ( $dbw->affectedRows() == 0 ) {
5097 // Now here's a goddamn hack...
5098 $dbr = wfGetDB( DB_REPLICA
);
5099 if ( $dbr !== $dbw ) {
5100 // If we actually have a replica DB server, the count is
5101 // at least one behind because the current transaction
5102 // has not been committed and replicated.
5103 $this->mEditCount
= $this->initEditCount( 1 );
5105 // But if DB_REPLICA is selecting the master, then the
5106 // count we just read includes the revision that was
5107 // just added in the working transaction.
5108 $this->mEditCount
= $this->initEditCount();
5111 if ( $this->mEditCount
=== null ) {
5112 $this->getEditCount();
5113 $dbr = wfGetDB( DB_REPLICA
);
5114 $this->mEditCount +
= ( $dbr !== $dbw ) ?
1 : 0;
5116 $this->mEditCount++
;
5119 // Edit count in user cache too
5120 $this->invalidateCache();
5124 * Initialize user_editcount from data out of the revision table
5126 * @param int $add Edits to add to the count from the revision table
5127 * @return int Number of edits
5129 protected function initEditCount( $add = 0 ) {
5130 // Pull from a replica DB to be less cruel to servers
5131 // Accuracy isn't the point anyway here
5132 $dbr = wfGetDB( DB_REPLICA
);
5133 $count = (int)$dbr->selectField(
5136 [ 'rev_user' => $this->getId() ],
5139 $count = $count +
$add;
5141 $dbw = wfGetDB( DB_MASTER
);
5144 [ 'user_editcount' => $count ],
5145 [ 'user_id' => $this->getId() ],
5153 * Get the description of a given right
5156 * @param string $right Right to query
5157 * @return string Localized description of the right
5159 public static function getRightDescription( $right ) {
5160 $key = "right-$right";
5161 $msg = wfMessage( $key );
5162 return $msg->isDisabled() ?
$right : $msg->text();
5166 * Get the name of a given grant
5169 * @param string $grant Grant to query
5170 * @return string Localized name of the grant
5172 public static function getGrantName( $grant ) {
5173 $key = "grant-$grant";
5174 $msg = wfMessage( $key );
5175 return $msg->isDisabled() ?
$grant : $msg->text();
5179 * Add a newuser log entry for this user.
5180 * Before 1.19 the return value was always true.
5182 * @deprecated since 1.27, AuthManager handles logging
5183 * @param string|bool $action Account creation type.
5184 * - String, one of the following values:
5185 * - 'create' for an anonymous user creating an account for himself.
5186 * This will force the action's performer to be the created user itself,
5187 * no matter the value of $wgUser
5188 * - 'create2' for a logged in user creating an account for someone else
5189 * - 'byemail' when the created user will receive its password by e-mail
5190 * - 'autocreate' when the user is automatically created (such as by CentralAuth).
5191 * - Boolean means whether the account was created by e-mail (deprecated):
5192 * - true will be converted to 'byemail'
5193 * - false will be converted to 'create' if this object is the same as
5194 * $wgUser and to 'create2' otherwise
5195 * @param string $reason User supplied reason
5198 public function addNewUserLogEntry( $action = false, $reason = '' ) {
5199 return true; // disabled
5203 * Add an autocreate newuser log entry for this user
5204 * Used by things like CentralAuth and perhaps other authplugins.
5205 * Consider calling addNewUserLogEntry() directly instead.
5207 * @deprecated since 1.27, AuthManager handles logging
5210 public function addNewUserLogEntryAutoCreate() {
5211 $this->addNewUserLogEntry( 'autocreate' );
5217 * Load the user options either from cache, the database or an array
5219 * @param array $data Rows for the current user out of the user_properties table
5221 protected function loadOptions( $data = null ) {
5226 if ( $this->mOptionsLoaded
) {
5230 $this->mOptions
= self
::getDefaultOptions();
5232 if ( !$this->getId() ) {
5233 // For unlogged-in users, load language/variant options from request.
5234 // There's no need to do it for logged-in users: they can set preferences,
5235 // and handling of page content is done by $pageLang->getPreferredVariant() and such,
5236 // so don't override user's choice (especially when the user chooses site default).
5237 $variant = $wgContLang->getDefaultVariant();
5238 $this->mOptions
['variant'] = $variant;
5239 $this->mOptions
['language'] = $variant;
5240 $this->mOptionsLoaded
= true;
5244 // Maybe load from the object
5245 if ( !is_null( $this->mOptionOverrides
) ) {
5246 wfDebug( "User: loading options for user " . $this->getId() . " from override cache.\n" );
5247 foreach ( $this->mOptionOverrides
as $key => $value ) {
5248 $this->mOptions
[$key] = $value;
5251 if ( !is_array( $data ) ) {
5252 wfDebug( "User: loading options for user " . $this->getId() . " from database.\n" );
5253 // Load from database
5254 $dbr = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
5255 ?
wfGetDB( DB_MASTER
)
5256 : wfGetDB( DB_REPLICA
);
5258 $res = $dbr->select(
5260 [ 'up_property', 'up_value' ],
5261 [ 'up_user' => $this->getId() ],
5265 $this->mOptionOverrides
= [];
5267 foreach ( $res as $row ) {
5268 $data[$row->up_property
] = $row->up_value
;
5271 foreach ( $data as $property => $value ) {
5272 $this->mOptionOverrides
[$property] = $value;
5273 $this->mOptions
[$property] = $value;
5277 $this->mOptionsLoaded
= true;
5279 Hooks
::run( 'UserLoadOptions', [ $this, &$this->mOptions
] );
5283 * Saves the non-default options for this user, as previously set e.g. via
5284 * setOption(), in the database's "user_properties" (preferences) table.
5285 * Usually used via saveSettings().
5287 protected function saveOptions() {
5288 $this->loadOptions();
5290 // Not using getOptions(), to keep hidden preferences in database
5291 $saveOptions = $this->mOptions
;
5293 // Allow hooks to abort, for instance to save to a global profile.
5294 // Reset options to default state before saving.
5295 if ( !Hooks
::run( 'UserSaveOptions', [ $this, &$saveOptions ] ) ) {
5299 $userId = $this->getId();
5301 $insert_rows = []; // all the new preference rows
5302 foreach ( $saveOptions as $key => $value ) {
5303 // Don't bother storing default values
5304 $defaultOption = self
::getDefaultOption( $key );
5305 if ( ( $defaultOption === null && $value !== false && $value !== null )
5306 ||
$value != $defaultOption
5309 'up_user' => $userId,
5310 'up_property' => $key,
5311 'up_value' => $value,
5316 $dbw = wfGetDB( DB_MASTER
);
5318 $res = $dbw->select( 'user_properties',
5319 [ 'up_property', 'up_value' ], [ 'up_user' => $userId ], __METHOD__
);
5321 // Find prior rows that need to be removed or updated. These rows will
5322 // all be deleted (the latter so that INSERT IGNORE applies the new values).
5324 foreach ( $res as $row ) {
5325 if ( !isset( $saveOptions[$row->up_property
] )
5326 ||
strcmp( $saveOptions[$row->up_property
], $row->up_value
) != 0
5328 $keysDelete[] = $row->up_property
;
5332 if ( count( $keysDelete ) ) {
5333 // Do the DELETE by PRIMARY KEY for prior rows.
5334 // In the past a very large portion of calls to this function are for setting
5335 // 'rememberpassword' for new accounts (a preference that has since been removed).
5336 // Doing a blanket per-user DELETE for new accounts with no rows in the table
5337 // caused gap locks on [max user ID,+infinity) which caused high contention since
5338 // updates would pile up on each other as they are for higher (newer) user IDs.
5339 // It might not be necessary these days, but it shouldn't hurt either.
5340 $dbw->delete( 'user_properties',
5341 [ 'up_user' => $userId, 'up_property' => $keysDelete ], __METHOD__
);
5343 // Insert the new preference rows
5344 $dbw->insert( 'user_properties', $insert_rows, __METHOD__
, [ 'IGNORE' ] );
5348 * Lazily instantiate and return a factory object for making passwords
5350 * @deprecated since 1.27, create a PasswordFactory directly instead
5351 * @return PasswordFactory
5353 public static function getPasswordFactory() {
5354 wfDeprecated( __METHOD__
, '1.27' );
5355 $ret = new PasswordFactory();
5356 $ret->init( RequestContext
::getMain()->getConfig() );
5361 * Provide an array of HTML5 attributes to put on an input element
5362 * intended for the user to enter a new password. This may include
5363 * required, title, and/or pattern, depending on $wgMinimalPasswordLength.
5365 * Do *not* use this when asking the user to enter his current password!
5366 * Regardless of configuration, users may have invalid passwords for whatever
5367 * reason (e.g., they were set before requirements were tightened up).
5368 * Only use it when asking for a new password, like on account creation or
5371 * Obviously, you still need to do server-side checking.
5373 * NOTE: A combination of bugs in various browsers means that this function
5374 * actually just returns array() unconditionally at the moment. May as
5375 * well keep it around for when the browser bugs get fixed, though.
5377 * @todo FIXME: This does not belong here; put it in Html or Linker or somewhere
5379 * @deprecated since 1.27
5380 * @return array Array of HTML attributes suitable for feeding to
5381 * Html::element(), directly or indirectly. (Don't feed to Xml::*()!
5382 * That will get confused by the boolean attribute syntax used.)
5384 public static function passwordChangeInputAttribs() {
5385 global $wgMinimalPasswordLength;
5387 if ( $wgMinimalPasswordLength == 0 ) {
5391 # Note that the pattern requirement will always be satisfied if the
5392 # input is empty, so we need required in all cases.
5394 # @todo FIXME: T25769: This needs to not claim the password is required
5395 # if e-mail confirmation is being used. Since HTML5 input validation
5396 # is b0rked anyway in some browsers, just return nothing. When it's
5397 # re-enabled, fix this code to not output required for e-mail
5399 # $ret = array( 'required' );
5402 # We can't actually do this right now, because Opera 9.6 will print out
5403 # the entered password visibly in its error message! When other
5404 # browsers add support for this attribute, or Opera fixes its support,
5405 # we can add support with a version check to avoid doing this on Opera
5406 # versions where it will be a problem. Reported to Opera as
5407 # DSK-262266, but they don't have a public bug tracker for us to follow.
5409 if ( $wgMinimalPasswordLength > 1 ) {
5410 $ret['pattern'] = '.{' . intval( $wgMinimalPasswordLength ) . ',}';
5411 $ret['title'] = wfMessage( 'passwordtooshort' )
5412 ->numParams( $wgMinimalPasswordLength )->text();
5420 * Return the list of user fields that should be selected to create
5421 * a new user object.
5424 public static function selectFields() {
5432 'user_email_authenticated',
5434 'user_email_token_expires',
5435 'user_registration',
5441 * Factory function for fatal permission-denied errors
5444 * @param string $permission User right required
5447 static function newFatalPermissionDeniedStatus( $permission ) {
5451 foreach ( User
::getGroupsWithPermission( $permission ) as $group ) {
5452 $groups[] = UserGroupMembership
::getLink( $group, RequestContext
::getMain(), 'wiki' );
5456 return Status
::newFatal( 'badaccess-groups', $wgLang->commaList( $groups ), count( $groups ) );
5458 return Status
::newFatal( 'badaccess-group0' );
5463 * Get a new instance of this user that was loaded from the master via a locking read
5465 * Use this instead of the main context User when updating that user. This avoids races
5466 * where that user was loaded from a replica DB or even the master but without proper locks.
5468 * @return User|null Returns null if the user was not found in the DB
5471 public function getInstanceForUpdate() {
5472 if ( !$this->getId() ) {
5473 return null; // anon
5476 $user = self
::newFromId( $this->getId() );
5477 if ( !$user->loadFromId( self
::READ_EXCLUSIVE
) ) {
5485 * Checks if two user objects point to the same user.
5491 public function equals( User
$user ) {
5492 return $this->getName() === $user->getName();