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\Session\SessionManager
;
26 * String Some punctuation to prevent editing from broken text-mangling proxies.
27 * @deprecated since 1.27, use \\MediaWiki\\Session\\Token::SUFFIX
30 define( 'EDIT_TOKEN_SUFFIX', MediaWiki\Session\Token
::SUFFIX
);
33 * The User object encapsulates all of the user-specific settings (user_id,
34 * name, rights, email address, options, last login time). Client
35 * classes use the getXXX() functions to access these fields. These functions
36 * do all the work of determining whether the user is logged in,
37 * whether the requested option can be satisfied from cookies or
38 * whether a database query is needed. Most of the settings needed
39 * for rendering normal pages are set in the cookie to minimize use
42 class User
implements IDBAccessObject
{
44 * @const int Number of characters in user_token field.
46 const TOKEN_LENGTH
= 32;
49 * @const string An invalid value for user_token
51 const INVALID_TOKEN
= '*** INVALID ***';
54 * Global constant made accessible as class constants so that autoloader
56 * @deprecated since 1.27, use \\MediaWiki\\Session\\Token::SUFFIX
58 const EDIT_TOKEN_SUFFIX
= EDIT_TOKEN_SUFFIX
;
61 * @const int Serialized record version.
66 * Maximum items in $mWatchedItems
68 const MAX_WATCHED_ITEMS_CACHE
= 100;
71 * Exclude user options that are set to their default value.
74 const GETOPTIONS_EXCLUDE_DEFAULTS
= 1;
77 * Array of Strings List of member variables which are saved to the
78 * shared cache (memcached). Any operation which changes the
79 * corresponding database fields must call a cache-clearing function.
82 protected static $mCacheVars = array(
90 'mEmailAuthenticated',
97 // user_properties table
102 * Array of Strings Core rights.
103 * Each of these should have a corresponding message of the form
107 protected static $mCoreRights = array(
137 'editusercssjs', # deprecated
150 'move-categorypages',
151 'move-rootuserpages',
155 'override-export-depth',
178 'userrights-interwiki',
186 * String Cached results of getAllRights()
188 protected static $mAllRights = false;
190 /** Cache variables */
200 /** @var string TS_MW timestamp from the DB */
202 /** @var string TS_MW timestamp from cache */
203 protected $mQuickTouched;
207 public $mEmailAuthenticated;
209 protected $mEmailToken;
211 protected $mEmailTokenExpires;
213 protected $mRegistration;
215 protected $mEditCount;
219 protected $mOptionOverrides;
223 * Bool Whether the cache variables have been loaded.
226 public $mOptionsLoaded;
229 * Array with already loaded items or true if all items have been loaded.
231 protected $mLoadedItems = array();
235 * String Initialization data source if mLoadedItems!==true. May be one of:
236 * - 'defaults' anonymous user initialised from class defaults
237 * - 'name' initialise from mName
238 * - 'id' initialise from mId
239 * - 'session' log in from session if possible
241 * Use the User::newFrom*() family of functions to set this.
246 * Lazy-initialized variables, invalidated with clearInstanceCache
250 protected $mDatePreference;
258 protected $mBlockreason;
260 protected $mEffectiveGroups;
262 protected $mImplicitGroups;
264 protected $mFormerGroups;
266 protected $mBlockedGlobally;
283 protected $mAllowUsertalk;
286 private $mBlockedFromCreateAccount = false;
289 private $mWatchedItems = array();
291 /** @var integer User::READ_* constant bitfield used to load data */
292 protected $queryFlagsUsed = self
::READ_NORMAL
;
294 public static $idCacheByName = array();
297 * Lightweight constructor for an anonymous user.
298 * Use the User::newFrom* factory functions for other kinds of users.
302 * @see newFromConfirmationCode()
303 * @see newFromSession()
306 public function __construct() {
307 $this->clearInstanceCache( 'defaults' );
313 public function __toString() {
314 return $this->getName();
318 * Test if it's safe to load this User object. You should typically check this before using
319 * $wgUser or RequestContext::getUser in a method that might be called before the system has
320 * been fully initialized. If the object is unsafe, you should use an anonymous user:
322 * $user = $wgUser->isSafeToLoad() ? $wgUser : new User;
328 public function isSafeToLoad() {
329 global $wgFullyInitialised;
330 return $wgFullyInitialised ||
$this->mLoadedItems
=== true ||
$this->mFrom
!== 'session';
334 * Load the user table data for this object from the source given by mFrom.
336 * @param integer $flags User::READ_* constant bitfield
338 public function load( $flags = self
::READ_NORMAL
) {
339 global $wgFullyInitialised;
341 if ( $this->mLoadedItems
=== true ) {
345 // Set it now to avoid infinite recursion in accessors
346 $oldLoadedItems = $this->mLoadedItems
;
347 $this->mLoadedItems
= true;
348 $this->queryFlagsUsed
= $flags;
350 // If this is called too early, things are likely to break.
351 if ( !$wgFullyInitialised && $this->mFrom
=== 'session' ) {
352 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
353 ->warning( 'User::loadFromSession called before the end of Setup.php', array(
354 'exception' => new Exception( 'User::loadFromSession called before the end of Setup.php' ),
356 $this->loadDefaults();
357 $this->mLoadedItems
= $oldLoadedItems;
361 switch ( $this->mFrom
) {
363 $this->loadDefaults();
366 // Make sure this thread sees its own changes
367 if ( wfGetLB()->hasOrMadeRecentMasterChanges() ) {
368 $flags |
= self
::READ_LATEST
;
369 $this->queryFlagsUsed
= $flags;
372 $this->mId
= self
::idFromName( $this->mName
, $flags );
374 // Nonexistent user placeholder object
375 $this->loadDefaults( $this->mName
);
377 $this->loadFromId( $flags );
381 $this->loadFromId( $flags );
384 if ( !$this->loadFromSession() ) {
385 // Loading from session failed. Load defaults.
386 $this->loadDefaults();
388 Hooks
::run( 'UserLoadAfterLoadFromSession', array( $this ) );
391 throw new UnexpectedValueException(
392 "Unrecognised value for User->mFrom: \"{$this->mFrom}\"" );
397 * Load user table data, given mId has already been set.
398 * @param integer $flags User::READ_* constant bitfield
399 * @return bool False if the ID does not exist, true otherwise
401 public function loadFromId( $flags = self
::READ_NORMAL
) {
402 if ( $this->mId
== 0 ) {
403 $this->loadDefaults();
407 // Try cache (unless this needs data from the master DB).
408 // NOTE: if this thread called saveSettings(), the cache was cleared.
409 $latest = DBAccessObjectUtils
::hasFlags( $flags, self
::READ_LATEST
);
410 if ( $latest ||
!$this->loadFromCache() ) {
411 wfDebug( "User: cache miss for user {$this->mId}\n" );
412 // Load from DB (make sure this thread sees its own changes)
413 if ( wfGetLB()->hasOrMadeRecentMasterChanges() ) {
414 $flags |
= self
::READ_LATEST
;
416 if ( !$this->loadFromDatabase( $flags ) ) {
417 // Can't load from ID, user is anonymous
420 $this->saveToCache();
423 $this->mLoadedItems
= true;
424 $this->queryFlagsUsed
= $flags;
431 * @param string $wikiId
432 * @param integer $userId
434 public static function purge( $wikiId, $userId ) {
435 $cache = ObjectCache
::getMainWANInstance();
436 $cache->delete( $cache->makeGlobalKey( 'user', 'id', $wikiId, $userId ) );
441 * @param WANObjectCache $cache
444 protected function getCacheKey( WANObjectCache
$cache ) {
445 return $cache->makeGlobalKey( 'user', 'id', wfWikiID(), $this->mId
);
449 * Load user data from shared cache, given mId has already been set.
451 * @return bool false if the ID does not exist or data is invalid, true otherwise
454 protected function loadFromCache() {
455 if ( $this->mId
== 0 ) {
456 $this->loadDefaults();
460 $cache = ObjectCache
::getMainWANInstance();
461 $data = $cache->get( $this->getCacheKey( $cache ) );
462 if ( !is_array( $data ) ||
$data['mVersion'] < self
::VERSION
) {
467 wfDebug( "User: got user {$this->mId} from cache\n" );
469 // Restore from cache
470 foreach ( self
::$mCacheVars as $name ) {
471 $this->$name = $data[$name];
478 * Save user data to the shared cache
480 * This method should not be called outside the User class
482 public function saveToCache() {
485 $this->loadOptions();
487 if ( $this->isAnon() ) {
488 // Anonymous users are uncached
493 foreach ( self
::$mCacheVars as $name ) {
494 $data[$name] = $this->$name;
496 $data['mVersion'] = self
::VERSION
;
497 $opts = Database
::getCacheSetOptions( wfGetDB( DB_SLAVE
) );
499 $cache = ObjectCache
::getMainWANInstance();
500 $key = $this->getCacheKey( $cache );
501 $cache->set( $key, $data, $cache::TTL_HOUR
, $opts );
504 /** @name newFrom*() static factory methods */
508 * Static factory method for creation from username.
510 * This is slightly less efficient than newFromId(), so use newFromId() if
511 * you have both an ID and a name handy.
513 * @param string $name Username, validated by Title::newFromText()
514 * @param string|bool $validate Validate username. Takes the same parameters as
515 * User::getCanonicalName(), except that true is accepted as an alias
516 * for 'valid', for BC.
518 * @return User|bool User object, or false if the username is invalid
519 * (e.g. if it contains illegal characters or is an IP address). If the
520 * username is not present in the database, the result will be a user object
521 * with a name, zero user ID and default settings.
523 public static function newFromName( $name, $validate = 'valid' ) {
524 if ( $validate === true ) {
527 $name = self
::getCanonicalName( $name, $validate );
528 if ( $name === false ) {
531 // Create unloaded user object
535 $u->setItemLoaded( 'name' );
541 * Static factory method for creation from a given user ID.
543 * @param int $id Valid user ID
544 * @return User The corresponding User object
546 public static function newFromId( $id ) {
550 $u->setItemLoaded( 'id' );
555 * Factory method to fetch whichever user has a given email confirmation code.
556 * This code is generated when an account is created or its e-mail address
559 * If the code is invalid or has expired, returns NULL.
561 * @param string $code Confirmation code
562 * @param int $flags User::READ_* bitfield
565 public static function newFromConfirmationCode( $code, $flags = 0 ) {
566 $db = ( $flags & self
::READ_LATEST
) == self
::READ_LATEST
567 ?
wfGetDB( DB_MASTER
)
568 : wfGetDB( DB_SLAVE
);
570 $id = $db->selectField(
574 'user_email_token' => md5( $code ),
575 'user_email_token_expires > ' . $db->addQuotes( $db->timestamp() ),
579 return $id ? User
::newFromId( $id ) : null;
583 * Create a new user object using data from session. If the login
584 * credentials are invalid, the result is an anonymous user.
586 * @param WebRequest|null $request Object to use; $wgRequest will be used if omitted.
589 public static function newFromSession( WebRequest
$request = null ) {
591 $user->mFrom
= 'session';
592 $user->mRequest
= $request;
597 * Create a new user object from a user row.
598 * The row should have the following fields from the user table in it:
599 * - either user_name or user_id to load further data if needed (or both)
601 * - all other fields (email, etc.)
602 * It is useless to provide the remaining fields if either user_id,
603 * user_name and user_real_name are not provided because the whole row
604 * will be loaded once more from the database when accessing them.
606 * @param stdClass $row A row from the user table
607 * @param array $data Further data to load into the object (see User::loadFromRow for valid keys)
610 public static function newFromRow( $row, $data = null ) {
612 $user->loadFromRow( $row, $data );
617 * Static factory method for creation of a "system" user from username.
619 * A "system" user is an account that's used to attribute logged actions
620 * taken by MediaWiki itself, as opposed to a bot or human user. Examples
621 * might include the 'Maintenance script' or 'Conversion script' accounts
622 * used by various scripts in the maintenance/ directory or accounts such
623 * as 'MediaWiki message delivery' used by the MassMessage extension.
625 * This can optionally create the user if it doesn't exist, and "steal" the
626 * account if it does exist.
628 * @param string $name Username
629 * @param array $options Options are:
630 * - validate: As for User::getCanonicalName(), default 'valid'
631 * - create: Whether to create the user if it doesn't already exist, default true
632 * - steal: Whether to reset the account's password and email if it
633 * already exists, default false
636 public static function newSystemUser( $name, $options = array() ) {
638 'validate' => 'valid',
643 $name = self
::getCanonicalName( $name, $options['validate'] );
644 if ( $name === false ) {
648 $dbw = wfGetDB( DB_MASTER
);
649 $row = $dbw->selectRow(
652 self
::selectFields(),
653 array( 'user_password', 'user_newpassword' )
655 array( 'user_name' => $name ),
659 // No user. Create it?
660 return $options['create'] ? self
::createNew( $name ) : null;
662 $user = self
::newFromRow( $row );
664 // A user is considered to exist as a non-system user if it has a
665 // password set, or a temporary password set, or an email set, or a
666 // non-invalid token.
667 $passwordFactory = new PasswordFactory();
668 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
670 $password = $passwordFactory->newFromCiphertext( $row->user_password
);
671 } catch ( PasswordError
$e ) {
672 wfDebug( 'Invalid password hash found in database.' );
673 $password = PasswordFactory
::newInvalidPassword();
676 $newpassword = $passwordFactory->newFromCiphertext( $row->user_newpassword
);
677 } catch ( PasswordError
$e ) {
678 wfDebug( 'Invalid password hash found in database.' );
679 $newpassword = PasswordFactory
::newInvalidPassword();
681 if ( !$password instanceof InvalidPassword ||
!$newpassword instanceof InvalidPassword
682 ||
$user->mEmail ||
$user->mToken
!== self
::INVALID_TOKEN
684 // User exists. Steal it?
685 if ( !$options['steal'] ) {
689 $nopass = PasswordFactory
::newInvalidPassword()->toString();
694 'user_password' => $nopass,
695 'user_newpassword' => $nopass,
696 'user_newpass_time' => null,
698 array( 'user_id' => $user->getId() ),
701 $user->invalidateEmail();
702 $user->mToken
= self
::INVALID_TOKEN
;
703 $user->saveSettings();
704 SessionManager
::singleton()->preventSessionsForUser( $user->getName() );
713 * Get the username corresponding to a given user ID
714 * @param int $id User ID
715 * @return string|bool The corresponding username
717 public static function whoIs( $id ) {
718 return UserCache
::singleton()->getProp( $id, 'name' );
722 * Get the real name of a user given their user ID
724 * @param int $id User ID
725 * @return string|bool The corresponding user's real name
727 public static function whoIsReal( $id ) {
728 return UserCache
::singleton()->getProp( $id, 'real_name' );
732 * Get database id given a user name
733 * @param string $name Username
734 * @param integer $flags User::READ_* constant bitfield
735 * @return int|null The corresponding user's ID, or null if user is nonexistent
737 public static function idFromName( $name, $flags = self
::READ_NORMAL
) {
738 $nt = Title
::makeTitleSafe( NS_USER
, $name );
739 if ( is_null( $nt ) ) {
744 if ( !( $flags & self
::READ_LATEST
) && isset( self
::$idCacheByName[$name] ) ) {
745 return self
::$idCacheByName[$name];
748 $db = ( $flags & self
::READ_LATEST
)
749 ?
wfGetDB( DB_MASTER
)
750 : wfGetDB( DB_SLAVE
);
755 array( 'user_name' => $nt->getText() ),
759 if ( $s === false ) {
762 $result = $s->user_id
;
765 self
::$idCacheByName[$name] = $result;
767 if ( count( self
::$idCacheByName ) > 1000 ) {
768 self
::$idCacheByName = array();
775 * Reset the cache used in idFromName(). For use in tests.
777 public static function resetIdByNameCache() {
778 self
::$idCacheByName = array();
782 * Does the string match an anonymous IPv4 address?
784 * This function exists for username validation, in order to reject
785 * usernames which are similar in form to IP addresses. Strings such
786 * as 300.300.300.300 will return true because it looks like an IP
787 * address, despite not being strictly valid.
789 * We match "\d{1,3}\.\d{1,3}\.\d{1,3}\.xxx" as an anonymous IP
790 * address because the usemod software would "cloak" anonymous IP
791 * addresses like this, if we allowed accounts like this to be created
792 * new users could get the old edits of these anonymous users.
794 * @param string $name Name to match
797 public static function isIP( $name ) {
798 return preg_match( '/^\d{1,3}\.\d{1,3}\.\d{1,3}\.(?:xxx|\d{1,3})$/', $name )
799 || IP
::isIPv6( $name );
803 * Is the input a valid username?
805 * Checks if the input is a valid username, we don't want an empty string,
806 * an IP address, anything that contains slashes (would mess up subpages),
807 * is longer than the maximum allowed username size or doesn't begin with
810 * @param string $name Name to match
813 public static function isValidUserName( $name ) {
814 global $wgContLang, $wgMaxNameChars;
817 || User
::isIP( $name )
818 ||
strpos( $name, '/' ) !== false
819 ||
strlen( $name ) > $wgMaxNameChars
820 ||
$name != $wgContLang->ucfirst( $name )
822 wfDebugLog( 'username', __METHOD__
.
823 ": '$name' invalid due to empty, IP, slash, length, or lowercase" );
827 // Ensure that the name can't be misresolved as a different title,
828 // such as with extra namespace keys at the start.
829 $parsed = Title
::newFromText( $name );
830 if ( is_null( $parsed )
831 ||
$parsed->getNamespace()
832 ||
strcmp( $name, $parsed->getPrefixedText() ) ) {
833 wfDebugLog( 'username', __METHOD__
.
834 ": '$name' invalid due to ambiguous prefixes" );
838 // Check an additional blacklist of troublemaker characters.
839 // Should these be merged into the title char list?
840 $unicodeBlacklist = '/[' .
841 '\x{0080}-\x{009f}' . # iso-8859-1 control chars
842 '\x{00a0}' . # non-breaking space
843 '\x{2000}-\x{200f}' . # various whitespace
844 '\x{2028}-\x{202f}' . # breaks and control chars
845 '\x{3000}' . # ideographic space
846 '\x{e000}-\x{f8ff}' . # private use
848 if ( preg_match( $unicodeBlacklist, $name ) ) {
849 wfDebugLog( 'username', __METHOD__
.
850 ": '$name' invalid due to blacklisted characters" );
858 * Usernames which fail to pass this function will be blocked
859 * from user login and new account registrations, but may be used
860 * internally by batch processes.
862 * If an account already exists in this form, login will be blocked
863 * by a failure to pass this function.
865 * @param string $name Name to match
868 public static function isUsableName( $name ) {
869 global $wgReservedUsernames;
870 // Must be a valid username, obviously ;)
871 if ( !self
::isValidUserName( $name ) ) {
875 static $reservedUsernames = false;
876 if ( !$reservedUsernames ) {
877 $reservedUsernames = $wgReservedUsernames;
878 Hooks
::run( 'UserGetReservedNames', array( &$reservedUsernames ) );
881 // Certain names may be reserved for batch processes.
882 foreach ( $reservedUsernames as $reserved ) {
883 if ( substr( $reserved, 0, 4 ) == 'msg:' ) {
884 $reserved = wfMessage( substr( $reserved, 4 ) )->inContentLanguage()->text();
886 if ( $reserved == $name ) {
894 * Usernames which fail to pass this function will be blocked
895 * from new account registrations, but may be used internally
896 * either by batch processes or by user accounts which have
897 * already been created.
899 * Additional blacklisting may be added here rather than in
900 * isValidUserName() to avoid disrupting existing accounts.
902 * @param string $name String to match
905 public static function isCreatableName( $name ) {
906 global $wgInvalidUsernameCharacters;
908 // Ensure that the username isn't longer than 235 bytes, so that
909 // (at least for the builtin skins) user javascript and css files
910 // will work. (bug 23080)
911 if ( strlen( $name ) > 235 ) {
912 wfDebugLog( 'username', __METHOD__
.
913 ": '$name' invalid due to length" );
917 // Preg yells if you try to give it an empty string
918 if ( $wgInvalidUsernameCharacters !== '' ) {
919 if ( preg_match( '/[' . preg_quote( $wgInvalidUsernameCharacters, '/' ) . ']/', $name ) ) {
920 wfDebugLog( 'username', __METHOD__
.
921 ": '$name' invalid due to wgInvalidUsernameCharacters" );
926 return self
::isUsableName( $name );
930 * Is the input a valid password for this user?
932 * @param string $password Desired password
935 public function isValidPassword( $password ) {
936 // simple boolean wrapper for getPasswordValidity
937 return $this->getPasswordValidity( $password ) === true;
941 * Given unvalidated password input, return error message on failure.
943 * @param string $password Desired password
944 * @return bool|string|array True on success, string or array of error message on failure
946 public function getPasswordValidity( $password ) {
947 $result = $this->checkPasswordValidity( $password );
948 if ( $result->isGood() ) {
952 foreach ( $result->getErrorsByType( 'error' ) as $error ) {
953 $messages[] = $error['message'];
955 foreach ( $result->getErrorsByType( 'warning' ) as $warning ) {
956 $messages[] = $warning['message'];
958 if ( count( $messages ) === 1 ) {
966 * Check if this is a valid password for this user
968 * Create a Status object based on the password's validity.
969 * The Status should be set to fatal if the user should not
970 * be allowed to log in, and should have any errors that
971 * would block changing the password.
973 * If the return value of this is not OK, the password
974 * should not be checked. If the return value is not Good,
975 * the password can be checked, but the user should not be
976 * able to set their password to this.
978 * @param string $password Desired password
979 * @param string $purpose one of 'login', 'create', 'reset'
983 public function checkPasswordValidity( $password, $purpose = 'login' ) {
984 global $wgPasswordPolicy;
986 $upp = new UserPasswordPolicy(
987 $wgPasswordPolicy['policies'],
988 $wgPasswordPolicy['checks']
991 $status = Status
::newGood();
992 $result = false; // init $result to false for the internal checks
994 if ( !Hooks
::run( 'isValidPassword', array( $password, &$result, $this ) ) ) {
995 $status->error( $result );
999 if ( $result === false ) {
1000 $status->merge( $upp->checkUserPassword( $this, $password, $purpose ) );
1002 } elseif ( $result === true ) {
1005 $status->error( $result );
1006 return $status; // the isValidPassword hook set a string $result and returned true
1011 * Given unvalidated user input, return a canonical username, or false if
1012 * the username is invalid.
1013 * @param string $name User input
1014 * @param string|bool $validate Type of validation to use:
1015 * - false No validation
1016 * - 'valid' Valid for batch processes
1017 * - 'usable' Valid for batch processes and login
1018 * - 'creatable' Valid for batch processes, login and account creation
1020 * @throws InvalidArgumentException
1021 * @return bool|string
1023 public static function getCanonicalName( $name, $validate = 'valid' ) {
1024 // Force usernames to capital
1026 $name = $wgContLang->ucfirst( $name );
1028 # Reject names containing '#'; these will be cleaned up
1029 # with title normalisation, but then it's too late to
1031 if ( strpos( $name, '#' ) !== false ) {
1035 // Clean up name according to title rules,
1036 // but only when validation is requested (bug 12654)
1037 $t = ( $validate !== false ) ?
1038 Title
::newFromText( $name ) : Title
::makeTitle( NS_USER
, $name );
1039 // Check for invalid titles
1040 if ( is_null( $t ) ) {
1044 // Reject various classes of invalid names
1046 $name = $wgAuth->getCanonicalName( $t->getText() );
1048 switch ( $validate ) {
1052 if ( !User
::isValidUserName( $name ) ) {
1057 if ( !User
::isUsableName( $name ) ) {
1062 if ( !User
::isCreatableName( $name ) ) {
1067 throw new InvalidArgumentException(
1068 'Invalid parameter value for $validate in ' . __METHOD__
);
1074 * Count the number of edits of a user
1076 * @param int $uid User ID to check
1077 * @return int The user's edit count
1079 * @deprecated since 1.21 in favour of User::getEditCount
1081 public static function edits( $uid ) {
1082 wfDeprecated( __METHOD__
, '1.21' );
1083 $user = self
::newFromId( $uid );
1084 return $user->getEditCount();
1088 * Return a random password.
1090 * @deprecated since 1.27, use PasswordFactory::generateRandomPasswordString()
1091 * @return string New random password
1093 public static function randomPassword() {
1094 global $wgMinimalPasswordLength;
1095 return PasswordFactory
::generateRandomPasswordString( $wgMinimalPasswordLength );
1099 * Set cached properties to default.
1101 * @note This no longer clears uncached lazy-initialised properties;
1102 * the constructor does that instead.
1104 * @param string|bool $name
1106 public function loadDefaults( $name = false ) {
1108 $this->mName
= $name;
1109 $this->mRealName
= '';
1111 $this->mOptionOverrides
= null;
1112 $this->mOptionsLoaded
= false;
1114 $loggedOut = $this->mRequest ?
$this->mRequest
->getSession()->getLoggedOutTimestamp() : 0;
1115 if ( $loggedOut !== 0 ) {
1116 $this->mTouched
= wfTimestamp( TS_MW
, $loggedOut );
1118 $this->mTouched
= '1'; # Allow any pages to be cached
1121 $this->mToken
= null; // Don't run cryptographic functions till we need a token
1122 $this->mEmailAuthenticated
= null;
1123 $this->mEmailToken
= '';
1124 $this->mEmailTokenExpires
= null;
1125 $this->mRegistration
= wfTimestamp( TS_MW
);
1126 $this->mGroups
= array();
1128 Hooks
::run( 'UserLoadDefaults', array( $this, $name ) );
1132 * Return whether an item has been loaded.
1134 * @param string $item Item to check. Current possibilities:
1138 * @param string $all 'all' to check if the whole object has been loaded
1139 * or any other string to check if only the item is available (e.g.
1143 public function isItemLoaded( $item, $all = 'all' ) {
1144 return ( $this->mLoadedItems
=== true && $all === 'all' ) ||
1145 ( isset( $this->mLoadedItems
[$item] ) && $this->mLoadedItems
[$item] === true );
1149 * Set that an item has been loaded
1151 * @param string $item
1153 protected function setItemLoaded( $item ) {
1154 if ( is_array( $this->mLoadedItems
) ) {
1155 $this->mLoadedItems
[$item] = true;
1160 * Load user data from the session.
1162 * @return bool True if the user is logged in, false otherwise.
1164 private function loadFromSession() {
1167 Hooks
::run( 'UserLoadFromSession', array( $this, &$result ), '1.27' );
1168 if ( $result !== null ) {
1172 // MediaWiki\Session\Session already did the necessary authentication of the user
1173 // returned here, so just use it if applicable.
1174 $session = $this->getRequest()->getSession();
1175 $user = $session->getUser();
1176 if ( $user->isLoggedIn() ) {
1177 $this->loadFromUserObject( $user );
1178 // Other code expects these to be set in the session, so set them.
1179 $session->set( 'wsUserID', $this->getId() );
1180 $session->set( 'wsUserName', $this->getName() );
1181 $session->set( 'wsToken', $this->getToken() );
1189 * Load user and user_group data from the database.
1190 * $this->mId must be set, this is how the user is identified.
1192 * @param integer $flags User::READ_* constant bitfield
1193 * @return bool True if the user exists, false if the user is anonymous
1195 public function loadFromDatabase( $flags = self
::READ_LATEST
) {
1197 $this->mId
= intval( $this->mId
);
1200 if ( !$this->mId
) {
1201 $this->loadDefaults();
1205 list( $index, $options ) = DBAccessObjectUtils
::getDBOptions( $flags );
1206 $db = wfGetDB( $index );
1208 $s = $db->selectRow(
1210 self
::selectFields(),
1211 array( 'user_id' => $this->mId
),
1216 $this->queryFlagsUsed
= $flags;
1217 Hooks
::run( 'UserLoadFromDatabase', array( $this, &$s ) );
1219 if ( $s !== false ) {
1220 // Initialise user table data
1221 $this->loadFromRow( $s );
1222 $this->mGroups
= null; // deferred
1223 $this->getEditCount(); // revalidation for nulls
1228 $this->loadDefaults();
1234 * Initialize this object from a row from the user table.
1236 * @param stdClass $row Row from the user table to load.
1237 * @param array $data Further user data to load into the object
1239 * user_groups Array with groups out of the user_groups table
1240 * user_properties Array with properties out of the user_properties table
1242 protected function loadFromRow( $row, $data = null ) {
1245 $this->mGroups
= null; // deferred
1247 if ( isset( $row->user_name
) ) {
1248 $this->mName
= $row->user_name
;
1249 $this->mFrom
= 'name';
1250 $this->setItemLoaded( 'name' );
1255 if ( isset( $row->user_real_name
) ) {
1256 $this->mRealName
= $row->user_real_name
;
1257 $this->setItemLoaded( 'realname' );
1262 if ( isset( $row->user_id
) ) {
1263 $this->mId
= intval( $row->user_id
);
1264 $this->mFrom
= 'id';
1265 $this->setItemLoaded( 'id' );
1270 if ( isset( $row->user_id
) && isset( $row->user_name
) ) {
1271 self
::$idCacheByName[$row->user_name
] = $row->user_id
;
1274 if ( isset( $row->user_editcount
) ) {
1275 $this->mEditCount
= $row->user_editcount
;
1280 if ( isset( $row->user_touched
) ) {
1281 $this->mTouched
= wfTimestamp( TS_MW
, $row->user_touched
);
1286 if ( isset( $row->user_token
) ) {
1287 // The definition for the column is binary(32), so trim the NULs
1288 // that appends. The previous definition was char(32), so trim
1290 $this->mToken
= rtrim( $row->user_token
, " \0" );
1291 if ( $this->mToken
=== '' ) {
1292 $this->mToken
= null;
1298 if ( isset( $row->user_email
) ) {
1299 $this->mEmail
= $row->user_email
;
1300 $this->mEmailAuthenticated
= wfTimestampOrNull( TS_MW
, $row->user_email_authenticated
);
1301 $this->mEmailToken
= $row->user_email_token
;
1302 $this->mEmailTokenExpires
= wfTimestampOrNull( TS_MW
, $row->user_email_token_expires
);
1303 $this->mRegistration
= wfTimestampOrNull( TS_MW
, $row->user_registration
);
1309 $this->mLoadedItems
= true;
1312 if ( is_array( $data ) ) {
1313 if ( isset( $data['user_groups'] ) && is_array( $data['user_groups'] ) ) {
1314 $this->mGroups
= $data['user_groups'];
1316 if ( isset( $data['user_properties'] ) && is_array( $data['user_properties'] ) ) {
1317 $this->loadOptions( $data['user_properties'] );
1323 * Load the data for this user object from another user object.
1327 protected function loadFromUserObject( $user ) {
1329 $user->loadGroups();
1330 $user->loadOptions();
1331 foreach ( self
::$mCacheVars as $var ) {
1332 $this->$var = $user->$var;
1337 * Load the groups from the database if they aren't already loaded.
1339 private function loadGroups() {
1340 if ( is_null( $this->mGroups
) ) {
1341 $db = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
1342 ?
wfGetDB( DB_MASTER
)
1343 : wfGetDB( DB_SLAVE
);
1344 $res = $db->select( 'user_groups',
1345 array( 'ug_group' ),
1346 array( 'ug_user' => $this->mId
),
1348 $this->mGroups
= array();
1349 foreach ( $res as $row ) {
1350 $this->mGroups
[] = $row->ug_group
;
1356 * Add the user to the group if he/she meets given criteria.
1358 * Contrary to autopromotion by \ref $wgAutopromote, the group will be
1359 * possible to remove manually via Special:UserRights. In such case it
1360 * will not be re-added automatically. The user will also not lose the
1361 * group if they no longer meet the criteria.
1363 * @param string $event Key in $wgAutopromoteOnce (each one has groups/criteria)
1365 * @return array Array of groups the user has been promoted to.
1367 * @see $wgAutopromoteOnce
1369 public function addAutopromoteOnceGroups( $event ) {
1370 global $wgAutopromoteOnceLogInRC, $wgAuth;
1372 if ( wfReadOnly() ||
!$this->getId() ) {
1376 $toPromote = Autopromote
::getAutopromoteOnceGroups( $this, $event );
1377 if ( !count( $toPromote ) ) {
1381 if ( !$this->checkAndSetTouched() ) {
1382 return array(); // raced out (bug T48834)
1385 $oldGroups = $this->getGroups(); // previous groups
1386 foreach ( $toPromote as $group ) {
1387 $this->addGroup( $group );
1389 // update groups in external authentication database
1390 Hooks
::run( 'UserGroupsChanged', array( $this, $toPromote, array(), false ) );
1391 $wgAuth->updateExternalDBGroups( $this, $toPromote );
1393 $newGroups = array_merge( $oldGroups, $toPromote ); // all groups
1395 $logEntry = new ManualLogEntry( 'rights', 'autopromote' );
1396 $logEntry->setPerformer( $this );
1397 $logEntry->setTarget( $this->getUserPage() );
1398 $logEntry->setParameters( array(
1399 '4::oldgroups' => $oldGroups,
1400 '5::newgroups' => $newGroups,
1402 $logid = $logEntry->insert();
1403 if ( $wgAutopromoteOnceLogInRC ) {
1404 $logEntry->publish( $logid );
1411 * Bump user_touched if it didn't change since this object was loaded
1413 * On success, the mTouched field is updated.
1414 * The user serialization cache is always cleared.
1416 * @return bool Whether user_touched was actually updated
1419 protected function checkAndSetTouched() {
1422 if ( !$this->mId
) {
1423 return false; // anon
1426 // Get a new user_touched that is higher than the old one
1427 $oldTouched = $this->mTouched
;
1428 $newTouched = $this->newTouchedTimestamp();
1430 $dbw = wfGetDB( DB_MASTER
);
1431 $dbw->update( 'user',
1432 array( 'user_touched' => $dbw->timestamp( $newTouched ) ),
1434 'user_id' => $this->mId
,
1435 'user_touched' => $dbw->timestamp( $oldTouched ) // CAS check
1439 $success = ( $dbw->affectedRows() > 0 );
1442 $this->mTouched
= $newTouched;
1443 $this->clearSharedCache();
1445 // Clears on failure too since that is desired if the cache is stale
1446 $this->clearSharedCache( 'refresh' );
1453 * Clear various cached data stored in this object. The cache of the user table
1454 * data (i.e. self::$mCacheVars) is not cleared unless $reloadFrom is given.
1456 * @param bool|string $reloadFrom Reload user and user_groups table data from a
1457 * given source. May be "name", "id", "defaults", "session", or false for no reload.
1459 public function clearInstanceCache( $reloadFrom = false ) {
1460 $this->mNewtalk
= -1;
1461 $this->mDatePreference
= null;
1462 $this->mBlockedby
= -1; # Unset
1463 $this->mHash
= false;
1464 $this->mRights
= null;
1465 $this->mEffectiveGroups
= null;
1466 $this->mImplicitGroups
= null;
1467 $this->mGroups
= null;
1468 $this->mOptions
= null;
1469 $this->mOptionsLoaded
= false;
1470 $this->mEditCount
= null;
1472 if ( $reloadFrom ) {
1473 $this->mLoadedItems
= array();
1474 $this->mFrom
= $reloadFrom;
1479 * Combine the language default options with any site-specific options
1480 * and add the default language variants.
1482 * @return array Array of String options
1484 public static function getDefaultOptions() {
1485 global $wgNamespacesToBeSearchedDefault, $wgDefaultUserOptions, $wgContLang, $wgDefaultSkin;
1487 static $defOpt = null;
1488 if ( !defined( 'MW_PHPUNIT_TEST' ) && $defOpt !== null ) {
1489 // Disabling this for the unit tests, as they rely on being able to change $wgContLang
1490 // mid-request and see that change reflected in the return value of this function.
1491 // Which is insane and would never happen during normal MW operation
1495 $defOpt = $wgDefaultUserOptions;
1496 // Default language setting
1497 $defOpt['language'] = $wgContLang->getCode();
1498 foreach ( LanguageConverter
::$languagesWithVariants as $langCode ) {
1499 $defOpt[$langCode == $wgContLang->getCode() ?
'variant' : "variant-$langCode"] = $langCode;
1501 foreach ( SearchEngine
::searchableNamespaces() as $nsnum => $nsname ) {
1502 $defOpt['searchNs' . $nsnum] = !empty( $wgNamespacesToBeSearchedDefault[$nsnum] );
1504 $defOpt['skin'] = Skin
::normalizeKey( $wgDefaultSkin );
1506 Hooks
::run( 'UserGetDefaultOptions', array( &$defOpt ) );
1512 * Get a given default option value.
1514 * @param string $opt Name of option to retrieve
1515 * @return string Default option value
1517 public static function getDefaultOption( $opt ) {
1518 $defOpts = self
::getDefaultOptions();
1519 if ( isset( $defOpts[$opt] ) ) {
1520 return $defOpts[$opt];
1527 * Get blocking information
1528 * @param bool $bFromSlave Whether to check the slave database first.
1529 * To improve performance, non-critical checks are done against slaves.
1530 * Check when actually saving should be done against master.
1532 private function getBlockedStatus( $bFromSlave = true ) {
1533 global $wgProxyWhitelist, $wgUser, $wgApplyIpBlocksToXff;
1535 if ( -1 != $this->mBlockedby
) {
1539 wfDebug( __METHOD__
. ": checking...\n" );
1541 // Initialize data...
1542 // Otherwise something ends up stomping on $this->mBlockedby when
1543 // things get lazy-loaded later, causing false positive block hits
1544 // due to -1 !== 0. Probably session-related... Nothing should be
1545 // overwriting mBlockedby, surely?
1548 # We only need to worry about passing the IP address to the Block generator if the
1549 # user is not immune to autoblocks/hardblocks, and they are the current user so we
1550 # know which IP address they're actually coming from
1552 if ( !$this->isAllowed( 'ipblock-exempt' ) ) {
1553 // $wgUser->getName() only works after the end of Setup.php. Until
1554 // then, assume it's a logged-out user.
1555 $globalUserName = $wgUser->isSafeToLoad()
1556 ?
$wgUser->getName()
1557 : IP
::sanitizeIP( $wgUser->getRequest()->getIP() );
1558 if ( $this->getName() === $globalUserName ) {
1559 $ip = $this->getRequest()->getIP();
1564 $block = Block
::newFromTarget( $this, $ip, !$bFromSlave );
1567 if ( !$block instanceof Block
&& $ip !== null && !in_array( $ip, $wgProxyWhitelist ) ) {
1569 if ( self
::isLocallyBlockedProxy( $ip ) ) {
1571 $block->setBlocker( wfMessage( 'proxyblocker' )->text() );
1572 $block->mReason
= wfMessage( 'proxyblockreason' )->text();
1573 $block->setTarget( $ip );
1574 } elseif ( $this->isAnon() && $this->isDnsBlacklisted( $ip ) ) {
1576 $block->setBlocker( wfMessage( 'sorbs' )->text() );
1577 $block->mReason
= wfMessage( 'sorbsreason' )->text();
1578 $block->setTarget( $ip );
1582 // (bug 23343) Apply IP blocks to the contents of XFF headers, if enabled
1583 if ( !$block instanceof Block
1584 && $wgApplyIpBlocksToXff
1586 && !in_array( $ip, $wgProxyWhitelist )
1588 $xff = $this->getRequest()->getHeader( 'X-Forwarded-For' );
1589 $xff = array_map( 'trim', explode( ',', $xff ) );
1590 $xff = array_diff( $xff, array( $ip ) );
1591 $xffblocks = Block
::getBlocksForIPList( $xff, $this->isAnon(), !$bFromSlave );
1592 $block = Block
::chooseBlock( $xffblocks, $xff );
1593 if ( $block instanceof Block
) {
1594 # Mangle the reason to alert the user that the block
1595 # originated from matching the X-Forwarded-For header.
1596 $block->mReason
= wfMessage( 'xffblockreason', $block->mReason
)->text();
1600 if ( $block instanceof Block
) {
1601 wfDebug( __METHOD__
. ": Found block.\n" );
1602 $this->mBlock
= $block;
1603 $this->mBlockedby
= $block->getByName();
1604 $this->mBlockreason
= $block->mReason
;
1605 $this->mHideName
= $block->mHideName
;
1606 $this->mAllowUsertalk
= !$block->prevents( 'editownusertalk' );
1608 $this->mBlockedby
= '';
1609 $this->mHideName
= 0;
1610 $this->mAllowUsertalk
= false;
1614 Hooks
::run( 'GetBlockedStatus', array( &$this ) );
1619 * Whether the given IP is in a DNS blacklist.
1621 * @param string $ip IP to check
1622 * @param bool $checkWhitelist Whether to check the whitelist first
1623 * @return bool True if blacklisted.
1625 public function isDnsBlacklisted( $ip, $checkWhitelist = false ) {
1626 global $wgEnableDnsBlacklist, $wgDnsBlacklistUrls, $wgProxyWhitelist;
1628 if ( !$wgEnableDnsBlacklist ) {
1632 if ( $checkWhitelist && in_array( $ip, $wgProxyWhitelist ) ) {
1636 return $this->inDnsBlacklist( $ip, $wgDnsBlacklistUrls );
1640 * Whether the given IP is in a given DNS blacklist.
1642 * @param string $ip IP to check
1643 * @param string|array $bases Array of Strings: URL of the DNS blacklist
1644 * @return bool True if blacklisted.
1646 public function inDnsBlacklist( $ip, $bases ) {
1649 // @todo FIXME: IPv6 ??? (http://bugs.php.net/bug.php?id=33170)
1650 if ( IP
::isIPv4( $ip ) ) {
1651 // Reverse IP, bug 21255
1652 $ipReversed = implode( '.', array_reverse( explode( '.', $ip ) ) );
1654 foreach ( (array)$bases as $base ) {
1656 // If we have an access key, use that too (ProjectHoneypot, etc.)
1658 if ( is_array( $base ) ) {
1659 if ( count( $base ) >= 2 ) {
1660 // Access key is 1, base URL is 0
1661 $host = "{$base[1]}.$ipReversed.{$base[0]}";
1663 $host = "$ipReversed.{$base[0]}";
1665 $basename = $base[0];
1667 $host = "$ipReversed.$base";
1671 $ipList = gethostbynamel( $host );
1674 wfDebugLog( 'dnsblacklist', "Hostname $host is {$ipList[0]}, it's a proxy says $basename!" );
1678 wfDebugLog( 'dnsblacklist', "Requested $host, not found in $basename." );
1687 * Check if an IP address is in the local proxy list
1693 public static function isLocallyBlockedProxy( $ip ) {
1694 global $wgProxyList;
1696 if ( !$wgProxyList ) {
1700 if ( !is_array( $wgProxyList ) ) {
1701 // Load from the specified file
1702 $wgProxyList = array_map( 'trim', file( $wgProxyList ) );
1705 if ( !is_array( $wgProxyList ) ) {
1707 } elseif ( array_search( $ip, $wgProxyList ) !== false ) {
1709 } elseif ( array_key_exists( $ip, $wgProxyList ) ) {
1710 // Old-style flipped proxy list
1719 * Is this user subject to rate limiting?
1721 * @return bool True if rate limited
1723 public function isPingLimitable() {
1724 global $wgRateLimitsExcludedIPs;
1725 if ( in_array( $this->getRequest()->getIP(), $wgRateLimitsExcludedIPs ) ) {
1726 // No other good way currently to disable rate limits
1727 // for specific IPs. :P
1728 // But this is a crappy hack and should die.
1731 return !$this->isAllowed( 'noratelimit' );
1735 * Primitive rate limits: enforce maximum actions per time period
1736 * to put a brake on flooding.
1738 * The method generates both a generic profiling point and a per action one
1739 * (suffix being "-$action".
1741 * @note When using a shared cache like memcached, IP-address
1742 * last-hit counters will be shared across wikis.
1744 * @param string $action Action to enforce; 'edit' if unspecified
1745 * @param int $incrBy Positive amount to increment counter by [defaults to 1]
1746 * @return bool True if a rate limiter was tripped
1748 public function pingLimiter( $action = 'edit', $incrBy = 1 ) {
1749 // Call the 'PingLimiter' hook
1751 if ( !Hooks
::run( 'PingLimiter', array( &$this, $action, &$result, $incrBy ) ) ) {
1755 global $wgRateLimits;
1756 if ( !isset( $wgRateLimits[$action] ) ) {
1760 // Some groups shouldn't trigger the ping limiter, ever
1761 if ( !$this->isPingLimitable() ) {
1765 $limits = $wgRateLimits[$action];
1767 $id = $this->getId();
1769 $isNewbie = $this->isNewbie();
1773 if ( isset( $limits['anon'] ) ) {
1774 $keys[wfMemcKey( 'limiter', $action, 'anon' )] = $limits['anon'];
1777 // limits for logged-in users
1778 if ( isset( $limits['user'] ) ) {
1779 $userLimit = $limits['user'];
1781 // limits for newbie logged-in users
1782 if ( $isNewbie && isset( $limits['newbie'] ) ) {
1783 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $limits['newbie'];
1787 // limits for anons and for newbie logged-in users
1790 if ( isset( $limits['ip'] ) ) {
1791 $ip = $this->getRequest()->getIP();
1792 $keys[wfMemcKey( 'limiter', $action, 'ip', $ip )] = $limits['ip'];
1794 // subnet-based limits
1795 if ( isset( $limits['subnet'] ) ) {
1796 $ip = $this->getRequest()->getIP();
1797 $subnet = IP
::getSubnet( $ip );
1798 if ( $subnet !== false ) {
1799 $keys[wfMemcKey( 'limiter', $action, 'subnet', $subnet )] = $limits['subnet'];
1804 // Check for group-specific permissions
1805 // If more than one group applies, use the group with the highest limit ratio (max/period)
1806 foreach ( $this->getGroups() as $group ) {
1807 if ( isset( $limits[$group] ) ) {
1808 if ( $userLimit === false
1809 ||
$limits[$group][0] / $limits[$group][1] > $userLimit[0] / $userLimit[1]
1811 $userLimit = $limits[$group];
1816 // Set the user limit key
1817 if ( $userLimit !== false ) {
1818 list( $max, $period ) = $userLimit;
1819 wfDebug( __METHOD__
. ": effective user limit: $max in {$period}s\n" );
1820 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $userLimit;
1823 // ip-based limits for all ping-limitable users
1824 if ( isset( $limits['ip-all'] ) ) {
1825 $ip = $this->getRequest()->getIP();
1826 // ignore if user limit is more permissive
1827 if ( $isNewbie ||
$userLimit === false
1828 ||
$limits['ip-all'][0] / $limits['ip-all'][1] > $userLimit[0] / $userLimit[1] ) {
1829 $keys["mediawiki:limiter:$action:ip-all:$ip"] = $limits['ip-all'];
1833 // subnet-based limits for all ping-limitable users
1834 if ( isset( $limits['subnet-all'] ) ) {
1835 $ip = $this->getRequest()->getIP();
1836 $subnet = IP
::getSubnet( $ip );
1837 if ( $subnet !== false ) {
1838 // ignore if user limit is more permissive
1839 if ( $isNewbie ||
$userLimit === false
1840 ||
$limits['ip-all'][0] / $limits['ip-all'][1]
1841 > $userLimit[0] / $userLimit[1] ) {
1842 $keys["mediawiki:limiter:$action:subnet-all:$subnet"] = $limits['subnet-all'];
1847 $cache = ObjectCache
::getLocalClusterInstance();
1850 foreach ( $keys as $key => $limit ) {
1851 list( $max, $period ) = $limit;
1852 $summary = "(limit $max in {$period}s)";
1853 $count = $cache->get( $key );
1856 if ( $count >= $max ) {
1857 wfDebugLog( 'ratelimit', "User '{$this->getName()}' " .
1858 "(IP {$this->getRequest()->getIP()}) tripped $key at $count $summary" );
1861 wfDebug( __METHOD__
. ": ok. $key at $count $summary\n" );
1864 wfDebug( __METHOD__
. ": adding record for $key $summary\n" );
1865 if ( $incrBy > 0 ) {
1866 $cache->add( $key, 0, intval( $period ) ); // first ping
1869 if ( $incrBy > 0 ) {
1870 $cache->incr( $key, $incrBy );
1878 * Check if user is blocked
1880 * @param bool $bFromSlave Whether to check the slave database instead of
1881 * the master. Hacked from false due to horrible probs on site.
1882 * @return bool True if blocked, false otherwise
1884 public function isBlocked( $bFromSlave = true ) {
1885 return $this->getBlock( $bFromSlave ) instanceof Block
&& $this->getBlock()->prevents( 'edit' );
1889 * Get the block affecting the user, or null if the user is not blocked
1891 * @param bool $bFromSlave Whether to check the slave database instead of the master
1892 * @return Block|null
1894 public function getBlock( $bFromSlave = true ) {
1895 $this->getBlockedStatus( $bFromSlave );
1896 return $this->mBlock
instanceof Block ?
$this->mBlock
: null;
1900 * Check if user is blocked from editing a particular article
1902 * @param Title $title Title to check
1903 * @param bool $bFromSlave Whether to check the slave database instead of the master
1906 public function isBlockedFrom( $title, $bFromSlave = false ) {
1907 global $wgBlockAllowsUTEdit;
1909 $blocked = $this->isBlocked( $bFromSlave );
1910 $allowUsertalk = ( $wgBlockAllowsUTEdit ?
$this->mAllowUsertalk
: false );
1911 // If a user's name is suppressed, they cannot make edits anywhere
1912 if ( !$this->mHideName
&& $allowUsertalk && $title->getText() === $this->getName()
1913 && $title->getNamespace() == NS_USER_TALK
) {
1915 wfDebug( __METHOD__
. ": self-talk page, ignoring any blocks\n" );
1918 Hooks
::run( 'UserIsBlockedFrom', array( $this, $title, &$blocked, &$allowUsertalk ) );
1924 * If user is blocked, return the name of the user who placed the block
1925 * @return string Name of blocker
1927 public function blockedBy() {
1928 $this->getBlockedStatus();
1929 return $this->mBlockedby
;
1933 * If user is blocked, return the specified reason for the block
1934 * @return string Blocking reason
1936 public function blockedFor() {
1937 $this->getBlockedStatus();
1938 return $this->mBlockreason
;
1942 * If user is blocked, return the ID for the block
1943 * @return int Block ID
1945 public function getBlockId() {
1946 $this->getBlockedStatus();
1947 return ( $this->mBlock ?
$this->mBlock
->getId() : false );
1951 * Check if user is blocked on all wikis.
1952 * Do not use for actual edit permission checks!
1953 * This is intended for quick UI checks.
1955 * @param string $ip IP address, uses current client if none given
1956 * @return bool True if blocked, false otherwise
1958 public function isBlockedGlobally( $ip = '' ) {
1959 if ( $this->mBlockedGlobally
!== null ) {
1960 return $this->mBlockedGlobally
;
1962 // User is already an IP?
1963 if ( IP
::isIPAddress( $this->getName() ) ) {
1964 $ip = $this->getName();
1966 $ip = $this->getRequest()->getIP();
1969 Hooks
::run( 'UserIsBlockedGlobally', array( &$this, $ip, &$blocked ) );
1970 $this->mBlockedGlobally
= (bool)$blocked;
1971 return $this->mBlockedGlobally
;
1975 * Check if user account is locked
1977 * @return bool True if locked, false otherwise
1979 public function isLocked() {
1980 if ( $this->mLocked
!== null ) {
1981 return $this->mLocked
;
1984 $authUser = $wgAuth->getUserInstance( $this );
1985 $this->mLocked
= (bool)$authUser->isLocked();
1986 Hooks
::run( 'UserIsLocked', array( $this, &$this->mLocked
) );
1987 return $this->mLocked
;
1991 * Check if user account is hidden
1993 * @return bool True if hidden, false otherwise
1995 public function isHidden() {
1996 if ( $this->mHideName
!== null ) {
1997 return $this->mHideName
;
1999 $this->getBlockedStatus();
2000 if ( !$this->mHideName
) {
2002 $authUser = $wgAuth->getUserInstance( $this );
2003 $this->mHideName
= (bool)$authUser->isHidden();
2004 Hooks
::run( 'UserIsHidden', array( $this, &$this->mHideName
) );
2006 return $this->mHideName
;
2010 * Get the user's ID.
2011 * @return int The user's ID; 0 if the user is anonymous or nonexistent
2013 public function getId() {
2014 if ( $this->mId
=== null && $this->mName
!== null && User
::isIP( $this->mName
) ) {
2015 // Special case, we know the user is anonymous
2017 } elseif ( !$this->isItemLoaded( 'id' ) ) {
2018 // Don't load if this was initialized from an ID
2025 * Set the user and reload all fields according to a given ID
2026 * @param int $v User ID to reload
2028 public function setId( $v ) {
2030 $this->clearInstanceCache( 'id' );
2034 * Get the user name, or the IP of an anonymous user
2035 * @return string User's name or IP address
2037 public function getName() {
2038 if ( $this->isItemLoaded( 'name', 'only' ) ) {
2039 // Special case optimisation
2040 return $this->mName
;
2043 if ( $this->mName
=== false ) {
2045 $this->mName
= IP
::sanitizeIP( $this->getRequest()->getIP() );
2047 return $this->mName
;
2052 * Set the user name.
2054 * This does not reload fields from the database according to the given
2055 * name. Rather, it is used to create a temporary "nonexistent user" for
2056 * later addition to the database. It can also be used to set the IP
2057 * address for an anonymous user to something other than the current
2060 * @note User::newFromName() has roughly the same function, when the named user
2062 * @param string $str New user name to set
2064 public function setName( $str ) {
2066 $this->mName
= $str;
2070 * Get the user's name escaped by underscores.
2071 * @return string Username escaped by underscores.
2073 public function getTitleKey() {
2074 return str_replace( ' ', '_', $this->getName() );
2078 * Check if the user has new messages.
2079 * @return bool True if the user has new messages
2081 public function getNewtalk() {
2084 // Load the newtalk status if it is unloaded (mNewtalk=-1)
2085 if ( $this->mNewtalk
=== -1 ) {
2086 $this->mNewtalk
= false; # reset talk page status
2088 // Check memcached separately for anons, who have no
2089 // entire User object stored in there.
2090 if ( !$this->mId
) {
2091 global $wgDisableAnonTalk;
2092 if ( $wgDisableAnonTalk ) {
2093 // Anon newtalk disabled by configuration.
2094 $this->mNewtalk
= false;
2096 $this->mNewtalk
= $this->checkNewtalk( 'user_ip', $this->getName() );
2099 $this->mNewtalk
= $this->checkNewtalk( 'user_id', $this->mId
);
2103 return (bool)$this->mNewtalk
;
2107 * Return the data needed to construct links for new talk page message
2108 * alerts. If there are new messages, this will return an associative array
2109 * with the following data:
2110 * wiki: The database name of the wiki
2111 * link: Root-relative link to the user's talk page
2112 * rev: The last talk page revision that the user has seen or null. This
2113 * is useful for building diff links.
2114 * If there are no new messages, it returns an empty array.
2115 * @note This function was designed to accomodate multiple talk pages, but
2116 * currently only returns a single link and revision.
2119 public function getNewMessageLinks() {
2121 if ( !Hooks
::run( 'UserRetrieveNewTalks', array( &$this, &$talks ) ) ) {
2123 } elseif ( !$this->getNewtalk() ) {
2126 $utp = $this->getTalkPage();
2127 $dbr = wfGetDB( DB_SLAVE
);
2128 // Get the "last viewed rev" timestamp from the oldest message notification
2129 $timestamp = $dbr->selectField( 'user_newtalk',
2130 'MIN(user_last_timestamp)',
2131 $this->isAnon() ?
array( 'user_ip' => $this->getName() ) : array( 'user_id' => $this->getID() ),
2133 $rev = $timestamp ? Revision
::loadFromTimestamp( $dbr, $utp, $timestamp ) : null;
2134 return array( array( 'wiki' => wfWikiID(), 'link' => $utp->getLocalURL(), 'rev' => $rev ) );
2138 * Get the revision ID for the last talk page revision viewed by the talk
2140 * @return int|null Revision ID or null
2142 public function getNewMessageRevisionId() {
2143 $newMessageRevisionId = null;
2144 $newMessageLinks = $this->getNewMessageLinks();
2145 if ( $newMessageLinks ) {
2146 // Note: getNewMessageLinks() never returns more than a single link
2147 // and it is always for the same wiki, but we double-check here in
2148 // case that changes some time in the future.
2149 if ( count( $newMessageLinks ) === 1
2150 && $newMessageLinks[0]['wiki'] === wfWikiID()
2151 && $newMessageLinks[0]['rev']
2153 /** @var Revision $newMessageRevision */
2154 $newMessageRevision = $newMessageLinks[0]['rev'];
2155 $newMessageRevisionId = $newMessageRevision->getId();
2158 return $newMessageRevisionId;
2162 * Internal uncached check for new messages
2165 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2166 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2167 * @return bool True if the user has new messages
2169 protected function checkNewtalk( $field, $id ) {
2170 $dbr = wfGetDB( DB_SLAVE
);
2172 $ok = $dbr->selectField( 'user_newtalk', $field, array( $field => $id ), __METHOD__
);
2174 return $ok !== false;
2178 * Add or update the new messages flag
2179 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2180 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2181 * @param Revision|null $curRev New, as yet unseen revision of the user talk page. Ignored if null.
2182 * @return bool True if successful, false otherwise
2184 protected function updateNewtalk( $field, $id, $curRev = null ) {
2185 // Get timestamp of the talk page revision prior to the current one
2186 $prevRev = $curRev ?
$curRev->getPrevious() : false;
2187 $ts = $prevRev ?
$prevRev->getTimestamp() : null;
2188 // Mark the user as having new messages since this revision
2189 $dbw = wfGetDB( DB_MASTER
);
2190 $dbw->insert( 'user_newtalk',
2191 array( $field => $id, 'user_last_timestamp' => $dbw->timestampOrNull( $ts ) ),
2194 if ( $dbw->affectedRows() ) {
2195 wfDebug( __METHOD__
. ": set on ($field, $id)\n" );
2198 wfDebug( __METHOD__
. " already set ($field, $id)\n" );
2204 * Clear the new messages flag for the given user
2205 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2206 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2207 * @return bool True if successful, false otherwise
2209 protected function deleteNewtalk( $field, $id ) {
2210 $dbw = wfGetDB( DB_MASTER
);
2211 $dbw->delete( 'user_newtalk',
2212 array( $field => $id ),
2214 if ( $dbw->affectedRows() ) {
2215 wfDebug( __METHOD__
. ": killed on ($field, $id)\n" );
2218 wfDebug( __METHOD__
. ": already gone ($field, $id)\n" );
2224 * Update the 'You have new messages!' status.
2225 * @param bool $val Whether the user has new messages
2226 * @param Revision $curRev New, as yet unseen revision of the user talk
2227 * page. Ignored if null or !$val.
2229 public function setNewtalk( $val, $curRev = null ) {
2230 if ( wfReadOnly() ) {
2235 $this->mNewtalk
= $val;
2237 if ( $this->isAnon() ) {
2239 $id = $this->getName();
2242 $id = $this->getId();
2246 $changed = $this->updateNewtalk( $field, $id, $curRev );
2248 $changed = $this->deleteNewtalk( $field, $id );
2252 $this->invalidateCache();
2257 * Generate a current or new-future timestamp to be stored in the
2258 * user_touched field when we update things.
2259 * @return string Timestamp in TS_MW format
2261 private function newTouchedTimestamp() {
2262 global $wgClockSkewFudge;
2264 $time = wfTimestamp( TS_MW
, time() +
$wgClockSkewFudge );
2265 if ( $this->mTouched
&& $time <= $this->mTouched
) {
2266 $time = wfTimestamp( TS_MW
, wfTimestamp( TS_UNIX
, $this->mTouched
) +
1 );
2273 * Clear user data from memcached
2275 * Use after applying updates to the database; caller's
2276 * responsibility to update user_touched if appropriate.
2278 * Called implicitly from invalidateCache() and saveSettings().
2280 * @param string $mode Use 'refresh' to clear now; otherwise before DB commit
2282 public function clearSharedCache( $mode = 'changed' ) {
2283 if ( !$this->getId() ) {
2287 $cache = ObjectCache
::getMainWANInstance();
2288 $key = $this->getCacheKey( $cache );
2289 if ( $mode === 'refresh' ) {
2290 $cache->delete( $key, 1 );
2292 wfGetDB( DB_MASTER
)->onTransactionPreCommitOrIdle( function() use ( $cache, $key ) {
2293 $cache->delete( $key );
2299 * Immediately touch the user data cache for this account
2301 * Calls touch() and removes account data from memcached
2303 public function invalidateCache() {
2305 $this->clearSharedCache();
2309 * Update the "touched" timestamp for the user
2311 * This is useful on various login/logout events when making sure that
2312 * a browser or proxy that has multiple tenants does not suffer cache
2313 * pollution where the new user sees the old users content. The value
2314 * of getTouched() is checked when determining 304 vs 200 responses.
2315 * Unlike invalidateCache(), this preserves the User object cache and
2316 * avoids database writes.
2320 public function touch() {
2321 $id = $this->getId();
2323 $key = wfMemcKey( 'user-quicktouched', 'id', $id );
2324 ObjectCache
::getMainWANInstance()->touchCheckKey( $key );
2325 $this->mQuickTouched
= null;
2330 * Validate the cache for this account.
2331 * @param string $timestamp A timestamp in TS_MW format
2334 public function validateCache( $timestamp ) {
2335 return ( $timestamp >= $this->getTouched() );
2339 * Get the user touched timestamp
2341 * Use this value only to validate caches via inequalities
2342 * such as in the case of HTTP If-Modified-Since response logic
2344 * @return string TS_MW Timestamp
2346 public function getTouched() {
2350 if ( $this->mQuickTouched
=== null ) {
2351 $key = wfMemcKey( 'user-quicktouched', 'id', $this->mId
);
2352 $cache = ObjectCache
::getMainWANInstance();
2354 $this->mQuickTouched
= wfTimestamp( TS_MW
, $cache->getCheckKeyTime( $key ) );
2357 return max( $this->mTouched
, $this->mQuickTouched
);
2360 return $this->mTouched
;
2364 * Get the user_touched timestamp field (time of last DB updates)
2365 * @return string TS_MW Timestamp
2368 public function getDBTouched() {
2371 return $this->mTouched
;
2375 * @deprecated Removed in 1.27.
2379 public function getPassword() {
2380 throw new BadMethodCallException( __METHOD__
. ' has been removed in 1.27' );
2384 * @deprecated Removed in 1.27.
2388 public function getTemporaryPassword() {
2389 throw new BadMethodCallException( __METHOD__
. ' has been removed in 1.27' );
2393 * Set the password and reset the random token.
2394 * Calls through to authentication plugin if necessary;
2395 * will have no effect if the auth plugin refuses to
2396 * pass the change through or if the legal password
2399 * As a special case, setting the password to null
2400 * wipes it, so the account cannot be logged in until
2401 * a new password is set, for instance via e-mail.
2403 * @deprecated since 1.27. AuthManager is coming.
2404 * @param string $str New password to set
2405 * @throws PasswordError On failure
2408 public function setPassword( $str ) {
2411 if ( $str !== null ) {
2412 if ( !$wgAuth->allowPasswordChange() ) {
2413 throw new PasswordError( wfMessage( 'password-change-forbidden' )->text() );
2416 $status = $this->checkPasswordValidity( $str );
2417 if ( !$status->isGood() ) {
2418 throw new PasswordError( $status->getMessage()->text() );
2422 if ( !$wgAuth->setPassword( $this, $str ) ) {
2423 throw new PasswordError( wfMessage( 'externaldberror' )->text() );
2427 $this->setOption( 'watchlisttoken', false );
2428 $this->setPasswordInternal( $str );
2434 * Set the password and reset the random token unconditionally.
2436 * @deprecated since 1.27. AuthManager is coming.
2437 * @param string|null $str New password to set or null to set an invalid
2438 * password hash meaning that the user will not be able to log in
2439 * through the web interface.
2441 public function setInternalPassword( $str ) {
2444 if ( $wgAuth->allowSetLocalPassword() ) {
2446 $this->setOption( 'watchlisttoken', false );
2447 $this->setPasswordInternal( $str );
2452 * Actually set the password and such
2453 * @since 1.27 cannot set a password for a user not in the database
2454 * @param string|null $str New password to set or null to set an invalid
2455 * password hash meaning that the user will not be able to log in
2456 * through the web interface.
2458 private function setPasswordInternal( $str ) {
2459 $id = self
::idFromName( $this->getName(), self
::READ_LATEST
);
2461 throw new LogicException( 'Cannot set a password for a user that is not in the database.' );
2464 $passwordFactory = new PasswordFactory();
2465 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
2466 $dbw = wfGetDB( DB_MASTER
);
2470 'user_password' => $passwordFactory->newFromPlaintext( $str )->toString(),
2471 'user_newpassword' => PasswordFactory
::newInvalidPassword()->toString(),
2472 'user_newpass_time' => $dbw->timestampOrNull( null ),
2480 // When the main password is changed, invalidate all bot passwords too
2481 BotPassword
::invalidateAllPasswordsForUser( $this->getName() );
2485 * Get the user's current token.
2486 * @param bool $forceCreation Force the generation of a new token if the
2487 * user doesn't have one (default=true for backwards compatibility).
2488 * @return string|null Token
2490 public function getToken( $forceCreation = true ) {
2491 global $wgAuthenticationTokenVersion;
2494 if ( !$this->mToken
&& $forceCreation ) {
2498 if ( !$this->mToken
) {
2499 // The user doesn't have a token, return null to indicate that.
2501 } elseif ( $this->mToken
=== self
::INVALID_TOKEN
) {
2502 // We return a random value here so existing token checks are very
2504 return MWCryptRand
::generateHex( self
::TOKEN_LENGTH
);
2505 } elseif ( $wgAuthenticationTokenVersion === null ) {
2506 // $wgAuthenticationTokenVersion not in use, so return the raw secret
2507 return $this->mToken
;
2509 // $wgAuthenticationTokenVersion in use, so hmac it.
2510 $ret = MWCryptHash
::hmac( $wgAuthenticationTokenVersion, $this->mToken
, false );
2512 // The raw hash can be overly long. Shorten it up.
2513 $len = max( 32, self
::TOKEN_LENGTH
);
2514 if ( strlen( $ret ) < $len ) {
2515 // Should never happen, even md5 is 128 bits
2516 throw new \
UnexpectedValueException( 'Hmac returned less than 128 bits' );
2518 return substr( $ret, -$len );
2523 * Set the random token (used for persistent authentication)
2524 * Called from loadDefaults() among other places.
2526 * @param string|bool $token If specified, set the token to this value
2528 public function setToken( $token = false ) {
2530 if ( $this->mToken
=== self
::INVALID_TOKEN
) {
2531 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
2532 ->debug( __METHOD__
. ": Ignoring attempt to set token for system user \"$this\"" );
2533 } elseif ( !$token ) {
2534 $this->mToken
= MWCryptRand
::generateHex( self
::TOKEN_LENGTH
);
2536 $this->mToken
= $token;
2541 * Set the password for a password reminder or new account email
2543 * @deprecated since 1.27, AuthManager is coming
2544 * @param string $str New password to set or null to set an invalid
2545 * password hash meaning that the user will not be able to use it
2546 * @param bool $throttle If true, reset the throttle timestamp to the present
2548 public function setNewpassword( $str, $throttle = true ) {
2549 $id = $this->getId();
2551 throw new LogicException( 'Cannot set new password for a user that is not in the database.' );
2554 $dbw = wfGetDB( DB_MASTER
);
2556 $passwordFactory = new PasswordFactory();
2557 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
2559 'user_newpassword' => $passwordFactory->newFromPlaintext( $str )->toString(),
2562 if ( $str === null ) {
2563 $update['user_newpass_time'] = null;
2564 } elseif ( $throttle ) {
2565 $update['user_newpass_time'] = $dbw->timestamp();
2568 $dbw->update( 'user', $update, array( 'user_id' => $id ), __METHOD__
);
2572 * Has password reminder email been sent within the last
2573 * $wgPasswordReminderResendTime hours?
2576 public function isPasswordReminderThrottled() {
2577 global $wgPasswordReminderResendTime;
2579 if ( !$wgPasswordReminderResendTime ) {
2585 $db = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
2586 ?
wfGetDB( DB_MASTER
)
2587 : wfGetDB( DB_SLAVE
);
2588 $newpassTime = $db->selectField(
2590 'user_newpass_time',
2591 array( 'user_id' => $this->getId() ),
2595 if ( $newpassTime === null ) {
2598 $expiry = wfTimestamp( TS_UNIX
, $newpassTime ) +
$wgPasswordReminderResendTime * 3600;
2599 return time() < $expiry;
2603 * Get the user's e-mail address
2604 * @return string User's email address
2606 public function getEmail() {
2608 Hooks
::run( 'UserGetEmail', array( $this, &$this->mEmail
) );
2609 return $this->mEmail
;
2613 * Get the timestamp of the user's e-mail authentication
2614 * @return string TS_MW timestamp
2616 public function getEmailAuthenticationTimestamp() {
2618 Hooks
::run( 'UserGetEmailAuthenticationTimestamp', array( $this, &$this->mEmailAuthenticated
) );
2619 return $this->mEmailAuthenticated
;
2623 * Set the user's e-mail address
2624 * @param string $str New e-mail address
2626 public function setEmail( $str ) {
2628 if ( $str == $this->mEmail
) {
2631 $this->invalidateEmail();
2632 $this->mEmail
= $str;
2633 Hooks
::run( 'UserSetEmail', array( $this, &$this->mEmail
) );
2637 * Set the user's e-mail address and a confirmation mail if needed.
2640 * @param string $str New e-mail address
2643 public function setEmailWithConfirmation( $str ) {
2644 global $wgEnableEmail, $wgEmailAuthentication;
2646 if ( !$wgEnableEmail ) {
2647 return Status
::newFatal( 'emaildisabled' );
2650 $oldaddr = $this->getEmail();
2651 if ( $str === $oldaddr ) {
2652 return Status
::newGood( true );
2655 $this->setEmail( $str );
2657 if ( $str !== '' && $wgEmailAuthentication ) {
2658 // Send a confirmation request to the new address if needed
2659 $type = $oldaddr != '' ?
'changed' : 'set';
2660 $result = $this->sendConfirmationMail( $type );
2661 if ( $result->isGood() ) {
2662 // Say to the caller that a confirmation mail has been sent
2663 $result->value
= 'eauth';
2666 $result = Status
::newGood( true );
2673 * Get the user's real name
2674 * @return string User's real name
2676 public function getRealName() {
2677 if ( !$this->isItemLoaded( 'realname' ) ) {
2681 return $this->mRealName
;
2685 * Set the user's real name
2686 * @param string $str New real name
2688 public function setRealName( $str ) {
2690 $this->mRealName
= $str;
2694 * Get the user's current setting for a given option.
2696 * @param string $oname The option to check
2697 * @param string $defaultOverride A default value returned if the option does not exist
2698 * @param bool $ignoreHidden Whether to ignore the effects of $wgHiddenPrefs
2699 * @return string User's current value for the option
2700 * @see getBoolOption()
2701 * @see getIntOption()
2703 public function getOption( $oname, $defaultOverride = null, $ignoreHidden = false ) {
2704 global $wgHiddenPrefs;
2705 $this->loadOptions();
2707 # We want 'disabled' preferences to always behave as the default value for
2708 # users, even if they have set the option explicitly in their settings (ie they
2709 # set it, and then it was disabled removing their ability to change it). But
2710 # we don't want to erase the preferences in the database in case the preference
2711 # is re-enabled again. So don't touch $mOptions, just override the returned value
2712 if ( !$ignoreHidden && in_array( $oname, $wgHiddenPrefs ) ) {
2713 return self
::getDefaultOption( $oname );
2716 if ( array_key_exists( $oname, $this->mOptions
) ) {
2717 return $this->mOptions
[$oname];
2719 return $defaultOverride;
2724 * Get all user's options
2726 * @param int $flags Bitwise combination of:
2727 * User::GETOPTIONS_EXCLUDE_DEFAULTS Exclude user options that are set
2728 * to the default value. (Since 1.25)
2731 public function getOptions( $flags = 0 ) {
2732 global $wgHiddenPrefs;
2733 $this->loadOptions();
2734 $options = $this->mOptions
;
2736 # We want 'disabled' preferences to always behave as the default value for
2737 # users, even if they have set the option explicitly in their settings (ie they
2738 # set it, and then it was disabled removing their ability to change it). But
2739 # we don't want to erase the preferences in the database in case the preference
2740 # is re-enabled again. So don't touch $mOptions, just override the returned value
2741 foreach ( $wgHiddenPrefs as $pref ) {
2742 $default = self
::getDefaultOption( $pref );
2743 if ( $default !== null ) {
2744 $options[$pref] = $default;
2748 if ( $flags & self
::GETOPTIONS_EXCLUDE_DEFAULTS
) {
2749 $options = array_diff_assoc( $options, self
::getDefaultOptions() );
2756 * Get the user's current setting for a given option, as a boolean value.
2758 * @param string $oname The option to check
2759 * @return bool User's current value for the option
2762 public function getBoolOption( $oname ) {
2763 return (bool)$this->getOption( $oname );
2767 * Get the user's current setting for a given option, as an integer value.
2769 * @param string $oname The option to check
2770 * @param int $defaultOverride A default value returned if the option does not exist
2771 * @return int User's current value for the option
2774 public function getIntOption( $oname, $defaultOverride = 0 ) {
2775 $val = $this->getOption( $oname );
2777 $val = $defaultOverride;
2779 return intval( $val );
2783 * Set the given option for a user.
2785 * You need to call saveSettings() to actually write to the database.
2787 * @param string $oname The option to set
2788 * @param mixed $val New value to set
2790 public function setOption( $oname, $val ) {
2791 $this->loadOptions();
2793 // Explicitly NULL values should refer to defaults
2794 if ( is_null( $val ) ) {
2795 $val = self
::getDefaultOption( $oname );
2798 $this->mOptions
[$oname] = $val;
2802 * Get a token stored in the preferences (like the watchlist one),
2803 * resetting it if it's empty (and saving changes).
2805 * @param string $oname The option name to retrieve the token from
2806 * @return string|bool User's current value for the option, or false if this option is disabled.
2807 * @see resetTokenFromOption()
2809 * @deprecated 1.26 Applications should use the OAuth extension
2811 public function getTokenFromOption( $oname ) {
2812 global $wgHiddenPrefs;
2814 $id = $this->getId();
2815 if ( !$id ||
in_array( $oname, $wgHiddenPrefs ) ) {
2819 $token = $this->getOption( $oname );
2821 // Default to a value based on the user token to avoid space
2822 // wasted on storing tokens for all users. When this option
2823 // is set manually by the user, only then is it stored.
2824 $token = hash_hmac( 'sha1', "$oname:$id", $this->getToken() );
2831 * Reset a token stored in the preferences (like the watchlist one).
2832 * *Does not* save user's preferences (similarly to setOption()).
2834 * @param string $oname The option name to reset the token in
2835 * @return string|bool New token value, or false if this option is disabled.
2836 * @see getTokenFromOption()
2839 public function resetTokenFromOption( $oname ) {
2840 global $wgHiddenPrefs;
2841 if ( in_array( $oname, $wgHiddenPrefs ) ) {
2845 $token = MWCryptRand
::generateHex( 40 );
2846 $this->setOption( $oname, $token );
2851 * Return a list of the types of user options currently returned by
2852 * User::getOptionKinds().
2854 * Currently, the option kinds are:
2855 * - 'registered' - preferences which are registered in core MediaWiki or
2856 * by extensions using the UserGetDefaultOptions hook.
2857 * - 'registered-multiselect' - as above, using the 'multiselect' type.
2858 * - 'registered-checkmatrix' - as above, using the 'checkmatrix' type.
2859 * - 'userjs' - preferences with names starting with 'userjs-', intended to
2860 * be used by user scripts.
2861 * - 'special' - "preferences" that are not accessible via User::getOptions
2862 * or User::setOptions.
2863 * - 'unused' - preferences about which MediaWiki doesn't know anything.
2864 * These are usually legacy options, removed in newer versions.
2866 * The API (and possibly others) use this function to determine the possible
2867 * option types for validation purposes, so make sure to update this when a
2868 * new option kind is added.
2870 * @see User::getOptionKinds
2871 * @return array Option kinds
2873 public static function listOptionKinds() {
2876 'registered-multiselect',
2877 'registered-checkmatrix',
2885 * Return an associative array mapping preferences keys to the kind of a preference they're
2886 * used for. Different kinds are handled differently when setting or reading preferences.
2888 * See User::listOptionKinds for the list of valid option types that can be provided.
2890 * @see User::listOptionKinds
2891 * @param IContextSource $context
2892 * @param array $options Assoc. array with options keys to check as keys.
2893 * Defaults to $this->mOptions.
2894 * @return array The key => kind mapping data
2896 public function getOptionKinds( IContextSource
$context, $options = null ) {
2897 $this->loadOptions();
2898 if ( $options === null ) {
2899 $options = $this->mOptions
;
2902 $prefs = Preferences
::getPreferences( $this, $context );
2905 // Pull out the "special" options, so they don't get converted as
2906 // multiselect or checkmatrix.
2907 $specialOptions = array_fill_keys( Preferences
::getSaveBlacklist(), true );
2908 foreach ( $specialOptions as $name => $value ) {
2909 unset( $prefs[$name] );
2912 // Multiselect and checkmatrix options are stored in the database with
2913 // one key per option, each having a boolean value. Extract those keys.
2914 $multiselectOptions = array();
2915 foreach ( $prefs as $name => $info ) {
2916 if ( ( isset( $info['type'] ) && $info['type'] == 'multiselect' ) ||
2917 ( isset( $info['class'] ) && $info['class'] == 'HTMLMultiSelectField' ) ) {
2918 $opts = HTMLFormField
::flattenOptions( $info['options'] );
2919 $prefix = isset( $info['prefix'] ) ?
$info['prefix'] : $name;
2921 foreach ( $opts as $value ) {
2922 $multiselectOptions["$prefix$value"] = true;
2925 unset( $prefs[$name] );
2928 $checkmatrixOptions = array();
2929 foreach ( $prefs as $name => $info ) {
2930 if ( ( isset( $info['type'] ) && $info['type'] == 'checkmatrix' ) ||
2931 ( isset( $info['class'] ) && $info['class'] == 'HTMLCheckMatrix' ) ) {
2932 $columns = HTMLFormField
::flattenOptions( $info['columns'] );
2933 $rows = HTMLFormField
::flattenOptions( $info['rows'] );
2934 $prefix = isset( $info['prefix'] ) ?
$info['prefix'] : $name;
2936 foreach ( $columns as $column ) {
2937 foreach ( $rows as $row ) {
2938 $checkmatrixOptions["$prefix$column-$row"] = true;
2942 unset( $prefs[$name] );
2946 // $value is ignored
2947 foreach ( $options as $key => $value ) {
2948 if ( isset( $prefs[$key] ) ) {
2949 $mapping[$key] = 'registered';
2950 } elseif ( isset( $multiselectOptions[$key] ) ) {
2951 $mapping[$key] = 'registered-multiselect';
2952 } elseif ( isset( $checkmatrixOptions[$key] ) ) {
2953 $mapping[$key] = 'registered-checkmatrix';
2954 } elseif ( isset( $specialOptions[$key] ) ) {
2955 $mapping[$key] = 'special';
2956 } elseif ( substr( $key, 0, 7 ) === 'userjs-' ) {
2957 $mapping[$key] = 'userjs';
2959 $mapping[$key] = 'unused';
2967 * Reset certain (or all) options to the site defaults
2969 * The optional parameter determines which kinds of preferences will be reset.
2970 * Supported values are everything that can be reported by getOptionKinds()
2971 * and 'all', which forces a reset of *all* preferences and overrides everything else.
2973 * @param array|string $resetKinds Which kinds of preferences to reset. Defaults to
2974 * array( 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' )
2975 * for backwards-compatibility.
2976 * @param IContextSource|null $context Context source used when $resetKinds
2977 * does not contain 'all', passed to getOptionKinds().
2978 * Defaults to RequestContext::getMain() when null.
2980 public function resetOptions(
2981 $resetKinds = array( 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' ),
2982 IContextSource
$context = null
2985 $defaultOptions = self
::getDefaultOptions();
2987 if ( !is_array( $resetKinds ) ) {
2988 $resetKinds = array( $resetKinds );
2991 if ( in_array( 'all', $resetKinds ) ) {
2992 $newOptions = $defaultOptions;
2994 if ( $context === null ) {
2995 $context = RequestContext
::getMain();
2998 $optionKinds = $this->getOptionKinds( $context );
2999 $resetKinds = array_intersect( $resetKinds, self
::listOptionKinds() );
3000 $newOptions = array();
3002 // Use default values for the options that should be deleted, and
3003 // copy old values for the ones that shouldn't.
3004 foreach ( $this->mOptions
as $key => $value ) {
3005 if ( in_array( $optionKinds[$key], $resetKinds ) ) {
3006 if ( array_key_exists( $key, $defaultOptions ) ) {
3007 $newOptions[$key] = $defaultOptions[$key];
3010 $newOptions[$key] = $value;
3015 Hooks
::run( 'UserResetAllOptions', array( $this, &$newOptions, $this->mOptions
, $resetKinds ) );
3017 $this->mOptions
= $newOptions;
3018 $this->mOptionsLoaded
= true;
3022 * Get the user's preferred date format.
3023 * @return string User's preferred date format
3025 public function getDatePreference() {
3026 // Important migration for old data rows
3027 if ( is_null( $this->mDatePreference
) ) {
3029 $value = $this->getOption( 'date' );
3030 $map = $wgLang->getDatePreferenceMigrationMap();
3031 if ( isset( $map[$value] ) ) {
3032 $value = $map[$value];
3034 $this->mDatePreference
= $value;
3036 return $this->mDatePreference
;
3040 * Determine based on the wiki configuration and the user's options,
3041 * whether this user must be over HTTPS no matter what.
3045 public function requiresHTTPS() {
3046 global $wgSecureLogin;
3047 if ( !$wgSecureLogin ) {
3050 $https = $this->getBoolOption( 'prefershttps' );
3051 Hooks
::run( 'UserRequiresHTTPS', array( $this, &$https ) );
3053 $https = wfCanIPUseHTTPS( $this->getRequest()->getIP() );
3060 * Get the user preferred stub threshold
3064 public function getStubThreshold() {
3065 global $wgMaxArticleSize; # Maximum article size, in Kb
3066 $threshold = $this->getIntOption( 'stubthreshold' );
3067 if ( $threshold > $wgMaxArticleSize * 1024 ) {
3068 // If they have set an impossible value, disable the preference
3069 // so we can use the parser cache again.
3076 * Get the permissions this user has.
3077 * @return array Array of String permission names
3079 public function getRights() {
3080 if ( is_null( $this->mRights
) ) {
3081 $this->mRights
= self
::getGroupPermissions( $this->getEffectiveGroups() );
3083 $allowedRights = $this->getRequest()->getSession()->getAllowedUserRights();
3084 if ( $allowedRights !== null ) {
3085 $this->mRights
= array_intersect( $this->mRights
, $allowedRights );
3088 Hooks
::run( 'UserGetRights', array( $this, &$this->mRights
) );
3089 // Force reindexation of rights when a hook has unset one of them
3090 $this->mRights
= array_values( array_unique( $this->mRights
) );
3092 return $this->mRights
;
3096 * Get the list of explicit group memberships this user has.
3097 * The implicit * and user groups are not included.
3098 * @return array Array of String internal group names
3100 public function getGroups() {
3102 $this->loadGroups();
3103 return $this->mGroups
;
3107 * Get the list of implicit group memberships this user has.
3108 * This includes all explicit groups, plus 'user' if logged in,
3109 * '*' for all accounts, and autopromoted groups
3110 * @param bool $recache Whether to avoid the cache
3111 * @return array Array of String internal group names
3113 public function getEffectiveGroups( $recache = false ) {
3114 if ( $recache ||
is_null( $this->mEffectiveGroups
) ) {
3115 $this->mEffectiveGroups
= array_unique( array_merge(
3116 $this->getGroups(), // explicit groups
3117 $this->getAutomaticGroups( $recache ) // implicit groups
3119 // Hook for additional groups
3120 Hooks
::run( 'UserEffectiveGroups', array( &$this, &$this->mEffectiveGroups
) );
3121 // Force reindexation of groups when a hook has unset one of them
3122 $this->mEffectiveGroups
= array_values( array_unique( $this->mEffectiveGroups
) );
3124 return $this->mEffectiveGroups
;
3128 * Get the list of implicit group memberships this user has.
3129 * This includes 'user' if logged in, '*' for all accounts,
3130 * and autopromoted groups
3131 * @param bool $recache Whether to avoid the cache
3132 * @return array Array of String internal group names
3134 public function getAutomaticGroups( $recache = false ) {
3135 if ( $recache ||
is_null( $this->mImplicitGroups
) ) {
3136 $this->mImplicitGroups
= array( '*' );
3137 if ( $this->getId() ) {
3138 $this->mImplicitGroups
[] = 'user';
3140 $this->mImplicitGroups
= array_unique( array_merge(
3141 $this->mImplicitGroups
,
3142 Autopromote
::getAutopromoteGroups( $this )
3146 // Assure data consistency with rights/groups,
3147 // as getEffectiveGroups() depends on this function
3148 $this->mEffectiveGroups
= null;
3151 return $this->mImplicitGroups
;
3155 * Returns the groups the user has belonged to.
3157 * The user may still belong to the returned groups. Compare with getGroups().
3159 * The function will not return groups the user had belonged to before MW 1.17
3161 * @return array Names of the groups the user has belonged to.
3163 public function getFormerGroups() {
3166 if ( is_null( $this->mFormerGroups
) ) {
3167 $db = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
3168 ?
wfGetDB( DB_MASTER
)
3169 : wfGetDB( DB_SLAVE
);
3170 $res = $db->select( 'user_former_groups',
3171 array( 'ufg_group' ),
3172 array( 'ufg_user' => $this->mId
),
3174 $this->mFormerGroups
= array();
3175 foreach ( $res as $row ) {
3176 $this->mFormerGroups
[] = $row->ufg_group
;
3180 return $this->mFormerGroups
;
3184 * Get the user's edit count.
3185 * @return int|null Null for anonymous users
3187 public function getEditCount() {
3188 if ( !$this->getId() ) {
3192 if ( $this->mEditCount
=== null ) {
3193 /* Populate the count, if it has not been populated yet */
3194 $dbr = wfGetDB( DB_SLAVE
);
3195 // check if the user_editcount field has been initialized
3196 $count = $dbr->selectField(
3197 'user', 'user_editcount',
3198 array( 'user_id' => $this->mId
),
3202 if ( $count === null ) {
3203 // it has not been initialized. do so.
3204 $count = $this->initEditCount();
3206 $this->mEditCount
= $count;
3208 return (int)$this->mEditCount
;
3212 * Add the user to the given group.
3213 * This takes immediate effect.
3214 * @param string $group Name of the group to add
3217 public function addGroup( $group ) {
3220 if ( !Hooks
::run( 'UserAddGroup', array( $this, &$group ) ) ) {
3224 $dbw = wfGetDB( DB_MASTER
);
3225 if ( $this->getId() ) {
3226 $dbw->insert( 'user_groups',
3228 'ug_user' => $this->getID(),
3229 'ug_group' => $group,
3232 array( 'IGNORE' ) );
3235 $this->loadGroups();
3236 $this->mGroups
[] = $group;
3237 // In case loadGroups was not called before, we now have the right twice.
3238 // Get rid of the duplicate.
3239 $this->mGroups
= array_unique( $this->mGroups
);
3241 // Refresh the groups caches, and clear the rights cache so it will be
3242 // refreshed on the next call to $this->getRights().
3243 $this->getEffectiveGroups( true );
3244 $this->mRights
= null;
3246 $this->invalidateCache();
3252 * Remove the user from the given group.
3253 * This takes immediate effect.
3254 * @param string $group Name of the group to remove
3257 public function removeGroup( $group ) {
3259 if ( !Hooks
::run( 'UserRemoveGroup', array( $this, &$group ) ) ) {
3263 $dbw = wfGetDB( DB_MASTER
);
3264 $dbw->delete( 'user_groups',
3266 'ug_user' => $this->getID(),
3267 'ug_group' => $group,
3270 // Remember that the user was in this group
3271 $dbw->insert( 'user_former_groups',
3273 'ufg_user' => $this->getID(),
3274 'ufg_group' => $group,
3280 $this->loadGroups();
3281 $this->mGroups
= array_diff( $this->mGroups
, array( $group ) );
3283 // Refresh the groups caches, and clear the rights cache so it will be
3284 // refreshed on the next call to $this->getRights().
3285 $this->getEffectiveGroups( true );
3286 $this->mRights
= null;
3288 $this->invalidateCache();
3294 * Get whether the user is logged in
3297 public function isLoggedIn() {
3298 return $this->getID() != 0;
3302 * Get whether the user is anonymous
3305 public function isAnon() {
3306 return !$this->isLoggedIn();
3310 * Check if user is allowed to access a feature / make an action
3312 * @param string ... Permissions to test
3313 * @return bool True if user is allowed to perform *any* of the given actions
3315 public function isAllowedAny() {
3316 $permissions = func_get_args();
3317 foreach ( $permissions as $permission ) {
3318 if ( $this->isAllowed( $permission ) ) {
3327 * @param string ... Permissions to test
3328 * @return bool True if the user is allowed to perform *all* of the given actions
3330 public function isAllowedAll() {
3331 $permissions = func_get_args();
3332 foreach ( $permissions as $permission ) {
3333 if ( !$this->isAllowed( $permission ) ) {
3341 * Internal mechanics of testing a permission
3342 * @param string $action
3345 public function isAllowed( $action = '' ) {
3346 if ( $action === '' ) {
3347 return true; // In the spirit of DWIM
3349 // Use strict parameter to avoid matching numeric 0 accidentally inserted
3350 // by misconfiguration: 0 == 'foo'
3351 return in_array( $action, $this->getRights(), true );
3355 * Check whether to enable recent changes patrol features for this user
3356 * @return bool True or false
3358 public function useRCPatrol() {
3359 global $wgUseRCPatrol;
3360 return $wgUseRCPatrol && $this->isAllowedAny( 'patrol', 'patrolmarks' );
3364 * Check whether to enable new pages patrol features for this user
3365 * @return bool True or false
3367 public function useNPPatrol() {
3368 global $wgUseRCPatrol, $wgUseNPPatrol;
3370 ( $wgUseRCPatrol ||
$wgUseNPPatrol )
3371 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3376 * Check whether to enable new files patrol features for this user
3377 * @return bool True or false
3379 public function useFilePatrol() {
3380 global $wgUseRCPatrol, $wgUseFilePatrol;
3382 ( $wgUseRCPatrol ||
$wgUseFilePatrol )
3383 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3388 * Get the WebRequest object to use with this object
3390 * @return WebRequest
3392 public function getRequest() {
3393 if ( $this->mRequest
) {
3394 return $this->mRequest
;
3402 * Get a WatchedItem for this user and $title.
3404 * @since 1.22 $checkRights parameter added
3405 * @param Title $title
3406 * @param int $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3407 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
3408 * @return WatchedItem
3410 public function getWatchedItem( $title, $checkRights = WatchedItem
::CHECK_USER_RIGHTS
) {
3411 $key = $checkRights . ':' . $title->getNamespace() . ':' . $title->getDBkey();
3413 if ( isset( $this->mWatchedItems
[$key] ) ) {
3414 return $this->mWatchedItems
[$key];
3417 if ( count( $this->mWatchedItems
) >= self
::MAX_WATCHED_ITEMS_CACHE
) {
3418 $this->mWatchedItems
= array();
3421 $this->mWatchedItems
[$key] = WatchedItem
::fromUserTitle( $this, $title, $checkRights );
3422 return $this->mWatchedItems
[$key];
3426 * Check the watched status of an article.
3427 * @since 1.22 $checkRights parameter added
3428 * @param Title $title Title of the article to look at
3429 * @param int $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3430 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
3433 public function isWatched( $title, $checkRights = WatchedItem
::CHECK_USER_RIGHTS
) {
3434 return $this->getWatchedItem( $title, $checkRights )->isWatched();
3439 * @since 1.22 $checkRights parameter added
3440 * @param Title $title Title of the article to look at
3441 * @param int $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3442 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
3444 public function addWatch( $title, $checkRights = WatchedItem
::CHECK_USER_RIGHTS
) {
3445 $this->getWatchedItem( $title, $checkRights )->addWatch();
3446 $this->invalidateCache();
3450 * Stop watching an article.
3451 * @since 1.22 $checkRights parameter added
3452 * @param Title $title Title of the article to look at
3453 * @param int $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3454 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
3456 public function removeWatch( $title, $checkRights = WatchedItem
::CHECK_USER_RIGHTS
) {
3457 $this->getWatchedItem( $title, $checkRights )->removeWatch();
3458 $this->invalidateCache();
3462 * Clear the user's notification timestamp for the given title.
3463 * If e-notif e-mails are on, they will receive notification mails on
3464 * the next change of the page if it's watched etc.
3465 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3466 * @param Title $title Title of the article to look at
3467 * @param int $oldid The revision id being viewed. If not given or 0, latest revision is assumed.
3469 public function clearNotification( &$title, $oldid = 0 ) {
3470 global $wgUseEnotif, $wgShowUpdatedMarker;
3472 // Do nothing if the database is locked to writes
3473 if ( wfReadOnly() ) {
3477 // Do nothing if not allowed to edit the watchlist
3478 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
3482 // If we're working on user's talk page, we should update the talk page message indicator
3483 if ( $title->getNamespace() == NS_USER_TALK
&& $title->getText() == $this->getName() ) {
3484 if ( !Hooks
::run( 'UserClearNewTalkNotification', array( &$this, $oldid ) ) ) {
3489 // Try to update the DB post-send and only if needed...
3490 DeferredUpdates
::addCallableUpdate( function() use ( $that, $title, $oldid ) {
3491 if ( !$that->getNewtalk() ) {
3492 return; // no notifications to clear
3495 // Delete the last notifications (they stack up)
3496 $that->setNewtalk( false );
3498 // If there is a new, unseen, revision, use its timestamp
3500 ?
$title->getNextRevisionID( $oldid, Title
::GAID_FOR_UPDATE
)
3503 $that->setNewtalk( true, Revision
::newFromId( $nextid ) );
3508 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3512 if ( $this->isAnon() ) {
3513 // Nothing else to do...
3517 // Only update the timestamp if the page is being watched.
3518 // The query to find out if it is watched is cached both in memcached and per-invocation,
3519 // and when it does have to be executed, it can be on a slave
3520 // If this is the user's newtalk page, we always update the timestamp
3522 if ( $title->getNamespace() == NS_USER_TALK
&& $title->getText() == $this->getName() ) {
3526 $this->getWatchedItem( $title )->resetNotificationTimestamp(
3532 * Resets all of the given user's page-change notification timestamps.
3533 * If e-notif e-mails are on, they will receive notification mails on
3534 * the next change of any watched page.
3535 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3537 public function clearAllNotifications() {
3538 if ( wfReadOnly() ) {
3542 // Do nothing if not allowed to edit the watchlist
3543 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
3547 global $wgUseEnotif, $wgShowUpdatedMarker;
3548 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3549 $this->setNewtalk( false );
3552 $id = $this->getId();
3554 $dbw = wfGetDB( DB_MASTER
);
3555 $dbw->update( 'watchlist',
3556 array( /* SET */ 'wl_notificationtimestamp' => null ),
3557 array( /* WHERE */ 'wl_user' => $id, 'wl_notificationtimestamp IS NOT NULL' ),
3560 // We also need to clear here the "you have new message" notification for the own user_talk page;
3561 // it's cleared one page view later in WikiPage::doViewUpdates().
3566 * Set a cookie on the user's client. Wrapper for
3567 * WebResponse::setCookie
3568 * @deprecated since 1.27
3569 * @param string $name Name of the cookie to set
3570 * @param string $value Value to set
3571 * @param int $exp Expiration time, as a UNIX time value;
3572 * if 0 or not specified, use the default $wgCookieExpiration
3573 * @param bool $secure
3574 * true: Force setting the secure attribute when setting the cookie
3575 * false: Force NOT setting the secure attribute when setting the cookie
3576 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3577 * @param array $params Array of options sent passed to WebResponse::setcookie()
3578 * @param WebRequest|null $request WebRequest object to use; $wgRequest will be used if null
3581 protected function setCookie(
3582 $name, $value, $exp = 0, $secure = null, $params = array(), $request = null
3584 wfDeprecated( __METHOD__
, '1.27' );
3585 if ( $request === null ) {
3586 $request = $this->getRequest();
3588 $params['secure'] = $secure;
3589 $request->response()->setCookie( $name, $value, $exp, $params );
3593 * Clear a cookie on the user's client
3594 * @deprecated since 1.27
3595 * @param string $name Name of the cookie to clear
3596 * @param bool $secure
3597 * true: Force setting the secure attribute when setting the cookie
3598 * false: Force NOT setting the secure attribute when setting the cookie
3599 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3600 * @param array $params Array of options sent passed to WebResponse::setcookie()
3602 protected function clearCookie( $name, $secure = null, $params = array() ) {
3603 wfDeprecated( __METHOD__
, '1.27' );
3604 $this->setCookie( $name, '', time() - 86400, $secure, $params );
3608 * Set an extended login cookie on the user's client. The expiry of the cookie
3609 * is controlled by the $wgExtendedLoginCookieExpiration configuration
3612 * @see User::setCookie
3614 * @deprecated since 1.27
3615 * @param string $name Name of the cookie to set
3616 * @param string $value Value to set
3617 * @param bool $secure
3618 * true: Force setting the secure attribute when setting the cookie
3619 * false: Force NOT setting the secure attribute when setting the cookie
3620 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3622 protected function setExtendedLoginCookie( $name, $value, $secure ) {
3623 global $wgExtendedLoginCookieExpiration, $wgCookieExpiration;
3625 wfDeprecated( __METHOD__
, '1.27' );
3628 $exp +
= $wgExtendedLoginCookieExpiration !== null
3629 ?
$wgExtendedLoginCookieExpiration
3630 : $wgCookieExpiration;
3632 $this->setCookie( $name, $value, $exp, $secure );
3636 * Persist this user's session (e.g. set cookies)
3638 * @param WebRequest|null $request WebRequest object to use; $wgRequest will be used if null
3640 * @param bool $secure Whether to force secure/insecure cookies or use default
3641 * @param bool $rememberMe Whether to add a Token cookie for elongated sessions
3643 public function setCookies( $request = null, $secure = null, $rememberMe = false ) {
3645 if ( 0 == $this->mId
) {
3649 $session = $this->getRequest()->getSession();
3650 if ( $request && $session->getRequest() !== $request ) {
3651 $session = $session->sessionWithRequest( $request );
3653 $delay = $session->delaySave();
3655 if ( !$session->getUser()->equals( $this ) ) {
3656 if ( !$session->canSetUser() ) {
3657 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
3658 ->warning( __METHOD__
.
3659 ": Cannot save user \"$this\" to a user \"{$session->getUser()}\"'s immutable session"
3663 $session->setUser( $this );
3666 $session->setRememberUser( $rememberMe );
3667 if ( $secure !== null ) {
3668 $session->setForceHTTPS( $secure );
3671 $session->persist();
3673 ScopedCallback
::consume( $delay );
3677 * Log this user out.
3679 public function logout() {
3680 if ( Hooks
::run( 'UserLogout', array( &$this ) ) ) {
3686 * Clear the user's session, and reset the instance cache.
3689 public function doLogout() {
3690 $session = $this->getRequest()->getSession();
3691 if ( !$session->canSetUser() ) {
3692 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
3693 ->warning( __METHOD__
. ": Cannot log out of an immutable session" );
3694 } elseif ( !$session->getUser()->equals( $this ) ) {
3695 \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' )
3696 ->warning( __METHOD__
.
3697 ": Cannot log user \"$this\" out of a user \"{$session->getUser()}\"'s session"
3699 // But we still may as well make this user object anon
3700 $this->clearInstanceCache( 'defaults' );
3702 $this->clearInstanceCache( 'defaults' );
3703 $delay = $session->delaySave();
3704 $session->setLoggedOutTimestamp( time() );
3705 $session->setUser( new User
);
3706 $session->set( 'wsUserID', 0 ); // Other code expects this
3707 ScopedCallback
::consume( $delay );
3712 * Save this user's settings into the database.
3713 * @todo Only rarely do all these fields need to be set!
3715 public function saveSettings() {
3716 if ( wfReadOnly() ) {
3717 // @TODO: caller should deal with this instead!
3718 // This should really just be an exception.
3719 MWExceptionHandler
::logException( new DBExpectedError(
3721 "Could not update user with ID '{$this->mId}'; DB is read-only."
3727 if ( 0 == $this->mId
) {
3731 // Get a new user_touched that is higher than the old one.
3732 // This will be used for a CAS check as a last-resort safety
3733 // check against race conditions and slave lag.
3734 $oldTouched = $this->mTouched
;
3735 $newTouched = $this->newTouchedTimestamp();
3737 $dbw = wfGetDB( DB_MASTER
);
3738 $dbw->update( 'user',
3740 'user_name' => $this->mName
,
3741 'user_real_name' => $this->mRealName
,
3742 'user_email' => $this->mEmail
,
3743 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated
),
3744 'user_touched' => $dbw->timestamp( $newTouched ),
3745 'user_token' => strval( $this->mToken
),
3746 'user_email_token' => $this->mEmailToken
,
3747 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires
),
3748 ), array( /* WHERE */
3749 'user_id' => $this->mId
,
3750 'user_touched' => $dbw->timestamp( $oldTouched ) // CAS check
3754 if ( !$dbw->affectedRows() ) {
3755 // Maybe the problem was a missed cache update; clear it to be safe
3756 $this->clearSharedCache( 'refresh' );
3757 // User was changed in the meantime or loaded with stale data
3758 $from = ( $this->queryFlagsUsed
& self
::READ_LATEST
) ?
'master' : 'slave';
3759 throw new MWException(
3760 "CAS update failed on user_touched for user ID '{$this->mId}' (read from $from);" .
3761 " the version of the user to be saved is older than the current version."
3765 $this->mTouched
= $newTouched;
3766 $this->saveOptions();
3768 Hooks
::run( 'UserSaveSettings', array( $this ) );
3769 $this->clearSharedCache();
3770 $this->getUserPage()->invalidateCache();
3774 * If only this user's username is known, and it exists, return the user ID.
3776 * @param int $flags Bitfield of User:READ_* constants; useful for existence checks
3779 public function idForName( $flags = 0 ) {
3780 $s = trim( $this->getName() );
3785 $db = ( ( $flags & self
::READ_LATEST
) == self
::READ_LATEST
)
3786 ?
wfGetDB( DB_MASTER
)
3787 : wfGetDB( DB_SLAVE
);
3789 $options = ( ( $flags & self
::READ_LOCKING
) == self
::READ_LOCKING
)
3790 ?
array( 'LOCK IN SHARE MODE' )
3793 $id = $db->selectField( 'user',
3794 'user_id', array( 'user_name' => $s ), __METHOD__
, $options );
3800 * Add a user to the database, return the user object
3802 * @param string $name Username to add
3803 * @param array $params Array of Strings Non-default parameters to save to
3804 * the database as user_* fields:
3805 * - email: The user's email address.
3806 * - email_authenticated: The email authentication timestamp.
3807 * - real_name: The user's real name.
3808 * - options: An associative array of non-default options.
3809 * - token: Random authentication token. Do not set.
3810 * - registration: Registration timestamp. Do not set.
3812 * @return User|null User object, or null if the username already exists.
3814 public static function createNew( $name, $params = array() ) {
3815 foreach ( array( 'password', 'newpassword', 'newpass_time', 'password_expires' ) as $field ) {
3816 if ( isset( $params[$field] ) ) {
3817 wfDeprecated( __METHOD__
. " with param '$field'", '1.27' );
3818 unset( $params[$field] );
3824 $user->setToken(); // init token
3825 if ( isset( $params['options'] ) ) {
3826 $user->mOptions
= $params['options'] +
(array)$user->mOptions
;
3827 unset( $params['options'] );
3829 $dbw = wfGetDB( DB_MASTER
);
3830 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
3832 $noPass = PasswordFactory
::newInvalidPassword()->toString();
3835 'user_id' => $seqVal,
3836 'user_name' => $name,
3837 'user_password' => $noPass,
3838 'user_newpassword' => $noPass,
3839 'user_email' => $user->mEmail
,
3840 'user_email_authenticated' => $dbw->timestampOrNull( $user->mEmailAuthenticated
),
3841 'user_real_name' => $user->mRealName
,
3842 'user_token' => strval( $user->mToken
),
3843 'user_registration' => $dbw->timestamp( $user->mRegistration
),
3844 'user_editcount' => 0,
3845 'user_touched' => $dbw->timestamp( $user->newTouchedTimestamp() ),
3847 foreach ( $params as $name => $value ) {
3848 $fields["user_$name"] = $value;
3850 $dbw->insert( 'user', $fields, __METHOD__
, array( 'IGNORE' ) );
3851 if ( $dbw->affectedRows() ) {
3852 $newUser = User
::newFromId( $dbw->insertId() );
3860 * Add this existing user object to the database. If the user already
3861 * exists, a fatal status object is returned, and the user object is
3862 * initialised with the data from the database.
3864 * Previously, this function generated a DB error due to a key conflict
3865 * if the user already existed. Many extension callers use this function
3866 * in code along the lines of:
3868 * $user = User::newFromName( $name );
3869 * if ( !$user->isLoggedIn() ) {
3870 * $user->addToDatabase();
3872 * // do something with $user...
3874 * However, this was vulnerable to a race condition (bug 16020). By
3875 * initialising the user object if the user exists, we aim to support this
3876 * calling sequence as far as possible.
3878 * Note that if the user exists, this function will acquire a write lock,
3879 * so it is still advisable to make the call conditional on isLoggedIn(),
3880 * and to commit the transaction after calling.
3882 * @throws MWException
3885 public function addToDatabase() {
3887 if ( !$this->mToken
) {
3888 $this->setToken(); // init token
3891 $this->mTouched
= $this->newTouchedTimestamp();
3893 $noPass = PasswordFactory
::newInvalidPassword()->toString();
3895 $dbw = wfGetDB( DB_MASTER
);
3896 $inWrite = $dbw->writesOrCallbacksPending();
3897 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
3898 $dbw->insert( 'user',
3900 'user_id' => $seqVal,
3901 'user_name' => $this->mName
,
3902 'user_password' => $noPass,
3903 'user_newpassword' => $noPass,
3904 'user_email' => $this->mEmail
,
3905 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated
),
3906 'user_real_name' => $this->mRealName
,
3907 'user_token' => strval( $this->mToken
),
3908 'user_registration' => $dbw->timestamp( $this->mRegistration
),
3909 'user_editcount' => 0,
3910 'user_touched' => $dbw->timestamp( $this->mTouched
),
3914 if ( !$dbw->affectedRows() ) {
3915 // The queries below cannot happen in the same REPEATABLE-READ snapshot.
3916 // Handle this by COMMIT, if possible, or by LOCK IN SHARE MODE otherwise.
3918 // Can't commit due to pending writes that may need atomicity.
3919 // This may cause some lock contention unlike the case below.
3920 $options = array( 'LOCK IN SHARE MODE' );
3921 $flags = self
::READ_LOCKING
;
3923 // Often, this case happens early in views before any writes when
3924 // using CentralAuth. It's should be OK to commit and break the snapshot.
3925 $dbw->commit( __METHOD__
, 'flush' );
3927 $flags = self
::READ_LATEST
;
3929 $this->mId
= $dbw->selectField( 'user', 'user_id',
3930 array( 'user_name' => $this->mName
), __METHOD__
, $options );
3933 if ( $this->loadFromDatabase( $flags ) ) {
3938 throw new MWException( __METHOD__
. ": hit a key conflict attempting " .
3939 "to insert user '{$this->mName}' row, but it was not present in select!" );
3941 return Status
::newFatal( 'userexists' );
3943 $this->mId
= $dbw->insertId();
3944 self
::$idCacheByName[$this->mName
] = $this->mId
;
3946 // Clear instance cache other than user table data, which is already accurate
3947 $this->clearInstanceCache();
3949 $this->saveOptions();
3950 return Status
::newGood();
3954 * If this user is logged-in and blocked,
3955 * block any IP address they've successfully logged in from.
3956 * @return bool A block was spread
3958 public function spreadAnyEditBlock() {
3959 if ( $this->isLoggedIn() && $this->isBlocked() ) {
3960 return $this->spreadBlock();
3966 * If this (non-anonymous) user is blocked,
3967 * block the IP address they've successfully logged in from.
3968 * @return bool A block was spread
3970 protected function spreadBlock() {
3971 wfDebug( __METHOD__
. "()\n" );
3973 if ( $this->mId
== 0 ) {
3977 $userblock = Block
::newFromTarget( $this->getName() );
3978 if ( !$userblock ) {
3982 return (bool)$userblock->doAutoblock( $this->getRequest()->getIP() );
3986 * Get whether the user is explicitly blocked from account creation.
3987 * @return bool|Block
3989 public function isBlockedFromCreateAccount() {
3990 $this->getBlockedStatus();
3991 if ( $this->mBlock
&& $this->mBlock
->prevents( 'createaccount' ) ) {
3992 return $this->mBlock
;
3995 # bug 13611: if the IP address the user is trying to create an account from is
3996 # blocked with createaccount disabled, prevent new account creation there even
3997 # when the user is logged in
3998 if ( $this->mBlockedFromCreateAccount
=== false && !$this->isAllowed( 'ipblock-exempt' ) ) {
3999 $this->mBlockedFromCreateAccount
= Block
::newFromTarget( null, $this->getRequest()->getIP() );
4001 return $this->mBlockedFromCreateAccount
instanceof Block
4002 && $this->mBlockedFromCreateAccount
->prevents( 'createaccount' )
4003 ?
$this->mBlockedFromCreateAccount
4008 * Get whether the user is blocked from using Special:Emailuser.
4011 public function isBlockedFromEmailuser() {
4012 $this->getBlockedStatus();
4013 return $this->mBlock
&& $this->mBlock
->prevents( 'sendemail' );
4017 * Get whether the user is allowed to create an account.
4020 public function isAllowedToCreateAccount() {
4021 return $this->isAllowed( 'createaccount' ) && !$this->isBlockedFromCreateAccount();
4025 * Get this user's personal page title.
4027 * @return Title User's personal page title
4029 public function getUserPage() {
4030 return Title
::makeTitle( NS_USER
, $this->getName() );
4034 * Get this user's talk page title.
4036 * @return Title User's talk page title
4038 public function getTalkPage() {
4039 $title = $this->getUserPage();
4040 return $title->getTalkPage();
4044 * Determine whether the user is a newbie. Newbies are either
4045 * anonymous IPs, or the most recently created accounts.
4048 public function isNewbie() {
4049 return !$this->isAllowed( 'autoconfirmed' );
4053 * Check to see if the given clear-text password is one of the accepted passwords
4054 * @deprecated since 1.27. AuthManager is coming.
4055 * @param string $password User password
4056 * @return bool True if the given password is correct, otherwise False
4058 public function checkPassword( $password ) {
4059 global $wgAuth, $wgLegacyEncoding;
4063 // Some passwords will give a fatal Status, which means there is
4064 // some sort of technical or security reason for this password to
4065 // be completely invalid and should never be checked (e.g., T64685)
4066 if ( !$this->checkPasswordValidity( $password )->isOK() ) {
4070 // Certain authentication plugins do NOT want to save
4071 // domain passwords in a mysql database, so we should
4072 // check this (in case $wgAuth->strict() is false).
4073 if ( $wgAuth->authenticate( $this->getName(), $password ) ) {
4075 } elseif ( $wgAuth->strict() ) {
4076 // Auth plugin doesn't allow local authentication
4078 } elseif ( $wgAuth->strictUserAuth( $this->getName() ) ) {
4079 // Auth plugin doesn't allow local authentication for this user name
4083 $passwordFactory = new PasswordFactory();
4084 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
4085 $db = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
4086 ?
wfGetDB( DB_MASTER
)
4087 : wfGetDB( DB_SLAVE
);
4090 $mPassword = $passwordFactory->newFromCiphertext( $db->selectField(
4091 'user', 'user_password', array( 'user_id' => $this->getId() ), __METHOD__
4093 } catch ( PasswordError
$e ) {
4094 wfDebug( 'Invalid password hash found in database.' );
4095 $mPassword = PasswordFactory
::newInvalidPassword();
4098 if ( !$mPassword->equals( $password ) ) {
4099 if ( $wgLegacyEncoding ) {
4100 // Some wikis were converted from ISO 8859-1 to UTF-8, the passwords can't be converted
4101 // Check for this with iconv
4102 $cp1252Password = iconv( 'UTF-8', 'WINDOWS-1252//TRANSLIT', $password );
4103 if ( $cp1252Password === $password ||
!$mPassword->equals( $cp1252Password ) ) {
4111 if ( $passwordFactory->needsUpdate( $mPassword ) && !wfReadOnly() ) {
4112 $this->setPasswordInternal( $password );
4119 * Check if the given clear-text password matches the temporary password
4120 * sent by e-mail for password reset operations.
4122 * @deprecated since 1.27. AuthManager is coming.
4123 * @param string $plaintext
4124 * @return bool True if matches, false otherwise
4126 public function checkTemporaryPassword( $plaintext ) {
4127 global $wgNewPasswordExpiry;
4131 $passwordFactory = new PasswordFactory();
4132 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
4133 $db = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
4134 ?
wfGetDB( DB_MASTER
)
4135 : wfGetDB( DB_SLAVE
);
4137 $row = $db->selectRow(
4139 array( 'user_newpassword', 'user_newpass_time' ),
4140 array( 'user_id' => $this->getId() ),
4144 $newPassword = $passwordFactory->newFromCiphertext( $row->user_newpassword
);
4145 } catch ( PasswordError
$e ) {
4146 wfDebug( 'Invalid password hash found in database.' );
4147 $newPassword = PasswordFactory
::newInvalidPassword();
4150 if ( $newPassword->equals( $plaintext ) ) {
4151 if ( is_null( $row->user_newpass_time
) ) {
4154 $expiry = wfTimestamp( TS_UNIX
, $row->user_newpass_time
) +
$wgNewPasswordExpiry;
4155 return ( time() < $expiry );
4162 * Initialize (if necessary) and return a session token value
4163 * which can be used in edit forms to show that the user's
4164 * login credentials aren't being hijacked with a foreign form
4168 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4169 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4170 * @return MediaWiki\\Session\\Token The new edit token
4172 public function getEditTokenObject( $salt = '', $request = null ) {
4173 if ( $this->isAnon() ) {
4174 return new LoggedOutEditToken();
4178 $request = $this->getRequest();
4180 return $request->getSession()->getToken( $salt );
4184 * Initialize (if necessary) and return a session token value
4185 * which can be used in edit forms to show that the user's
4186 * login credentials aren't being hijacked with a foreign form
4190 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4191 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4192 * @return string The new edit token
4194 public function getEditToken( $salt = '', $request = null ) {
4195 return $this->getEditTokenObject( $salt, $request )->toString();
4199 * Get the embedded timestamp from a token.
4200 * @deprecated since 1.27, use \\MediaWiki\\Session\\Token::getTimestamp instead.
4201 * @param string $val Input token
4204 public static function getEditTokenTimestamp( $val ) {
4205 wfDeprecated( __METHOD__
, '1.27' );
4206 return MediaWiki\Session\Token
::getTimestamp( $val );
4210 * Check given value against the token value stored in the session.
4211 * A match should confirm that the form was submitted from the
4212 * user's own login session, not a form submission from a third-party
4215 * @param string $val Input value to compare
4216 * @param string $salt Optional function-specific data for hashing
4217 * @param WebRequest|null $request Object to use or null to use $wgRequest
4218 * @param int $maxage Fail tokens older than this, in seconds
4219 * @return bool Whether the token matches
4221 public function matchEditToken( $val, $salt = '', $request = null, $maxage = null ) {
4222 return $this->getEditTokenObject( $salt, $request )->match( $val, $maxage );
4226 * Check given value against the token value stored in the session,
4227 * ignoring the suffix.
4229 * @param string $val Input value to compare
4230 * @param string $salt Optional function-specific data for hashing
4231 * @param WebRequest|null $request Object to use or null to use $wgRequest
4232 * @param int $maxage Fail tokens older than this, in seconds
4233 * @return bool Whether the token matches
4235 public function matchEditTokenNoSuffix( $val, $salt = '', $request = null, $maxage = null ) {
4236 $val = substr( $val, 0, strspn( $val, '0123456789abcdef' ) ) . self
::EDIT_TOKEN_SUFFIX
;
4237 return $this->matchEditToken( $val, $salt, $request, $maxage );
4241 * Generate a new e-mail confirmation token and send a confirmation/invalidation
4242 * mail to the user's given address.
4244 * @param string $type Message to send, either "created", "changed" or "set"
4247 public function sendConfirmationMail( $type = 'created' ) {
4249 $expiration = null; // gets passed-by-ref and defined in next line.
4250 $token = $this->confirmationToken( $expiration );
4251 $url = $this->confirmationTokenUrl( $token );
4252 $invalidateURL = $this->invalidationTokenUrl( $token );
4253 $this->saveSettings();
4255 if ( $type == 'created' ||
$type === false ) {
4256 $message = 'confirmemail_body';
4257 } elseif ( $type === true ) {
4258 $message = 'confirmemail_body_changed';
4260 // Messages: confirmemail_body_changed, confirmemail_body_set
4261 $message = 'confirmemail_body_' . $type;
4264 return $this->sendMail( wfMessage( 'confirmemail_subject' )->text(),
4265 wfMessage( $message,
4266 $this->getRequest()->getIP(),
4269 $wgLang->userTimeAndDate( $expiration, $this ),
4271 $wgLang->userDate( $expiration, $this ),
4272 $wgLang->userTime( $expiration, $this ) )->text() );
4276 * Send an e-mail to this user's account. Does not check for
4277 * confirmed status or validity.
4279 * @param string $subject Message subject
4280 * @param string $body Message body
4281 * @param User|null $from Optional sending user; if unspecified, default
4282 * $wgPasswordSender will be used.
4283 * @param string $replyto Reply-To address
4286 public function sendMail( $subject, $body, $from = null, $replyto = null ) {
4287 global $wgPasswordSender;
4289 if ( $from instanceof User
) {
4290 $sender = MailAddress
::newFromUser( $from );
4292 $sender = new MailAddress( $wgPasswordSender,
4293 wfMessage( 'emailsender' )->inContentLanguage()->text() );
4295 $to = MailAddress
::newFromUser( $this );
4297 return UserMailer
::send( $to, $sender, $subject, $body, array(
4298 'replyTo' => $replyto,
4303 * Generate, store, and return a new e-mail confirmation code.
4304 * A hash (unsalted, since it's used as a key) is stored.
4306 * @note Call saveSettings() after calling this function to commit
4307 * this change to the database.
4309 * @param string &$expiration Accepts the expiration time
4310 * @return string New token
4312 protected function confirmationToken( &$expiration ) {
4313 global $wgUserEmailConfirmationTokenExpiry;
4315 $expires = $now +
$wgUserEmailConfirmationTokenExpiry;
4316 $expiration = wfTimestamp( TS_MW
, $expires );
4318 $token = MWCryptRand
::generateHex( 32 );
4319 $hash = md5( $token );
4320 $this->mEmailToken
= $hash;
4321 $this->mEmailTokenExpires
= $expiration;
4326 * Return a URL the user can use to confirm their email address.
4327 * @param string $token Accepts the email confirmation token
4328 * @return string New token URL
4330 protected function confirmationTokenUrl( $token ) {
4331 return $this->getTokenUrl( 'ConfirmEmail', $token );
4335 * Return a URL the user can use to invalidate their email address.
4336 * @param string $token Accepts the email confirmation token
4337 * @return string New token URL
4339 protected function invalidationTokenUrl( $token ) {
4340 return $this->getTokenUrl( 'InvalidateEmail', $token );
4344 * Internal function to format the e-mail validation/invalidation URLs.
4345 * This uses a quickie hack to use the
4346 * hardcoded English names of the Special: pages, for ASCII safety.
4348 * @note Since these URLs get dropped directly into emails, using the
4349 * short English names avoids insanely long URL-encoded links, which
4350 * also sometimes can get corrupted in some browsers/mailers
4351 * (bug 6957 with Gmail and Internet Explorer).
4353 * @param string $page Special page
4354 * @param string $token Token
4355 * @return string Formatted URL
4357 protected function getTokenUrl( $page, $token ) {
4358 // Hack to bypass localization of 'Special:'
4359 $title = Title
::makeTitle( NS_MAIN
, "Special:$page/$token" );
4360 return $title->getCanonicalURL();
4364 * Mark the e-mail address confirmed.
4366 * @note Call saveSettings() after calling this function to commit the change.
4370 public function confirmEmail() {
4371 // Check if it's already confirmed, so we don't touch the database
4372 // and fire the ConfirmEmailComplete hook on redundant confirmations.
4373 if ( !$this->isEmailConfirmed() ) {
4374 $this->setEmailAuthenticationTimestamp( wfTimestampNow() );
4375 Hooks
::run( 'ConfirmEmailComplete', array( $this ) );
4381 * Invalidate the user's e-mail confirmation, and unauthenticate the e-mail
4382 * address if it was already confirmed.
4384 * @note Call saveSettings() after calling this function to commit the change.
4385 * @return bool Returns true
4387 public function invalidateEmail() {
4389 $this->mEmailToken
= null;
4390 $this->mEmailTokenExpires
= null;
4391 $this->setEmailAuthenticationTimestamp( null );
4393 Hooks
::run( 'InvalidateEmailComplete', array( $this ) );
4398 * Set the e-mail authentication timestamp.
4399 * @param string $timestamp TS_MW timestamp
4401 public function setEmailAuthenticationTimestamp( $timestamp ) {
4403 $this->mEmailAuthenticated
= $timestamp;
4404 Hooks
::run( 'UserSetEmailAuthenticationTimestamp', array( $this, &$this->mEmailAuthenticated
) );
4408 * Is this user allowed to send e-mails within limits of current
4409 * site configuration?
4412 public function canSendEmail() {
4413 global $wgEnableEmail, $wgEnableUserEmail;
4414 if ( !$wgEnableEmail ||
!$wgEnableUserEmail ||
!$this->isAllowed( 'sendemail' ) ) {
4417 $canSend = $this->isEmailConfirmed();
4418 Hooks
::run( 'UserCanSendEmail', array( &$this, &$canSend ) );
4423 * Is this user allowed to receive e-mails within limits of current
4424 * site configuration?
4427 public function canReceiveEmail() {
4428 return $this->isEmailConfirmed() && !$this->getOption( 'disablemail' );
4432 * Is this user's e-mail address valid-looking and confirmed within
4433 * limits of the current site configuration?
4435 * @note If $wgEmailAuthentication is on, this may require the user to have
4436 * confirmed their address by returning a code or using a password
4437 * sent to the address from the wiki.
4441 public function isEmailConfirmed() {
4442 global $wgEmailAuthentication;
4445 if ( Hooks
::run( 'EmailConfirmed', array( &$this, &$confirmed ) ) ) {
4446 if ( $this->isAnon() ) {
4449 if ( !Sanitizer
::validateEmail( $this->mEmail
) ) {
4452 if ( $wgEmailAuthentication && !$this->getEmailAuthenticationTimestamp() ) {
4462 * Check whether there is an outstanding request for e-mail confirmation.
4465 public function isEmailConfirmationPending() {
4466 global $wgEmailAuthentication;
4467 return $wgEmailAuthentication &&
4468 !$this->isEmailConfirmed() &&
4469 $this->mEmailToken
&&
4470 $this->mEmailTokenExpires
> wfTimestamp();
4474 * Get the timestamp of account creation.
4476 * @return string|bool|null Timestamp of account creation, false for
4477 * non-existent/anonymous user accounts, or null if existing account
4478 * but information is not in database.
4480 public function getRegistration() {
4481 if ( $this->isAnon() ) {
4485 return $this->mRegistration
;
4489 * Get the timestamp of the first edit
4491 * @return string|bool Timestamp of first edit, or false for
4492 * non-existent/anonymous user accounts.
4494 public function getFirstEditTimestamp() {
4495 if ( $this->getId() == 0 ) {
4496 return false; // anons
4498 $dbr = wfGetDB( DB_SLAVE
);
4499 $time = $dbr->selectField( 'revision', 'rev_timestamp',
4500 array( 'rev_user' => $this->getId() ),
4502 array( 'ORDER BY' => 'rev_timestamp ASC' )
4505 return false; // no edits
4507 return wfTimestamp( TS_MW
, $time );
4511 * Get the permissions associated with a given list of groups
4513 * @param array $groups Array of Strings List of internal group names
4514 * @return array Array of Strings List of permission key names for given groups combined
4516 public static function getGroupPermissions( $groups ) {
4517 global $wgGroupPermissions, $wgRevokePermissions;
4519 // grant every granted permission first
4520 foreach ( $groups as $group ) {
4521 if ( isset( $wgGroupPermissions[$group] ) ) {
4522 $rights = array_merge( $rights,
4523 // array_filter removes empty items
4524 array_keys( array_filter( $wgGroupPermissions[$group] ) ) );
4527 // now revoke the revoked permissions
4528 foreach ( $groups as $group ) {
4529 if ( isset( $wgRevokePermissions[$group] ) ) {
4530 $rights = array_diff( $rights,
4531 array_keys( array_filter( $wgRevokePermissions[$group] ) ) );
4534 return array_unique( $rights );
4538 * Get all the groups who have a given permission
4540 * @param string $role Role to check
4541 * @return array Array of Strings List of internal group names with the given permission
4543 public static function getGroupsWithPermission( $role ) {
4544 global $wgGroupPermissions;
4545 $allowedGroups = array();
4546 foreach ( array_keys( $wgGroupPermissions ) as $group ) {
4547 if ( self
::groupHasPermission( $group, $role ) ) {
4548 $allowedGroups[] = $group;
4551 return $allowedGroups;
4555 * Check, if the given group has the given permission
4557 * If you're wanting to check whether all users have a permission, use
4558 * User::isEveryoneAllowed() instead. That properly checks if it's revoked
4562 * @param string $group Group to check
4563 * @param string $role Role to check
4566 public static function groupHasPermission( $group, $role ) {
4567 global $wgGroupPermissions, $wgRevokePermissions;
4568 return isset( $wgGroupPermissions[$group][$role] ) && $wgGroupPermissions[$group][$role]
4569 && !( isset( $wgRevokePermissions[$group][$role] ) && $wgRevokePermissions[$group][$role] );
4573 * Check if all users may be assumed to have the given permission
4575 * We generally assume so if the right is granted to '*' and isn't revoked
4576 * on any group. It doesn't attempt to take grants or other extension
4577 * limitations on rights into account in the general case, though, as that
4578 * would require it to always return false and defeat the purpose.
4579 * Specifically, session-based rights restrictions (such as OAuth or bot
4580 * passwords) are applied based on the current session.
4583 * @param string $right Right to check
4586 public static function isEveryoneAllowed( $right ) {
4587 global $wgGroupPermissions, $wgRevokePermissions;
4588 static $cache = array();
4590 // Use the cached results, except in unit tests which rely on
4591 // being able change the permission mid-request
4592 if ( isset( $cache[$right] ) && !defined( 'MW_PHPUNIT_TEST' ) ) {
4593 return $cache[$right];
4596 if ( !isset( $wgGroupPermissions['*'][$right] ) ||
!$wgGroupPermissions['*'][$right] ) {
4597 $cache[$right] = false;
4601 // If it's revoked anywhere, then everyone doesn't have it
4602 foreach ( $wgRevokePermissions as $rights ) {
4603 if ( isset( $rights[$right] ) && $rights[$right] ) {
4604 $cache[$right] = false;
4609 // Remove any rights that aren't allowed to the global-session user
4610 $allowedRights = SessionManager
::getGlobalSession()->getAllowedUserRights();
4611 if ( $allowedRights !== null && !in_array( $right, $allowedRights, true ) ) {
4612 $cache[$right] = false;
4616 // Allow extensions to say false
4617 if ( !Hooks
::run( 'UserIsEveryoneAllowed', array( $right ) ) ) {
4618 $cache[$right] = false;
4622 $cache[$right] = true;
4627 * Get the localized descriptive name for a group, if it exists
4629 * @param string $group Internal group name
4630 * @return string Localized descriptive group name
4632 public static function getGroupName( $group ) {
4633 $msg = wfMessage( "group-$group" );
4634 return $msg->isBlank() ?
$group : $msg->text();
4638 * Get the localized descriptive name for a member of a group, if it exists
4640 * @param string $group Internal group name
4641 * @param string $username Username for gender (since 1.19)
4642 * @return string Localized name for group member
4644 public static function getGroupMember( $group, $username = '#' ) {
4645 $msg = wfMessage( "group-$group-member", $username );
4646 return $msg->isBlank() ?
$group : $msg->text();
4650 * Return the set of defined explicit groups.
4651 * The implicit groups (by default *, 'user' and 'autoconfirmed')
4652 * are not included, as they are defined automatically, not in the database.
4653 * @return array Array of internal group names
4655 public static function getAllGroups() {
4656 global $wgGroupPermissions, $wgRevokePermissions;
4658 array_merge( array_keys( $wgGroupPermissions ), array_keys( $wgRevokePermissions ) ),
4659 self
::getImplicitGroups()
4664 * Get a list of all available permissions.
4665 * @return string[] Array of permission names
4667 public static function getAllRights() {
4668 if ( self
::$mAllRights === false ) {
4669 global $wgAvailableRights;
4670 if ( count( $wgAvailableRights ) ) {
4671 self
::$mAllRights = array_unique( array_merge( self
::$mCoreRights, $wgAvailableRights ) );
4673 self
::$mAllRights = self
::$mCoreRights;
4675 Hooks
::run( 'UserGetAllRights', array( &self
::$mAllRights ) );
4677 return self
::$mAllRights;
4681 * Get a list of implicit groups
4682 * @return array Array of Strings Array of internal group names
4684 public static function getImplicitGroups() {
4685 global $wgImplicitGroups;
4687 $groups = $wgImplicitGroups;
4688 # Deprecated, use $wgImplicitGroups instead
4689 Hooks
::run( 'UserGetImplicitGroups', array( &$groups ), '1.25' );
4695 * Get the title of a page describing a particular group
4697 * @param string $group Internal group name
4698 * @return Title|bool Title of the page if it exists, false otherwise
4700 public static function getGroupPage( $group ) {
4701 $msg = wfMessage( 'grouppage-' . $group )->inContentLanguage();
4702 if ( $msg->exists() ) {
4703 $title = Title
::newFromText( $msg->text() );
4704 if ( is_object( $title ) ) {
4712 * Create a link to the group in HTML, if available;
4713 * else return the group name.
4715 * @param string $group Internal name of the group
4716 * @param string $text The text of the link
4717 * @return string HTML link to the group
4719 public static function makeGroupLinkHTML( $group, $text = '' ) {
4720 if ( $text == '' ) {
4721 $text = self
::getGroupName( $group );
4723 $title = self
::getGroupPage( $group );
4725 return Linker
::link( $title, htmlspecialchars( $text ) );
4727 return htmlspecialchars( $text );
4732 * Create a link to the group in Wikitext, if available;
4733 * else return the group name.
4735 * @param string $group Internal name of the group
4736 * @param string $text The text of the link
4737 * @return string Wikilink to the group
4739 public static function makeGroupLinkWiki( $group, $text = '' ) {
4740 if ( $text == '' ) {
4741 $text = self
::getGroupName( $group );
4743 $title = self
::getGroupPage( $group );
4745 $page = $title->getFullText();
4746 return "[[$page|$text]]";
4753 * Returns an array of the groups that a particular group can add/remove.
4755 * @param string $group The group to check for whether it can add/remove
4756 * @return array Array( 'add' => array( addablegroups ),
4757 * 'remove' => array( removablegroups ),
4758 * 'add-self' => array( addablegroups to self),
4759 * 'remove-self' => array( removable groups from self) )
4761 public static function changeableByGroup( $group ) {
4762 global $wgAddGroups, $wgRemoveGroups, $wgGroupsAddToSelf, $wgGroupsRemoveFromSelf;
4766 'remove' => array(),
4767 'add-self' => array(),
4768 'remove-self' => array()
4771 if ( empty( $wgAddGroups[$group] ) ) {
4772 // Don't add anything to $groups
4773 } elseif ( $wgAddGroups[$group] === true ) {
4774 // You get everything
4775 $groups['add'] = self
::getAllGroups();
4776 } elseif ( is_array( $wgAddGroups[$group] ) ) {
4777 $groups['add'] = $wgAddGroups[$group];
4780 // Same thing for remove
4781 if ( empty( $wgRemoveGroups[$group] ) ) {
4783 } elseif ( $wgRemoveGroups[$group] === true ) {
4784 $groups['remove'] = self
::getAllGroups();
4785 } elseif ( is_array( $wgRemoveGroups[$group] ) ) {
4786 $groups['remove'] = $wgRemoveGroups[$group];
4789 // Re-map numeric keys of AddToSelf/RemoveFromSelf to the 'user' key for backwards compatibility
4790 if ( empty( $wgGroupsAddToSelf['user'] ) ||
$wgGroupsAddToSelf['user'] !== true ) {
4791 foreach ( $wgGroupsAddToSelf as $key => $value ) {
4792 if ( is_int( $key ) ) {
4793 $wgGroupsAddToSelf['user'][] = $value;
4798 if ( empty( $wgGroupsRemoveFromSelf['user'] ) ||
$wgGroupsRemoveFromSelf['user'] !== true ) {
4799 foreach ( $wgGroupsRemoveFromSelf as $key => $value ) {
4800 if ( is_int( $key ) ) {
4801 $wgGroupsRemoveFromSelf['user'][] = $value;
4806 // Now figure out what groups the user can add to him/herself
4807 if ( empty( $wgGroupsAddToSelf[$group] ) ) {
4809 } elseif ( $wgGroupsAddToSelf[$group] === true ) {
4810 // No idea WHY this would be used, but it's there
4811 $groups['add-self'] = User
::getAllGroups();
4812 } elseif ( is_array( $wgGroupsAddToSelf[$group] ) ) {
4813 $groups['add-self'] = $wgGroupsAddToSelf[$group];
4816 if ( empty( $wgGroupsRemoveFromSelf[$group] ) ) {
4818 } elseif ( $wgGroupsRemoveFromSelf[$group] === true ) {
4819 $groups['remove-self'] = User
::getAllGroups();
4820 } elseif ( is_array( $wgGroupsRemoveFromSelf[$group] ) ) {
4821 $groups['remove-self'] = $wgGroupsRemoveFromSelf[$group];
4828 * Returns an array of groups that this user can add and remove
4829 * @return array Array( 'add' => array( addablegroups ),
4830 * 'remove' => array( removablegroups ),
4831 * 'add-self' => array( addablegroups to self),
4832 * 'remove-self' => array( removable groups from self) )
4834 public function changeableGroups() {
4835 if ( $this->isAllowed( 'userrights' ) ) {
4836 // This group gives the right to modify everything (reverse-
4837 // compatibility with old "userrights lets you change
4839 // Using array_merge to make the groups reindexed
4840 $all = array_merge( User
::getAllGroups() );
4844 'add-self' => array(),
4845 'remove-self' => array()
4849 // Okay, it's not so simple, we will have to go through the arrays
4852 'remove' => array(),
4853 'add-self' => array(),
4854 'remove-self' => array()
4856 $addergroups = $this->getEffectiveGroups();
4858 foreach ( $addergroups as $addergroup ) {
4859 $groups = array_merge_recursive(
4860 $groups, $this->changeableByGroup( $addergroup )
4862 $groups['add'] = array_unique( $groups['add'] );
4863 $groups['remove'] = array_unique( $groups['remove'] );
4864 $groups['add-self'] = array_unique( $groups['add-self'] );
4865 $groups['remove-self'] = array_unique( $groups['remove-self'] );
4871 * Deferred version of incEditCountImmediate()
4873 public function incEditCount() {
4875 wfGetDB( DB_MASTER
)->onTransactionPreCommitOrIdle( function() use ( $that ) {
4876 $that->incEditCountImmediate();
4881 * Increment the user's edit-count field.
4882 * Will have no effect for anonymous users.
4885 public function incEditCountImmediate() {
4886 if ( $this->isAnon() ) {
4890 $dbw = wfGetDB( DB_MASTER
);
4891 // No rows will be "affected" if user_editcount is NULL
4894 array( 'user_editcount=user_editcount+1' ),
4895 array( 'user_id' => $this->getId(), 'user_editcount IS NOT NULL' ),
4898 // Lazy initialization check...
4899 if ( $dbw->affectedRows() == 0 ) {
4900 // Now here's a goddamn hack...
4901 $dbr = wfGetDB( DB_SLAVE
);
4902 if ( $dbr !== $dbw ) {
4903 // If we actually have a slave server, the count is
4904 // at least one behind because the current transaction
4905 // has not been committed and replicated.
4906 $this->initEditCount( 1 );
4908 // But if DB_SLAVE is selecting the master, then the
4909 // count we just read includes the revision that was
4910 // just added in the working transaction.
4911 $this->initEditCount();
4914 // Edit count in user cache too
4915 $this->invalidateCache();
4919 * Initialize user_editcount from data out of the revision table
4921 * @param int $add Edits to add to the count from the revision table
4922 * @return int Number of edits
4924 protected function initEditCount( $add = 0 ) {
4925 // Pull from a slave to be less cruel to servers
4926 // Accuracy isn't the point anyway here
4927 $dbr = wfGetDB( DB_SLAVE
);
4928 $count = (int)$dbr->selectField(
4931 array( 'rev_user' => $this->getId() ),
4934 $count = $count +
$add;
4936 $dbw = wfGetDB( DB_MASTER
);
4939 array( 'user_editcount' => $count ),
4940 array( 'user_id' => $this->getId() ),
4948 * Get the description of a given right
4950 * @param string $right Right to query
4951 * @return string Localized description of the right
4953 public static function getRightDescription( $right ) {
4954 $key = "right-$right";
4955 $msg = wfMessage( $key );
4956 return $msg->isBlank() ?
$right : $msg->text();
4960 * Make a new-style password hash
4962 * @param string $password Plain-text password
4963 * @param bool|string $salt Optional salt, may be random or the user ID.
4964 * If unspecified or false, will generate one automatically
4965 * @return string Password hash
4966 * @deprecated since 1.24, use Password class
4968 public static function crypt( $password, $salt = false ) {
4969 wfDeprecated( __METHOD__
, '1.24' );
4970 $passwordFactory = new PasswordFactory();
4971 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
4972 $hash = $passwordFactory->newFromPlaintext( $password );
4973 return $hash->toString();
4977 * Compare a password hash with a plain-text password. Requires the user
4978 * ID if there's a chance that the hash is an old-style hash.
4980 * @param string $hash Password hash
4981 * @param string $password Plain-text password to compare
4982 * @param string|bool $userId User ID for old-style password salt
4985 * @deprecated since 1.24, use Password class
4987 public static function comparePasswords( $hash, $password, $userId = false ) {
4988 wfDeprecated( __METHOD__
, '1.24' );
4990 // Check for *really* old password hashes that don't even have a type
4991 // The old hash format was just an md5 hex hash, with no type information
4992 if ( preg_match( '/^[0-9a-f]{32}$/', $hash ) ) {
4993 global $wgPasswordSalt;
4994 if ( $wgPasswordSalt ) {
4995 $password = ":B:{$userId}:{$hash}";
4997 $password = ":A:{$hash}";
5001 $passwordFactory = new PasswordFactory();
5002 $passwordFactory->init( RequestContext
::getMain()->getConfig() );
5003 $hash = $passwordFactory->newFromCiphertext( $hash );
5004 return $hash->equals( $password );
5008 * Add a newuser log entry for this user.
5009 * Before 1.19 the return value was always true.
5011 * @param string|bool $action Account creation type.
5012 * - String, one of the following values:
5013 * - 'create' for an anonymous user creating an account for himself.
5014 * This will force the action's performer to be the created user itself,
5015 * no matter the value of $wgUser
5016 * - 'create2' for a logged in user creating an account for someone else
5017 * - 'byemail' when the created user will receive its password by e-mail
5018 * - 'autocreate' when the user is automatically created (such as by CentralAuth).
5019 * - Boolean means whether the account was created by e-mail (deprecated):
5020 * - true will be converted to 'byemail'
5021 * - false will be converted to 'create' if this object is the same as
5022 * $wgUser and to 'create2' otherwise
5024 * @param string $reason User supplied reason
5026 * @return int|bool True if not $wgNewUserLog; otherwise ID of log item or 0 on failure
5028 public function addNewUserLogEntry( $action = false, $reason = '' ) {
5029 global $wgUser, $wgNewUserLog;
5030 if ( empty( $wgNewUserLog ) ) {
5031 return true; // disabled
5034 if ( $action === true ) {
5035 $action = 'byemail';
5036 } elseif ( $action === false ) {
5037 if ( $this->equals( $wgUser ) ) {
5040 $action = 'create2';
5044 if ( $action === 'create' ||
$action === 'autocreate' ) {
5047 $performer = $wgUser;
5050 $logEntry = new ManualLogEntry( 'newusers', $action );
5051 $logEntry->setPerformer( $performer );
5052 $logEntry->setTarget( $this->getUserPage() );
5053 $logEntry->setComment( $reason );
5054 $logEntry->setParameters( array(
5055 '4::userid' => $this->getId(),
5057 $logid = $logEntry->insert();
5059 if ( $action !== 'autocreate' ) {
5060 $logEntry->publish( $logid );
5067 * Add an autocreate newuser log entry for this user
5068 * Used by things like CentralAuth and perhaps other authplugins.
5069 * Consider calling addNewUserLogEntry() directly instead.
5073 public function addNewUserLogEntryAutoCreate() {
5074 $this->addNewUserLogEntry( 'autocreate' );
5080 * Load the user options either from cache, the database or an array
5082 * @param array $data Rows for the current user out of the user_properties table
5084 protected function loadOptions( $data = null ) {
5089 if ( $this->mOptionsLoaded
) {
5093 $this->mOptions
= self
::getDefaultOptions();
5095 if ( !$this->getId() ) {
5096 // For unlogged-in users, load language/variant options from request.
5097 // There's no need to do it for logged-in users: they can set preferences,
5098 // and handling of page content is done by $pageLang->getPreferredVariant() and such,
5099 // so don't override user's choice (especially when the user chooses site default).
5100 $variant = $wgContLang->getDefaultVariant();
5101 $this->mOptions
['variant'] = $variant;
5102 $this->mOptions
['language'] = $variant;
5103 $this->mOptionsLoaded
= true;
5107 // Maybe load from the object
5108 if ( !is_null( $this->mOptionOverrides
) ) {
5109 wfDebug( "User: loading options for user " . $this->getId() . " from override cache.\n" );
5110 foreach ( $this->mOptionOverrides
as $key => $value ) {
5111 $this->mOptions
[$key] = $value;
5114 if ( !is_array( $data ) ) {
5115 wfDebug( "User: loading options for user " . $this->getId() . " from database.\n" );
5116 // Load from database
5117 $dbr = ( $this->queryFlagsUsed
& self
::READ_LATEST
)
5118 ?
wfGetDB( DB_MASTER
)
5119 : wfGetDB( DB_SLAVE
);
5121 $res = $dbr->select(
5123 array( 'up_property', 'up_value' ),
5124 array( 'up_user' => $this->getId() ),
5128 $this->mOptionOverrides
= array();
5130 foreach ( $res as $row ) {
5131 $data[$row->up_property
] = $row->up_value
;
5134 foreach ( $data as $property => $value ) {
5135 $this->mOptionOverrides
[$property] = $value;
5136 $this->mOptions
[$property] = $value;
5140 $this->mOptionsLoaded
= true;
5142 Hooks
::run( 'UserLoadOptions', array( $this, &$this->mOptions
) );
5146 * Saves the non-default options for this user, as previously set e.g. via
5147 * setOption(), in the database's "user_properties" (preferences) table.
5148 * Usually used via saveSettings().
5150 protected function saveOptions() {
5151 $this->loadOptions();
5153 // Not using getOptions(), to keep hidden preferences in database
5154 $saveOptions = $this->mOptions
;
5156 // Allow hooks to abort, for instance to save to a global profile.
5157 // Reset options to default state before saving.
5158 if ( !Hooks
::run( 'UserSaveOptions', array( $this, &$saveOptions ) ) ) {
5162 $userId = $this->getId();
5164 $insert_rows = array(); // all the new preference rows
5165 foreach ( $saveOptions as $key => $value ) {
5166 // Don't bother storing default values
5167 $defaultOption = self
::getDefaultOption( $key );
5168 if ( ( $defaultOption === null && $value !== false && $value !== null )
5169 ||
$value != $defaultOption
5171 $insert_rows[] = array(
5172 'up_user' => $userId,
5173 'up_property' => $key,
5174 'up_value' => $value,
5179 $dbw = wfGetDB( DB_MASTER
);
5181 $res = $dbw->select( 'user_properties',
5182 array( 'up_property', 'up_value' ), array( 'up_user' => $userId ), __METHOD__
);
5184 // Find prior rows that need to be removed or updated. These rows will
5185 // all be deleted (the later so that INSERT IGNORE applies the new values).
5186 $keysDelete = array();
5187 foreach ( $res as $row ) {
5188 if ( !isset( $saveOptions[$row->up_property
] )
5189 ||
strcmp( $saveOptions[$row->up_property
], $row->up_value
) != 0
5191 $keysDelete[] = $row->up_property
;
5195 if ( count( $keysDelete ) ) {
5196 // Do the DELETE by PRIMARY KEY for prior rows.
5197 // In the past a very large portion of calls to this function are for setting
5198 // 'rememberpassword' for new accounts (a preference that has since been removed).
5199 // Doing a blanket per-user DELETE for new accounts with no rows in the table
5200 // caused gap locks on [max user ID,+infinity) which caused high contention since
5201 // updates would pile up on each other as they are for higher (newer) user IDs.
5202 // It might not be necessary these days, but it shouldn't hurt either.
5203 $dbw->delete( 'user_properties',
5204 array( 'up_user' => $userId, 'up_property' => $keysDelete ), __METHOD__
);
5206 // Insert the new preference rows
5207 $dbw->insert( 'user_properties', $insert_rows, __METHOD__
, array( 'IGNORE' ) );
5211 * Lazily instantiate and return a factory object for making passwords
5213 * @deprecated since 1.27, create a PasswordFactory directly instead
5214 * @return PasswordFactory
5216 public static function getPasswordFactory() {
5217 wfDeprecated( __METHOD__
, '1.27' );
5218 $ret = new PasswordFactory();
5219 $ret->init( RequestContext
::getMain()->getConfig() );
5224 * Provide an array of HTML5 attributes to put on an input element
5225 * intended for the user to enter a new password. This may include
5226 * required, title, and/or pattern, depending on $wgMinimalPasswordLength.
5228 * Do *not* use this when asking the user to enter his current password!
5229 * Regardless of configuration, users may have invalid passwords for whatever
5230 * reason (e.g., they were set before requirements were tightened up).
5231 * Only use it when asking for a new password, like on account creation or
5234 * Obviously, you still need to do server-side checking.
5236 * NOTE: A combination of bugs in various browsers means that this function
5237 * actually just returns array() unconditionally at the moment. May as
5238 * well keep it around for when the browser bugs get fixed, though.
5240 * @todo FIXME: This does not belong here; put it in Html or Linker or somewhere
5242 * @deprecated since 1.27
5243 * @return array Array of HTML attributes suitable for feeding to
5244 * Html::element(), directly or indirectly. (Don't feed to Xml::*()!
5245 * That will get confused by the boolean attribute syntax used.)
5247 public static function passwordChangeInputAttribs() {
5248 global $wgMinimalPasswordLength;
5250 if ( $wgMinimalPasswordLength == 0 ) {
5254 # Note that the pattern requirement will always be satisfied if the
5255 # input is empty, so we need required in all cases.
5257 # @todo FIXME: Bug 23769: This needs to not claim the password is required
5258 # if e-mail confirmation is being used. Since HTML5 input validation
5259 # is b0rked anyway in some browsers, just return nothing. When it's
5260 # re-enabled, fix this code to not output required for e-mail
5262 # $ret = array( 'required' );
5265 # We can't actually do this right now, because Opera 9.6 will print out
5266 # the entered password visibly in its error message! When other
5267 # browsers add support for this attribute, or Opera fixes its support,
5268 # we can add support with a version check to avoid doing this on Opera
5269 # versions where it will be a problem. Reported to Opera as
5270 # DSK-262266, but they don't have a public bug tracker for us to follow.
5272 if ( $wgMinimalPasswordLength > 1 ) {
5273 $ret['pattern'] = '.{' . intval( $wgMinimalPasswordLength ) . ',}';
5274 $ret['title'] = wfMessage( 'passwordtooshort' )
5275 ->numParams( $wgMinimalPasswordLength )->text();
5283 * Return the list of user fields that should be selected to create
5284 * a new user object.
5287 public static function selectFields() {
5295 'user_email_authenticated',
5297 'user_email_token_expires',
5298 'user_registration',
5304 * Factory function for fatal permission-denied errors
5307 * @param string $permission User right required
5310 static function newFatalPermissionDeniedStatus( $permission ) {
5313 $groups = array_map(
5314 array( 'User', 'makeGroupLinkWiki' ),
5315 User
::getGroupsWithPermission( $permission )
5319 return Status
::newFatal( 'badaccess-groups', $wgLang->commaList( $groups ), count( $groups ) );
5321 return Status
::newFatal( 'badaccess-group0' );
5326 * Get a new instance of this user that was loaded from the master via a locking read
5328 * Use this instead of the main context User when updating that user. This avoids races
5329 * where that user was loaded from a slave or even the master but without proper locks.
5331 * @return User|null Returns null if the user was not found in the DB
5334 public function getInstanceForUpdate() {
5335 if ( !$this->getId() ) {
5336 return null; // anon
5339 $user = self
::newFromId( $this->getId() );
5340 if ( !$user->loadFromId( self
::READ_EXCLUSIVE
) ) {
5348 * Checks if two user objects point to the same user.
5354 public function equals( User
$user ) {
5355 return $this->getName() === $user->getName();