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
;
31 * String Some punctuation to prevent editing from broken text-mangling proxies.
32 * @deprecated since 1.27, use \MediaWiki\Session\Token::SUFFIX
35 define( 'EDIT_TOKEN_SUFFIX', Token
::SUFFIX
);
38 * The User object encapsulates all of the user-specific settings (user_id,
39 * name, rights, email address, options, last login time). Client
40 * classes use the getXXX() functions to access these fields. These functions
41 * do all the work of determining whether the user is logged in,
42 * whether the requested option can be satisfied from cookies or
43 * whether a database query is needed. Most of the settings needed
44 * for rendering normal pages are set in the cookie to minimize use
47 class User
implements IDBAccessObject
{
49 * @const int Number of characters in user_token field.
51 const TOKEN_LENGTH
= 32;
54 * @const string An invalid value for user_token
56 const INVALID_TOKEN
= '*** INVALID ***';
59 * Global constant made accessible as class constants so that autoloader
61 * @deprecated since 1.27, use \MediaWiki\Session\Token::SUFFIX
63 const EDIT_TOKEN_SUFFIX
= EDIT_TOKEN_SUFFIX
;
66 * @const int Serialized record version.
71 * Exclude user options that are set to their default value.
74 const GETOPTIONS_EXCLUDE_DEFAULTS
= 1;
79 const CHECK_USER_RIGHTS
= true;
84 const IGNORE_USER_RIGHTS
= false;
87 * Array of Strings List of member variables which are saved to the
88 * shared cache (memcached). Any operation which changes the
89 * corresponding database fields must call a cache-clearing function.
92 protected static $mCacheVars = [
100 'mEmailAuthenticated',
102 'mEmailTokenExpires',
107 // user_properties table
112 * Array of Strings Core rights.
113 * Each of these should have a corresponding message of the form
117 protected static $mCoreRights = [
148 'editusercssjs', # deprecated
161 'move-categorypages',
162 'move-rootuserpages',
166 '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;
231 protected $mOptionOverrides;
235 * Bool Whether the cache variables have been loaded.
238 public $mOptionsLoaded;
241 * Array with already loaded items or true if all items have been loaded.
243 protected $mLoadedItems = [];
247 * String Initialization data source if mLoadedItems!==true. May be one of:
248 * - 'defaults' anonymous user initialised from class defaults
249 * - 'name' initialise from mName
250 * - 'id' initialise from mId
251 * - 'session' log in from session if possible
253 * Use the User::newFrom*() family of functions to set this.
258 * Lazy-initialized variables, invalidated with clearInstanceCache
262 protected $mDatePreference;
270 protected $mBlockreason;
272 protected $mEffectiveGroups;
274 protected $mImplicitGroups;
276 protected $mFormerGroups;
278 protected $mGlobalBlock;
295 protected $mAllowUsertalk;
298 private $mBlockedFromCreateAccount = false;
300 /** @var integer User::READ_* constant bitfield used to load data */
301 protected $queryFlagsUsed = self
::READ_NORMAL
;
303 public static $idCacheByName = [];
306 * Lightweight constructor for an anonymous user.
307 * Use the User::newFrom* factory functions for other kinds of users.
311 * @see newFromConfirmationCode()
312 * @see newFromSession()
315 public function __construct() {
316 $this->clearInstanceCache( 'defaults' );
322 public function __toString() {
323 return $this->getName();
327 * Test if it's safe to load this User object.
329 * You should typically check this before using $wgUser or
330 * RequestContext::getUser in a method that might be called before the
331 * system has been fully initialized. If the object is unsafe, you should
332 * use an anonymous user:
334 * $user = $wgUser->isSafeToLoad() ? $wgUser : new User;
340 public function isSafeToLoad() {
341 global $wgFullyInitialised;
343 // The user is safe to load if:
344 // * MW_NO_SESSION is undefined AND $wgFullyInitialised is true (safe to use session data)
345 // * mLoadedItems === true (already loaded)
346 // * mFrom !== 'session' (sessions not involved at all)
348 return ( !defined( 'MW_NO_SESSION' ) && $wgFullyInitialised ) ||
349 $this->mLoadedItems
=== true ||
$this->mFrom
!== 'session';
353 * Load the user table data for this object from the source given by mFrom.
355 * @param integer $flags User::READ_* constant bitfield
357 public function load( $flags = self
::READ_NORMAL
) {
358 global $wgFullyInitialised;
360 if ( $this->mLoadedItems
=== true ) {
364 // Set it now to avoid infinite recursion in accessors
365 $oldLoadedItems = $this->mLoadedItems
;
366 $this->mLoadedItems
= true;
367 $this->queryFlagsUsed
= $flags;
369 // If this is called too early, things are likely to break.
370 if ( !$wgFullyInitialised && $this->mFrom
=== 'session' ) {
371 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
372 ->warning( 'User::loadFromSession called before the end of Setup.php', [
373 'exception' => new Exception( 'User::loadFromSession called before the end of Setup.php' ),
375 $this->loadDefaults();
376 $this->mLoadedItems
= $oldLoadedItems;
380 switch ( $this->mFrom
) {
382 $this->loadDefaults();
385 // Make sure this thread sees its own changes
386 if ( wfGetLB()->hasOrMadeRecentMasterChanges() ) {
387 $flags |
= self
::READ_LATEST
;
388 $this->queryFlagsUsed
= $flags;
391 $this->mId
= self
::idFromName( $this->mName
, $flags );
393 // Nonexistent user placeholder object
394 $this->loadDefaults( $this->mName
);
396 $this->loadFromId( $flags );
400 $this->loadFromId( $flags );
403 if ( !$this->loadFromSession() ) {
404 // Loading from session failed. Load defaults.
405 $this->loadDefaults();
407 Hooks
::run( 'UserLoadAfterLoadFromSession', [ $this ] );
410 throw new UnexpectedValueException(
411 "Unrecognised value for User->mFrom: \"{$this->mFrom}\"" );
416 * Load user table data, given mId has already been set.
417 * @param integer $flags User::READ_* constant bitfield
418 * @return bool False if the ID does not exist, true otherwise
420 public function loadFromId( $flags = self
::READ_NORMAL
) {
421 if ( $this->mId
== 0 ) {
422 // Anonymous users are not in the database (don't need cache)
423 $this->loadDefaults();
427 // Try cache (unless this needs data from the master DB).
428 // NOTE: if this thread called saveSettings(), the cache was cleared.
429 $latest = DBAccessObjectUtils
::hasFlags( $flags, self
::READ_LATEST
);
431 if ( !$this->loadFromDatabase( $flags ) ) {
432 // Can't load from ID
436 $this->loadFromCache();
439 $this->mLoadedItems
= true;
440 $this->queryFlagsUsed
= $flags;
447 * @param string $wikiId
448 * @param integer $userId
450 public static function purge( $wikiId, $userId ) {
451 $cache = ObjectCache
::getMainWANInstance();
452 $key = $cache->makeGlobalKey( 'user', 'id', $wikiId, $userId );
453 $cache->delete( $key );
458 * @param WANObjectCache $cache
461 protected function getCacheKey( WANObjectCache
$cache ) {
462 return $cache->makeGlobalKey( 'user', 'id', wfWikiID(), $this->mId
);
466 * Load user data from shared cache, given mId has already been set.
471 protected function loadFromCache() {
472 $cache = ObjectCache
::getMainWANInstance();
473 $data = $cache->getWithSetCallback(
474 $this->getCacheKey( $cache ),
476 function ( $oldValue, &$ttl, array &$setOpts ) {
477 $setOpts +
= Database
::getCacheSetOptions( wfGetDB( DB_SLAVE
) );
478 wfDebug( "User: cache miss for user {$this->mId}\n" );
480 $this->loadFromDatabase( self
::READ_NORMAL
);
482 $this->loadOptions();
485 foreach ( self
::$mCacheVars as $name ) {
486 $data[$name] = $this->$name;
492 [ 'pcTTL' => $cache::TTL_PROC_LONG
, 'version' => self
::VERSION
]
495 // Restore from cache
496 foreach ( self
::$mCacheVars as $name ) {
497 $this->$name = $data[$name];
503 /** @name newFrom*() static factory methods */
507 * Static factory method for creation from username.
509 * This is slightly less efficient than newFromId(), so use newFromId() if
510 * you have both an ID and a name handy.
512 * @param string $name Username, validated by Title::newFromText()
513 * @param string|bool $validate Validate username. Takes the same parameters as
514 * User::getCanonicalName(), except that true is accepted as an alias
515 * for 'valid', for BC.
517 * @return User|bool User object, or false if the username is invalid
518 * (e.g. if it contains illegal characters or is an IP address). If the
519 * username is not present in the database, the result will be a user object
520 * with a name, zero user ID and default settings.
522 public static function newFromName( $name, $validate = 'valid' ) {
523 if ( $validate === true ) {
526 $name = self
::getCanonicalName( $name, $validate );
527 if ( $name === false ) {
530 // Create unloaded user object
534 $u->setItemLoaded( 'name' );
540 * Static factory method for creation from a given user ID.
542 * @param int $id Valid user ID
543 * @return User The corresponding User object
545 public static function newFromId( $id ) {
549 $u->setItemLoaded( 'id' );
554 * Factory method to fetch whichever user has a given email confirmation code.
555 * This code is generated when an account is created or its e-mail address
558 * If the code is invalid or has expired, returns NULL.
560 * @param string $code Confirmation code
561 * @param int $flags User::READ_* bitfield
564 public static function newFromConfirmationCode( $code, $flags = 0 ) {
565 $db = ( $flags & self
::READ_LATEST
) == self
::READ_LATEST
566 ?
wfGetDB( DB_MASTER
)
567 : wfGetDB( DB_SLAVE
);
569 $id = $db->selectField(
573 'user_email_token' => md5( $code ),
574 'user_email_token_expires > ' . $db->addQuotes( $db->timestamp() ),
578 return $id ? User
::newFromId( $id ) : null;
582 * Create a new user object using data from session. If the login
583 * credentials are invalid, the result is an anonymous user.
585 * @param WebRequest|null $request Object to use; $wgRequest will be used if omitted.
588 public static function newFromSession( WebRequest
$request = null ) {
590 $user->mFrom
= 'session';
591 $user->mRequest
= $request;
596 * Create a new user object from a user row.
597 * The row should have the following fields from the user table in it:
598 * - either user_name or user_id to load further data if needed (or both)
600 * - all other fields (email, etc.)
601 * It is useless to provide the remaining fields if either user_id,
602 * user_name and user_real_name are not provided because the whole row
603 * will be loaded once more from the database when accessing them.
605 * @param stdClass $row A row from the user table
606 * @param array $data Further data to load into the object (see User::loadFromRow for valid keys)
609 public static function newFromRow( $row, $data = null ) {
611 $user->loadFromRow( $row, $data );
616 * Static factory method for creation of a "system" user from username.
618 * A "system" user is an account that's used to attribute logged actions
619 * taken by MediaWiki itself, as opposed to a bot or human user. Examples
620 * might include the 'Maintenance script' or 'Conversion script' accounts
621 * used by various scripts in the maintenance/ directory or accounts such
622 * as 'MediaWiki message delivery' used by the MassMessage extension.
624 * This can optionally create the user if it doesn't exist, and "steal" the
625 * account if it does exist.
627 * "Stealing" an existing user is intended to make it impossible for normal
628 * authentication processes to use the account, effectively disabling the
629 * account for normal use:
630 * - Email is invalidated, to prevent account recovery by emailing a
631 * temporary password and to disassociate the account from the existing
633 * - The token is set to a magic invalid value, to kill existing sessions
634 * and to prevent $this->setToken() calls from resetting the token to a
636 * - SessionManager is instructed to prevent new sessions for the user, to
637 * do things like deauthorizing OAuth consumers.
638 * - AuthManager is instructed to revoke access, to invalidate or remove
639 * passwords and other credentials.
641 * @param string $name Username
642 * @param array $options Options are:
643 * - validate: As for User::getCanonicalName(), default 'valid'
644 * - create: Whether to create the user if it doesn't already exist, default true
645 * - steal: Whether to "disable" the account for normal use if it already
646 * exists, default false
650 public static function newSystemUser( $name, $options = [] ) {
651 global $wgDisableAuthManager;
654 'validate' => 'valid',
659 $name = self
::getCanonicalName( $name, $options['validate'] );
660 if ( $name === false ) {
664 $fields = self
::selectFields();
665 if ( $wgDisableAuthManager ) {
666 $fields = array_merge( $fields, [ 'user_password', 'user_newpassword' ] );
669 $dbw = wfGetDB( DB_MASTER
);
670 $row = $dbw->selectRow(
673 [ 'user_name' => $name ],
677 // No user. Create it?
678 return $options['create'] ? self
::createNew( $name ) : null;
680 $user = self
::newFromRow( $row );
682 // A user is considered to exist as a non-system user if it can
683 // authenticate, or has an email set, or has a non-invalid token.
684 if ( !$user->mEmail
&& $user->mToken
=== self
::INVALID_TOKEN
) {
685 if ( $wgDisableAuthManager ) {
686 $passwordFactory = new PasswordFactory();
687 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
689 $password = $passwordFactory->newFromCiphertext( $row->user_password
);
690 } catch ( PasswordError
$e ) {
691 wfDebug( 'Invalid password hash found in database.' );
692 $password = PasswordFactory
::newInvalidPassword();
695 $newpassword = $passwordFactory->newFromCiphertext( $row->user_newpassword
);
696 } catch ( PasswordError
$e ) {
697 wfDebug( 'Invalid password hash found in database.' );
698 $newpassword = PasswordFactory
::newInvalidPassword();
700 $canAuthenticate = !$password instanceof InvalidPassword ||
701 !$newpassword instanceof InvalidPassword
;
703 $canAuthenticate = AuthManager
::singleton()->userCanAuthenticate( $name );
706 if ( $user->mEmail ||
$user->mToken
!== self
::INVALID_TOKEN ||
$canAuthenticate ) {
707 // User exists. Steal it?
708 if ( !$options['steal'] ) {
712 if ( $wgDisableAuthManager ) {
713 $nopass = PasswordFactory
::newInvalidPassword()->toString();
717 'user_password' => $nopass,
718 'user_newpassword' => $nopass,
719 'user_newpass_time' => null,
721 [ 'user_id' => $user->getId() ],
725 AuthManager
::singleton()->revokeAccessForUser( $name );
728 $user->invalidateEmail();
729 $user->mToken
= self
::INVALID_TOKEN
;
730 $user->saveSettings();
731 SessionManager
::singleton()->preventSessionsForUser( $user->getName() );
740 * Get the username corresponding to a given user ID
741 * @param int $id User ID
742 * @return string|bool The corresponding username
744 public static function whoIs( $id ) {
745 return UserCache
::singleton()->getProp( $id, 'name' );
749 * Get the real name of a user given their user ID
751 * @param int $id User ID
752 * @return string|bool The corresponding user's real name
754 public static function whoIsReal( $id ) {
755 return UserCache
::singleton()->getProp( $id, 'real_name' );
759 * Get database id given a user name
760 * @param string $name Username
761 * @param integer $flags User::READ_* constant bitfield
762 * @return int|null The corresponding user's ID, or null if user is nonexistent
764 public static function idFromName( $name, $flags = self
::READ_NORMAL
) {
765 $nt = Title
::makeTitleSafe( NS_USER
, $name );
766 if ( is_null( $nt ) ) {
771 if ( !( $flags & self
::READ_LATEST
) && isset( self
::$idCacheByName[$name] ) ) {
772 return self
::$idCacheByName[$name];
775 $db = ( $flags & self
::READ_LATEST
)
776 ?
wfGetDB( DB_MASTER
)
777 : wfGetDB( DB_SLAVE
);
782 [ 'user_name' => $nt->getText() ],
786 if ( $s === false ) {
789 $result = $s->user_id
;
792 self
::$idCacheByName[$name] = $result;
794 if ( count( self
::$idCacheByName ) > 1000 ) {
795 self
::$idCacheByName = [];
802 * Reset the cache used in idFromName(). For use in tests.
804 public static function resetIdByNameCache() {
805 self
::$idCacheByName = [];
809 * Does the string match an anonymous IP address?
811 * This function exists for username validation, in order to reject
812 * usernames which are similar in form to IP addresses. Strings such
813 * as 300.300.300.300 will return true because it looks like an IP
814 * address, despite not being strictly valid.
816 * We match "\d{1,3}\.\d{1,3}\.\d{1,3}\.xxx" as an anonymous IP
817 * address because the usemod software would "cloak" anonymous IP
818 * addresses like this, if we allowed accounts like this to be created
819 * new users could get the old edits of these anonymous users.
821 * @param string $name Name to match
824 public static function isIP( $name ) {
825 return preg_match( '/^\d{1,3}\.\d{1,3}\.\d{1,3}\.(?:xxx|\d{1,3})$/', $name )
826 || IP
::isIPv6( $name );
830 * Is the input a valid username?
832 * Checks if the input is a valid username, we don't want an empty string,
833 * an IP address, anything that contains slashes (would mess up subpages),
834 * is longer than the maximum allowed username size or doesn't begin with
837 * @param string $name Name to match
840 public static function isValidUserName( $name ) {
841 global $wgContLang, $wgMaxNameChars;
844 || User
::isIP( $name )
845 ||
strpos( $name, '/' ) !== false
846 ||
strlen( $name ) > $wgMaxNameChars
847 ||
$name != $wgContLang->ucfirst( $name )
852 // Ensure that the name can't be misresolved as a different title,
853 // such as with extra namespace keys at the start.
854 $parsed = Title
::newFromText( $name );
855 if ( is_null( $parsed )
856 ||
$parsed->getNamespace()
857 ||
strcmp( $name, $parsed->getPrefixedText() ) ) {
861 // Check an additional blacklist of troublemaker characters.
862 // Should these be merged into the title char list?
863 $unicodeBlacklist = '/[' .
864 '\x{0080}-\x{009f}' . # iso-8859-1 control chars
865 '\x{00a0}' . # non-breaking space
866 '\x{2000}-\x{200f}' . # various whitespace
867 '\x{2028}-\x{202f}' . # breaks and control chars
868 '\x{3000}' . # ideographic space
869 '\x{e000}-\x{f8ff}' . # private use
871 if ( preg_match( $unicodeBlacklist, $name ) ) {
879 * Usernames which fail to pass this function will be blocked
880 * from user login and new account registrations, but may be used
881 * internally by batch processes.
883 * If an account already exists in this form, login will be blocked
884 * by a failure to pass this function.
886 * @param string $name Name to match
889 public static function isUsableName( $name ) {
890 global $wgReservedUsernames;
891 // Must be a valid username, obviously ;)
892 if ( !self
::isValidUserName( $name ) ) {
896 static $reservedUsernames = false;
897 if ( !$reservedUsernames ) {
898 $reservedUsernames = $wgReservedUsernames;
899 Hooks
::run( 'UserGetReservedNames', [ &$reservedUsernames ] );
902 // Certain names may be reserved for batch processes.
903 foreach ( $reservedUsernames as $reserved ) {
904 if ( substr( $reserved, 0, 4 ) == 'msg:' ) {
905 $reserved = wfMessage( substr( $reserved, 4 ) )->inContentLanguage()->text();
907 if ( $reserved == $name ) {
915 * Usernames which fail to pass this function will be blocked
916 * from new account registrations, but may be used internally
917 * either by batch processes or by user accounts which have
918 * already been created.
920 * Additional blacklisting may be added here rather than in
921 * isValidUserName() to avoid disrupting existing accounts.
923 * @param string $name String to match
926 public static function isCreatableName( $name ) {
927 global $wgInvalidUsernameCharacters;
929 // Ensure that the username isn't longer than 235 bytes, so that
930 // (at least for the builtin skins) user javascript and css files
931 // will work. (bug 23080)
932 if ( strlen( $name ) > 235 ) {
933 wfDebugLog( 'username', __METHOD__
.
934 ": '$name' invalid due to length" );
938 // Preg yells if you try to give it an empty string
939 if ( $wgInvalidUsernameCharacters !== '' ) {
940 if ( preg_match( '/[' . preg_quote( $wgInvalidUsernameCharacters, '/' ) . ']/', $name ) ) {
941 wfDebugLog( 'username', __METHOD__
.
942 ": '$name' invalid due to wgInvalidUsernameCharacters" );
947 return self
::isUsableName( $name );
951 * Is the input a valid password for this user?
953 * @param string $password Desired password
956 public function isValidPassword( $password ) {
957 // simple boolean wrapper for getPasswordValidity
958 return $this->getPasswordValidity( $password ) === true;
962 * Given unvalidated password input, return error message on failure.
964 * @param string $password Desired password
965 * @return bool|string|array True on success, string or array of error message on failure
967 public function getPasswordValidity( $password ) {
968 $result = $this->checkPasswordValidity( $password );
969 if ( $result->isGood() ) {
973 foreach ( $result->getErrorsByType( 'error' ) as $error ) {
974 $messages[] = $error['message'];
976 foreach ( $result->getErrorsByType( 'warning' ) as $warning ) {
977 $messages[] = $warning['message'];
979 if ( count( $messages ) === 1 ) {
987 * Check if this is a valid password for this user
989 * Create a Status object based on the password's validity.
990 * The Status should be set to fatal if the user should not
991 * be allowed to log in, and should have any errors that
992 * would block changing the password.
994 * If the return value of this is not OK, the password
995 * should not be checked. If the return value is not Good,
996 * the password can be checked, but the user should not be
997 * able to set their password to this.
999 * @param string $password Desired password
1000 * @param string $purpose one of 'login', 'create', 'reset'
1004 public function checkPasswordValidity( $password, $purpose = 'login' ) {
1005 global $wgPasswordPolicy;
1007 $upp = new UserPasswordPolicy(
1008 $wgPasswordPolicy['policies'],
1009 $wgPasswordPolicy['checks']
1012 $status = Status
::newGood();
1013 $result = false; // init $result to false for the internal checks
1015 if ( !Hooks
::run( 'isValidPassword', [ $password, &$result, $this ] ) ) {
1016 $status->error( $result );
1020 if ( $result === false ) {
1021 $status->merge( $upp->checkUserPassword( $this, $password, $purpose ) );
1023 } elseif ( $result === true ) {
1026 $status->error( $result );
1027 return $status; // the isValidPassword hook set a string $result and returned true
1032 * Given unvalidated user input, return a canonical username, or false if
1033 * the username is invalid.
1034 * @param string $name User input
1035 * @param string|bool $validate Type of validation to use:
1036 * - false No validation
1037 * - 'valid' Valid for batch processes
1038 * - 'usable' Valid for batch processes and login
1039 * - 'creatable' Valid for batch processes, login and account creation
1041 * @throws InvalidArgumentException
1042 * @return bool|string
1044 public static function getCanonicalName( $name, $validate = 'valid' ) {
1045 // Force usernames to capital
1047 $name = $wgContLang->ucfirst( $name );
1049 # Reject names containing '#'; these will be cleaned up
1050 # with title normalisation, but then it's too late to
1052 if ( strpos( $name, '#' ) !== false ) {
1056 // Clean up name according to title rules,
1057 // but only when validation is requested (bug 12654)
1058 $t = ( $validate !== false ) ?
1059 Title
::newFromText( $name, NS_USER
) : Title
::makeTitle( NS_USER
, $name );
1060 // Check for invalid titles
1061 if ( is_null( $t ) ||
$t->getNamespace() !== NS_USER ||
$t->isExternal() ) {
1065 // Reject various classes of invalid names
1066 $name = AuthManager
::callLegacyAuthPlugin(
1067 'getCanonicalName', [ $t->getText() ], $t->getText()
1070 switch ( $validate ) {
1074 if ( !User
::isValidUserName( $name ) ) {
1079 if ( !User
::isUsableName( $name ) ) {
1084 if ( !User
::isCreatableName( $name ) ) {
1089 throw new InvalidArgumentException(
1090 'Invalid parameter value for $validate in ' . __METHOD__
);
1096 * Count the number of edits of a user
1098 * @param int $uid User ID to check
1099 * @return int The user's edit count
1101 * @deprecated since 1.21 in favour of User::getEditCount
1103 public static function edits( $uid ) {
1104 wfDeprecated( __METHOD__
, '1.21' );
1105 $user = self
::newFromId( $uid );
1106 return $user->getEditCount();
1110 * Return a random password.
1112 * @deprecated since 1.27, use PasswordFactory::generateRandomPasswordString()
1113 * @return string New random password
1115 public static function randomPassword() {
1116 global $wgMinimalPasswordLength;
1117 return PasswordFactory
::generateRandomPasswordString( $wgMinimalPasswordLength );
1121 * Set cached properties to default.
1123 * @note This no longer clears uncached lazy-initialised properties;
1124 * the constructor does that instead.
1126 * @param string|bool $name
1128 public function loadDefaults( $name = false ) {
1130 $this->mName
= $name;
1131 $this->mRealName
= '';
1133 $this->mOptionOverrides
= null;
1134 $this->mOptionsLoaded
= false;
1136 $loggedOut = $this->mRequest
&& !defined( 'MW_NO_SESSION' )
1137 ?
$this->mRequest
->getSession()->getLoggedOutTimestamp() : 0;
1138 if ( $loggedOut !== 0 ) {
1139 $this->mTouched
= wfTimestamp( TS_MW
, $loggedOut );
1141 $this->mTouched
= '1'; # Allow any pages to be cached
1144 $this->mToken
= null; // Don't run cryptographic functions till we need a token
1145 $this->mEmailAuthenticated
= null;
1146 $this->mEmailToken
= '';
1147 $this->mEmailTokenExpires
= null;
1148 $this->mRegistration
= wfTimestamp( TS_MW
);
1149 $this->mGroups
= [];
1151 Hooks
::run( 'UserLoadDefaults', [ $this, $name ] );
1155 * Return whether an item has been loaded.
1157 * @param string $item Item to check. Current possibilities:
1161 * @param string $all 'all' to check if the whole object has been loaded
1162 * or any other string to check if only the item is available (e.g.
1166 public function isItemLoaded( $item, $all = 'all' ) {
1167 return ( $this->mLoadedItems
=== true && $all === 'all' ) ||
1168 ( isset( $this->mLoadedItems
[$item] ) && $this->mLoadedItems
[$item] === true );
1172 * Set that an item has been loaded
1174 * @param string $item
1176 protected function setItemLoaded( $item ) {
1177 if ( is_array( $this->mLoadedItems
) ) {
1178 $this->mLoadedItems
[$item] = true;
1183 * Load user data from the session.
1185 * @return bool True if the user is logged in, false otherwise.
1187 private function loadFromSession() {
1190 Hooks
::run( 'UserLoadFromSession', [ $this, &$result ], '1.27' );
1191 if ( $result !== null ) {
1195 // MediaWiki\Session\Session already did the necessary authentication of the user
1196 // returned here, so just use it if applicable.
1197 $session = $this->getRequest()->getSession();
1198 $user = $session->getUser();
1199 if ( $user->isLoggedIn() ) {
1200 $this->loadFromUserObject( $user );
1201 // Other code expects these to be set in the session, so set them.
1202 $session->set( 'wsUserID', $this->getId() );
1203 $session->set( 'wsUserName', $this->getName() );
1204 $session->set( 'wsToken', $this->getToken() );
1212 * Load user and user_group data from the database.
1213 * $this->mId must be set, this is how the user is identified.
1215 * @param integer $flags User::READ_* constant bitfield
1216 * @return bool True if the user exists, false if the user is anonymous
1218 public function loadFromDatabase( $flags = self
::READ_LATEST
) {
1220 $this->mId
= intval( $this->mId
);
1222 if ( !$this->mId
) {
1223 // Anonymous users are not in the database
1224 $this->loadDefaults();
1228 list( $index, $options ) = DBAccessObjectUtils
::getDBOptions( $flags );
1229 $db = wfGetDB( $index );
1231 $s = $db->selectRow(
1233 self
::selectFields(),
1234 [ 'user_id' => $this->mId
],
1239 $this->queryFlagsUsed
= $flags;
1240 Hooks
::run( 'UserLoadFromDatabase', [ $this, &$s ] );
1242 if ( $s !== false ) {
1243 // Initialise user table data
1244 $this->loadFromRow( $s );
1245 $this->mGroups
= null; // deferred
1246 $this->getEditCount(); // revalidation for nulls
1251 $this->loadDefaults();
1257 * Initialize this object from a row from the user table.
1259 * @param stdClass $row Row from the user table to load.
1260 * @param array $data Further user data to load into the object
1262 * user_groups Array with groups out of the user_groups table
1263 * user_properties Array with properties out of the user_properties table
1265 protected function loadFromRow( $row, $data = null ) {
1268 $this->mGroups
= null; // deferred
1270 if ( isset( $row->user_name
) ) {
1271 $this->mName
= $row->user_name
;
1272 $this->mFrom
= 'name';
1273 $this->setItemLoaded( 'name' );
1278 if ( isset( $row->user_real_name
) ) {
1279 $this->mRealName
= $row->user_real_name
;
1280 $this->setItemLoaded( 'realname' );
1285 if ( isset( $row->user_id
) ) {
1286 $this->mId
= intval( $row->user_id
);
1287 $this->mFrom
= 'id';
1288 $this->setItemLoaded( 'id' );
1293 if ( isset( $row->user_id
) && isset( $row->user_name
) ) {
1294 self
::$idCacheByName[$row->user_name
] = $row->user_id
;
1297 if ( isset( $row->user_editcount
) ) {
1298 $this->mEditCount
= $row->user_editcount
;
1303 if ( isset( $row->user_touched
) ) {
1304 $this->mTouched
= wfTimestamp( TS_MW
, $row->user_touched
);
1309 if ( isset( $row->user_token
) ) {
1310 // The definition for the column is binary(32), so trim the NULs
1311 // that appends. The previous definition was char(32), so trim
1313 $this->mToken
= rtrim( $row->user_token
, " \0" );
1314 if ( $this->mToken
=== '' ) {
1315 $this->mToken
= null;
1321 if ( isset( $row->user_email
) ) {
1322 $this->mEmail
= $row->user_email
;
1323 $this->mEmailAuthenticated
= wfTimestampOrNull( TS_MW
, $row->user_email_authenticated
);
1324 $this->mEmailToken
= $row->user_email_token
;
1325 $this->mEmailTokenExpires
= wfTimestampOrNull( TS_MW
, $row->user_email_token_expires
);
1326 $this->mRegistration
= wfTimestampOrNull( TS_MW
, $row->user_registration
);
1332 $this->mLoadedItems
= true;
1335 if ( is_array( $data ) ) {
1336 if ( isset( $data['user_groups'] ) && is_array( $data['user_groups'] ) ) {
1337 $this->mGroups
= $data['user_groups'];
1339 if ( isset( $data['user_properties'] ) && is_array( $data['user_properties'] ) ) {
1340 $this->loadOptions( $data['user_properties'] );
1346 * Load the data for this user object from another user object.
1350 protected function loadFromUserObject( $user ) {
1352 $user->loadGroups();
1353 $user->loadOptions();
1354 foreach ( self
::$mCacheVars as $var ) {
1355 $this->$var = $user->$var;
1360 * Load the groups from the database if they aren't already loaded.
1362 private function loadGroups() {
1363 if ( is_null( $this->mGroups
) ) {
1364 $db = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
1365 ?
wfGetDB( DB_MASTER
)
1366 : wfGetDB( DB_SLAVE
);
1367 $res = $db->select( 'user_groups',
1369 [ 'ug_user' => $this->mId
],
1371 $this->mGroups
= [];
1372 foreach ( $res as $row ) {
1373 $this->mGroups
[] = $row->ug_group
;
1379 * Add the user to the group if he/she meets given criteria.
1381 * Contrary to autopromotion by \ref $wgAutopromote, the group will be
1382 * possible to remove manually via Special:UserRights. In such case it
1383 * will not be re-added automatically. The user will also not lose the
1384 * group if they no longer meet the criteria.
1386 * @param string $event Key in $wgAutopromoteOnce (each one has groups/criteria)
1388 * @return array Array of groups the user has been promoted to.
1390 * @see $wgAutopromoteOnce
1392 public function addAutopromoteOnceGroups( $event ) {
1393 global $wgAutopromoteOnceLogInRC;
1395 if ( wfReadOnly() ||
!$this->getId() ) {
1399 $toPromote = Autopromote
::getAutopromoteOnceGroups( $this, $event );
1400 if ( !count( $toPromote ) ) {
1404 if ( !$this->checkAndSetTouched() ) {
1405 return []; // raced out (bug T48834)
1408 $oldGroups = $this->getGroups(); // previous groups
1409 foreach ( $toPromote as $group ) {
1410 $this->addGroup( $group );
1412 // update groups in external authentication database
1413 Hooks
::run( 'UserGroupsChanged', [ $this, $toPromote, [], false, false ] );
1414 AuthManager
::callLegacyAuthPlugin( 'updateExternalDBGroups', [ $this, $toPromote ] );
1416 $newGroups = array_merge( $oldGroups, $toPromote ); // all groups
1418 $logEntry = new ManualLogEntry( 'rights', 'autopromote' );
1419 $logEntry->setPerformer( $this );
1420 $logEntry->setTarget( $this->getUserPage() );
1421 $logEntry->setParameters( [
1422 '4::oldgroups' => $oldGroups,
1423 '5::newgroups' => $newGroups,
1425 $logid = $logEntry->insert();
1426 if ( $wgAutopromoteOnceLogInRC ) {
1427 $logEntry->publish( $logid );
1434 * Builds update conditions. Additional conditions may be added to $conditions to
1435 * protected against race conditions using a compare-and-set (CAS) mechanism
1436 * based on comparing $this->mTouched with the user_touched field.
1438 * @param DatabaseBase $db
1439 * @param array $conditions WHERE conditions for use with DatabaseBase::update
1440 * @return array WHERE conditions for use with DatabaseBase::update
1442 protected function makeUpdateConditions( DatabaseBase
$db, array $conditions ) {
1443 if ( $this->mTouched
) {
1444 // CAS check: only update if the row wasn't changed sicne it was loaded.
1445 $conditions['user_touched'] = $db->timestamp( $this->mTouched
);
1452 * Bump user_touched if it didn't change since this object was loaded
1454 * On success, the mTouched field is updated.
1455 * The user serialization cache is always cleared.
1457 * @return bool Whether user_touched was actually updated
1460 protected function checkAndSetTouched() {
1463 if ( !$this->mId
) {
1464 return false; // anon
1467 // Get a new user_touched that is higher than the old one
1468 $newTouched = $this->newTouchedTimestamp();
1470 $dbw = wfGetDB( DB_MASTER
);
1471 $dbw->update( 'user',
1472 [ 'user_touched' => $dbw->timestamp( $newTouched ) ],
1473 $this->makeUpdateConditions( $dbw, [
1474 'user_id' => $this->mId
,
1478 $success = ( $dbw->affectedRows() > 0 );
1481 $this->mTouched
= $newTouched;
1482 $this->clearSharedCache();
1484 // Clears on failure too since that is desired if the cache is stale
1485 $this->clearSharedCache( 'refresh' );
1492 * Clear various cached data stored in this object. The cache of the user table
1493 * data (i.e. self::$mCacheVars) is not cleared unless $reloadFrom is given.
1495 * @param bool|string $reloadFrom Reload user and user_groups table data from a
1496 * given source. May be "name", "id", "defaults", "session", or false for no reload.
1498 public function clearInstanceCache( $reloadFrom = false ) {
1499 $this->mNewtalk
= -1;
1500 $this->mDatePreference
= null;
1501 $this->mBlockedby
= -1; # Unset
1502 $this->mHash
= false;
1503 $this->mRights
= null;
1504 $this->mEffectiveGroups
= null;
1505 $this->mImplicitGroups
= null;
1506 $this->mGroups
= null;
1507 $this->mOptions
= null;
1508 $this->mOptionsLoaded
= false;
1509 $this->mEditCount
= null;
1511 if ( $reloadFrom ) {
1512 $this->mLoadedItems
= [];
1513 $this->mFrom
= $reloadFrom;
1518 * Combine the language default options with any site-specific options
1519 * and add the default language variants.
1521 * @return array Array of String options
1523 public static function getDefaultOptions() {
1524 global $wgNamespacesToBeSearchedDefault, $wgDefaultUserOptions, $wgContLang, $wgDefaultSkin;
1526 static $defOpt = null;
1527 if ( !defined( 'MW_PHPUNIT_TEST' ) && $defOpt !== null ) {
1528 // Disabling this for the unit tests, as they rely on being able to change $wgContLang
1529 // mid-request and see that change reflected in the return value of this function.
1530 // Which is insane and would never happen during normal MW operation
1534 $defOpt = $wgDefaultUserOptions;
1535 // Default language setting
1536 $defOpt['language'] = $wgContLang->getCode();
1537 foreach ( LanguageConverter
::$languagesWithVariants as $langCode ) {
1538 $defOpt[$langCode == $wgContLang->getCode() ?
'variant' : "variant-$langCode"] = $langCode;
1540 $namespaces = MediaWikiServices
::getInstance()->getSearchEngineConfig()->searchableNamespaces();
1541 foreach ( $namespaces as $nsnum => $nsname ) {
1542 $defOpt['searchNs' . $nsnum] = !empty( $wgNamespacesToBeSearchedDefault[$nsnum] );
1544 $defOpt['skin'] = Skin
::normalizeKey( $wgDefaultSkin );
1546 Hooks
::run( 'UserGetDefaultOptions', [ &$defOpt ] );
1552 * Get a given default option value.
1554 * @param string $opt Name of option to retrieve
1555 * @return string Default option value
1557 public static function getDefaultOption( $opt ) {
1558 $defOpts = self
::getDefaultOptions();
1559 if ( isset( $defOpts[$opt] ) ) {
1560 return $defOpts[$opt];
1567 * Get blocking information
1568 * @param bool $bFromSlave Whether to check the slave database first.
1569 * To improve performance, non-critical checks are done against slaves.
1570 * Check when actually saving should be done against master.
1572 private function getBlockedStatus( $bFromSlave = true ) {
1573 global $wgProxyWhitelist, $wgUser, $wgApplyIpBlocksToXff;
1575 if ( -1 != $this->mBlockedby
) {
1579 wfDebug( __METHOD__
. ": checking...\n" );
1581 // Initialize data...
1582 // Otherwise something ends up stomping on $this->mBlockedby when
1583 // things get lazy-loaded later, causing false positive block hits
1584 // due to -1 !== 0. Probably session-related... Nothing should be
1585 // overwriting mBlockedby, surely?
1588 # We only need to worry about passing the IP address to the Block generator if the
1589 # user is not immune to autoblocks/hardblocks, and they are the current user so we
1590 # know which IP address they're actually coming from
1592 if ( !$this->isAllowed( 'ipblock-exempt' ) ) {
1593 // $wgUser->getName() only works after the end of Setup.php. Until
1594 // then, assume it's a logged-out user.
1595 $globalUserName = $wgUser->isSafeToLoad()
1596 ?
$wgUser->getName()
1597 : IP
::sanitizeIP( $wgUser->getRequest()->getIP() );
1598 if ( $this->getName() === $globalUserName ) {
1599 $ip = $this->getRequest()->getIP();
1604 $block = Block
::newFromTarget( $this, $ip, !$bFromSlave );
1607 if ( !$block instanceof Block
&& $ip !== null && !in_array( $ip, $wgProxyWhitelist ) ) {
1609 if ( self
::isLocallyBlockedProxy( $ip ) ) {
1611 $block->setBlocker( wfMessage( 'proxyblocker' )->text() );
1612 $block->mReason
= wfMessage( 'proxyblockreason' )->text();
1613 $block->setTarget( $ip );
1614 } elseif ( $this->isAnon() && $this->isDnsBlacklisted( $ip ) ) {
1616 $block->setBlocker( wfMessage( 'sorbs' )->text() );
1617 $block->mReason
= wfMessage( 'sorbsreason' )->text();
1618 $block->setTarget( $ip );
1622 // (bug 23343) Apply IP blocks to the contents of XFF headers, if enabled
1623 if ( !$block instanceof Block
1624 && $wgApplyIpBlocksToXff
1626 && !in_array( $ip, $wgProxyWhitelist )
1628 $xff = $this->getRequest()->getHeader( 'X-Forwarded-For' );
1629 $xff = array_map( 'trim', explode( ',', $xff ) );
1630 $xff = array_diff( $xff, [ $ip ] );
1631 $xffblocks = Block
::getBlocksForIPList( $xff, $this->isAnon(), !$bFromSlave );
1632 $block = Block
::chooseBlock( $xffblocks, $xff );
1633 if ( $block instanceof Block
) {
1634 # Mangle the reason to alert the user that the block
1635 # originated from matching the X-Forwarded-For header.
1636 $block->mReason
= wfMessage( 'xffblockreason', $block->mReason
)->text();
1640 if ( $block instanceof Block
) {
1641 wfDebug( __METHOD__
. ": Found block.\n" );
1642 $this->mBlock
= $block;
1643 $this->mBlockedby
= $block->getByName();
1644 $this->mBlockreason
= $block->mReason
;
1645 $this->mHideName
= $block->mHideName
;
1646 $this->mAllowUsertalk
= !$block->prevents( 'editownusertalk' );
1648 $this->mBlockedby
= '';
1649 $this->mHideName
= 0;
1650 $this->mAllowUsertalk
= false;
1654 Hooks
::run( 'GetBlockedStatus', [ &$this ] );
1659 * Whether the given IP is in a DNS blacklist.
1661 * @param string $ip IP to check
1662 * @param bool $checkWhitelist Whether to check the whitelist first
1663 * @return bool True if blacklisted.
1665 public function isDnsBlacklisted( $ip, $checkWhitelist = false ) {
1666 global $wgEnableDnsBlacklist, $wgDnsBlacklistUrls, $wgProxyWhitelist;
1668 if ( !$wgEnableDnsBlacklist ) {
1672 if ( $checkWhitelist && in_array( $ip, $wgProxyWhitelist ) ) {
1676 return $this->inDnsBlacklist( $ip, $wgDnsBlacklistUrls );
1680 * Whether the given IP is in a given DNS blacklist.
1682 * @param string $ip IP to check
1683 * @param string|array $bases Array of Strings: URL of the DNS blacklist
1684 * @return bool True if blacklisted.
1686 public function inDnsBlacklist( $ip, $bases ) {
1689 // @todo FIXME: IPv6 ??? (http://bugs.php.net/bug.php?id=33170)
1690 if ( IP
::isIPv4( $ip ) ) {
1691 // Reverse IP, bug 21255
1692 $ipReversed = implode( '.', array_reverse( explode( '.', $ip ) ) );
1694 foreach ( (array)$bases as $base ) {
1696 // If we have an access key, use that too (ProjectHoneypot, etc.)
1698 if ( is_array( $base ) ) {
1699 if ( count( $base ) >= 2 ) {
1700 // Access key is 1, base URL is 0
1701 $host = "{$base[1]}.$ipReversed.{$base[0]}";
1703 $host = "$ipReversed.{$base[0]}";
1705 $basename = $base[0];
1707 $host = "$ipReversed.$base";
1711 $ipList = gethostbynamel( $host );
1714 wfDebugLog( 'dnsblacklist', "Hostname $host is {$ipList[0]}, it's a proxy says $basename!" );
1718 wfDebugLog( 'dnsblacklist', "Requested $host, not found in $basename." );
1727 * Check if an IP address is in the local proxy list
1733 public static function isLocallyBlockedProxy( $ip ) {
1734 global $wgProxyList;
1736 if ( !$wgProxyList ) {
1740 if ( !is_array( $wgProxyList ) ) {
1741 // Load from the specified file
1742 $wgProxyList = array_map( 'trim', file( $wgProxyList ) );
1745 if ( !is_array( $wgProxyList ) ) {
1747 } elseif ( array_search( $ip, $wgProxyList ) !== false ) {
1749 } elseif ( array_key_exists( $ip, $wgProxyList ) ) {
1750 // Old-style flipped proxy list
1759 * Is this user subject to rate limiting?
1761 * @return bool True if rate limited
1763 public function isPingLimitable() {
1764 global $wgRateLimitsExcludedIPs;
1765 if ( in_array( $this->getRequest()->getIP(), $wgRateLimitsExcludedIPs ) ) {
1766 // No other good way currently to disable rate limits
1767 // for specific IPs. :P
1768 // But this is a crappy hack and should die.
1771 return !$this->isAllowed( 'noratelimit' );
1775 * Primitive rate limits: enforce maximum actions per time period
1776 * to put a brake on flooding.
1778 * The method generates both a generic profiling point and a per action one
1779 * (suffix being "-$action".
1781 * @note When using a shared cache like memcached, IP-address
1782 * last-hit counters will be shared across wikis.
1784 * @param string $action Action to enforce; 'edit' if unspecified
1785 * @param int $incrBy Positive amount to increment counter by [defaults to 1]
1786 * @return bool True if a rate limiter was tripped
1788 public function pingLimiter( $action = 'edit', $incrBy = 1 ) {
1789 // Call the 'PingLimiter' hook
1791 if ( !Hooks
::run( 'PingLimiter', [ &$this, $action, &$result, $incrBy ] ) ) {
1795 global $wgRateLimits;
1796 if ( !isset( $wgRateLimits[$action] ) ) {
1800 // Some groups shouldn't trigger the ping limiter, ever
1801 if ( !$this->isPingLimitable() ) {
1805 $limits = $wgRateLimits[$action];
1807 $id = $this->getId();
1809 $isNewbie = $this->isNewbie();
1813 if ( isset( $limits['anon'] ) ) {
1814 $keys[wfMemcKey( 'limiter', $action, 'anon' )] = $limits['anon'];
1817 // limits for logged-in users
1818 if ( isset( $limits['user'] ) ) {
1819 $userLimit = $limits['user'];
1821 // limits for newbie logged-in users
1822 if ( $isNewbie && isset( $limits['newbie'] ) ) {
1823 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $limits['newbie'];
1827 // limits for anons and for newbie logged-in users
1830 if ( isset( $limits['ip'] ) ) {
1831 $ip = $this->getRequest()->getIP();
1832 $keys["mediawiki:limiter:$action:ip:$ip"] = $limits['ip'];
1834 // subnet-based limits
1835 if ( isset( $limits['subnet'] ) ) {
1836 $ip = $this->getRequest()->getIP();
1837 $subnet = IP
::getSubnet( $ip );
1838 if ( $subnet !== false ) {
1839 $keys["mediawiki:limiter:$action:subnet:$subnet"] = $limits['subnet'];
1844 // Check for group-specific permissions
1845 // If more than one group applies, use the group with the highest limit ratio (max/period)
1846 foreach ( $this->getGroups() as $group ) {
1847 if ( isset( $limits[$group] ) ) {
1848 if ( $userLimit === false
1849 ||
$limits[$group][0] / $limits[$group][1] > $userLimit[0] / $userLimit[1]
1851 $userLimit = $limits[$group];
1856 // Set the user limit key
1857 if ( $userLimit !== false ) {
1858 list( $max, $period ) = $userLimit;
1859 wfDebug( __METHOD__
. ": effective user limit: $max in {$period}s\n" );
1860 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $userLimit;
1863 // ip-based limits for all ping-limitable users
1864 if ( isset( $limits['ip-all'] ) ) {
1865 $ip = $this->getRequest()->getIP();
1866 // ignore if user limit is more permissive
1867 if ( $isNewbie ||
$userLimit === false
1868 ||
$limits['ip-all'][0] / $limits['ip-all'][1] > $userLimit[0] / $userLimit[1] ) {
1869 $keys["mediawiki:limiter:$action:ip-all:$ip"] = $limits['ip-all'];
1873 // subnet-based limits for all ping-limitable users
1874 if ( isset( $limits['subnet-all'] ) ) {
1875 $ip = $this->getRequest()->getIP();
1876 $subnet = IP
::getSubnet( $ip );
1877 if ( $subnet !== false ) {
1878 // ignore if user limit is more permissive
1879 if ( $isNewbie ||
$userLimit === false
1880 ||
$limits['ip-all'][0] / $limits['ip-all'][1]
1881 > $userLimit[0] / $userLimit[1] ) {
1882 $keys["mediawiki:limiter:$action:subnet-all:$subnet"] = $limits['subnet-all'];
1887 $cache = ObjectCache
::getLocalClusterInstance();
1890 foreach ( $keys as $key => $limit ) {
1891 list( $max, $period ) = $limit;
1892 $summary = "(limit $max in {$period}s)";
1893 $count = $cache->get( $key );
1896 if ( $count >= $max ) {
1897 wfDebugLog( 'ratelimit', "User '{$this->getName()}' " .
1898 "(IP {$this->getRequest()->getIP()}) tripped $key at $count $summary" );
1901 wfDebug( __METHOD__
. ": ok. $key at $count $summary\n" );
1904 wfDebug( __METHOD__
. ": adding record for $key $summary\n" );
1905 if ( $incrBy > 0 ) {
1906 $cache->add( $key, 0, intval( $period ) ); // first ping
1909 if ( $incrBy > 0 ) {
1910 $cache->incr( $key, $incrBy );
1918 * Check if user is blocked
1920 * @param bool $bFromSlave Whether to check the slave database instead of
1921 * the master. Hacked from false due to horrible probs on site.
1922 * @return bool True if blocked, false otherwise
1924 public function isBlocked( $bFromSlave = true ) {
1925 return $this->getBlock( $bFromSlave ) instanceof Block
&& $this->getBlock()->prevents( 'edit' );
1929 * Get the block affecting the user, or null if the user is not blocked
1931 * @param bool $bFromSlave Whether to check the slave database instead of the master
1932 * @return Block|null
1934 public function getBlock( $bFromSlave = true ) {
1935 $this->getBlockedStatus( $bFromSlave );
1936 return $this->mBlock
instanceof Block ?
$this->mBlock
: null;
1940 * Check if user is blocked from editing a particular article
1942 * @param Title $title Title to check
1943 * @param bool $bFromSlave Whether to check the slave database instead of the master
1946 public function isBlockedFrom( $title, $bFromSlave = false ) {
1947 global $wgBlockAllowsUTEdit;
1949 $blocked = $this->isBlocked( $bFromSlave );
1950 $allowUsertalk = ( $wgBlockAllowsUTEdit ?
$this->mAllowUsertalk
: false );
1951 // If a user's name is suppressed, they cannot make edits anywhere
1952 if ( !$this->mHideName
&& $allowUsertalk && $title->getText() === $this->getName()
1953 && $title->getNamespace() == NS_USER_TALK
) {
1955 wfDebug( __METHOD__
. ": self-talk page, ignoring any blocks\n" );
1958 Hooks
::run( 'UserIsBlockedFrom', [ $this, $title, &$blocked, &$allowUsertalk ] );
1964 * If user is blocked, return the name of the user who placed the block
1965 * @return string Name of blocker
1967 public function blockedBy() {
1968 $this->getBlockedStatus();
1969 return $this->mBlockedby
;
1973 * If user is blocked, return the specified reason for the block
1974 * @return string Blocking reason
1976 public function blockedFor() {
1977 $this->getBlockedStatus();
1978 return $this->mBlockreason
;
1982 * If user is blocked, return the ID for the block
1983 * @return int Block ID
1985 public function getBlockId() {
1986 $this->getBlockedStatus();
1987 return ( $this->mBlock ?
$this->mBlock
->getId() : false );
1991 * Check if user is blocked on all wikis.
1992 * Do not use for actual edit permission checks!
1993 * This is intended for quick UI checks.
1995 * @param string $ip IP address, uses current client if none given
1996 * @return bool True if blocked, false otherwise
1998 public function isBlockedGlobally( $ip = '' ) {
1999 return $this->getGlobalBlock( $ip ) instanceof Block
;
2003 * Check if user is blocked on all wikis.
2004 * Do not use for actual edit permission checks!
2005 * This is intended for quick UI checks.
2007 * @param string $ip IP address, uses current client if none given
2008 * @return Block|null Block object if blocked, null otherwise
2009 * @throws FatalError
2010 * @throws MWException
2012 public function getGlobalBlock( $ip = '' ) {
2013 if ( $this->mGlobalBlock
!== null ) {
2014 return $this->mGlobalBlock ?
: null;
2016 // User is already an IP?
2017 if ( IP
::isIPAddress( $this->getName() ) ) {
2018 $ip = $this->getName();
2020 $ip = $this->getRequest()->getIP();
2024 Hooks
::run( 'UserIsBlockedGlobally', [ &$this, $ip, &$blocked, &$block ] );
2026 if ( $blocked && $block === null ) {
2027 // back-compat: UserIsBlockedGlobally didn't have $block param first
2029 $block->setTarget( $ip );
2032 $this->mGlobalBlock
= $blocked ?
$block : false;
2033 return $this->mGlobalBlock ?
: null;
2037 * Check if user account is locked
2039 * @return bool True if locked, false otherwise
2041 public function isLocked() {
2042 if ( $this->mLocked
!== null ) {
2043 return $this->mLocked
;
2045 $authUser = AuthManager
::callLegacyAuthPlugin( 'getUserInstance', [ &$this ], null );
2046 $this->mLocked
= $authUser && $authUser->isLocked();
2047 Hooks
::run( 'UserIsLocked', [ $this, &$this->mLocked
] );
2048 return $this->mLocked
;
2052 * Check if user account is hidden
2054 * @return bool True if hidden, false otherwise
2056 public function isHidden() {
2057 if ( $this->mHideName
!== null ) {
2058 return $this->mHideName
;
2060 $this->getBlockedStatus();
2061 if ( !$this->mHideName
) {
2062 $authUser = AuthManager
::callLegacyAuthPlugin( 'getUserInstance', [ &$this ], null );
2063 $this->mHideName
= $authUser && $authUser->isHidden();
2064 Hooks
::run( 'UserIsHidden', [ $this, &$this->mHideName
] );
2066 return $this->mHideName
;
2070 * Get the user's ID.
2071 * @return int The user's ID; 0 if the user is anonymous or nonexistent
2073 public function getId() {
2074 if ( $this->mId
=== null && $this->mName
!== null && User
::isIP( $this->mName
) ) {
2075 // Special case, we know the user is anonymous
2077 } elseif ( !$this->isItemLoaded( 'id' ) ) {
2078 // Don't load if this was initialized from an ID
2082 return (int)$this->mId
;
2086 * Set the user and reload all fields according to a given ID
2087 * @param int $v User ID to reload
2089 public function setId( $v ) {
2091 $this->clearInstanceCache( 'id' );
2095 * Get the user name, or the IP of an anonymous user
2096 * @return string User's name or IP address
2098 public function getName() {
2099 if ( $this->isItemLoaded( 'name', 'only' ) ) {
2100 // Special case optimisation
2101 return $this->mName
;
2104 if ( $this->mName
=== false ) {
2106 $this->mName
= IP
::sanitizeIP( $this->getRequest()->getIP() );
2108 return $this->mName
;
2113 * Set the user name.
2115 * This does not reload fields from the database according to the given
2116 * name. Rather, it is used to create a temporary "nonexistent user" for
2117 * later addition to the database. It can also be used to set the IP
2118 * address for an anonymous user to something other than the current
2121 * @note User::newFromName() has roughly the same function, when the named user
2123 * @param string $str New user name to set
2125 public function setName( $str ) {
2127 $this->mName
= $str;
2131 * Get the user's name escaped by underscores.
2132 * @return string Username escaped by underscores.
2134 public function getTitleKey() {
2135 return str_replace( ' ', '_', $this->getName() );
2139 * Check if the user has new messages.
2140 * @return bool True if the user has new messages
2142 public function getNewtalk() {
2145 // Load the newtalk status if it is unloaded (mNewtalk=-1)
2146 if ( $this->mNewtalk
=== -1 ) {
2147 $this->mNewtalk
= false; # reset talk page status
2149 // Check memcached separately for anons, who have no
2150 // entire User object stored in there.
2151 if ( !$this->mId
) {
2152 global $wgDisableAnonTalk;
2153 if ( $wgDisableAnonTalk ) {
2154 // Anon newtalk disabled by configuration.
2155 $this->mNewtalk
= false;
2157 $this->mNewtalk
= $this->checkNewtalk( 'user_ip', $this->getName() );
2160 $this->mNewtalk
= $this->checkNewtalk( 'user_id', $this->mId
);
2164 return (bool)$this->mNewtalk
;
2168 * Return the data needed to construct links for new talk page message
2169 * alerts. If there are new messages, this will return an associative array
2170 * with the following data:
2171 * wiki: The database name of the wiki
2172 * link: Root-relative link to the user's talk page
2173 * rev: The last talk page revision that the user has seen or null. This
2174 * is useful for building diff links.
2175 * If there are no new messages, it returns an empty array.
2176 * @note This function was designed to accomodate multiple talk pages, but
2177 * currently only returns a single link and revision.
2180 public function getNewMessageLinks() {
2182 if ( !Hooks
::run( 'UserRetrieveNewTalks', [ &$this, &$talks ] ) ) {
2184 } elseif ( !$this->getNewtalk() ) {
2187 $utp = $this->getTalkPage();
2188 $dbr = wfGetDB( DB_SLAVE
);
2189 // Get the "last viewed rev" timestamp from the oldest message notification
2190 $timestamp = $dbr->selectField( 'user_newtalk',
2191 'MIN(user_last_timestamp)',
2192 $this->isAnon() ?
[ 'user_ip' => $this->getName() ] : [ 'user_id' => $this->getId() ],
2194 $rev = $timestamp ? Revision
::loadFromTimestamp( $dbr, $utp, $timestamp ) : null;
2195 return [ [ 'wiki' => wfWikiID(), 'link' => $utp->getLocalURL(), 'rev' => $rev ] ];
2199 * Get the revision ID for the last talk page revision viewed by the talk
2201 * @return int|null Revision ID or null
2203 public function getNewMessageRevisionId() {
2204 $newMessageRevisionId = null;
2205 $newMessageLinks = $this->getNewMessageLinks();
2206 if ( $newMessageLinks ) {
2207 // Note: getNewMessageLinks() never returns more than a single link
2208 // and it is always for the same wiki, but we double-check here in
2209 // case that changes some time in the future.
2210 if ( count( $newMessageLinks ) === 1
2211 && $newMessageLinks[0]['wiki'] === wfWikiID()
2212 && $newMessageLinks[0]['rev']
2214 /** @var Revision $newMessageRevision */
2215 $newMessageRevision = $newMessageLinks[0]['rev'];
2216 $newMessageRevisionId = $newMessageRevision->getId();
2219 return $newMessageRevisionId;
2223 * Internal uncached check for new messages
2226 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2227 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2228 * @return bool True if the user has new messages
2230 protected function checkNewtalk( $field, $id ) {
2231 $dbr = wfGetDB( DB_SLAVE
);
2233 $ok = $dbr->selectField( 'user_newtalk', $field, [ $field => $id ], __METHOD__
);
2235 return $ok !== false;
2239 * Add or update the new messages flag
2240 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2241 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2242 * @param Revision|null $curRev New, as yet unseen revision of the user talk page. Ignored if null.
2243 * @return bool True if successful, false otherwise
2245 protected function updateNewtalk( $field, $id, $curRev = null ) {
2246 // Get timestamp of the talk page revision prior to the current one
2247 $prevRev = $curRev ?
$curRev->getPrevious() : false;
2248 $ts = $prevRev ?
$prevRev->getTimestamp() : null;
2249 // Mark the user as having new messages since this revision
2250 $dbw = wfGetDB( DB_MASTER
);
2251 $dbw->insert( 'user_newtalk',
2252 [ $field => $id, 'user_last_timestamp' => $dbw->timestampOrNull( $ts ) ],
2255 if ( $dbw->affectedRows() ) {
2256 wfDebug( __METHOD__
. ": set on ($field, $id)\n" );
2259 wfDebug( __METHOD__
. " already set ($field, $id)\n" );
2265 * Clear the new messages flag for the given user
2266 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2267 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2268 * @return bool True if successful, false otherwise
2270 protected function deleteNewtalk( $field, $id ) {
2271 $dbw = wfGetDB( DB_MASTER
);
2272 $dbw->delete( 'user_newtalk',
2275 if ( $dbw->affectedRows() ) {
2276 wfDebug( __METHOD__
. ": killed on ($field, $id)\n" );
2279 wfDebug( __METHOD__
. ": already gone ($field, $id)\n" );
2285 * Update the 'You have new messages!' status.
2286 * @param bool $val Whether the user has new messages
2287 * @param Revision $curRev New, as yet unseen revision of the user talk
2288 * page. Ignored if null or !$val.
2290 public function setNewtalk( $val, $curRev = null ) {
2291 if ( wfReadOnly() ) {
2296 $this->mNewtalk
= $val;
2298 if ( $this->isAnon() ) {
2300 $id = $this->getName();
2303 $id = $this->getId();
2307 $changed = $this->updateNewtalk( $field, $id, $curRev );
2309 $changed = $this->deleteNewtalk( $field, $id );
2313 $this->invalidateCache();
2318 * Generate a current or new-future timestamp to be stored in the
2319 * user_touched field when we update things.
2320 * @return string Timestamp in TS_MW format
2322 private function newTouchedTimestamp() {
2323 global $wgClockSkewFudge;
2325 $time = wfTimestamp( TS_MW
, time() +
$wgClockSkewFudge );
2326 if ( $this->mTouched
&& $time <= $this->mTouched
) {
2327 $time = wfTimestamp( TS_MW
, wfTimestamp( TS_UNIX
, $this->mTouched
) +
1 );
2334 * Clear user data from memcached
2336 * Use after applying updates to the database; caller's
2337 * responsibility to update user_touched if appropriate.
2339 * Called implicitly from invalidateCache() and saveSettings().
2341 * @param string $mode Use 'refresh' to clear now; otherwise before DB commit
2343 public function clearSharedCache( $mode = 'changed' ) {
2344 if ( !$this->getId() ) {
2348 $cache = ObjectCache
::getMainWANInstance();
2349 $key = $this->getCacheKey( $cache );
2350 if ( $mode === 'refresh' ) {
2351 $cache->delete( $key, 1 );
2353 wfGetDB( DB_MASTER
)->onTransactionPreCommitOrIdle(
2354 function() use ( $cache, $key ) {
2355 $cache->delete( $key );
2362 * Immediately touch the user data cache for this account
2364 * Calls touch() and removes account data from memcached
2366 public function invalidateCache() {
2368 $this->clearSharedCache();
2372 * Update the "touched" timestamp for the user
2374 * This is useful on various login/logout events when making sure that
2375 * a browser or proxy that has multiple tenants does not suffer cache
2376 * pollution where the new user sees the old users content. The value
2377 * of getTouched() is checked when determining 304 vs 200 responses.
2378 * Unlike invalidateCache(), this preserves the User object cache and
2379 * avoids database writes.
2383 public function touch() {
2384 $id = $this->getId();
2386 $key = wfMemcKey( 'user-quicktouched', 'id', $id );
2387 ObjectCache
::getMainWANInstance()->touchCheckKey( $key );
2388 $this->mQuickTouched
= null;
2393 * Validate the cache for this account.
2394 * @param string $timestamp A timestamp in TS_MW format
2397 public function validateCache( $timestamp ) {
2398 return ( $timestamp >= $this->getTouched() );
2402 * Get the user touched timestamp
2404 * Use this value only to validate caches via inequalities
2405 * such as in the case of HTTP If-Modified-Since response logic
2407 * @return string TS_MW Timestamp
2409 public function getTouched() {
2413 if ( $this->mQuickTouched
=== null ) {
2414 $key = wfMemcKey( 'user-quicktouched', 'id', $this->mId
);
2415 $cache = ObjectCache
::getMainWANInstance();
2417 $this->mQuickTouched
= wfTimestamp( TS_MW
, $cache->getCheckKeyTime( $key ) );
2420 return max( $this->mTouched
, $this->mQuickTouched
);
2423 return $this->mTouched
;
2427 * Get the user_touched timestamp field (time of last DB updates)
2428 * @return string TS_MW Timestamp
2431 public function getDBTouched() {
2434 return $this->mTouched
;
2438 * @deprecated Removed in 1.27.
2442 public function getPassword() {
2443 throw new BadMethodCallException( __METHOD__
. ' has been removed in 1.27' );
2447 * @deprecated Removed in 1.27.
2451 public function getTemporaryPassword() {
2452 throw new BadMethodCallException( __METHOD__
. ' has been removed in 1.27' );
2456 * Set the password and reset the random token.
2457 * Calls through to authentication plugin if necessary;
2458 * will have no effect if the auth plugin refuses to
2459 * pass the change through or if the legal password
2462 * As a special case, setting the password to null
2463 * wipes it, so the account cannot be logged in until
2464 * a new password is set, for instance via e-mail.
2466 * @deprecated since 1.27, use AuthManager instead
2467 * @param string $str New password to set
2468 * @throws PasswordError On failure
2471 public function setPassword( $str ) {
2472 global $wgAuth, $wgDisableAuthManager;
2474 if ( !$wgDisableAuthManager ) {
2475 return $this->setPasswordInternal( $str );
2478 if ( $str !== null ) {
2479 if ( !$wgAuth->allowPasswordChange() ) {
2480 throw new PasswordError( wfMessage( 'password-change-forbidden' )->text() );
2483 $status = $this->checkPasswordValidity( $str );
2484 if ( !$status->isGood() ) {
2485 throw new PasswordError( $status->getMessage()->text() );
2489 if ( !$wgAuth->setPassword( $this, $str ) ) {
2490 throw new PasswordError( wfMessage( 'externaldberror' )->text() );
2493 $this->setOption( 'watchlisttoken', false );
2494 $this->setPasswordInternal( $str );
2500 * Set the password and reset the random token unconditionally.
2502 * @deprecated since 1.27, use AuthManager instead
2503 * @param string|null $str New password to set or null to set an invalid
2504 * password hash meaning that the user will not be able to log in
2505 * through the web interface.
2507 public function setInternalPassword( $str ) {
2508 global $wgAuth, $wgDisableAuthManager;
2510 if ( !$wgDisableAuthManager ) {
2511 $this->setPasswordInternal( $str );
2514 if ( $wgAuth->allowSetLocalPassword() ) {
2515 $this->setOption( 'watchlisttoken', false );
2516 $this->setPasswordInternal( $str );
2521 * Actually set the password and such
2522 * @since 1.27 cannot set a password for a user not in the database
2523 * @param string|null $str New password to set or null to set an invalid
2524 * password hash meaning that the user will not be able to log in
2525 * through the web interface.
2526 * @return bool Success
2528 private function setPasswordInternal( $str ) {
2529 global $wgDisableAuthManager;
2531 if ( $wgDisableAuthManager ) {
2532 $id = self
::idFromName( $this->getName(), self
::READ_LATEST
);
2534 throw new LogicException( 'Cannot set a password for a user that is not in the database.' );
2537 $passwordFactory = new PasswordFactory();
2538 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
2539 $dbw = wfGetDB( DB_MASTER
);
2543 'user_password' => $passwordFactory->newFromPlaintext( $str )->toString(),
2544 'user_newpassword' => PasswordFactory
::newInvalidPassword()->toString(),
2545 'user_newpass_time' => $dbw->timestampOrNull( null ),
2553 // When the main password is changed, invalidate all bot passwords too
2554 BotPassword
::invalidateAllPasswordsForUser( $this->getName() );
2556 $manager = AuthManager
::singleton();
2558 // If the user doesn't exist yet, fail
2559 if ( !$manager->userExists( $this->getName() ) ) {
2560 throw new LogicException( 'Cannot set a password for a user that is not in the database.' );
2563 $status = $this->changeAuthenticationData( [
2564 'username' => $this->getName(),
2568 if ( !$status->isGood() ) {
2569 \MediaWiki\Logger\LoggerFactory
::getInstance( 'authentication' )
2570 ->info( __METHOD__
. ': Password change rejected: '
2571 . $status->getWikiText( null, null, 'en' ) );
2575 $this->setOption( 'watchlisttoken', false );
2578 SessionManager
::singleton()->invalidateSessionsForUser( $this );
2584 * Changes credentials of the user.
2586 * This is a convenience wrapper around AuthManager::changeAuthenticationData.
2587 * Note that this can return a status that isOK() but not isGood() on certain types of failures,
2588 * e.g. when no provider handled the change.
2590 * @param array $data A set of authentication data in fieldname => value format. This is the
2591 * same data you would pass the changeauthenticationdata API - 'username', 'password' etc.
2595 public function changeAuthenticationData( array $data ) {
2596 global $wgDisableAuthManager;
2597 if ( $wgDisableAuthManager ) {
2598 throw new LogicException( __METHOD__
. ' cannot be called when $wgDisableAuthManager '
2602 $manager = AuthManager
::singleton();
2603 $reqs = $manager->getAuthenticationRequests( AuthManager
::ACTION_CHANGE
, $this );
2604 $reqs = AuthenticationRequest
::loadRequestsFromSubmission( $reqs, $data );
2606 $status = Status
::newGood( 'ignored' );
2607 foreach ( $reqs as $req ) {
2608 $status->merge( $manager->allowsAuthenticationDataChange( $req ), true );
2610 if ( $status->getValue() === 'ignored' ) {
2611 $status->warning( 'authenticationdatachange-ignored' );
2614 if ( $status->isGood() ) {
2615 foreach ( $reqs as $req ) {
2616 $manager->changeAuthenticationData( $req );
2623 * Get the user's current token.
2624 * @param bool $forceCreation Force the generation of a new token if the
2625 * user doesn't have one (default=true for backwards compatibility).
2626 * @return string|null Token
2628 public function getToken( $forceCreation = true ) {
2629 global $wgAuthenticationTokenVersion;
2632 if ( !$this->mToken
&& $forceCreation ) {
2636 if ( !$this->mToken
) {
2637 // The user doesn't have a token, return null to indicate that.
2639 } elseif ( $this->mToken
=== self
::INVALID_TOKEN
) {
2640 // We return a random value here so existing token checks are very
2642 return MWCryptRand
::generateHex( self
::TOKEN_LENGTH
);
2643 } elseif ( $wgAuthenticationTokenVersion === null ) {
2644 // $wgAuthenticationTokenVersion not in use, so return the raw secret
2645 return $this->mToken
;
2647 // $wgAuthenticationTokenVersion in use, so hmac it.
2648 $ret = MWCryptHash
::hmac( $wgAuthenticationTokenVersion, $this->mToken
, false );
2650 // The raw hash can be overly long. Shorten it up.
2651 $len = max( 32, self
::TOKEN_LENGTH
);
2652 if ( strlen( $ret ) < $len ) {
2653 // Should never happen, even md5 is 128 bits
2654 throw new \
UnexpectedValueException( 'Hmac returned less than 128 bits' );
2656 return substr( $ret, -$len );
2661 * Set the random token (used for persistent authentication)
2662 * Called from loadDefaults() among other places.
2664 * @param string|bool $token If specified, set the token to this value
2666 public function setToken( $token = false ) {
2668 if ( $this->mToken
=== self
::INVALID_TOKEN
) {
2669 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
2670 ->debug( __METHOD__
. ": Ignoring attempt to set token for system user \"$this\"" );
2671 } elseif ( !$token ) {
2672 $this->mToken
= MWCryptRand
::generateHex( self
::TOKEN_LENGTH
);
2674 $this->mToken
= $token;
2679 * Set the password for a password reminder or new account email
2681 * @deprecated Removed in 1.27. Use PasswordReset instead.
2682 * @param string $str New password to set or null to set an invalid
2683 * password hash meaning that the user will not be able to use it
2684 * @param bool $throttle If true, reset the throttle timestamp to the present
2686 public function setNewpassword( $str, $throttle = true ) {
2687 global $wgDisableAuthManager;
2689 if ( $wgDisableAuthManager ) {
2690 $id = $this->getId();
2692 throw new LogicException( 'Cannot set new password for a user that is not in the database.' );
2695 $dbw = wfGetDB( DB_MASTER
);
2697 $passwordFactory = new PasswordFactory();
2698 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
2700 'user_newpassword' => $passwordFactory->newFromPlaintext( $str )->toString(),
2703 if ( $str === null ) {
2704 $update['user_newpass_time'] = null;
2705 } elseif ( $throttle ) {
2706 $update['user_newpass_time'] = $dbw->timestamp();
2709 $dbw->update( 'user', $update, [ 'user_id' => $id ], __METHOD__
);
2711 throw new BadMethodCallException( __METHOD__
. ' has been removed in 1.27' );
2716 * Has password reminder email been sent within the last
2717 * $wgPasswordReminderResendTime hours?
2718 * @deprecated Removed in 1.27. See above.
2721 public function isPasswordReminderThrottled() {
2722 global $wgPasswordReminderResendTime, $wgDisableAuthManager;
2724 if ( $wgDisableAuthManager ) {
2725 if ( !$wgPasswordReminderResendTime ) {
2731 $db = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
2732 ?
wfGetDB( DB_MASTER
)
2733 : wfGetDB( DB_SLAVE
);
2734 $newpassTime = $db->selectField(
2736 'user_newpass_time',
2737 [ 'user_id' => $this->getId() ],
2741 if ( $newpassTime === null ) {
2744 $expiry = wfTimestamp( TS_UNIX
, $newpassTime ) +
$wgPasswordReminderResendTime * 3600;
2745 return time() < $expiry;
2747 throw new BadMethodCallException( __METHOD__
. ' has been removed in 1.27' );
2752 * Get the user's e-mail address
2753 * @return string User's email address
2755 public function getEmail() {
2757 Hooks
::run( 'UserGetEmail', [ $this, &$this->mEmail
] );
2758 return $this->mEmail
;
2762 * Get the timestamp of the user's e-mail authentication
2763 * @return string TS_MW timestamp
2765 public function getEmailAuthenticationTimestamp() {
2767 Hooks
::run( 'UserGetEmailAuthenticationTimestamp', [ $this, &$this->mEmailAuthenticated
] );
2768 return $this->mEmailAuthenticated
;
2772 * Set the user's e-mail address
2773 * @param string $str New e-mail address
2775 public function setEmail( $str ) {
2777 if ( $str == $this->mEmail
) {
2780 $this->invalidateEmail();
2781 $this->mEmail
= $str;
2782 Hooks
::run( 'UserSetEmail', [ $this, &$this->mEmail
] );
2786 * Set the user's e-mail address and a confirmation mail if needed.
2789 * @param string $str New e-mail address
2792 public function setEmailWithConfirmation( $str ) {
2793 global $wgEnableEmail, $wgEmailAuthentication;
2795 if ( !$wgEnableEmail ) {
2796 return Status
::newFatal( 'emaildisabled' );
2799 $oldaddr = $this->getEmail();
2800 if ( $str === $oldaddr ) {
2801 return Status
::newGood( true );
2804 $type = $oldaddr != '' ?
'changed' : 'set';
2805 $notificationResult = null;
2807 if ( $wgEmailAuthentication ) {
2808 // Send the user an email notifying the user of the change in registered
2809 // email address on their previous email address
2810 if ( $type == 'changed' ) {
2811 $change = $str != '' ?
'changed' : 'removed';
2812 $notificationResult = $this->sendMail(
2813 wfMessage( 'notificationemail_subject_' . $change )->text(),
2814 wfMessage( 'notificationemail_body_' . $change,
2815 $this->getRequest()->getIP(),
2822 $this->setEmail( $str );
2824 if ( $str !== '' && $wgEmailAuthentication ) {
2825 // Send a confirmation request to the new address if needed
2826 $result = $this->sendConfirmationMail( $type );
2828 if ( $notificationResult !== null ) {
2829 $result->merge( $notificationResult );
2832 if ( $result->isGood() ) {
2833 // Say to the caller that a confirmation and notification mail has been sent
2834 $result->value
= 'eauth';
2837 $result = Status
::newGood( true );
2844 * Get the user's real name
2845 * @return string User's real name
2847 public function getRealName() {
2848 if ( !$this->isItemLoaded( 'realname' ) ) {
2852 return $this->mRealName
;
2856 * Set the user's real name
2857 * @param string $str New real name
2859 public function setRealName( $str ) {
2861 $this->mRealName
= $str;
2865 * Get the user's current setting for a given option.
2867 * @param string $oname The option to check
2868 * @param string $defaultOverride A default value returned if the option does not exist
2869 * @param bool $ignoreHidden Whether to ignore the effects of $wgHiddenPrefs
2870 * @return string User's current value for the option
2871 * @see getBoolOption()
2872 * @see getIntOption()
2874 public function getOption( $oname, $defaultOverride = null, $ignoreHidden = false ) {
2875 global $wgHiddenPrefs;
2876 $this->loadOptions();
2878 # We want 'disabled' preferences to always behave as the default value for
2879 # users, even if they have set the option explicitly in their settings (ie they
2880 # set it, and then it was disabled removing their ability to change it). But
2881 # we don't want to erase the preferences in the database in case the preference
2882 # is re-enabled again. So don't touch $mOptions, just override the returned value
2883 if ( !$ignoreHidden && in_array( $oname, $wgHiddenPrefs ) ) {
2884 return self
::getDefaultOption( $oname );
2887 if ( array_key_exists( $oname, $this->mOptions
) ) {
2888 return $this->mOptions
[$oname];
2890 return $defaultOverride;
2895 * Get all user's options
2897 * @param int $flags Bitwise combination of:
2898 * User::GETOPTIONS_EXCLUDE_DEFAULTS Exclude user options that are set
2899 * to the default value. (Since 1.25)
2902 public function getOptions( $flags = 0 ) {
2903 global $wgHiddenPrefs;
2904 $this->loadOptions();
2905 $options = $this->mOptions
;
2907 # We want 'disabled' preferences to always behave as the default value for
2908 # users, even if they have set the option explicitly in their settings (ie they
2909 # set it, and then it was disabled removing their ability to change it). But
2910 # we don't want to erase the preferences in the database in case the preference
2911 # is re-enabled again. So don't touch $mOptions, just override the returned value
2912 foreach ( $wgHiddenPrefs as $pref ) {
2913 $default = self
::getDefaultOption( $pref );
2914 if ( $default !== null ) {
2915 $options[$pref] = $default;
2919 if ( $flags & self
::GETOPTIONS_EXCLUDE_DEFAULTS
) {
2920 $options = array_diff_assoc( $options, self
::getDefaultOptions() );
2927 * Get the user's current setting for a given option, as a boolean value.
2929 * @param string $oname The option to check
2930 * @return bool User's current value for the option
2933 public function getBoolOption( $oname ) {
2934 return (bool)$this->getOption( $oname );
2938 * Get the user's current setting for a given option, as an integer value.
2940 * @param string $oname The option to check
2941 * @param int $defaultOverride A default value returned if the option does not exist
2942 * @return int User's current value for the option
2945 public function getIntOption( $oname, $defaultOverride = 0 ) {
2946 $val = $this->getOption( $oname );
2948 $val = $defaultOverride;
2950 return intval( $val );
2954 * Set the given option for a user.
2956 * You need to call saveSettings() to actually write to the database.
2958 * @param string $oname The option to set
2959 * @param mixed $val New value to set
2961 public function setOption( $oname, $val ) {
2962 $this->loadOptions();
2964 // Explicitly NULL values should refer to defaults
2965 if ( is_null( $val ) ) {
2966 $val = self
::getDefaultOption( $oname );
2969 $this->mOptions
[$oname] = $val;
2973 * Get a token stored in the preferences (like the watchlist one),
2974 * resetting it if it's empty (and saving changes).
2976 * @param string $oname The option name to retrieve the token from
2977 * @return string|bool User's current value for the option, or false if this option is disabled.
2978 * @see resetTokenFromOption()
2980 * @deprecated 1.26 Applications should use the OAuth extension
2982 public function getTokenFromOption( $oname ) {
2983 global $wgHiddenPrefs;
2985 $id = $this->getId();
2986 if ( !$id ||
in_array( $oname, $wgHiddenPrefs ) ) {
2990 $token = $this->getOption( $oname );
2992 // Default to a value based on the user token to avoid space
2993 // wasted on storing tokens for all users. When this option
2994 // is set manually by the user, only then is it stored.
2995 $token = hash_hmac( 'sha1', "$oname:$id", $this->getToken() );
3002 * Reset a token stored in the preferences (like the watchlist one).
3003 * *Does not* save user's preferences (similarly to setOption()).
3005 * @param string $oname The option name to reset the token in
3006 * @return string|bool New token value, or false if this option is disabled.
3007 * @see getTokenFromOption()
3010 public function resetTokenFromOption( $oname ) {
3011 global $wgHiddenPrefs;
3012 if ( in_array( $oname, $wgHiddenPrefs ) ) {
3016 $token = MWCryptRand
::generateHex( 40 );
3017 $this->setOption( $oname, $token );
3022 * Return a list of the types of user options currently returned by
3023 * User::getOptionKinds().
3025 * Currently, the option kinds are:
3026 * - 'registered' - preferences which are registered in core MediaWiki or
3027 * by extensions using the UserGetDefaultOptions hook.
3028 * - 'registered-multiselect' - as above, using the 'multiselect' type.
3029 * - 'registered-checkmatrix' - as above, using the 'checkmatrix' type.
3030 * - 'userjs' - preferences with names starting with 'userjs-', intended to
3031 * be used by user scripts.
3032 * - 'special' - "preferences" that are not accessible via User::getOptions
3033 * or User::setOptions.
3034 * - 'unused' - preferences about which MediaWiki doesn't know anything.
3035 * These are usually legacy options, removed in newer versions.
3037 * The API (and possibly others) use this function to determine the possible
3038 * option types for validation purposes, so make sure to update this when a
3039 * new option kind is added.
3041 * @see User::getOptionKinds
3042 * @return array Option kinds
3044 public static function listOptionKinds() {
3047 'registered-multiselect',
3048 'registered-checkmatrix',
3056 * Return an associative array mapping preferences keys to the kind of a preference they're
3057 * used for. Different kinds are handled differently when setting or reading preferences.
3059 * See User::listOptionKinds for the list of valid option types that can be provided.
3061 * @see User::listOptionKinds
3062 * @param IContextSource $context
3063 * @param array $options Assoc. array with options keys to check as keys.
3064 * Defaults to $this->mOptions.
3065 * @return array The key => kind mapping data
3067 public function getOptionKinds( IContextSource
$context, $options = null ) {
3068 $this->loadOptions();
3069 if ( $options === null ) {
3070 $options = $this->mOptions
;
3073 $prefs = Preferences
::getPreferences( $this, $context );
3076 // Pull out the "special" options, so they don't get converted as
3077 // multiselect or checkmatrix.
3078 $specialOptions = array_fill_keys( Preferences
::getSaveBlacklist(), true );
3079 foreach ( $specialOptions as $name => $value ) {
3080 unset( $prefs[$name] );
3083 // Multiselect and checkmatrix options are stored in the database with
3084 // one key per option, each having a boolean value. Extract those keys.
3085 $multiselectOptions = [];
3086 foreach ( $prefs as $name => $info ) {
3087 if ( ( isset( $info['type'] ) && $info['type'] == 'multiselect' ) ||
3088 ( isset( $info['class'] ) && $info['class'] == 'HTMLMultiSelectField' ) ) {
3089 $opts = HTMLFormField
::flattenOptions( $info['options'] );
3090 $prefix = isset( $info['prefix'] ) ?
$info['prefix'] : $name;
3092 foreach ( $opts as $value ) {
3093 $multiselectOptions["$prefix$value"] = true;
3096 unset( $prefs[$name] );
3099 $checkmatrixOptions = [];
3100 foreach ( $prefs as $name => $info ) {
3101 if ( ( isset( $info['type'] ) && $info['type'] == 'checkmatrix' ) ||
3102 ( isset( $info['class'] ) && $info['class'] == 'HTMLCheckMatrix' ) ) {
3103 $columns = HTMLFormField
::flattenOptions( $info['columns'] );
3104 $rows = HTMLFormField
::flattenOptions( $info['rows'] );
3105 $prefix = isset( $info['prefix'] ) ?
$info['prefix'] : $name;
3107 foreach ( $columns as $column ) {
3108 foreach ( $rows as $row ) {
3109 $checkmatrixOptions["$prefix$column-$row"] = true;
3113 unset( $prefs[$name] );
3117 // $value is ignored
3118 foreach ( $options as $key => $value ) {
3119 if ( isset( $prefs[$key] ) ) {
3120 $mapping[$key] = 'registered';
3121 } elseif ( isset( $multiselectOptions[$key] ) ) {
3122 $mapping[$key] = 'registered-multiselect';
3123 } elseif ( isset( $checkmatrixOptions[$key] ) ) {
3124 $mapping[$key] = 'registered-checkmatrix';
3125 } elseif ( isset( $specialOptions[$key] ) ) {
3126 $mapping[$key] = 'special';
3127 } elseif ( substr( $key, 0, 7 ) === 'userjs-' ) {
3128 $mapping[$key] = 'userjs';
3130 $mapping[$key] = 'unused';
3138 * Reset certain (or all) options to the site defaults
3140 * The optional parameter determines which kinds of preferences will be reset.
3141 * Supported values are everything that can be reported by getOptionKinds()
3142 * and 'all', which forces a reset of *all* preferences and overrides everything else.
3144 * @param array|string $resetKinds Which kinds of preferences to reset. Defaults to
3145 * array( 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' )
3146 * for backwards-compatibility.
3147 * @param IContextSource|null $context Context source used when $resetKinds
3148 * does not contain 'all', passed to getOptionKinds().
3149 * Defaults to RequestContext::getMain() when null.
3151 public function resetOptions(
3152 $resetKinds = [ 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' ],
3153 IContextSource
$context = null
3156 $defaultOptions = self
::getDefaultOptions();
3158 if ( !is_array( $resetKinds ) ) {
3159 $resetKinds = [ $resetKinds ];
3162 if ( in_array( 'all', $resetKinds ) ) {
3163 $newOptions = $defaultOptions;
3165 if ( $context === null ) {
3166 $context = RequestContext
::getMain();
3169 $optionKinds = $this->getOptionKinds( $context );
3170 $resetKinds = array_intersect( $resetKinds, self
::listOptionKinds() );
3173 // Use default values for the options that should be deleted, and
3174 // copy old values for the ones that shouldn't.
3175 foreach ( $this->mOptions
as $key => $value ) {
3176 if ( in_array( $optionKinds[$key], $resetKinds ) ) {
3177 if ( array_key_exists( $key, $defaultOptions ) ) {
3178 $newOptions[$key] = $defaultOptions[$key];
3181 $newOptions[$key] = $value;
3186 Hooks
::run( 'UserResetAllOptions', [ $this, &$newOptions, $this->mOptions
, $resetKinds ] );
3188 $this->mOptions
= $newOptions;
3189 $this->mOptionsLoaded
= true;
3193 * Get the user's preferred date format.
3194 * @return string User's preferred date format
3196 public function getDatePreference() {
3197 // Important migration for old data rows
3198 if ( is_null( $this->mDatePreference
) ) {
3200 $value = $this->getOption( 'date' );
3201 $map = $wgLang->getDatePreferenceMigrationMap();
3202 if ( isset( $map[$value] ) ) {
3203 $value = $map[$value];
3205 $this->mDatePreference
= $value;
3207 return $this->mDatePreference
;
3211 * Determine based on the wiki configuration and the user's options,
3212 * whether this user must be over HTTPS no matter what.
3216 public function requiresHTTPS() {
3217 global $wgSecureLogin;
3218 if ( !$wgSecureLogin ) {
3221 $https = $this->getBoolOption( 'prefershttps' );
3222 Hooks
::run( 'UserRequiresHTTPS', [ $this, &$https ] );
3224 $https = wfCanIPUseHTTPS( $this->getRequest()->getIP() );
3231 * Get the user preferred stub threshold
3235 public function getStubThreshold() {
3236 global $wgMaxArticleSize; # Maximum article size, in Kb
3237 $threshold = $this->getIntOption( 'stubthreshold' );
3238 if ( $threshold > $wgMaxArticleSize * 1024 ) {
3239 // If they have set an impossible value, disable the preference
3240 // so we can use the parser cache again.
3247 * Get the permissions this user has.
3248 * @return array Array of String permission names
3250 public function getRights() {
3251 if ( is_null( $this->mRights
) ) {
3252 $this->mRights
= self
::getGroupPermissions( $this->getEffectiveGroups() );
3254 // Deny any rights denied by the user's session, unless this
3255 // endpoint has no sessions.
3256 if ( !defined( 'MW_NO_SESSION' ) ) {
3257 $allowedRights = $this->getRequest()->getSession()->getAllowedUserRights();
3258 if ( $allowedRights !== null ) {
3259 $this->mRights
= array_intersect( $this->mRights
, $allowedRights );
3263 Hooks
::run( 'UserGetRights', [ $this, &$this->mRights
] );
3264 // Force reindexation of rights when a hook has unset one of them
3265 $this->mRights
= array_values( array_unique( $this->mRights
) );
3267 return $this->mRights
;
3271 * Get the list of explicit group memberships this user has.
3272 * The implicit * and user groups are not included.
3273 * @return array Array of String internal group names
3275 public function getGroups() {
3277 $this->loadGroups();
3278 return $this->mGroups
;
3282 * Get the list of implicit group memberships this user has.
3283 * This includes all explicit groups, plus 'user' if logged in,
3284 * '*' for all accounts, and autopromoted groups
3285 * @param bool $recache Whether to avoid the cache
3286 * @return array Array of String internal group names
3288 public function getEffectiveGroups( $recache = false ) {
3289 if ( $recache ||
is_null( $this->mEffectiveGroups
) ) {
3290 $this->mEffectiveGroups
= array_unique( array_merge(
3291 $this->getGroups(), // explicit groups
3292 $this->getAutomaticGroups( $recache ) // implicit groups
3294 // Hook for additional groups
3295 Hooks
::run( 'UserEffectiveGroups', [ &$this, &$this->mEffectiveGroups
] );
3296 // Force reindexation of groups when a hook has unset one of them
3297 $this->mEffectiveGroups
= array_values( array_unique( $this->mEffectiveGroups
) );
3299 return $this->mEffectiveGroups
;
3303 * Get the list of implicit group memberships this user has.
3304 * This includes 'user' if logged in, '*' for all accounts,
3305 * and autopromoted groups
3306 * @param bool $recache Whether to avoid the cache
3307 * @return array Array of String internal group names
3309 public function getAutomaticGroups( $recache = false ) {
3310 if ( $recache ||
is_null( $this->mImplicitGroups
) ) {
3311 $this->mImplicitGroups
= [ '*' ];
3312 if ( $this->getId() ) {
3313 $this->mImplicitGroups
[] = 'user';
3315 $this->mImplicitGroups
= array_unique( array_merge(
3316 $this->mImplicitGroups
,
3317 Autopromote
::getAutopromoteGroups( $this )
3321 // Assure data consistency with rights/groups,
3322 // as getEffectiveGroups() depends on this function
3323 $this->mEffectiveGroups
= null;
3326 return $this->mImplicitGroups
;
3330 * Returns the groups the user has belonged to.
3332 * The user may still belong to the returned groups. Compare with getGroups().
3334 * The function will not return groups the user had belonged to before MW 1.17
3336 * @return array Names of the groups the user has belonged to.
3338 public function getFormerGroups() {
3341 if ( is_null( $this->mFormerGroups
) ) {
3342 $db = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
3343 ?
wfGetDB( DB_MASTER
)
3344 : wfGetDB( DB_SLAVE
);
3345 $res = $db->select( 'user_former_groups',
3347 [ 'ufg_user' => $this->mId
],
3349 $this->mFormerGroups
= [];
3350 foreach ( $res as $row ) {
3351 $this->mFormerGroups
[] = $row->ufg_group
;
3355 return $this->mFormerGroups
;
3359 * Get the user's edit count.
3360 * @return int|null Null for anonymous users
3362 public function getEditCount() {
3363 if ( !$this->getId() ) {
3367 if ( $this->mEditCount
=== null ) {
3368 /* Populate the count, if it has not been populated yet */
3369 $dbr = wfGetDB( DB_SLAVE
);
3370 // check if the user_editcount field has been initialized
3371 $count = $dbr->selectField(
3372 'user', 'user_editcount',
3373 [ 'user_id' => $this->mId
],
3377 if ( $count === null ) {
3378 // it has not been initialized. do so.
3379 $count = $this->initEditCount();
3381 $this->mEditCount
= $count;
3383 return (int)$this->mEditCount
;
3387 * Add the user to the given group.
3388 * This takes immediate effect.
3389 * @param string $group Name of the group to add
3392 public function addGroup( $group ) {
3395 if ( !Hooks
::run( 'UserAddGroup', [ $this, &$group ] ) ) {
3399 $dbw = wfGetDB( DB_MASTER
);
3400 if ( $this->getId() ) {
3401 $dbw->insert( 'user_groups',
3403 'ug_user' => $this->getId(),
3404 'ug_group' => $group,
3410 $this->loadGroups();
3411 $this->mGroups
[] = $group;
3412 // In case loadGroups was not called before, we now have the right twice.
3413 // Get rid of the duplicate.
3414 $this->mGroups
= array_unique( $this->mGroups
);
3416 // Refresh the groups caches, and clear the rights cache so it will be
3417 // refreshed on the next call to $this->getRights().
3418 $this->getEffectiveGroups( true );
3419 $this->mRights
= null;
3421 $this->invalidateCache();
3427 * Remove the user from the given group.
3428 * This takes immediate effect.
3429 * @param string $group Name of the group to remove
3432 public function removeGroup( $group ) {
3434 if ( !Hooks
::run( 'UserRemoveGroup', [ $this, &$group ] ) ) {
3438 $dbw = wfGetDB( DB_MASTER
);
3439 $dbw->delete( 'user_groups',
3441 'ug_user' => $this->getId(),
3442 'ug_group' => $group,
3445 // Remember that the user was in this group
3446 $dbw->insert( 'user_former_groups',
3448 'ufg_user' => $this->getId(),
3449 'ufg_group' => $group,
3455 $this->loadGroups();
3456 $this->mGroups
= array_diff( $this->mGroups
, [ $group ] );
3458 // Refresh the groups caches, and clear the rights cache so it will be
3459 // refreshed on the next call to $this->getRights().
3460 $this->getEffectiveGroups( true );
3461 $this->mRights
= null;
3463 $this->invalidateCache();
3469 * Get whether the user is logged in
3472 public function isLoggedIn() {
3473 return $this->getId() != 0;
3477 * Get whether the user is anonymous
3480 public function isAnon() {
3481 return !$this->isLoggedIn();
3485 * @return bool Whether this user is flagged as being a bot role account
3488 public function isBot() {
3489 if ( in_array( 'bot', $this->getGroups() ) && $this->isAllowed( 'bot' ) ) {
3494 Hooks
::run( "UserIsBot", [ $this, &$isBot ] );
3500 * Check if user is allowed to access a feature / make an action
3502 * @param string ... Permissions to test
3503 * @return bool True if user is allowed to perform *any* of the given actions
3505 public function isAllowedAny() {
3506 $permissions = func_get_args();
3507 foreach ( $permissions as $permission ) {
3508 if ( $this->isAllowed( $permission ) ) {
3517 * @param string ... Permissions to test
3518 * @return bool True if the user is allowed to perform *all* of the given actions
3520 public function isAllowedAll() {
3521 $permissions = func_get_args();
3522 foreach ( $permissions as $permission ) {
3523 if ( !$this->isAllowed( $permission ) ) {
3531 * Internal mechanics of testing a permission
3532 * @param string $action
3535 public function isAllowed( $action = '' ) {
3536 if ( $action === '' ) {
3537 return true; // In the spirit of DWIM
3539 // Use strict parameter to avoid matching numeric 0 accidentally inserted
3540 // by misconfiguration: 0 == 'foo'
3541 return in_array( $action, $this->getRights(), true );
3545 * Check whether to enable recent changes patrol features for this user
3546 * @return bool True or false
3548 public function useRCPatrol() {
3549 global $wgUseRCPatrol;
3550 return $wgUseRCPatrol && $this->isAllowedAny( 'patrol', 'patrolmarks' );
3554 * Check whether to enable new pages patrol features for this user
3555 * @return bool True or false
3557 public function useNPPatrol() {
3558 global $wgUseRCPatrol, $wgUseNPPatrol;
3560 ( $wgUseRCPatrol ||
$wgUseNPPatrol )
3561 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3566 * Check whether to enable new files patrol features for this user
3567 * @return bool True or false
3569 public function useFilePatrol() {
3570 global $wgUseRCPatrol, $wgUseFilePatrol;
3572 ( $wgUseRCPatrol ||
$wgUseFilePatrol )
3573 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3578 * Get the WebRequest object to use with this object
3580 * @return WebRequest
3582 public function getRequest() {
3583 if ( $this->mRequest
) {
3584 return $this->mRequest
;
3592 * Check the watched status of an article.
3593 * @since 1.22 $checkRights parameter added
3594 * @param Title $title Title of the article to look at
3595 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3596 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3599 public function isWatched( $title, $checkRights = self
::CHECK_USER_RIGHTS
) {
3600 if ( $title->isWatchable() && ( !$checkRights ||
$this->isAllowed( 'viewmywatchlist' ) ) ) {
3601 return MediaWikiServices
::getInstance()->getWatchedItemStore()->isWatched( $this, $title );
3608 * @since 1.22 $checkRights parameter added
3609 * @param Title $title Title of the article to look at
3610 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3611 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3613 public function addWatch( $title, $checkRights = self
::CHECK_USER_RIGHTS
) {
3614 if ( !$checkRights ||
$this->isAllowed( 'editmywatchlist' ) ) {
3615 MediaWikiServices
::getInstance()->getWatchedItemStore()->addWatchBatchForUser(
3617 [ $title->getSubjectPage(), $title->getTalkPage() ]
3620 $this->invalidateCache();
3624 * Stop watching an article.
3625 * @since 1.22 $checkRights parameter added
3626 * @param Title $title Title of the article to look at
3627 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3628 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3630 public function removeWatch( $title, $checkRights = self
::CHECK_USER_RIGHTS
) {
3631 if ( !$checkRights ||
$this->isAllowed( 'editmywatchlist' ) ) {
3632 $store = MediaWikiServices
::getInstance()->getWatchedItemStore();
3633 $store->removeWatch( $this, $title->getSubjectPage() );
3634 $store->removeWatch( $this, $title->getTalkPage() );
3636 $this->invalidateCache();
3640 * Clear the user's notification timestamp for the given title.
3641 * If e-notif e-mails are on, they will receive notification mails on
3642 * the next change of the page if it's watched etc.
3643 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3644 * @param Title $title Title of the article to look at
3645 * @param int $oldid The revision id being viewed. If not given or 0, latest revision is assumed.
3647 public function clearNotification( &$title, $oldid = 0 ) {
3648 global $wgUseEnotif, $wgShowUpdatedMarker;
3650 // Do nothing if the database is locked to writes
3651 if ( wfReadOnly() ) {
3655 // Do nothing if not allowed to edit the watchlist
3656 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
3660 // If we're working on user's talk page, we should update the talk page message indicator
3661 if ( $title->getNamespace() == NS_USER_TALK
&& $title->getText() == $this->getName() ) {
3662 if ( !Hooks
::run( 'UserClearNewTalkNotification', [ &$this, $oldid ] ) ) {
3666 // Try to update the DB post-send and only if needed...
3667 DeferredUpdates
::addCallableUpdate( function() use ( $title, $oldid ) {
3668 if ( !$this->getNewtalk() ) {
3669 return; // no notifications to clear
3672 // Delete the last notifications (they stack up)
3673 $this->setNewtalk( false );
3675 // If there is a new, unseen, revision, use its timestamp
3677 ?
$title->getNextRevisionID( $oldid, Title
::GAID_FOR_UPDATE
)
3680 $this->setNewtalk( true, Revision
::newFromId( $nextid ) );
3685 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3689 if ( $this->isAnon() ) {
3690 // Nothing else to do...
3694 // Only update the timestamp if the page is being watched.
3695 // The query to find out if it is watched is cached both in memcached and per-invocation,
3696 // and when it does have to be executed, it can be on a slave
3697 // If this is the user's newtalk page, we always update the timestamp
3699 if ( $title->getNamespace() == NS_USER_TALK
&& $title->getText() == $this->getName() ) {
3703 MediaWikiServices
::getInstance()->getWatchedItemStore()
3704 ->resetNotificationTimestamp( $this, $title, $force, $oldid );
3708 * Resets all of the given user's page-change notification timestamps.
3709 * If e-notif e-mails are on, they will receive notification mails on
3710 * the next change of any watched page.
3711 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3713 public function clearAllNotifications() {
3714 if ( wfReadOnly() ) {
3718 // Do nothing if not allowed to edit the watchlist
3719 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
3723 global $wgUseEnotif, $wgShowUpdatedMarker;
3724 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3725 $this->setNewtalk( false );
3728 $id = $this->getId();
3730 $dbw = wfGetDB( DB_MASTER
);
3731 $dbw->update( 'watchlist',
3732 [ /* SET */ 'wl_notificationtimestamp' => null ],
3733 [ /* WHERE */ 'wl_user' => $id, 'wl_notificationtimestamp IS NOT NULL' ],
3736 // We also need to clear here the "you have new message" notification for the own user_talk page;
3737 // it's cleared one page view later in WikiPage::doViewUpdates().
3742 * Set a cookie on the user's client. Wrapper for
3743 * WebResponse::setCookie
3744 * @deprecated since 1.27
3745 * @param string $name Name of the cookie to set
3746 * @param string $value Value to set
3747 * @param int $exp Expiration time, as a UNIX time value;
3748 * if 0 or not specified, use the default $wgCookieExpiration
3749 * @param bool $secure
3750 * true: Force setting the secure attribute when setting the cookie
3751 * false: Force NOT setting the secure attribute when setting the cookie
3752 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3753 * @param array $params Array of options sent passed to WebResponse::setcookie()
3754 * @param WebRequest|null $request WebRequest object to use; $wgRequest will be used if null
3757 protected function setCookie(
3758 $name, $value, $exp = 0, $secure = null, $params = [], $request = null
3760 wfDeprecated( __METHOD__
, '1.27' );
3761 if ( $request === null ) {
3762 $request = $this->getRequest();
3764 $params['secure'] = $secure;
3765 $request->response()->setCookie( $name, $value, $exp, $params );
3769 * Clear a cookie on the user's client
3770 * @deprecated since 1.27
3771 * @param string $name Name of the cookie to clear
3772 * @param bool $secure
3773 * true: Force setting the secure attribute when setting the cookie
3774 * false: Force NOT setting the secure attribute when setting the cookie
3775 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3776 * @param array $params Array of options sent passed to WebResponse::setcookie()
3778 protected function clearCookie( $name, $secure = null, $params = [] ) {
3779 wfDeprecated( __METHOD__
, '1.27' );
3780 $this->setCookie( $name, '', time() - 86400, $secure, $params );
3784 * Set an extended login cookie on the user's client. The expiry of the cookie
3785 * is controlled by the $wgExtendedLoginCookieExpiration configuration
3788 * @see User::setCookie
3790 * @deprecated since 1.27
3791 * @param string $name Name of the cookie to set
3792 * @param string $value Value to set
3793 * @param bool $secure
3794 * true: Force setting the secure attribute when setting the cookie
3795 * false: Force NOT setting the secure attribute when setting the cookie
3796 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3798 protected function setExtendedLoginCookie( $name, $value, $secure ) {
3799 global $wgExtendedLoginCookieExpiration, $wgCookieExpiration;
3801 wfDeprecated( __METHOD__
, '1.27' );
3804 $exp +
= $wgExtendedLoginCookieExpiration !== null
3805 ?
$wgExtendedLoginCookieExpiration
3806 : $wgCookieExpiration;
3808 $this->setCookie( $name, $value, $exp, $secure );
3812 * Persist this user's session (e.g. set cookies)
3814 * @param WebRequest|null $request WebRequest object to use; $wgRequest will be used if null
3816 * @param bool $secure Whether to force secure/insecure cookies or use default
3817 * @param bool $rememberMe Whether to add a Token cookie for elongated sessions
3819 public function setCookies( $request = null, $secure = null, $rememberMe = false ) {
3821 if ( 0 == $this->mId
) {
3825 $session = $this->getRequest()->getSession();
3826 if ( $request && $session->getRequest() !== $request ) {
3827 $session = $session->sessionWithRequest( $request );
3829 $delay = $session->delaySave();
3831 if ( !$session->getUser()->equals( $this ) ) {
3832 if ( !$session->canSetUser() ) {
3833 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
3834 ->warning( __METHOD__
.
3835 ": Cannot save user \"$this\" to a user \"{$session->getUser()}\"'s immutable session"
3839 $session->setUser( $this );
3842 $session->setRememberUser( $rememberMe );
3843 if ( $secure !== null ) {
3844 $session->setForceHTTPS( $secure );
3847 $session->persist();
3849 ScopedCallback
::consume( $delay );
3853 * Log this user out.
3855 public function logout() {
3856 if ( Hooks
::run( 'UserLogout', [ &$this ] ) ) {
3862 * Clear the user's session, and reset the instance cache.
3865 public function doLogout() {
3866 $session = $this->getRequest()->getSession();
3867 if ( !$session->canSetUser() ) {
3868 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
3869 ->warning( __METHOD__
. ": Cannot log out of an immutable session" );
3870 $error = 'immutable';
3871 } elseif ( !$session->getUser()->equals( $this ) ) {
3872 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
3873 ->warning( __METHOD__
.
3874 ": Cannot log user \"$this\" out of a user \"{$session->getUser()}\"'s session"
3876 // But we still may as well make this user object anon
3877 $this->clearInstanceCache( 'defaults' );
3878 $error = 'wronguser';
3880 $this->clearInstanceCache( 'defaults' );
3881 $delay = $session->delaySave();
3882 $session->unpersist(); // Clear cookies (T127436)
3883 $session->setLoggedOutTimestamp( time() );
3884 $session->setUser( new User
);
3885 $session->set( 'wsUserID', 0 ); // Other code expects this
3886 $session->resetAllTokens();
3887 ScopedCallback
::consume( $delay );
3890 \MediaWiki\Logger\LoggerFactory
::getInstance( 'authmanager' )->info( 'Logout', [
3891 'event' => 'logout',
3892 'successful' => $error === false,
3893 'status' => $error ?
: 'success',
3898 * Save this user's settings into the database.
3899 * @todo Only rarely do all these fields need to be set!
3901 public function saveSettings() {
3902 if ( wfReadOnly() ) {
3903 // @TODO: caller should deal with this instead!
3904 // This should really just be an exception.
3905 MWExceptionHandler
::logException( new DBExpectedError(
3907 "Could not update user with ID '{$this->mId}'; DB is read-only."
3913 if ( 0 == $this->mId
) {
3917 // Get a new user_touched that is higher than the old one.
3918 // This will be used for a CAS check as a last-resort safety
3919 // check against race conditions and slave lag.
3920 $newTouched = $this->newTouchedTimestamp();
3922 $dbw = wfGetDB( DB_MASTER
);
3923 $dbw->update( 'user',
3925 'user_name' => $this->mName
,
3926 'user_real_name' => $this->mRealName
,
3927 'user_email' => $this->mEmail
,
3928 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated
),
3929 'user_touched' => $dbw->timestamp( $newTouched ),
3930 'user_token' => strval( $this->mToken
),
3931 'user_email_token' => $this->mEmailToken
,
3932 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires
),
3933 ], $this->makeUpdateConditions( $dbw, [ /* WHERE */
3934 'user_id' => $this->mId
,
3938 if ( !$dbw->affectedRows() ) {
3939 // Maybe the problem was a missed cache update; clear it to be safe
3940 $this->clearSharedCache( 'refresh' );
3941 // User was changed in the meantime or loaded with stale data
3942 $from = ( $this->queryFlagsUsed
& self
::READ_LATEST
) ?
'master' : 'slave';
3943 throw new MWException(
3944 "CAS update failed on user_touched for user ID '{$this->mId}' (read from $from);" .
3945 " the version of the user to be saved is older than the current version."
3949 $this->mTouched
= $newTouched;
3950 $this->saveOptions();
3952 Hooks
::run( 'UserSaveSettings', [ $this ] );
3953 $this->clearSharedCache();
3954 $this->getUserPage()->invalidateCache();
3958 * If only this user's username is known, and it exists, return the user ID.
3960 * @param int $flags Bitfield of User:READ_* constants; useful for existence checks
3963 public function idForName( $flags = 0 ) {
3964 $s = trim( $this->getName() );
3969 $db = ( ( $flags & self
::READ_LATEST
) == self
::READ_LATEST
)
3970 ?
wfGetDB( DB_MASTER
)
3971 : wfGetDB( DB_SLAVE
);
3973 $options = ( ( $flags & self
::READ_LOCKING
) == self
::READ_LOCKING
)
3974 ?
[ 'LOCK IN SHARE MODE' ]
3977 $id = $db->selectField( 'user',
3978 'user_id', [ 'user_name' => $s ], __METHOD__
, $options );
3984 * Add a user to the database, return the user object
3986 * @param string $name Username to add
3987 * @param array $params Array of Strings Non-default parameters to save to
3988 * the database as user_* fields:
3989 * - email: The user's email address.
3990 * - email_authenticated: The email authentication timestamp.
3991 * - real_name: The user's real name.
3992 * - options: An associative array of non-default options.
3993 * - token: Random authentication token. Do not set.
3994 * - registration: Registration timestamp. Do not set.
3996 * @return User|null User object, or null if the username already exists.
3998 public static function createNew( $name, $params = [] ) {
3999 foreach ( [ 'password', 'newpassword', 'newpass_time', 'password_expires' ] as $field ) {
4000 if ( isset( $params[$field] ) ) {
4001 wfDeprecated( __METHOD__
. " with param '$field'", '1.27' );
4002 unset( $params[$field] );
4008 $user->setToken(); // init token
4009 if ( isset( $params['options'] ) ) {
4010 $user->mOptions
= $params['options'] +
(array)$user->mOptions
;
4011 unset( $params['options'] );
4013 $dbw = wfGetDB( DB_MASTER
);
4014 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
4016 $noPass = PasswordFactory
::newInvalidPassword()->toString();
4019 'user_id' => $seqVal,
4020 'user_name' => $name,
4021 'user_password' => $noPass,
4022 'user_newpassword' => $noPass,
4023 'user_email' => $user->mEmail
,
4024 'user_email_authenticated' => $dbw->timestampOrNull( $user->mEmailAuthenticated
),
4025 'user_real_name' => $user->mRealName
,
4026 'user_token' => strval( $user->mToken
),
4027 'user_registration' => $dbw->timestamp( $user->mRegistration
),
4028 'user_editcount' => 0,
4029 'user_touched' => $dbw->timestamp( $user->newTouchedTimestamp() ),
4031 foreach ( $params as $name => $value ) {
4032 $fields["user_$name"] = $value;
4034 $dbw->insert( 'user', $fields, __METHOD__
, [ 'IGNORE' ] );
4035 if ( $dbw->affectedRows() ) {
4036 $newUser = User
::newFromId( $dbw->insertId() );
4044 * Add this existing user object to the database. If the user already
4045 * exists, a fatal status object is returned, and the user object is
4046 * initialised with the data from the database.
4048 * Previously, this function generated a DB error due to a key conflict
4049 * if the user already existed. Many extension callers use this function
4050 * in code along the lines of:
4052 * $user = User::newFromName( $name );
4053 * if ( !$user->isLoggedIn() ) {
4054 * $user->addToDatabase();
4056 * // do something with $user...
4058 * However, this was vulnerable to a race condition (bug 16020). By
4059 * initialising the user object if the user exists, we aim to support this
4060 * calling sequence as far as possible.
4062 * Note that if the user exists, this function will acquire a write lock,
4063 * so it is still advisable to make the call conditional on isLoggedIn(),
4064 * and to commit the transaction after calling.
4066 * @throws MWException
4069 public function addToDatabase() {
4071 if ( !$this->mToken
) {
4072 $this->setToken(); // init token
4075 $this->mTouched
= $this->newTouchedTimestamp();
4077 $noPass = PasswordFactory
::newInvalidPassword()->toString();
4079 $dbw = wfGetDB( DB_MASTER
);
4080 $inWrite = $dbw->writesOrCallbacksPending();
4081 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
4082 $dbw->insert( 'user',
4084 'user_id' => $seqVal,
4085 'user_name' => $this->mName
,
4086 'user_password' => $noPass,
4087 'user_newpassword' => $noPass,
4088 'user_email' => $this->mEmail
,
4089 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated
),
4090 'user_real_name' => $this->mRealName
,
4091 'user_token' => strval( $this->mToken
),
4092 'user_registration' => $dbw->timestamp( $this->mRegistration
),
4093 'user_editcount' => 0,
4094 'user_touched' => $dbw->timestamp( $this->mTouched
),
4098 if ( !$dbw->affectedRows() ) {
4099 // The queries below cannot happen in the same REPEATABLE-READ snapshot.
4100 // Handle this by COMMIT, if possible, or by LOCK IN SHARE MODE otherwise.
4102 // Can't commit due to pending writes that may need atomicity.
4103 // This may cause some lock contention unlike the case below.
4104 $options = [ 'LOCK IN SHARE MODE' ];
4105 $flags = self
::READ_LOCKING
;
4107 // Often, this case happens early in views before any writes when
4108 // using CentralAuth. It's should be OK to commit and break the snapshot.
4109 $dbw->commit( __METHOD__
, 'flush' );
4111 $flags = self
::READ_LATEST
;
4113 $this->mId
= $dbw->selectField( 'user', 'user_id',
4114 [ 'user_name' => $this->mName
], __METHOD__
, $options );
4117 if ( $this->loadFromDatabase( $flags ) ) {
4122 throw new MWException( __METHOD__
. ": hit a key conflict attempting " .
4123 "to insert user '{$this->mName}' row, but it was not present in select!" );
4125 return Status
::newFatal( 'userexists' );
4127 $this->mId
= $dbw->insertId();
4128 self
::$idCacheByName[$this->mName
] = $this->mId
;
4130 // Clear instance cache other than user table data, which is already accurate
4131 $this->clearInstanceCache();
4133 $this->saveOptions();
4134 return Status
::newGood();
4138 * If this user is logged-in and blocked,
4139 * block any IP address they've successfully logged in from.
4140 * @return bool A block was spread
4142 public function spreadAnyEditBlock() {
4143 if ( $this->isLoggedIn() && $this->isBlocked() ) {
4144 return $this->spreadBlock();
4151 * If this (non-anonymous) user is blocked,
4152 * block the IP address they've successfully logged in from.
4153 * @return bool A block was spread
4155 protected function spreadBlock() {
4156 wfDebug( __METHOD__
. "()\n" );
4158 if ( $this->mId
== 0 ) {
4162 $userblock = Block
::newFromTarget( $this->getName() );
4163 if ( !$userblock ) {
4167 return (bool)$userblock->doAutoblock( $this->getRequest()->getIP() );
4171 * Get whether the user is explicitly blocked from account creation.
4172 * @return bool|Block
4174 public function isBlockedFromCreateAccount() {
4175 $this->getBlockedStatus();
4176 if ( $this->mBlock
&& $this->mBlock
->prevents( 'createaccount' ) ) {
4177 return $this->mBlock
;
4180 # bug 13611: if the IP address the user is trying to create an account from is
4181 # blocked with createaccount disabled, prevent new account creation there even
4182 # when the user is logged in
4183 if ( $this->mBlockedFromCreateAccount
=== false && !$this->isAllowed( 'ipblock-exempt' ) ) {
4184 $this->mBlockedFromCreateAccount
= Block
::newFromTarget( null, $this->getRequest()->getIP() );
4186 return $this->mBlockedFromCreateAccount
instanceof Block
4187 && $this->mBlockedFromCreateAccount
->prevents( 'createaccount' )
4188 ?
$this->mBlockedFromCreateAccount
4193 * Get whether the user is blocked from using Special:Emailuser.
4196 public function isBlockedFromEmailuser() {
4197 $this->getBlockedStatus();
4198 return $this->mBlock
&& $this->mBlock
->prevents( 'sendemail' );
4202 * Get whether the user is allowed to create an account.
4205 public function isAllowedToCreateAccount() {
4206 return $this->isAllowed( 'createaccount' ) && !$this->isBlockedFromCreateAccount();
4210 * Get this user's personal page title.
4212 * @return Title User's personal page title
4214 public function getUserPage() {
4215 return Title
::makeTitle( NS_USER
, $this->getName() );
4219 * Get this user's talk page title.
4221 * @return Title User's talk page title
4223 public function getTalkPage() {
4224 $title = $this->getUserPage();
4225 return $title->getTalkPage();
4229 * Determine whether the user is a newbie. Newbies are either
4230 * anonymous IPs, or the most recently created accounts.
4233 public function isNewbie() {
4234 return !$this->isAllowed( 'autoconfirmed' );
4238 * Check to see if the given clear-text password is one of the accepted passwords
4239 * @deprecated since 1.27, use AuthManager instead
4240 * @param string $password User password
4241 * @return bool True if the given password is correct, otherwise False
4243 public function checkPassword( $password ) {
4244 global $wgAuth, $wgLegacyEncoding, $wgDisableAuthManager;
4246 if ( $wgDisableAuthManager ) {
4249 // Some passwords will give a fatal Status, which means there is
4250 // some sort of technical or security reason for this password to
4251 // be completely invalid and should never be checked (e.g., T64685)
4252 if ( !$this->checkPasswordValidity( $password )->isOK() ) {
4256 // Certain authentication plugins do NOT want to save
4257 // domain passwords in a mysql database, so we should
4258 // check this (in case $wgAuth->strict() is false).
4259 if ( $wgAuth->authenticate( $this->getName(), $password ) ) {
4261 } elseif ( $wgAuth->strict() ) {
4262 // Auth plugin doesn't allow local authentication
4264 } elseif ( $wgAuth->strictUserAuth( $this->getName() ) ) {
4265 // Auth plugin doesn't allow local authentication for this user name
4269 $passwordFactory = new PasswordFactory();
4270 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
4271 $db = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
4272 ?
wfGetDB( DB_MASTER
)
4273 : wfGetDB( DB_SLAVE
);
4276 $mPassword = $passwordFactory->newFromCiphertext( $db->selectField(
4277 'user', 'user_password', [ 'user_id' => $this->getId() ], __METHOD__
4279 } catch ( PasswordError
$e ) {
4280 wfDebug( 'Invalid password hash found in database.' );
4281 $mPassword = PasswordFactory
::newInvalidPassword();
4284 if ( !$mPassword->equals( $password ) ) {
4285 if ( $wgLegacyEncoding ) {
4286 // Some wikis were converted from ISO 8859-1 to UTF-8, the passwords can't be converted
4287 // Check for this with iconv
4288 $cp1252Password = iconv( 'UTF-8', 'WINDOWS-1252//TRANSLIT', $password );
4289 if ( $cp1252Password === $password ||
!$mPassword->equals( $cp1252Password ) ) {
4297 if ( $passwordFactory->needsUpdate( $mPassword ) && !wfReadOnly() ) {
4298 $this->setPasswordInternal( $password );
4303 $manager = AuthManager
::singleton();
4304 $reqs = AuthenticationRequest
::loadRequestsFromSubmission(
4305 $manager->getAuthenticationRequests( AuthManager
::ACTION_LOGIN
),
4307 'username' => $this->getName(),
4308 'password' => $password,
4311 $res = AuthManager
::singleton()->beginAuthentication( $reqs, 'null:' );
4312 switch ( $res->status
) {
4313 case AuthenticationResponse
::PASS
:
4315 case AuthenticationResponse
::FAIL
:
4316 // Hope it's not a PreAuthenticationProvider that failed...
4317 \MediaWiki\Logger\LoggerFactory
::getInstance( 'authentication' )
4318 ->info( __METHOD__
. ': Authentication failed: ' . $res->message
->plain() );
4321 throw new BadMethodCallException(
4322 'AuthManager returned a response unsupported by ' . __METHOD__
4329 * Check if the given clear-text password matches the temporary password
4330 * sent by e-mail for password reset operations.
4332 * @deprecated since 1.27, use AuthManager instead
4333 * @param string $plaintext
4334 * @return bool True if matches, false otherwise
4336 public function checkTemporaryPassword( $plaintext ) {
4337 global $wgNewPasswordExpiry, $wgDisableAuthManager;
4339 if ( $wgDisableAuthManager ) {
4342 $passwordFactory = new PasswordFactory();
4343 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
4344 $db = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
4345 ?
wfGetDB( DB_MASTER
)
4346 : wfGetDB( DB_SLAVE
);
4348 $row = $db->selectRow(
4350 [ 'user_newpassword', 'user_newpass_time' ],
4351 [ 'user_id' => $this->getId() ],
4355 $newPassword = $passwordFactory->newFromCiphertext( $row->user_newpassword
);
4356 } catch ( PasswordError
$e ) {
4357 wfDebug( 'Invalid password hash found in database.' );
4358 $newPassword = PasswordFactory
::newInvalidPassword();
4361 if ( $newPassword->equals( $plaintext ) ) {
4362 if ( is_null( $row->user_newpass_time
) ) {
4365 $expiry = wfTimestamp( TS_UNIX
, $row->user_newpass_time
) +
$wgNewPasswordExpiry;
4366 return ( time() < $expiry );
4371 // Can't check the temporary password individually.
4372 return $this->checkPassword( $plaintext );
4377 * Initialize (if necessary) and return a session token value
4378 * which can be used in edit forms to show that the user's
4379 * login credentials aren't being hijacked with a foreign form
4383 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4384 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4385 * @return MediaWiki\Session\Token The new edit token
4387 public function getEditTokenObject( $salt = '', $request = null ) {
4388 if ( $this->isAnon() ) {
4389 return new LoggedOutEditToken();
4393 $request = $this->getRequest();
4395 return $request->getSession()->getToken( $salt );
4399 * Initialize (if necessary) and return a session token value
4400 * which can be used in edit forms to show that the user's
4401 * login credentials aren't being hijacked with a foreign form
4405 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4406 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4407 * @return string The new edit token
4409 public function getEditToken( $salt = '', $request = null ) {
4410 return $this->getEditTokenObject( $salt, $request )->toString();
4414 * Get the embedded timestamp from a token.
4415 * @deprecated since 1.27, use \MediaWiki\Session\Token::getTimestamp instead.
4416 * @param string $val Input token
4419 public static function getEditTokenTimestamp( $val ) {
4420 wfDeprecated( __METHOD__
, '1.27' );
4421 return MediaWiki\Session\Token
::getTimestamp( $val );
4425 * Check given value against the token value stored in the session.
4426 * A match should confirm that the form was submitted from the
4427 * user's own login session, not a form submission from a third-party
4430 * @param string $val Input value to compare
4431 * @param string $salt Optional function-specific data for hashing
4432 * @param WebRequest|null $request Object to use or null to use $wgRequest
4433 * @param int $maxage Fail tokens older than this, in seconds
4434 * @return bool Whether the token matches
4436 public function matchEditToken( $val, $salt = '', $request = null, $maxage = null ) {
4437 return $this->getEditTokenObject( $salt, $request )->match( $val, $maxage );
4441 * Check given value against the token value stored in the session,
4442 * ignoring the suffix.
4444 * @param string $val Input value to compare
4445 * @param string $salt Optional function-specific data for hashing
4446 * @param WebRequest|null $request Object to use or null to use $wgRequest
4447 * @param int $maxage Fail tokens older than this, in seconds
4448 * @return bool Whether the token matches
4450 public function matchEditTokenNoSuffix( $val, $salt = '', $request = null, $maxage = null ) {
4451 $val = substr( $val, 0, strspn( $val, '0123456789abcdef' ) ) . Token
::SUFFIX
;
4452 return $this->matchEditToken( $val, $salt, $request, $maxage );
4456 * Generate a new e-mail confirmation token and send a confirmation/invalidation
4457 * mail to the user's given address.
4459 * @param string $type Message to send, either "created", "changed" or "set"
4462 public function sendConfirmationMail( $type = 'created' ) {
4464 $expiration = null; // gets passed-by-ref and defined in next line.
4465 $token = $this->confirmationToken( $expiration );
4466 $url = $this->confirmationTokenUrl( $token );
4467 $invalidateURL = $this->invalidationTokenUrl( $token );
4468 $this->saveSettings();
4470 if ( $type == 'created' ||
$type === false ) {
4471 $message = 'confirmemail_body';
4472 } elseif ( $type === true ) {
4473 $message = 'confirmemail_body_changed';
4475 // Messages: confirmemail_body_changed, confirmemail_body_set
4476 $message = 'confirmemail_body_' . $type;
4479 return $this->sendMail( wfMessage( 'confirmemail_subject' )->text(),
4480 wfMessage( $message,
4481 $this->getRequest()->getIP(),
4484 $wgLang->userTimeAndDate( $expiration, $this ),
4486 $wgLang->userDate( $expiration, $this ),
4487 $wgLang->userTime( $expiration, $this ) )->text() );
4491 * Send an e-mail to this user's account. Does not check for
4492 * confirmed status or validity.
4494 * @param string $subject Message subject
4495 * @param string $body Message body
4496 * @param User|null $from Optional sending user; if unspecified, default
4497 * $wgPasswordSender will be used.
4498 * @param string $replyto Reply-To address
4501 public function sendMail( $subject, $body, $from = null, $replyto = null ) {
4502 global $wgPasswordSender;
4504 if ( $from instanceof User
) {
4505 $sender = MailAddress
::newFromUser( $from );
4507 $sender = new MailAddress( $wgPasswordSender,
4508 wfMessage( 'emailsender' )->inContentLanguage()->text() );
4510 $to = MailAddress
::newFromUser( $this );
4512 return UserMailer
::send( $to, $sender, $subject, $body, [
4513 'replyTo' => $replyto,
4518 * Generate, store, and return a new e-mail confirmation code.
4519 * A hash (unsalted, since it's used as a key) is stored.
4521 * @note Call saveSettings() after calling this function to commit
4522 * this change to the database.
4524 * @param string &$expiration Accepts the expiration time
4525 * @return string New token
4527 protected function confirmationToken( &$expiration ) {
4528 global $wgUserEmailConfirmationTokenExpiry;
4530 $expires = $now +
$wgUserEmailConfirmationTokenExpiry;
4531 $expiration = wfTimestamp( TS_MW
, $expires );
4533 $token = MWCryptRand
::generateHex( 32 );
4534 $hash = md5( $token );
4535 $this->mEmailToken
= $hash;
4536 $this->mEmailTokenExpires
= $expiration;
4541 * Return a URL the user can use to confirm their email address.
4542 * @param string $token Accepts the email confirmation token
4543 * @return string New token URL
4545 protected function confirmationTokenUrl( $token ) {
4546 return $this->getTokenUrl( 'ConfirmEmail', $token );
4550 * Return a URL the user can use to invalidate their email address.
4551 * @param string $token Accepts the email confirmation token
4552 * @return string New token URL
4554 protected function invalidationTokenUrl( $token ) {
4555 return $this->getTokenUrl( 'InvalidateEmail', $token );
4559 * Internal function to format the e-mail validation/invalidation URLs.
4560 * This uses a quickie hack to use the
4561 * hardcoded English names of the Special: pages, for ASCII safety.
4563 * @note Since these URLs get dropped directly into emails, using the
4564 * short English names avoids insanely long URL-encoded links, which
4565 * also sometimes can get corrupted in some browsers/mailers
4566 * (bug 6957 with Gmail and Internet Explorer).
4568 * @param string $page Special page
4569 * @param string $token Token
4570 * @return string Formatted URL
4572 protected function getTokenUrl( $page, $token ) {
4573 // Hack to bypass localization of 'Special:'
4574 $title = Title
::makeTitle( NS_MAIN
, "Special:$page/$token" );
4575 return $title->getCanonicalURL();
4579 * Mark the e-mail address confirmed.
4581 * @note Call saveSettings() after calling this function to commit the change.
4585 public function confirmEmail() {
4586 // Check if it's already confirmed, so we don't touch the database
4587 // and fire the ConfirmEmailComplete hook on redundant confirmations.
4588 if ( !$this->isEmailConfirmed() ) {
4589 $this->setEmailAuthenticationTimestamp( wfTimestampNow() );
4590 Hooks
::run( 'ConfirmEmailComplete', [ $this ] );
4596 * Invalidate the user's e-mail confirmation, and unauthenticate the e-mail
4597 * address if it was already confirmed.
4599 * @note Call saveSettings() after calling this function to commit the change.
4600 * @return bool Returns true
4602 public function invalidateEmail() {
4604 $this->mEmailToken
= null;
4605 $this->mEmailTokenExpires
= null;
4606 $this->setEmailAuthenticationTimestamp( null );
4608 Hooks
::run( 'InvalidateEmailComplete', [ $this ] );
4613 * Set the e-mail authentication timestamp.
4614 * @param string $timestamp TS_MW timestamp
4616 public function setEmailAuthenticationTimestamp( $timestamp ) {
4618 $this->mEmailAuthenticated
= $timestamp;
4619 Hooks
::run( 'UserSetEmailAuthenticationTimestamp', [ $this, &$this->mEmailAuthenticated
] );
4623 * Is this user allowed to send e-mails within limits of current
4624 * site configuration?
4627 public function canSendEmail() {
4628 global $wgEnableEmail, $wgEnableUserEmail;
4629 if ( !$wgEnableEmail ||
!$wgEnableUserEmail ||
!$this->isAllowed( 'sendemail' ) ) {
4632 $canSend = $this->isEmailConfirmed();
4633 Hooks
::run( 'UserCanSendEmail', [ &$this, &$canSend ] );
4638 * Is this user allowed to receive e-mails within limits of current
4639 * site configuration?
4642 public function canReceiveEmail() {
4643 return $this->isEmailConfirmed() && !$this->getOption( 'disablemail' );
4647 * Is this user's e-mail address valid-looking and confirmed within
4648 * limits of the current site configuration?
4650 * @note If $wgEmailAuthentication is on, this may require the user to have
4651 * confirmed their address by returning a code or using a password
4652 * sent to the address from the wiki.
4656 public function isEmailConfirmed() {
4657 global $wgEmailAuthentication;
4660 if ( Hooks
::run( 'EmailConfirmed', [ &$this, &$confirmed ] ) ) {
4661 if ( $this->isAnon() ) {
4664 if ( !Sanitizer
::validateEmail( $this->mEmail
) ) {
4667 if ( $wgEmailAuthentication && !$this->getEmailAuthenticationTimestamp() ) {
4677 * Check whether there is an outstanding request for e-mail confirmation.
4680 public function isEmailConfirmationPending() {
4681 global $wgEmailAuthentication;
4682 return $wgEmailAuthentication &&
4683 !$this->isEmailConfirmed() &&
4684 $this->mEmailToken
&&
4685 $this->mEmailTokenExpires
> wfTimestamp();
4689 * Get the timestamp of account creation.
4691 * @return string|bool|null Timestamp of account creation, false for
4692 * non-existent/anonymous user accounts, or null if existing account
4693 * but information is not in database.
4695 public function getRegistration() {
4696 if ( $this->isAnon() ) {
4700 return $this->mRegistration
;
4704 * Get the timestamp of the first edit
4706 * @return string|bool Timestamp of first edit, or false for
4707 * non-existent/anonymous user accounts.
4709 public function getFirstEditTimestamp() {
4710 if ( $this->getId() == 0 ) {
4711 return false; // anons
4713 $dbr = wfGetDB( DB_SLAVE
);
4714 $time = $dbr->selectField( 'revision', 'rev_timestamp',
4715 [ 'rev_user' => $this->getId() ],
4717 [ 'ORDER BY' => 'rev_timestamp ASC' ]
4720 return false; // no edits
4722 return wfTimestamp( TS_MW
, $time );
4726 * Get the permissions associated with a given list of groups
4728 * @param array $groups Array of Strings List of internal group names
4729 * @return array Array of Strings List of permission key names for given groups combined
4731 public static function getGroupPermissions( $groups ) {
4732 global $wgGroupPermissions, $wgRevokePermissions;
4734 // grant every granted permission first
4735 foreach ( $groups as $group ) {
4736 if ( isset( $wgGroupPermissions[$group] ) ) {
4737 $rights = array_merge( $rights,
4738 // array_filter removes empty items
4739 array_keys( array_filter( $wgGroupPermissions[$group] ) ) );
4742 // now revoke the revoked permissions
4743 foreach ( $groups as $group ) {
4744 if ( isset( $wgRevokePermissions[$group] ) ) {
4745 $rights = array_diff( $rights,
4746 array_keys( array_filter( $wgRevokePermissions[$group] ) ) );
4749 return array_unique( $rights );
4753 * Get all the groups who have a given permission
4755 * @param string $role Role to check
4756 * @return array Array of Strings List of internal group names with the given permission
4758 public static function getGroupsWithPermission( $role ) {
4759 global $wgGroupPermissions;
4760 $allowedGroups = [];
4761 foreach ( array_keys( $wgGroupPermissions ) as $group ) {
4762 if ( self
::groupHasPermission( $group, $role ) ) {
4763 $allowedGroups[] = $group;
4766 return $allowedGroups;
4770 * Check, if the given group has the given permission
4772 * If you're wanting to check whether all users have a permission, use
4773 * User::isEveryoneAllowed() instead. That properly checks if it's revoked
4777 * @param string $group Group to check
4778 * @param string $role Role to check
4781 public static function groupHasPermission( $group, $role ) {
4782 global $wgGroupPermissions, $wgRevokePermissions;
4783 return isset( $wgGroupPermissions[$group][$role] ) && $wgGroupPermissions[$group][$role]
4784 && !( isset( $wgRevokePermissions[$group][$role] ) && $wgRevokePermissions[$group][$role] );
4788 * Check if all users may be assumed to have the given permission
4790 * We generally assume so if the right is granted to '*' and isn't revoked
4791 * on any group. It doesn't attempt to take grants or other extension
4792 * limitations on rights into account in the general case, though, as that
4793 * would require it to always return false and defeat the purpose.
4794 * Specifically, session-based rights restrictions (such as OAuth or bot
4795 * passwords) are applied based on the current session.
4798 * @param string $right Right to check
4801 public static function isEveryoneAllowed( $right ) {
4802 global $wgGroupPermissions, $wgRevokePermissions;
4805 // Use the cached results, except in unit tests which rely on
4806 // being able change the permission mid-request
4807 if ( isset( $cache[$right] ) && !defined( 'MW_PHPUNIT_TEST' ) ) {
4808 return $cache[$right];
4811 if ( !isset( $wgGroupPermissions['*'][$right] ) ||
!$wgGroupPermissions['*'][$right] ) {
4812 $cache[$right] = false;
4816 // If it's revoked anywhere, then everyone doesn't have it
4817 foreach ( $wgRevokePermissions as $rights ) {
4818 if ( isset( $rights[$right] ) && $rights[$right] ) {
4819 $cache[$right] = false;
4824 // Remove any rights that aren't allowed to the global-session user,
4825 // unless there are no sessions for this endpoint.
4826 if ( !defined( 'MW_NO_SESSION' ) ) {
4827 $allowedRights = SessionManager
::getGlobalSession()->getAllowedUserRights();
4828 if ( $allowedRights !== null && !in_array( $right, $allowedRights, true ) ) {
4829 $cache[$right] = false;
4834 // Allow extensions to say false
4835 if ( !Hooks
::run( 'UserIsEveryoneAllowed', [ $right ] ) ) {
4836 $cache[$right] = false;
4840 $cache[$right] = true;
4845 * Get the localized descriptive name for a group, if it exists
4847 * @param string $group Internal group name
4848 * @return string Localized descriptive group name
4850 public static function getGroupName( $group ) {
4851 $msg = wfMessage( "group-$group" );
4852 return $msg->isBlank() ?
$group : $msg->text();
4856 * Get the localized descriptive name for a member of a group, if it exists
4858 * @param string $group Internal group name
4859 * @param string $username Username for gender (since 1.19)
4860 * @return string Localized name for group member
4862 public static function getGroupMember( $group, $username = '#' ) {
4863 $msg = wfMessage( "group-$group-member", $username );
4864 return $msg->isBlank() ?
$group : $msg->text();
4868 * Return the set of defined explicit groups.
4869 * The implicit groups (by default *, 'user' and 'autoconfirmed')
4870 * are not included, as they are defined automatically, not in the database.
4871 * @return array Array of internal group names
4873 public static function getAllGroups() {
4874 global $wgGroupPermissions, $wgRevokePermissions;
4876 array_merge( array_keys( $wgGroupPermissions ), array_keys( $wgRevokePermissions ) ),
4877 self
::getImplicitGroups()
4882 * Get a list of all available permissions.
4883 * @return string[] Array of permission names
4885 public static function getAllRights() {
4886 if ( self
::$mAllRights === false ) {
4887 global $wgAvailableRights;
4888 if ( count( $wgAvailableRights ) ) {
4889 self
::$mAllRights = array_unique( array_merge( self
::$mCoreRights, $wgAvailableRights ) );
4891 self
::$mAllRights = self
::$mCoreRights;
4893 Hooks
::run( 'UserGetAllRights', [ &self
::$mAllRights ] );
4895 return self
::$mAllRights;
4899 * Get a list of implicit groups
4900 * @return array Array of Strings Array of internal group names
4902 public static function getImplicitGroups() {
4903 global $wgImplicitGroups;
4905 $groups = $wgImplicitGroups;
4906 # Deprecated, use $wgImplicitGroups instead
4907 Hooks
::run( 'UserGetImplicitGroups', [ &$groups ], '1.25' );
4913 * Get the title of a page describing a particular group
4915 * @param string $group Internal group name
4916 * @return Title|bool Title of the page if it exists, false otherwise
4918 public static function getGroupPage( $group ) {
4919 $msg = wfMessage( 'grouppage-' . $group )->inContentLanguage();
4920 if ( $msg->exists() ) {
4921 $title = Title
::newFromText( $msg->text() );
4922 if ( is_object( $title ) ) {
4930 * Create a link to the group in HTML, if available;
4931 * else return the group name.
4933 * @param string $group Internal name of the group
4934 * @param string $text The text of the link
4935 * @return string HTML link to the group
4937 public static function makeGroupLinkHTML( $group, $text = '' ) {
4938 if ( $text == '' ) {
4939 $text = self
::getGroupName( $group );
4941 $title = self
::getGroupPage( $group );
4943 return Linker
::link( $title, htmlspecialchars( $text ) );
4945 return htmlspecialchars( $text );
4950 * Create a link to the group in Wikitext, if available;
4951 * else return the group name.
4953 * @param string $group Internal name of the group
4954 * @param string $text The text of the link
4955 * @return string Wikilink to the group
4957 public static function makeGroupLinkWiki( $group, $text = '' ) {
4958 if ( $text == '' ) {
4959 $text = self
::getGroupName( $group );
4961 $title = self
::getGroupPage( $group );
4963 $page = $title->getFullText();
4964 return "[[$page|$text]]";
4971 * Returns an array of the groups that a particular group can add/remove.
4973 * @param string $group The group to check for whether it can add/remove
4974 * @return array Array( 'add' => array( addablegroups ),
4975 * 'remove' => array( removablegroups ),
4976 * 'add-self' => array( addablegroups to self),
4977 * 'remove-self' => array( removable groups from self) )
4979 public static function changeableByGroup( $group ) {
4980 global $wgAddGroups, $wgRemoveGroups, $wgGroupsAddToSelf, $wgGroupsRemoveFromSelf;
4989 if ( empty( $wgAddGroups[$group] ) ) {
4990 // Don't add anything to $groups
4991 } elseif ( $wgAddGroups[$group] === true ) {
4992 // You get everything
4993 $groups['add'] = self
::getAllGroups();
4994 } elseif ( is_array( $wgAddGroups[$group] ) ) {
4995 $groups['add'] = $wgAddGroups[$group];
4998 // Same thing for remove
4999 if ( empty( $wgRemoveGroups[$group] ) ) {
5001 } elseif ( $wgRemoveGroups[$group] === true ) {
5002 $groups['remove'] = self
::getAllGroups();
5003 } elseif ( is_array( $wgRemoveGroups[$group] ) ) {
5004 $groups['remove'] = $wgRemoveGroups[$group];
5007 // Re-map numeric keys of AddToSelf/RemoveFromSelf to the 'user' key for backwards compatibility
5008 if ( empty( $wgGroupsAddToSelf['user'] ) ||
$wgGroupsAddToSelf['user'] !== true ) {
5009 foreach ( $wgGroupsAddToSelf as $key => $value ) {
5010 if ( is_int( $key ) ) {
5011 $wgGroupsAddToSelf['user'][] = $value;
5016 if ( empty( $wgGroupsRemoveFromSelf['user'] ) ||
$wgGroupsRemoveFromSelf['user'] !== true ) {
5017 foreach ( $wgGroupsRemoveFromSelf as $key => $value ) {
5018 if ( is_int( $key ) ) {
5019 $wgGroupsRemoveFromSelf['user'][] = $value;
5024 // Now figure out what groups the user can add to him/herself
5025 if ( empty( $wgGroupsAddToSelf[$group] ) ) {
5027 } elseif ( $wgGroupsAddToSelf[$group] === true ) {
5028 // No idea WHY this would be used, but it's there
5029 $groups['add-self'] = User
::getAllGroups();
5030 } elseif ( is_array( $wgGroupsAddToSelf[$group] ) ) {
5031 $groups['add-self'] = $wgGroupsAddToSelf[$group];
5034 if ( empty( $wgGroupsRemoveFromSelf[$group] ) ) {
5036 } elseif ( $wgGroupsRemoveFromSelf[$group] === true ) {
5037 $groups['remove-self'] = User
::getAllGroups();
5038 } elseif ( is_array( $wgGroupsRemoveFromSelf[$group] ) ) {
5039 $groups['remove-self'] = $wgGroupsRemoveFromSelf[$group];
5046 * Returns an array of groups that this user can add and remove
5047 * @return array Array( 'add' => array( addablegroups ),
5048 * 'remove' => array( removablegroups ),
5049 * 'add-self' => array( addablegroups to self),
5050 * 'remove-self' => array( removable groups from self) )
5052 public function changeableGroups() {
5053 if ( $this->isAllowed( 'userrights' ) ) {
5054 // This group gives the right to modify everything (reverse-
5055 // compatibility with old "userrights lets you change
5057 // Using array_merge to make the groups reindexed
5058 $all = array_merge( User
::getAllGroups() );
5067 // Okay, it's not so simple, we will have to go through the arrays
5074 $addergroups = $this->getEffectiveGroups();
5076 foreach ( $addergroups as $addergroup ) {
5077 $groups = array_merge_recursive(
5078 $groups, $this->changeableByGroup( $addergroup )
5080 $groups['add'] = array_unique( $groups['add'] );
5081 $groups['remove'] = array_unique( $groups['remove'] );
5082 $groups['add-self'] = array_unique( $groups['add-self'] );
5083 $groups['remove-self'] = array_unique( $groups['remove-self'] );
5089 * Deferred version of incEditCountImmediate()
5091 public function incEditCount() {
5092 wfGetDB( DB_MASTER
)->onTransactionPreCommitOrIdle( function() {
5093 $this->incEditCountImmediate();
5098 * Increment the user's edit-count field.
5099 * Will have no effect for anonymous users.
5102 public function incEditCountImmediate() {
5103 if ( $this->isAnon() ) {
5107 $dbw = wfGetDB( DB_MASTER
);
5108 // No rows will be "affected" if user_editcount is NULL
5111 [ 'user_editcount=user_editcount+1' ],
5112 [ 'user_id' => $this->getId(), 'user_editcount IS NOT NULL' ],
5115 // Lazy initialization check...
5116 if ( $dbw->affectedRows() == 0 ) {
5117 // Now here's a goddamn hack...
5118 $dbr = wfGetDB( DB_SLAVE
);
5119 if ( $dbr !== $dbw ) {
5120 // If we actually have a slave server, the count is
5121 // at least one behind because the current transaction
5122 // has not been committed and replicated.
5123 $this->initEditCount( 1 );
5125 // But if DB_SLAVE is selecting the master, then the
5126 // count we just read includes the revision that was
5127 // just added in the working transaction.
5128 $this->initEditCount();
5131 // Edit count in user cache too
5132 $this->invalidateCache();
5136 * Initialize user_editcount from data out of the revision table
5138 * @param int $add Edits to add to the count from the revision table
5139 * @return int Number of edits
5141 protected function initEditCount( $add = 0 ) {
5142 // Pull from a slave to be less cruel to servers
5143 // Accuracy isn't the point anyway here
5144 $dbr = wfGetDB( DB_SLAVE
);
5145 $count = (int)$dbr->selectField(
5148 [ 'rev_user' => $this->getId() ],
5151 $count = $count +
$add;
5153 $dbw = wfGetDB( DB_MASTER
);
5156 [ 'user_editcount' => $count ],
5157 [ 'user_id' => $this->getId() ],
5165 * Get the description of a given right
5167 * @param string $right Right to query
5168 * @return string Localized description of the right
5170 public static function getRightDescription( $right ) {
5171 $key = "right-$right";
5172 $msg = wfMessage( $key );
5173 return $msg->isBlank() ?
$right : $msg->text();
5177 * Make a new-style password hash
5179 * @param string $password Plain-text password
5180 * @param bool|string $salt Optional salt, may be random or the user ID.
5181 * If unspecified or false, will generate one automatically
5182 * @return string Password hash
5183 * @deprecated since 1.24, use Password class
5185 public static function crypt( $password, $salt = false ) {
5186 wfDeprecated( __METHOD__
, '1.24' );
5187 $passwordFactory = new PasswordFactory();
5188 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
5189 $hash = $passwordFactory->newFromPlaintext( $password );
5190 return $hash->toString();
5194 * Compare a password hash with a plain-text password. Requires the user
5195 * ID if there's a chance that the hash is an old-style hash.
5197 * @param string $hash Password hash
5198 * @param string $password Plain-text password to compare
5199 * @param string|bool $userId User ID for old-style password salt
5202 * @deprecated since 1.24, use Password class
5204 public static function comparePasswords( $hash, $password, $userId = false ) {
5205 wfDeprecated( __METHOD__
, '1.24' );
5207 // Check for *really* old password hashes that don't even have a type
5208 // The old hash format was just an md5 hex hash, with no type information
5209 if ( preg_match( '/^[0-9a-f]{32}$/', $hash ) ) {
5210 global $wgPasswordSalt;
5211 if ( $wgPasswordSalt ) {
5212 $password = ":B:{$userId}:{$hash}";
5214 $password = ":A:{$hash}";
5218 $passwordFactory = new PasswordFactory();
5219 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
5220 $hash = $passwordFactory->newFromCiphertext( $hash );
5221 return $hash->equals( $password );
5225 * Add a newuser log entry for this user.
5226 * Before 1.19 the return value was always true.
5228 * @deprecated since 1.27, AuthManager handles logging
5229 * @param string|bool $action Account creation type.
5230 * - String, one of the following values:
5231 * - 'create' for an anonymous user creating an account for himself.
5232 * This will force the action's performer to be the created user itself,
5233 * no matter the value of $wgUser
5234 * - 'create2' for a logged in user creating an account for someone else
5235 * - 'byemail' when the created user will receive its password by e-mail
5236 * - 'autocreate' when the user is automatically created (such as by CentralAuth).
5237 * - Boolean means whether the account was created by e-mail (deprecated):
5238 * - true will be converted to 'byemail'
5239 * - false will be converted to 'create' if this object is the same as
5240 * $wgUser and to 'create2' otherwise
5241 * @param string $reason User supplied reason
5242 * @return int|bool True if not $wgNewUserLog or not $wgDisableAuthManager;
5243 * otherwise ID of log item or 0 on failure
5245 public function addNewUserLogEntry( $action = false, $reason = '' ) {
5246 global $wgUser, $wgNewUserLog, $wgDisableAuthManager;
5247 if ( !$wgDisableAuthManager ||
empty( $wgNewUserLog ) ) {
5248 return true; // disabled
5251 if ( $action === true ) {
5252 $action = 'byemail';
5253 } elseif ( $action === false ) {
5254 if ( $this->equals( $wgUser ) ) {
5257 $action = 'create2';
5261 if ( $action === 'create' ||
$action === 'autocreate' ) {
5264 $performer = $wgUser;
5267 $logEntry = new ManualLogEntry( 'newusers', $action );
5268 $logEntry->setPerformer( $performer );
5269 $logEntry->setTarget( $this->getUserPage() );
5270 $logEntry->setComment( $reason );
5271 $logEntry->setParameters( [
5272 '4::userid' => $this->getId(),
5274 $logid = $logEntry->insert();
5276 if ( $action !== 'autocreate' ) {
5277 $logEntry->publish( $logid );
5284 * Add an autocreate newuser log entry for this user
5285 * Used by things like CentralAuth and perhaps other authplugins.
5286 * Consider calling addNewUserLogEntry() directly instead.
5288 * @deprecated since 1.27, AuthManager handles logging
5291 public function addNewUserLogEntryAutoCreate() {
5292 $this->addNewUserLogEntry( 'autocreate' );
5298 * Load the user options either from cache, the database or an array
5300 * @param array $data Rows for the current user out of the user_properties table
5302 protected function loadOptions( $data = null ) {
5307 if ( $this->mOptionsLoaded
) {
5311 $this->mOptions
= self
::getDefaultOptions();
5313 if ( !$this->getId() ) {
5314 // For unlogged-in users, load language/variant options from request.
5315 // There's no need to do it for logged-in users: they can set preferences,
5316 // and handling of page content is done by $pageLang->getPreferredVariant() and such,
5317 // so don't override user's choice (especially when the user chooses site default).
5318 $variant = $wgContLang->getDefaultVariant();
5319 $this->mOptions
['variant'] = $variant;
5320 $this->mOptions
['language'] = $variant;
5321 $this->mOptionsLoaded
= true;
5325 // Maybe load from the object
5326 if ( !is_null( $this->mOptionOverrides
) ) {
5327 wfDebug( "User: loading options for user " . $this->getId() . " from override cache.\n" );
5328 foreach ( $this->mOptionOverrides
as $key => $value ) {
5329 $this->mOptions
[$key] = $value;
5332 if ( !is_array( $data ) ) {
5333 wfDebug( "User: loading options for user " . $this->getId() . " from database.\n" );
5334 // Load from database
5335 $dbr = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
5336 ?
wfGetDB( DB_MASTER
)
5337 : wfGetDB( DB_SLAVE
);
5339 $res = $dbr->select(
5341 [ 'up_property', 'up_value' ],
5342 [ 'up_user' => $this->getId() ],
5346 $this->mOptionOverrides
= [];
5348 foreach ( $res as $row ) {
5349 $data[$row->up_property
] = $row->up_value
;
5352 foreach ( $data as $property => $value ) {
5353 $this->mOptionOverrides
[$property] = $value;
5354 $this->mOptions
[$property] = $value;
5358 $this->mOptionsLoaded
= true;
5360 Hooks
::run( 'UserLoadOptions', [ $this, &$this->mOptions
] );
5364 * Saves the non-default options for this user, as previously set e.g. via
5365 * setOption(), in the database's "user_properties" (preferences) table.
5366 * Usually used via saveSettings().
5368 protected function saveOptions() {
5369 $this->loadOptions();
5371 // Not using getOptions(), to keep hidden preferences in database
5372 $saveOptions = $this->mOptions
;
5374 // Allow hooks to abort, for instance to save to a global profile.
5375 // Reset options to default state before saving.
5376 if ( !Hooks
::run( 'UserSaveOptions', [ $this, &$saveOptions ] ) ) {
5380 $userId = $this->getId();
5382 $insert_rows = []; // all the new preference rows
5383 foreach ( $saveOptions as $key => $value ) {
5384 // Don't bother storing default values
5385 $defaultOption = self
::getDefaultOption( $key );
5386 if ( ( $defaultOption === null && $value !== false && $value !== null )
5387 ||
$value != $defaultOption
5390 'up_user' => $userId,
5391 'up_property' => $key,
5392 'up_value' => $value,
5397 $dbw = wfGetDB( DB_MASTER
);
5399 $res = $dbw->select( 'user_properties',
5400 [ 'up_property', 'up_value' ], [ 'up_user' => $userId ], __METHOD__
);
5402 // Find prior rows that need to be removed or updated. These rows will
5403 // all be deleted (the later so that INSERT IGNORE applies the new values).
5405 foreach ( $res as $row ) {
5406 if ( !isset( $saveOptions[$row->up_property
] )
5407 ||
strcmp( $saveOptions[$row->up_property
], $row->up_value
) != 0
5409 $keysDelete[] = $row->up_property
;
5413 if ( count( $keysDelete ) ) {
5414 // Do the DELETE by PRIMARY KEY for prior rows.
5415 // In the past a very large portion of calls to this function are for setting
5416 // 'rememberpassword' for new accounts (a preference that has since been removed).
5417 // Doing a blanket per-user DELETE for new accounts with no rows in the table
5418 // caused gap locks on [max user ID,+infinity) which caused high contention since
5419 // updates would pile up on each other as they are for higher (newer) user IDs.
5420 // It might not be necessary these days, but it shouldn't hurt either.
5421 $dbw->delete( 'user_properties',
5422 [ 'up_user' => $userId, 'up_property' => $keysDelete ], __METHOD__
);
5424 // Insert the new preference rows
5425 $dbw->insert( 'user_properties', $insert_rows, __METHOD__
, [ 'IGNORE' ] );
5429 * Lazily instantiate and return a factory object for making passwords
5431 * @deprecated since 1.27, create a PasswordFactory directly instead
5432 * @return PasswordFactory
5434 public static function getPasswordFactory() {
5435 wfDeprecated( __METHOD__
, '1.27' );
5436 $ret = new PasswordFactory();
5437 $ret->init( RequestContext
::getMain()->getConfig() );
5442 * Provide an array of HTML5 attributes to put on an input element
5443 * intended for the user to enter a new password. This may include
5444 * required, title, and/or pattern, depending on $wgMinimalPasswordLength.
5446 * Do *not* use this when asking the user to enter his current password!
5447 * Regardless of configuration, users may have invalid passwords for whatever
5448 * reason (e.g., they were set before requirements were tightened up).
5449 * Only use it when asking for a new password, like on account creation or
5452 * Obviously, you still need to do server-side checking.
5454 * NOTE: A combination of bugs in various browsers means that this function
5455 * actually just returns array() unconditionally at the moment. May as
5456 * well keep it around for when the browser bugs get fixed, though.
5458 * @todo FIXME: This does not belong here; put it in Html or Linker or somewhere
5460 * @deprecated since 1.27
5461 * @return array Array of HTML attributes suitable for feeding to
5462 * Html::element(), directly or indirectly. (Don't feed to Xml::*()!
5463 * That will get confused by the boolean attribute syntax used.)
5465 public static function passwordChangeInputAttribs() {
5466 global $wgMinimalPasswordLength;
5468 if ( $wgMinimalPasswordLength == 0 ) {
5472 # Note that the pattern requirement will always be satisfied if the
5473 # input is empty, so we need required in all cases.
5475 # @todo FIXME: Bug 23769: This needs to not claim the password is required
5476 # if e-mail confirmation is being used. Since HTML5 input validation
5477 # is b0rked anyway in some browsers, just return nothing. When it's
5478 # re-enabled, fix this code to not output required for e-mail
5480 # $ret = array( 'required' );
5483 # We can't actually do this right now, because Opera 9.6 will print out
5484 # the entered password visibly in its error message! When other
5485 # browsers add support for this attribute, or Opera fixes its support,
5486 # we can add support with a version check to avoid doing this on Opera
5487 # versions where it will be a problem. Reported to Opera as
5488 # DSK-262266, but they don't have a public bug tracker for us to follow.
5490 if ( $wgMinimalPasswordLength > 1 ) {
5491 $ret['pattern'] = '.{' . intval( $wgMinimalPasswordLength ) . ',}';
5492 $ret['title'] = wfMessage( 'passwordtooshort' )
5493 ->numParams( $wgMinimalPasswordLength )->text();
5501 * Return the list of user fields that should be selected to create
5502 * a new user object.
5505 public static function selectFields() {
5513 'user_email_authenticated',
5515 'user_email_token_expires',
5516 'user_registration',
5522 * Factory function for fatal permission-denied errors
5525 * @param string $permission User right required
5528 static function newFatalPermissionDeniedStatus( $permission ) {
5531 $groups = array_map(
5532 [ 'User', 'makeGroupLinkWiki' ],
5533 User
::getGroupsWithPermission( $permission )
5537 return Status
::newFatal( 'badaccess-groups', $wgLang->commaList( $groups ), count( $groups ) );
5539 return Status
::newFatal( 'badaccess-group0' );
5544 * Get a new instance of this user that was loaded from the master via a locking read
5546 * Use this instead of the main context User when updating that user. This avoids races
5547 * where that user was loaded from a slave or even the master but without proper locks.
5549 * @return User|null Returns null if the user was not found in the DB
5552 public function getInstanceForUpdate() {
5553 if ( !$this->getId() ) {
5554 return null; // anon
5557 $user = self
::newFromId( $this->getId() );
5558 if ( !$user->loadFromId( self
::READ_EXCLUSIVE
) ) {
5566 * Checks if two user objects point to the same user.
5572 public function equals( User
$user ) {
5573 return $this->getName() === $user->getName();