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
24 * Int Number of characters in user_token field.
27 define( 'USER_TOKEN_LENGTH', 32 );
30 * Int Serialized record version.
33 define( 'MW_USER_VERSION', 9 );
36 * String Some punctuation to prevent editing from broken text-mangling proxies.
39 define( 'EDIT_TOKEN_SUFFIX', '+\\' );
42 * Thrown by User::setPassword() on error.
45 class PasswordError
extends MWException
{
50 * The User object encapsulates all of the user-specific settings (user_id,
51 * name, rights, password, email address, options, last login time). Client
52 * classes use the getXXX() functions to access these fields. These functions
53 * do all the work of determining whether the user is logged in,
54 * whether the requested option can be satisfied from cookies or
55 * whether a database query is needed. Most of the settings needed
56 * for rendering normal pages are set in the cookie to minimize use
61 * Global constants made accessible as class constants so that autoloader
64 const USER_TOKEN_LENGTH
= USER_TOKEN_LENGTH
;
65 const MW_USER_VERSION
= MW_USER_VERSION
;
66 const EDIT_TOKEN_SUFFIX
= EDIT_TOKEN_SUFFIX
;
69 * Maximum items in $mWatchedItems
71 const MAX_WATCHED_ITEMS_CACHE
= 100;
74 * Array of Strings List of member variables which are saved to the
75 * shared cache (memcached). Any operation which changes the
76 * corresponding database fields must call a cache-clearing function.
79 protected static $mCacheVars = array(
90 'mEmailAuthenticated',
98 // user_properties table
103 * Array of Strings Core rights.
104 * Each of these should have a corresponding message of the form
108 protected static $mCoreRights = array(
134 'editusercssjs', #deprecated
146 'move-categorypages',
147 'move-rootuserpages',
151 'override-export-depth',
174 'userrights-interwiki',
181 * String Cached results of getAllRights()
183 protected static $mAllRights = false;
185 /** @name Cache variables */
195 public $mNewpassword;
197 public $mNewpassTime;
205 public $mEmailAuthenticated;
207 protected $mEmailToken;
209 protected $mEmailTokenExpires;
211 protected $mRegistration;
213 protected $mEditCount;
217 protected $mOptionOverrides;
219 protected $mPasswordExpires;
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 cookies or 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 public static $idCacheByName = array();
294 * Lightweight constructor for an anonymous user.
295 * Use the User::newFrom* factory functions for other kinds of users.
299 * @see newFromConfirmationCode()
300 * @see newFromSession()
303 public function __construct() {
304 $this->clearInstanceCache( 'defaults' );
310 public function __toString() {
311 return $this->getName();
315 * Load the user table data for this object from the source given by mFrom.
317 public function load() {
318 if ( $this->mLoadedItems
=== true ) {
321 wfProfileIn( __METHOD__
);
323 // Set it now to avoid infinite recursion in accessors
324 $this->mLoadedItems
= true;
326 switch ( $this->mFrom
) {
328 $this->loadDefaults();
331 $this->mId
= self
::idFromName( $this->mName
);
333 // Nonexistent user placeholder object
334 $this->loadDefaults( $this->mName
);
343 if ( !$this->loadFromSession() ) {
344 // Loading from session failed. Load defaults.
345 $this->loadDefaults();
347 wfRunHooks( 'UserLoadAfterLoadFromSession', array( $this ) );
350 wfProfileOut( __METHOD__
);
351 throw new MWException( "Unrecognised value for User->mFrom: \"{$this->mFrom}\"" );
353 wfProfileOut( __METHOD__
);
357 * Load user table data, given mId has already been set.
358 * @return bool false if the ID does not exist, true otherwise
360 public function loadFromId() {
362 if ( $this->mId
== 0 ) {
363 $this->loadDefaults();
368 $key = wfMemcKey( 'user', 'id', $this->mId
);
369 $data = $wgMemc->get( $key );
370 if ( !is_array( $data ) ||
$data['mVersion'] < MW_USER_VERSION
) {
371 // Object is expired, load from DB
376 wfDebug( "User: cache miss for user {$this->mId}\n" );
378 if ( !$this->loadFromDatabase() ) {
379 // Can't load from ID, user is anonymous
382 $this->saveToCache();
384 wfDebug( "User: got user {$this->mId} from cache\n" );
385 // Restore from cache
386 foreach ( self
::$mCacheVars as $name ) {
387 $this->$name = $data[$name];
391 $this->mLoadedItems
= true;
397 * Save user data to the shared cache
399 public function saveToCache() {
402 $this->loadOptions();
403 if ( $this->isAnon() ) {
404 // Anonymous users are uncached
408 foreach ( self
::$mCacheVars as $name ) {
409 $data[$name] = $this->$name;
411 $data['mVersion'] = MW_USER_VERSION
;
412 $key = wfMemcKey( 'user', 'id', $this->mId
);
414 $wgMemc->set( $key, $data );
417 /** @name newFrom*() static factory methods */
421 * Static factory method for creation from username.
423 * This is slightly less efficient than newFromId(), so use newFromId() if
424 * you have both an ID and a name handy.
426 * @param string $name Username, validated by Title::newFromText()
427 * @param string|bool $validate Validate username. Takes the same parameters as
428 * User::getCanonicalName(), except that true is accepted as an alias
429 * for 'valid', for BC.
431 * @return User|bool User object, or false if the username is invalid
432 * (e.g. if it contains illegal characters or is an IP address). If the
433 * username is not present in the database, the result will be a user object
434 * with a name, zero user ID and default settings.
436 public static function newFromName( $name, $validate = 'valid' ) {
437 if ( $validate === true ) {
440 $name = self
::getCanonicalName( $name, $validate );
441 if ( $name === false ) {
444 // Create unloaded user object
448 $u->setItemLoaded( 'name' );
454 * Static factory method for creation from a given user ID.
456 * @param int $id Valid user ID
457 * @return User The corresponding User object
459 public static function newFromId( $id ) {
463 $u->setItemLoaded( 'id' );
468 * Factory method to fetch whichever user has a given email confirmation code.
469 * This code is generated when an account is created or its e-mail address
472 * If the code is invalid or has expired, returns NULL.
474 * @param string $code Confirmation code
477 public static function newFromConfirmationCode( $code ) {
478 $dbr = wfGetDB( DB_SLAVE
);
479 $id = $dbr->selectField( 'user', 'user_id', array(
480 'user_email_token' => md5( $code ),
481 'user_email_token_expires > ' . $dbr->addQuotes( $dbr->timestamp() ),
483 if ( $id !== false ) {
484 return User
::newFromId( $id );
491 * Create a new user object using data from session or cookies. If the
492 * login credentials are invalid, the result is an anonymous user.
494 * @param WebRequest|null $request Object to use; $wgRequest will be used if omitted.
497 public static function newFromSession( WebRequest
$request = null ) {
499 $user->mFrom
= 'session';
500 $user->mRequest
= $request;
505 * Create a new user object from a user row.
506 * The row should have the following fields from the user table in it:
507 * - either user_name or user_id to load further data if needed (or both)
509 * - all other fields (email, password, etc.)
510 * It is useless to provide the remaining fields if either user_id,
511 * user_name and user_real_name are not provided because the whole row
512 * will be loaded once more from the database when accessing them.
514 * @param stdClass $row A row from the user table
515 * @param array $data Further data to load into the object (see User::loadFromRow for valid keys)
518 public static function newFromRow( $row, $data = null ) {
520 $user->loadFromRow( $row, $data );
527 * Get the username corresponding to a given user ID
528 * @param int $id User ID
529 * @return string|bool The corresponding username
531 public static function whoIs( $id ) {
532 return UserCache
::singleton()->getProp( $id, 'name' );
536 * Get the real name of a user given their user ID
538 * @param int $id User ID
539 * @return string|bool The corresponding user's real name
541 public static function whoIsReal( $id ) {
542 return UserCache
::singleton()->getProp( $id, 'real_name' );
546 * Get database id given a user name
547 * @param string $name Username
548 * @return int|null The corresponding user's ID, or null if user is nonexistent
550 public static function idFromName( $name ) {
551 $nt = Title
::makeTitleSafe( NS_USER
, $name );
552 if ( is_null( $nt ) ) {
557 if ( isset( self
::$idCacheByName[$name] ) ) {
558 return self
::$idCacheByName[$name];
561 $dbr = wfGetDB( DB_SLAVE
);
562 $s = $dbr->selectRow(
565 array( 'user_name' => $nt->getText() ),
569 if ( $s === false ) {
572 $result = $s->user_id
;
575 self
::$idCacheByName[$name] = $result;
577 if ( count( self
::$idCacheByName ) > 1000 ) {
578 self
::$idCacheByName = array();
585 * Reset the cache used in idFromName(). For use in tests.
587 public static function resetIdByNameCache() {
588 self
::$idCacheByName = array();
592 * Does the string match an anonymous IPv4 address?
594 * This function exists for username validation, in order to reject
595 * usernames which are similar in form to IP addresses. Strings such
596 * as 300.300.300.300 will return true because it looks like an IP
597 * address, despite not being strictly valid.
599 * We match "\d{1,3}\.\d{1,3}\.\d{1,3}\.xxx" as an anonymous IP
600 * address because the usemod software would "cloak" anonymous IP
601 * addresses like this, if we allowed accounts like this to be created
602 * new users could get the old edits of these anonymous users.
604 * @param string $name Name to match
607 public static function isIP( $name ) {
608 return preg_match( '/^\d{1,3}\.\d{1,3}\.\d{1,3}\.(?:xxx|\d{1,3})$/', $name )
609 || IP
::isIPv6( $name );
613 * Is the input a valid username?
615 * Checks if the input is a valid username, we don't want an empty string,
616 * an IP address, anything that contains slashes (would mess up subpages),
617 * is longer than the maximum allowed username size or doesn't begin with
620 * @param string $name Name to match
623 public static function isValidUserName( $name ) {
624 global $wgContLang, $wgMaxNameChars;
627 || User
::isIP( $name )
628 ||
strpos( $name, '/' ) !== false
629 ||
strlen( $name ) > $wgMaxNameChars
630 ||
$name != $wgContLang->ucfirst( $name ) ) {
631 wfDebugLog( 'username', __METHOD__
.
632 ": '$name' invalid due to empty, IP, slash, length, or lowercase" );
636 // Ensure that the name can't be misresolved as a different title,
637 // such as with extra namespace keys at the start.
638 $parsed = Title
::newFromText( $name );
639 if ( is_null( $parsed )
640 ||
$parsed->getNamespace()
641 ||
strcmp( $name, $parsed->getPrefixedText() ) ) {
642 wfDebugLog( 'username', __METHOD__
.
643 ": '$name' invalid due to ambiguous prefixes" );
647 // Check an additional blacklist of troublemaker characters.
648 // Should these be merged into the title char list?
649 $unicodeBlacklist = '/[' .
650 '\x{0080}-\x{009f}' . # iso-8859-1 control chars
651 '\x{00a0}' . # non-breaking space
652 '\x{2000}-\x{200f}' . # various whitespace
653 '\x{2028}-\x{202f}' . # breaks and control chars
654 '\x{3000}' . # ideographic space
655 '\x{e000}-\x{f8ff}' . # private use
657 if ( preg_match( $unicodeBlacklist, $name ) ) {
658 wfDebugLog( 'username', __METHOD__
.
659 ": '$name' invalid due to blacklisted characters" );
667 * Usernames which fail to pass this function will be blocked
668 * from user login and new account registrations, but may be used
669 * internally by batch processes.
671 * If an account already exists in this form, login will be blocked
672 * by a failure to pass this function.
674 * @param string $name Name to match
677 public static function isUsableName( $name ) {
678 global $wgReservedUsernames;
679 // Must be a valid username, obviously ;)
680 if ( !self
::isValidUserName( $name ) ) {
684 static $reservedUsernames = false;
685 if ( !$reservedUsernames ) {
686 $reservedUsernames = $wgReservedUsernames;
687 wfRunHooks( 'UserGetReservedNames', array( &$reservedUsernames ) );
690 // Certain names may be reserved for batch processes.
691 foreach ( $reservedUsernames as $reserved ) {
692 if ( substr( $reserved, 0, 4 ) == 'msg:' ) {
693 $reserved = wfMessage( substr( $reserved, 4 ) )->inContentLanguage()->text();
695 if ( $reserved == $name ) {
703 * Usernames which fail to pass this function will be blocked
704 * from new account registrations, but may be used internally
705 * either by batch processes or by user accounts which have
706 * already been created.
708 * Additional blacklisting may be added here rather than in
709 * isValidUserName() to avoid disrupting existing accounts.
711 * @param string $name String to match
714 public static function isCreatableName( $name ) {
715 global $wgInvalidUsernameCharacters;
717 // Ensure that the username isn't longer than 235 bytes, so that
718 // (at least for the builtin skins) user javascript and css files
719 // will work. (bug 23080)
720 if ( strlen( $name ) > 235 ) {
721 wfDebugLog( 'username', __METHOD__
.
722 ": '$name' invalid due to length" );
726 // Preg yells if you try to give it an empty string
727 if ( $wgInvalidUsernameCharacters !== '' ) {
728 if ( preg_match( '/[' . preg_quote( $wgInvalidUsernameCharacters, '/' ) . ']/', $name ) ) {
729 wfDebugLog( 'username', __METHOD__
.
730 ": '$name' invalid due to wgInvalidUsernameCharacters" );
735 return self
::isUsableName( $name );
739 * Is the input a valid password for this user?
741 * @param string $password Desired password
744 public function isValidPassword( $password ) {
745 //simple boolean wrapper for getPasswordValidity
746 return $this->getPasswordValidity( $password ) === true;
751 * Given unvalidated password input, return error message on failure.
753 * @param string $password Desired password
754 * @return bool|string|array true on success, string or array of error message on failure
756 public function getPasswordValidity( $password ) {
757 $result = $this->checkPasswordValidity( $password );
758 if ( $result->isGood() ) {
762 foreach ( $result->getErrorsByType( 'error' ) as $error ) {
763 $messages[] = $error['message'];
765 foreach ( $result->getErrorsByType( 'warning' ) as $warning ) {
766 $messages[] = $warning['message'];
768 if ( count( $messages ) === 1 ) {
776 * Check if this is a valid password for this user. Status will be good if
777 * the password is valid, or have an array of error messages if not.
779 * @param string $password Desired password
783 public function checkPasswordValidity( $password ) {
784 global $wgMinimalPasswordLength, $wgContLang;
786 static $blockedLogins = array(
787 'Useruser' => 'Passpass', 'Useruser1' => 'Passpass1', # r75589
788 'Apitestsysop' => 'testpass', 'Apitestuser' => 'testpass' # r75605
791 $status = Status
::newGood();
793 $result = false; //init $result to false for the internal checks
795 if ( !wfRunHooks( 'isValidPassword', array( $password, &$result, $this ) ) ) {
796 $status->error( $result );
800 if ( $result === false ) {
801 if ( strlen( $password ) < $wgMinimalPasswordLength ) {
802 $status->error( 'passwordtooshort', $wgMinimalPasswordLength );
804 } elseif ( $wgContLang->lc( $password ) == $wgContLang->lc( $this->mName
) ) {
805 $status->error( 'password-name-match' );
807 } elseif ( isset( $blockedLogins[$this->getName()] )
808 && $password == $blockedLogins[$this->getName()]
810 $status->error( 'password-login-forbidden' );
813 //it seems weird returning a Good status here, but this is because of the
814 //initialization of $result to false above. If the hook is never run or it
815 //doesn't modify $result, then we will likely get down into this if with
819 } elseif ( $result === true ) {
822 $status->error( $result );
823 return $status; //the isValidPassword hook set a string $result and returned true
828 * Expire a user's password
830 * @param int $ts Optional timestamp to convert, default 0 for the current time
832 public function expirePassword( $ts = 0 ) {
834 $timestamp = wfTimestamp( TS_MW
, $ts );
835 $this->mPasswordExpires
= $timestamp;
836 $this->saveSettings();
840 * Clear the password expiration for a user
842 * @param bool $load Ensure user object is loaded first
844 public function resetPasswordExpiration( $load = true ) {
845 global $wgPasswordExpirationDays;
850 if ( $wgPasswordExpirationDays ) {
851 $newExpire = wfTimestamp(
853 time() +
( $wgPasswordExpirationDays * 24 * 3600 )
856 // Give extensions a chance to force an expiration
857 wfRunHooks( 'ResetPasswordExpiration', array( $this, &$newExpire ) );
858 $this->mPasswordExpires
= $newExpire;
862 * Check if the user's password is expired.
863 * TODO: Put this and password length into a PasswordPolicy object
865 * @return string|bool The expiration type, or false if not expired
866 * hard: A password change is required to login
867 * soft: Allow login, but encourage password change
868 * false: Password is not expired
870 public function getPasswordExpired() {
871 global $wgPasswordExpireGrace;
873 $now = wfTimestamp();
874 $expiration = $this->getPasswordExpireDate();
875 $expUnix = wfTimestamp( TS_UNIX
, $expiration );
876 if ( $expiration !== null && $expUnix < $now ) {
877 $expired = ( $expUnix +
$wgPasswordExpireGrace < $now ) ?
'hard' : 'soft';
883 * Get this user's password expiration date. Since this may be using
884 * the cached User object, we assume that whatever mechanism is setting
885 * the expiration date is also expiring the User cache.
887 * @return string|bool The datestamp of the expiration, or null if not set
889 public function getPasswordExpireDate() {
891 return $this->mPasswordExpires
;
895 * Does a string look like an e-mail address?
897 * This validates an email address using an HTML5 specification found at:
898 * http://www.whatwg.org/html/states-of-the-type-attribute.html#valid-e-mail-address
899 * Which as of 2011-01-24 says:
901 * A valid e-mail address is a string that matches the ABNF production
902 * 1*( atext / "." ) "@" ldh-str *( "." ldh-str ) where atext is defined
903 * in RFC 5322 section 3.2.3, and ldh-str is defined in RFC 1034 section
906 * This function is an implementation of the specification as requested in
909 * Client-side forms will use the same standard validation rules via JS or
910 * HTML 5 validation; additional restrictions can be enforced server-side
911 * by extensions via the 'isValidEmailAddr' hook.
913 * Note that this validation doesn't 100% match RFC 2822, but is believed
914 * to be liberal enough for wide use. Some invalid addresses will still
915 * pass validation here.
917 * @param string $addr E-mail address
919 * @deprecated since 1.18 call Sanitizer::isValidEmail() directly
921 public static function isValidEmailAddr( $addr ) {
922 wfDeprecated( __METHOD__
, '1.18' );
923 return Sanitizer
::validateEmail( $addr );
927 * Given unvalidated user input, return a canonical username, or false if
928 * the username is invalid.
929 * @param string $name User input
930 * @param string|bool $validate Type of validation to use:
931 * - false No validation
932 * - 'valid' Valid for batch processes
933 * - 'usable' Valid for batch processes and login
934 * - 'creatable' Valid for batch processes, login and account creation
936 * @throws MWException
937 * @return bool|string
939 public static function getCanonicalName( $name, $validate = 'valid' ) {
940 // Force usernames to capital
942 $name = $wgContLang->ucfirst( $name );
944 # Reject names containing '#'; these will be cleaned up
945 # with title normalisation, but then it's too late to
947 if ( strpos( $name, '#' ) !== false ) {
951 // Clean up name according to title rules
952 $t = ( $validate === 'valid' ) ?
953 Title
::newFromText( $name ) : Title
::makeTitle( NS_USER
, $name );
954 // Check for invalid titles
955 if ( is_null( $t ) ) {
959 // Reject various classes of invalid names
961 $name = $wgAuth->getCanonicalName( $t->getText() );
963 switch ( $validate ) {
967 if ( !User
::isValidUserName( $name ) ) {
972 if ( !User
::isUsableName( $name ) ) {
977 if ( !User
::isCreatableName( $name ) ) {
982 throw new MWException( 'Invalid parameter value for $validate in ' . __METHOD__
);
988 * Count the number of edits of a user
990 * @param int $uid User ID to check
991 * @return int The user's edit count
993 * @deprecated since 1.21 in favour of User::getEditCount
995 public static function edits( $uid ) {
996 wfDeprecated( __METHOD__
, '1.21' );
997 $user = self
::newFromId( $uid );
998 return $user->getEditCount();
1002 * Return a random password.
1004 * @return string New random password
1006 public static function randomPassword() {
1007 global $wgMinimalPasswordLength;
1008 // Decide the final password length based on our min password length,
1009 // stopping at a minimum of 10 chars.
1010 $length = max( 10, $wgMinimalPasswordLength );
1011 // Multiply by 1.25 to get the number of hex characters we need
1012 $length = $length * 1.25;
1013 // Generate random hex chars
1014 $hex = MWCryptRand
::generateHex( $length );
1015 // Convert from base 16 to base 32 to get a proper password like string
1016 return wfBaseConvert( $hex, 16, 32 );
1020 * Set cached properties to default.
1022 * @note This no longer clears uncached lazy-initialised properties;
1023 * the constructor does that instead.
1025 * @param string|bool $name
1027 public function loadDefaults( $name = false ) {
1028 wfProfileIn( __METHOD__
);
1031 $this->mName
= $name;
1032 $this->mRealName
= '';
1033 $this->mPassword
= $this->mNewpassword
= '';
1034 $this->mNewpassTime
= null;
1036 $this->mOptionOverrides
= null;
1037 $this->mOptionsLoaded
= false;
1039 $loggedOut = $this->getRequest()->getCookie( 'LoggedOut' );
1040 if ( $loggedOut !== null ) {
1041 $this->mTouched
= wfTimestamp( TS_MW
, $loggedOut );
1043 $this->mTouched
= '1'; # Allow any pages to be cached
1046 $this->mToken
= null; // Don't run cryptographic functions till we need a token
1047 $this->mEmailAuthenticated
= null;
1048 $this->mEmailToken
= '';
1049 $this->mEmailTokenExpires
= null;
1050 $this->mPasswordExpires
= null;
1051 $this->resetPasswordExpiration( false );
1052 $this->mRegistration
= wfTimestamp( TS_MW
);
1053 $this->mGroups
= array();
1055 wfRunHooks( 'UserLoadDefaults', array( $this, $name ) );
1057 wfProfileOut( __METHOD__
);
1061 * Return whether an item has been loaded.
1063 * @param string $item Item to check. Current possibilities:
1067 * @param string $all 'all' to check if the whole object has been loaded
1068 * or any other string to check if only the item is available (e.g.
1072 public function isItemLoaded( $item, $all = 'all' ) {
1073 return ( $this->mLoadedItems
=== true && $all === 'all' ) ||
1074 ( isset( $this->mLoadedItems
[$item] ) && $this->mLoadedItems
[$item] === true );
1078 * Set that an item has been loaded
1080 * @param string $item
1082 protected function setItemLoaded( $item ) {
1083 if ( is_array( $this->mLoadedItems
) ) {
1084 $this->mLoadedItems
[$item] = true;
1089 * Load user data from the session or login cookie.
1090 * @return bool True if the user is logged in, false otherwise.
1092 private function loadFromSession() {
1094 wfRunHooks( 'UserLoadFromSession', array( $this, &$result ) );
1095 if ( $result !== null ) {
1099 $request = $this->getRequest();
1101 $cookieId = $request->getCookie( 'UserID' );
1102 $sessId = $request->getSessionData( 'wsUserID' );
1104 if ( $cookieId !== null ) {
1105 $sId = intval( $cookieId );
1106 if ( $sessId !== null && $cookieId != $sessId ) {
1107 wfDebugLog( 'loginSessions', "Session user ID ($sessId) and
1108 cookie user ID ($sId) don't match!" );
1111 $request->setSessionData( 'wsUserID', $sId );
1112 } elseif ( $sessId !== null && $sessId != 0 ) {
1118 if ( $request->getSessionData( 'wsUserName' ) !== null ) {
1119 $sName = $request->getSessionData( 'wsUserName' );
1120 } elseif ( $request->getCookie( 'UserName' ) !== null ) {
1121 $sName = $request->getCookie( 'UserName' );
1122 $request->setSessionData( 'wsUserName', $sName );
1127 $proposedUser = User
::newFromId( $sId );
1128 if ( !$proposedUser->isLoggedIn() ) {
1133 global $wgBlockDisablesLogin;
1134 if ( $wgBlockDisablesLogin && $proposedUser->isBlocked() ) {
1135 // User blocked and we've disabled blocked user logins
1139 if ( $request->getSessionData( 'wsToken' ) ) {
1141 ( $proposedUser->getToken( false ) === $request->getSessionData( 'wsToken' ) );
1143 } elseif ( $request->getCookie( 'Token' ) ) {
1144 # Get the token from DB/cache and clean it up to remove garbage padding.
1145 # This deals with historical problems with bugs and the default column value.
1146 $token = rtrim( $proposedUser->getToken( false ) ); // correct token
1147 // Make comparison in constant time (bug 61346)
1148 $passwordCorrect = strlen( $token )
1149 && $this->compareSecrets( $token, $request->getCookie( 'Token' ) );
1152 // No session or persistent login cookie
1156 if ( ( $sName === $proposedUser->getName() ) && $passwordCorrect ) {
1157 $this->loadFromUserObject( $proposedUser );
1158 $request->setSessionData( 'wsToken', $this->mToken
);
1159 wfDebug( "User: logged in from $from\n" );
1162 // Invalid credentials
1163 wfDebug( "User: can't log in from $from, invalid credentials\n" );
1169 * A comparison of two strings, not vulnerable to timing attacks
1170 * @param string $answer The secret string that you are comparing against.
1171 * @param string $test Compare this string to the $answer.
1172 * @return bool True if the strings are the same, false otherwise
1174 protected function compareSecrets( $answer, $test ) {
1175 if ( strlen( $answer ) !== strlen( $test ) ) {
1176 $passwordCorrect = false;
1179 $answerLength = strlen( $answer );
1180 for ( $i = 0; $i < $answerLength; $i++
) {
1181 $result |
= ord( $answer[$i] ) ^
ord( $test[$i] );
1183 $passwordCorrect = ( $result == 0 );
1186 return $passwordCorrect;
1190 * Load user and user_group data from the database.
1191 * $this->mId must be set, this is how the user is identified.
1193 * @return bool True if the user exists, false if the user is anonymous
1195 public function loadFromDatabase() {
1197 $this->mId
= intval( $this->mId
);
1200 if ( !$this->mId
) {
1201 $this->loadDefaults();
1205 $dbr = wfGetDB( DB_MASTER
);
1206 $s = $dbr->selectRow(
1208 self
::selectFields(),
1209 array( 'user_id' => $this->mId
),
1213 wfRunHooks( 'UserLoadFromDatabase', array( $this, &$s ) );
1215 if ( $s !== false ) {
1216 // Initialise user table data
1217 $this->loadFromRow( $s );
1218 $this->mGroups
= null; // deferred
1219 $this->getEditCount(); // revalidation for nulls
1224 $this->loadDefaults();
1230 * Initialize this object from a row from the user table.
1232 * @param stdClass $row Row from the user table to load.
1233 * @param array $data Further user data to load into the object
1235 * user_groups Array with groups out of the user_groups table
1236 * user_properties Array with properties out of the user_properties table
1238 public function loadFromRow( $row, $data = null ) {
1241 $this->mGroups
= null; // deferred
1243 if ( isset( $row->user_name
) ) {
1244 $this->mName
= $row->user_name
;
1245 $this->mFrom
= 'name';
1246 $this->setItemLoaded( 'name' );
1251 if ( isset( $row->user_real_name
) ) {
1252 $this->mRealName
= $row->user_real_name
;
1253 $this->setItemLoaded( 'realname' );
1258 if ( isset( $row->user_id
) ) {
1259 $this->mId
= intval( $row->user_id
);
1260 $this->mFrom
= 'id';
1261 $this->setItemLoaded( 'id' );
1266 if ( isset( $row->user_editcount
) ) {
1267 $this->mEditCount
= $row->user_editcount
;
1272 if ( isset( $row->user_password
) ) {
1273 $this->mPassword
= $row->user_password
;
1274 $this->mNewpassword
= $row->user_newpassword
;
1275 $this->mNewpassTime
= wfTimestampOrNull( TS_MW
, $row->user_newpass_time
);
1276 $this->mEmail
= $row->user_email
;
1277 if ( isset( $row->user_options
) ) {
1278 $this->decodeOptions( $row->user_options
);
1280 $this->mTouched
= wfTimestamp( TS_MW
, $row->user_touched
);
1281 $this->mToken
= $row->user_token
;
1282 if ( $this->mToken
== '' ) {
1283 $this->mToken
= null;
1285 $this->mEmailAuthenticated
= wfTimestampOrNull( TS_MW
, $row->user_email_authenticated
);
1286 $this->mEmailToken
= $row->user_email_token
;
1287 $this->mEmailTokenExpires
= wfTimestampOrNull( TS_MW
, $row->user_email_token_expires
);
1288 $this->mPasswordExpires
= wfTimestampOrNull( TS_MW
, $row->user_password_expires
);
1289 $this->mRegistration
= wfTimestampOrNull( TS_MW
, $row->user_registration
);
1295 $this->mLoadedItems
= true;
1298 if ( is_array( $data ) ) {
1299 if ( isset( $data['user_groups'] ) && is_array( $data['user_groups'] ) ) {
1300 $this->mGroups
= $data['user_groups'];
1302 if ( isset( $data['user_properties'] ) && is_array( $data['user_properties'] ) ) {
1303 $this->loadOptions( $data['user_properties'] );
1309 * Load the data for this user object from another user object.
1313 protected function loadFromUserObject( $user ) {
1315 $user->loadGroups();
1316 $user->loadOptions();
1317 foreach ( self
::$mCacheVars as $var ) {
1318 $this->$var = $user->$var;
1323 * Load the groups from the database if they aren't already loaded.
1325 private function loadGroups() {
1326 if ( is_null( $this->mGroups
) ) {
1327 $dbr = wfGetDB( DB_MASTER
);
1328 $res = $dbr->select( 'user_groups',
1329 array( 'ug_group' ),
1330 array( 'ug_user' => $this->mId
),
1332 $this->mGroups
= array();
1333 foreach ( $res as $row ) {
1334 $this->mGroups
[] = $row->ug_group
;
1340 * Add the user to the group if he/she meets given criteria.
1342 * Contrary to autopromotion by \ref $wgAutopromote, the group will be
1343 * possible to remove manually via Special:UserRights. In such case it
1344 * will not be re-added automatically. The user will also not lose the
1345 * group if they no longer meet the criteria.
1347 * @param string $event Key in $wgAutopromoteOnce (each one has groups/criteria)
1349 * @return array Array of groups the user has been promoted to.
1351 * @see $wgAutopromoteOnce
1353 public function addAutopromoteOnceGroups( $event ) {
1354 global $wgAutopromoteOnceLogInRC, $wgAuth;
1356 $toPromote = array();
1357 if ( $this->getId() ) {
1358 $toPromote = Autopromote
::getAutopromoteOnceGroups( $this, $event );
1359 if ( count( $toPromote ) ) {
1360 $oldGroups = $this->getGroups(); // previous groups
1362 foreach ( $toPromote as $group ) {
1363 $this->addGroup( $group );
1365 // update groups in external authentication database
1366 $wgAuth->updateExternalDBGroups( $this, $toPromote );
1368 $newGroups = array_merge( $oldGroups, $toPromote ); // all groups
1370 $logEntry = new ManualLogEntry( 'rights', 'autopromote' );
1371 $logEntry->setPerformer( $this );
1372 $logEntry->setTarget( $this->getUserPage() );
1373 $logEntry->setParameters( array(
1374 '4::oldgroups' => $oldGroups,
1375 '5::newgroups' => $newGroups,
1377 $logid = $logEntry->insert();
1378 if ( $wgAutopromoteOnceLogInRC ) {
1379 $logEntry->publish( $logid );
1387 * Clear various cached data stored in this object. The cache of the user table
1388 * data (i.e. self::$mCacheVars) is not cleared unless $reloadFrom is given.
1390 * @param bool|string $reloadFrom Reload user and user_groups table data from a
1391 * given source. May be "name", "id", "defaults", "session", or false for no reload.
1393 public function clearInstanceCache( $reloadFrom = false ) {
1394 $this->mNewtalk
= -1;
1395 $this->mDatePreference
= null;
1396 $this->mBlockedby
= -1; # Unset
1397 $this->mHash
= false;
1398 $this->mRights
= null;
1399 $this->mEffectiveGroups
= null;
1400 $this->mImplicitGroups
= null;
1401 $this->mGroups
= null;
1402 $this->mOptions
= null;
1403 $this->mOptionsLoaded
= false;
1404 $this->mEditCount
= null;
1406 if ( $reloadFrom ) {
1407 $this->mLoadedItems
= array();
1408 $this->mFrom
= $reloadFrom;
1413 * Combine the language default options with any site-specific options
1414 * and add the default language variants.
1416 * @return array Array of String options
1418 public static function getDefaultOptions() {
1419 global $wgNamespacesToBeSearchedDefault, $wgDefaultUserOptions, $wgContLang, $wgDefaultSkin;
1421 static $defOpt = null;
1422 if ( !defined( 'MW_PHPUNIT_TEST' ) && $defOpt !== null ) {
1423 // Disabling this for the unit tests, as they rely on being able to change $wgContLang
1424 // mid-request and see that change reflected in the return value of this function.
1425 // Which is insane and would never happen during normal MW operation
1429 $defOpt = $wgDefaultUserOptions;
1430 // Default language setting
1431 $defOpt['language'] = $wgContLang->getCode();
1432 foreach ( LanguageConverter
::$languagesWithVariants as $langCode ) {
1433 $defOpt[$langCode == $wgContLang->getCode() ?
'variant' : "variant-$langCode"] = $langCode;
1435 foreach ( SearchEngine
::searchableNamespaces() as $nsnum => $nsname ) {
1436 $defOpt['searchNs' . $nsnum] = !empty( $wgNamespacesToBeSearchedDefault[$nsnum] );
1438 $defOpt['skin'] = $wgDefaultSkin;
1440 wfRunHooks( 'UserGetDefaultOptions', array( &$defOpt ) );
1446 * Get a given default option value.
1448 * @param string $opt Name of option to retrieve
1449 * @return string Default option value
1451 public static function getDefaultOption( $opt ) {
1452 $defOpts = self
::getDefaultOptions();
1453 if ( isset( $defOpts[$opt] ) ) {
1454 return $defOpts[$opt];
1461 * Get blocking information
1462 * @param bool $bFromSlave Whether to check the slave database first.
1463 * To improve performance, non-critical checks are done against slaves.
1464 * Check when actually saving should be done against master.
1466 private function getBlockedStatus( $bFromSlave = true ) {
1467 global $wgProxyWhitelist, $wgUser, $wgApplyIpBlocksToXff;
1469 if ( -1 != $this->mBlockedby
) {
1473 wfProfileIn( __METHOD__
);
1474 wfDebug( __METHOD__
. ": checking...\n" );
1476 // Initialize data...
1477 // Otherwise something ends up stomping on $this->mBlockedby when
1478 // things get lazy-loaded later, causing false positive block hits
1479 // due to -1 !== 0. Probably session-related... Nothing should be
1480 // overwriting mBlockedby, surely?
1483 # We only need to worry about passing the IP address to the Block generator if the
1484 # user is not immune to autoblocks/hardblocks, and they are the current user so we
1485 # know which IP address they're actually coming from
1486 if ( !$this->isAllowed( 'ipblock-exempt' ) && $this->getID() == $wgUser->getID() ) {
1487 $ip = $this->getRequest()->getIP();
1493 $block = Block
::newFromTarget( $this, $ip, !$bFromSlave );
1496 if ( !$block instanceof Block
&& $ip !== null && !$this->isAllowed( 'proxyunbannable' )
1497 && !in_array( $ip, $wgProxyWhitelist )
1500 if ( self
::isLocallyBlockedProxy( $ip ) ) {
1502 $block->setBlocker( wfMessage( 'proxyblocker' )->text() );
1503 $block->mReason
= wfMessage( 'proxyblockreason' )->text();
1504 $block->setTarget( $ip );
1505 } elseif ( $this->isAnon() && $this->isDnsBlacklisted( $ip ) ) {
1507 $block->setBlocker( wfMessage( 'sorbs' )->text() );
1508 $block->mReason
= wfMessage( 'sorbsreason' )->text();
1509 $block->setTarget( $ip );
1513 // (bug 23343) Apply IP blocks to the contents of XFF headers, if enabled
1514 if ( !$block instanceof Block
1515 && $wgApplyIpBlocksToXff
1517 && !$this->isAllowed( 'proxyunbannable' )
1518 && !in_array( $ip, $wgProxyWhitelist )
1520 $xff = $this->getRequest()->getHeader( 'X-Forwarded-For' );
1521 $xff = array_map( 'trim', explode( ',', $xff ) );
1522 $xff = array_diff( $xff, array( $ip ) );
1523 $xffblocks = Block
::getBlocksForIPList( $xff, $this->isAnon(), !$bFromSlave );
1524 $block = Block
::chooseBlock( $xffblocks, $xff );
1525 if ( $block instanceof Block
) {
1526 # Mangle the reason to alert the user that the block
1527 # originated from matching the X-Forwarded-For header.
1528 $block->mReason
= wfMessage( 'xffblockreason', $block->mReason
)->text();
1532 if ( $block instanceof Block
) {
1533 wfDebug( __METHOD__
. ": Found block.\n" );
1534 $this->mBlock
= $block;
1535 $this->mBlockedby
= $block->getByName();
1536 $this->mBlockreason
= $block->mReason
;
1537 $this->mHideName
= $block->mHideName
;
1538 $this->mAllowUsertalk
= !$block->prevents( 'editownusertalk' );
1540 $this->mBlockedby
= '';
1541 $this->mHideName
= 0;
1542 $this->mAllowUsertalk
= false;
1546 wfRunHooks( 'GetBlockedStatus', array( &$this ) );
1548 wfProfileOut( __METHOD__
);
1552 * Whether the given IP is in a DNS blacklist.
1554 * @param string $ip IP to check
1555 * @param bool $checkWhitelist Whether to check the whitelist first
1556 * @return bool True if blacklisted.
1558 public function isDnsBlacklisted( $ip, $checkWhitelist = false ) {
1559 global $wgEnableSorbs, $wgEnableDnsBlacklist,
1560 $wgSorbsUrl, $wgDnsBlacklistUrls, $wgProxyWhitelist;
1562 if ( !$wgEnableDnsBlacklist && !$wgEnableSorbs ) {
1566 if ( $checkWhitelist && in_array( $ip, $wgProxyWhitelist ) ) {
1570 $urls = array_merge( $wgDnsBlacklistUrls, (array)$wgSorbsUrl );
1571 return $this->inDnsBlacklist( $ip, $urls );
1575 * Whether the given IP is in a given DNS blacklist.
1577 * @param string $ip IP to check
1578 * @param string|array $bases Array of Strings: URL of the DNS blacklist
1579 * @return bool True if blacklisted.
1581 public function inDnsBlacklist( $ip, $bases ) {
1582 wfProfileIn( __METHOD__
);
1585 // @todo FIXME: IPv6 ??? (http://bugs.php.net/bug.php?id=33170)
1586 if ( IP
::isIPv4( $ip ) ) {
1587 // Reverse IP, bug 21255
1588 $ipReversed = implode( '.', array_reverse( explode( '.', $ip ) ) );
1590 foreach ( (array)$bases as $base ) {
1592 // If we have an access key, use that too (ProjectHoneypot, etc.)
1593 if ( is_array( $base ) ) {
1594 if ( count( $base ) >= 2 ) {
1595 // Access key is 1, base URL is 0
1596 $host = "{$base[1]}.$ipReversed.{$base[0]}";
1598 $host = "$ipReversed.{$base[0]}";
1601 $host = "$ipReversed.$base";
1605 $ipList = gethostbynamel( $host );
1608 wfDebugLog( 'dnsblacklist', "Hostname $host is {$ipList[0]}, it's a proxy says $base!" );
1612 wfDebugLog( 'dnsblacklist', "Requested $host, not found in $base." );
1617 wfProfileOut( __METHOD__
);
1622 * Check if an IP address is in the local proxy list
1628 public static function isLocallyBlockedProxy( $ip ) {
1629 global $wgProxyList;
1631 if ( !$wgProxyList ) {
1634 wfProfileIn( __METHOD__
);
1636 if ( !is_array( $wgProxyList ) ) {
1637 // Load from the specified file
1638 $wgProxyList = array_map( 'trim', file( $wgProxyList ) );
1641 if ( !is_array( $wgProxyList ) ) {
1643 } elseif ( array_search( $ip, $wgProxyList ) !== false ) {
1645 } elseif ( array_key_exists( $ip, $wgProxyList ) ) {
1646 // Old-style flipped proxy list
1651 wfProfileOut( __METHOD__
);
1656 * Is this user subject to rate limiting?
1658 * @return bool True if rate limited
1660 public function isPingLimitable() {
1661 global $wgRateLimitsExcludedIPs;
1662 if ( in_array( $this->getRequest()->getIP(), $wgRateLimitsExcludedIPs ) ) {
1663 // No other good way currently to disable rate limits
1664 // for specific IPs. :P
1665 // But this is a crappy hack and should die.
1668 return !$this->isAllowed( 'noratelimit' );
1672 * Primitive rate limits: enforce maximum actions per time period
1673 * to put a brake on flooding.
1675 * @note When using a shared cache like memcached, IP-address
1676 * last-hit counters will be shared across wikis.
1678 * @param string $action Action to enforce; 'edit' if unspecified
1679 * @param int $incrBy Positive amount to increment counter by [defaults to 1]
1680 * @return bool True if a rate limiter was tripped
1682 public function pingLimiter( $action = 'edit', $incrBy = 1 ) {
1683 // Call the 'PingLimiter' hook
1685 if ( !wfRunHooks( 'PingLimiter', array( &$this, $action, &$result, $incrBy ) ) ) {
1689 global $wgRateLimits;
1690 if ( !isset( $wgRateLimits[$action] ) ) {
1694 // Some groups shouldn't trigger the ping limiter, ever
1695 if ( !$this->isPingLimitable() ) {
1700 wfProfileIn( __METHOD__
);
1702 $limits = $wgRateLimits[$action];
1704 $id = $this->getId();
1707 if ( isset( $limits['anon'] ) && $id == 0 ) {
1708 $keys[wfMemcKey( 'limiter', $action, 'anon' )] = $limits['anon'];
1711 if ( isset( $limits['user'] ) && $id != 0 ) {
1712 $userLimit = $limits['user'];
1714 if ( $this->isNewbie() ) {
1715 if ( isset( $limits['newbie'] ) && $id != 0 ) {
1716 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $limits['newbie'];
1718 if ( isset( $limits['ip'] ) ) {
1719 $ip = $this->getRequest()->getIP();
1720 $keys["mediawiki:limiter:$action:ip:$ip"] = $limits['ip'];
1722 if ( isset( $limits['subnet'] ) ) {
1723 $ip = $this->getRequest()->getIP();
1726 if ( IP
::isIPv6( $ip ) ) {
1727 $parts = IP
::parseRange( "$ip/64" );
1728 $subnet = $parts[0];
1729 } elseif ( preg_match( '/^(\d+\.\d+\.\d+)\.\d+$/', $ip, $matches ) ) {
1731 $subnet = $matches[1];
1733 if ( $subnet !== false ) {
1734 $keys["mediawiki:limiter:$action:subnet:$subnet"] = $limits['subnet'];
1738 // Check for group-specific permissions
1739 // If more than one group applies, use the group with the highest limit
1740 foreach ( $this->getGroups() as $group ) {
1741 if ( isset( $limits[$group] ) ) {
1742 if ( $userLimit === false ||
$limits[$group] > $userLimit ) {
1743 $userLimit = $limits[$group];
1747 // Set the user limit key
1748 if ( $userLimit !== false ) {
1749 list( $max, $period ) = $userLimit;
1750 wfDebug( __METHOD__
. ": effective user limit: $max in {$period}s\n" );
1751 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $userLimit;
1755 foreach ( $keys as $key => $limit ) {
1756 list( $max, $period ) = $limit;
1757 $summary = "(limit $max in {$period}s)";
1758 $count = $wgMemc->get( $key );
1761 if ( $count >= $max ) {
1762 wfDebugLog( 'ratelimit', "User '{$this->getName()}' " .
1763 "(IP {$this->getRequest()->getIP()}) tripped $key at $count $summary" );
1766 wfDebug( __METHOD__
. ": ok. $key at $count $summary\n" );
1769 wfDebug( __METHOD__
. ": adding record for $key $summary\n" );
1770 if ( $incrBy > 0 ) {
1771 $wgMemc->add( $key, 0, intval( $period ) ); // first ping
1774 if ( $incrBy > 0 ) {
1775 $wgMemc->incr( $key, $incrBy );
1779 wfProfileOut( __METHOD__
);
1784 * Check if user is blocked
1786 * @param bool $bFromSlave Whether to check the slave database instead of
1787 * the master. Hacked from false due to horrible probs on site.
1788 * @return bool True if blocked, false otherwise
1790 public function isBlocked( $bFromSlave = true ) {
1791 return $this->getBlock( $bFromSlave ) instanceof Block
&& $this->getBlock()->prevents( 'edit' );
1795 * Get the block affecting the user, or null if the user is not blocked
1797 * @param bool $bFromSlave Whether to check the slave database instead of the master
1798 * @return Block|null
1800 public function getBlock( $bFromSlave = true ) {
1801 $this->getBlockedStatus( $bFromSlave );
1802 return $this->mBlock
instanceof Block ?
$this->mBlock
: null;
1806 * Check if user is blocked from editing a particular article
1808 * @param Title $title Title to check
1809 * @param bool $bFromSlave Whether to check the slave database instead of the master
1812 public function isBlockedFrom( $title, $bFromSlave = false ) {
1813 global $wgBlockAllowsUTEdit;
1814 wfProfileIn( __METHOD__
);
1816 $blocked = $this->isBlocked( $bFromSlave );
1817 $allowUsertalk = ( $wgBlockAllowsUTEdit ?
$this->mAllowUsertalk
: false );
1818 // If a user's name is suppressed, they cannot make edits anywhere
1819 if ( !$this->mHideName
&& $allowUsertalk && $title->getText() === $this->getName()
1820 && $title->getNamespace() == NS_USER_TALK
) {
1822 wfDebug( __METHOD__
. ": self-talk page, ignoring any blocks\n" );
1825 wfRunHooks( 'UserIsBlockedFrom', array( $this, $title, &$blocked, &$allowUsertalk ) );
1827 wfProfileOut( __METHOD__
);
1832 * If user is blocked, return the name of the user who placed the block
1833 * @return string Name of blocker
1835 public function blockedBy() {
1836 $this->getBlockedStatus();
1837 return $this->mBlockedby
;
1841 * If user is blocked, return the specified reason for the block
1842 * @return string Blocking reason
1844 public function blockedFor() {
1845 $this->getBlockedStatus();
1846 return $this->mBlockreason
;
1850 * If user is blocked, return the ID for the block
1851 * @return int Block ID
1853 public function getBlockId() {
1854 $this->getBlockedStatus();
1855 return ( $this->mBlock ?
$this->mBlock
->getId() : false );
1859 * Check if user is blocked on all wikis.
1860 * Do not use for actual edit permission checks!
1861 * This is intended for quick UI checks.
1863 * @param string $ip IP address, uses current client if none given
1864 * @return bool True if blocked, false otherwise
1866 public function isBlockedGlobally( $ip = '' ) {
1867 if ( $this->mBlockedGlobally
!== null ) {
1868 return $this->mBlockedGlobally
;
1870 // User is already an IP?
1871 if ( IP
::isIPAddress( $this->getName() ) ) {
1872 $ip = $this->getName();
1874 $ip = $this->getRequest()->getIP();
1877 wfRunHooks( 'UserIsBlockedGlobally', array( &$this, $ip, &$blocked ) );
1878 $this->mBlockedGlobally
= (bool)$blocked;
1879 return $this->mBlockedGlobally
;
1883 * Check if user account is locked
1885 * @return bool True if locked, false otherwise
1887 public function isLocked() {
1888 if ( $this->mLocked
!== null ) {
1889 return $this->mLocked
;
1892 StubObject
::unstub( $wgAuth );
1893 $authUser = $wgAuth->getUserInstance( $this );
1894 $this->mLocked
= (bool)$authUser->isLocked();
1895 return $this->mLocked
;
1899 * Check if user account is hidden
1901 * @return bool True if hidden, false otherwise
1903 public function isHidden() {
1904 if ( $this->mHideName
!== null ) {
1905 return $this->mHideName
;
1907 $this->getBlockedStatus();
1908 if ( !$this->mHideName
) {
1910 StubObject
::unstub( $wgAuth );
1911 $authUser = $wgAuth->getUserInstance( $this );
1912 $this->mHideName
= (bool)$authUser->isHidden();
1914 return $this->mHideName
;
1918 * Get the user's ID.
1919 * @return int The user's ID; 0 if the user is anonymous or nonexistent
1921 public function getId() {
1922 if ( $this->mId
=== null && $this->mName
!== null && User
::isIP( $this->mName
) ) {
1923 // Special case, we know the user is anonymous
1925 } elseif ( !$this->isItemLoaded( 'id' ) ) {
1926 // Don't load if this was initialized from an ID
1933 * Set the user and reload all fields according to a given ID
1934 * @param int $v User ID to reload
1936 public function setId( $v ) {
1938 $this->clearInstanceCache( 'id' );
1942 * Get the user name, or the IP of an anonymous user
1943 * @return string User's name or IP address
1945 public function getName() {
1946 if ( $this->isItemLoaded( 'name', 'only' ) ) {
1947 // Special case optimisation
1948 return $this->mName
;
1951 if ( $this->mName
=== false ) {
1953 $this->mName
= IP
::sanitizeIP( $this->getRequest()->getIP() );
1955 return $this->mName
;
1960 * Set the user name.
1962 * This does not reload fields from the database according to the given
1963 * name. Rather, it is used to create a temporary "nonexistent user" for
1964 * later addition to the database. It can also be used to set the IP
1965 * address for an anonymous user to something other than the current
1968 * @note User::newFromName() has roughly the same function, when the named user
1970 * @param string $str New user name to set
1972 public function setName( $str ) {
1974 $this->mName
= $str;
1978 * Get the user's name escaped by underscores.
1979 * @return string Username escaped by underscores.
1981 public function getTitleKey() {
1982 return str_replace( ' ', '_', $this->getName() );
1986 * Check if the user has new messages.
1987 * @return bool True if the user has new messages
1989 public function getNewtalk() {
1992 // Load the newtalk status if it is unloaded (mNewtalk=-1)
1993 if ( $this->mNewtalk
=== -1 ) {
1994 $this->mNewtalk
= false; # reset talk page status
1996 // Check memcached separately for anons, who have no
1997 // entire User object stored in there.
1998 if ( !$this->mId
) {
1999 global $wgDisableAnonTalk;
2000 if ( $wgDisableAnonTalk ) {
2001 // Anon newtalk disabled by configuration.
2002 $this->mNewtalk
= false;
2005 $key = wfMemcKey( 'newtalk', 'ip', $this->getName() );
2006 $newtalk = $wgMemc->get( $key );
2007 if ( strval( $newtalk ) !== '' ) {
2008 $this->mNewtalk
= (bool)$newtalk;
2010 // Since we are caching this, make sure it is up to date by getting it
2012 $this->mNewtalk
= $this->checkNewtalk( 'user_ip', $this->getName(), true );
2013 $wgMemc->set( $key, (int)$this->mNewtalk
, 1800 );
2017 $this->mNewtalk
= $this->checkNewtalk( 'user_id', $this->mId
);
2021 return (bool)$this->mNewtalk
;
2025 * Return the data needed to construct links for new talk page message
2026 * alerts. If there are new messages, this will return an associative array
2027 * with the following data:
2028 * wiki: The database name of the wiki
2029 * link: Root-relative link to the user's talk page
2030 * rev: The last talk page revision that the user has seen or null. This
2031 * is useful for building diff links.
2032 * If there are no new messages, it returns an empty array.
2033 * @note This function was designed to accomodate multiple talk pages, but
2034 * currently only returns a single link and revision.
2037 public function getNewMessageLinks() {
2039 if ( !wfRunHooks( 'UserRetrieveNewTalks', array( &$this, &$talks ) ) ) {
2041 } elseif ( !$this->getNewtalk() ) {
2044 $utp = $this->getTalkPage();
2045 $dbr = wfGetDB( DB_SLAVE
);
2046 // Get the "last viewed rev" timestamp from the oldest message notification
2047 $timestamp = $dbr->selectField( 'user_newtalk',
2048 'MIN(user_last_timestamp)',
2049 $this->isAnon() ?
array( 'user_ip' => $this->getName() ) : array( 'user_id' => $this->getID() ),
2051 $rev = $timestamp ? Revision
::loadFromTimestamp( $dbr, $utp, $timestamp ) : null;
2052 return array( array( 'wiki' => wfWikiID(), 'link' => $utp->getLocalURL(), 'rev' => $rev ) );
2056 * Get the revision ID for the last talk page revision viewed by the talk
2058 * @return int|null Revision ID or null
2060 public function getNewMessageRevisionId() {
2061 $newMessageRevisionId = null;
2062 $newMessageLinks = $this->getNewMessageLinks();
2063 if ( $newMessageLinks ) {
2064 // Note: getNewMessageLinks() never returns more than a single link
2065 // and it is always for the same wiki, but we double-check here in
2066 // case that changes some time in the future.
2067 if ( count( $newMessageLinks ) === 1
2068 && $newMessageLinks[0]['wiki'] === wfWikiID()
2069 && $newMessageLinks[0]['rev']
2071 $newMessageRevision = $newMessageLinks[0]['rev'];
2072 $newMessageRevisionId = $newMessageRevision->getId();
2075 return $newMessageRevisionId;
2079 * Internal uncached check for new messages
2082 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2083 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2084 * @param bool $fromMaster true to fetch from the master, false for a slave
2085 * @return bool True if the user has new messages
2087 protected function checkNewtalk( $field, $id, $fromMaster = false ) {
2088 if ( $fromMaster ) {
2089 $db = wfGetDB( DB_MASTER
);
2091 $db = wfGetDB( DB_SLAVE
);
2093 $ok = $db->selectField( 'user_newtalk', $field,
2094 array( $field => $id ), __METHOD__
);
2095 return $ok !== false;
2099 * Add or update the new messages flag
2100 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2101 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2102 * @param Revision|null $curRev New, as yet unseen revision of the user talk page. Ignored if null.
2103 * @return bool True if successful, false otherwise
2105 protected function updateNewtalk( $field, $id, $curRev = null ) {
2106 // Get timestamp of the talk page revision prior to the current one
2107 $prevRev = $curRev ?
$curRev->getPrevious() : false;
2108 $ts = $prevRev ?
$prevRev->getTimestamp() : null;
2109 // Mark the user as having new messages since this revision
2110 $dbw = wfGetDB( DB_MASTER
);
2111 $dbw->insert( 'user_newtalk',
2112 array( $field => $id, 'user_last_timestamp' => $dbw->timestampOrNull( $ts ) ),
2115 if ( $dbw->affectedRows() ) {
2116 wfDebug( __METHOD__
. ": set on ($field, $id)\n" );
2119 wfDebug( __METHOD__
. " already set ($field, $id)\n" );
2125 * Clear the new messages flag for the given user
2126 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2127 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2128 * @return bool True if successful, false otherwise
2130 protected function deleteNewtalk( $field, $id ) {
2131 $dbw = wfGetDB( DB_MASTER
);
2132 $dbw->delete( 'user_newtalk',
2133 array( $field => $id ),
2135 if ( $dbw->affectedRows() ) {
2136 wfDebug( __METHOD__
. ": killed on ($field, $id)\n" );
2139 wfDebug( __METHOD__
. ": already gone ($field, $id)\n" );
2145 * Update the 'You have new messages!' status.
2146 * @param bool $val Whether the user has new messages
2147 * @param Revision $curRev New, as yet unseen revision of the user talk
2148 * page. Ignored if null or !$val.
2150 public function setNewtalk( $val, $curRev = null ) {
2151 if ( wfReadOnly() ) {
2156 $this->mNewtalk
= $val;
2158 if ( $this->isAnon() ) {
2160 $id = $this->getName();
2163 $id = $this->getId();
2168 $changed = $this->updateNewtalk( $field, $id, $curRev );
2170 $changed = $this->deleteNewtalk( $field, $id );
2173 if ( $this->isAnon() ) {
2174 // Anons have a separate memcached space, since
2175 // user records aren't kept for them.
2176 $key = wfMemcKey( 'newtalk', 'ip', $id );
2177 $wgMemc->set( $key, $val ?
1 : 0, 1800 );
2180 $this->invalidateCache();
2185 * Generate a current or new-future timestamp to be stored in the
2186 * user_touched field when we update things.
2187 * @return string Timestamp in TS_MW format
2189 private static function newTouchedTimestamp() {
2190 global $wgClockSkewFudge;
2191 return wfTimestamp( TS_MW
, time() +
$wgClockSkewFudge );
2195 * Clear user data from memcached.
2196 * Use after applying fun updates to the database; caller's
2197 * responsibility to update user_touched if appropriate.
2199 * Called implicitly from invalidateCache() and saveSettings().
2201 private function clearSharedCache() {
2205 $wgMemc->delete( wfMemcKey( 'user', 'id', $this->mId
) );
2210 * Immediately touch the user data cache for this account.
2211 * Updates user_touched field, and removes account data from memcached
2212 * for reload on the next hit.
2214 public function invalidateCache() {
2215 if ( wfReadOnly() ) {
2220 $this->mTouched
= self
::newTouchedTimestamp();
2222 $dbw = wfGetDB( DB_MASTER
);
2223 $userid = $this->mId
;
2224 $touched = $this->mTouched
;
2225 $method = __METHOD__
;
2226 $dbw->onTransactionIdle( function() use ( $dbw, $userid, $touched, $method ) {
2227 // Prevent contention slams by checking user_touched first
2228 $encTouched = $dbw->addQuotes( $dbw->timestamp( $touched ) );
2229 $needsPurge = $dbw->selectField( 'user', '1',
2230 array( 'user_id' => $userid, 'user_touched < ' . $encTouched ) );
2231 if ( $needsPurge ) {
2232 $dbw->update( 'user',
2233 array( 'user_touched' => $dbw->timestamp( $touched ) ),
2234 array( 'user_id' => $userid, 'user_touched < ' . $encTouched ),
2239 $this->clearSharedCache();
2244 * Validate the cache for this account.
2245 * @param string $timestamp A timestamp in TS_MW format
2248 public function validateCache( $timestamp ) {
2250 return ( $timestamp >= $this->mTouched
);
2254 * Get the user touched timestamp
2255 * @return string Timestamp
2257 public function getTouched() {
2259 return $this->mTouched
;
2263 * Set the password and reset the random token.
2264 * Calls through to authentication plugin if necessary;
2265 * will have no effect if the auth plugin refuses to
2266 * pass the change through or if the legal password
2269 * As a special case, setting the password to null
2270 * wipes it, so the account cannot be logged in until
2271 * a new password is set, for instance via e-mail.
2273 * @param string $str New password to set
2274 * @throws PasswordError on failure
2278 public function setPassword( $str ) {
2281 if ( $str !== null ) {
2282 if ( !$wgAuth->allowPasswordChange() ) {
2283 throw new PasswordError( wfMessage( 'password-change-forbidden' )->text() );
2286 if ( !$this->isValidPassword( $str ) ) {
2287 global $wgMinimalPasswordLength;
2288 $valid = $this->getPasswordValidity( $str );
2289 if ( is_array( $valid ) ) {
2290 $message = array_shift( $valid );
2294 $params = array( $wgMinimalPasswordLength );
2296 throw new PasswordError( wfMessage( $message, $params )->text() );
2300 if ( !$wgAuth->setPassword( $this, $str ) ) {
2301 throw new PasswordError( wfMessage( 'externaldberror' )->text() );
2304 $this->setInternalPassword( $str );
2310 * Set the password and reset the random token unconditionally.
2312 * @param string|null $str New password to set or null to set an invalid
2313 * password hash meaning that the user will not be able to log in
2314 * through the web interface.
2316 public function setInternalPassword( $str ) {
2320 if ( $str === null ) {
2321 // Save an invalid hash...
2322 $this->mPassword
= '';
2324 $this->mPassword
= self
::crypt( $str );
2326 $this->mNewpassword
= '';
2327 $this->mNewpassTime
= null;
2331 * Get the user's current token.
2332 * @param bool $forceCreation Force the generation of a new token if the
2333 * user doesn't have one (default=true for backwards compatibility).
2334 * @return string Token
2336 public function getToken( $forceCreation = true ) {
2338 if ( !$this->mToken
&& $forceCreation ) {
2341 return $this->mToken
;
2345 * Set the random token (used for persistent authentication)
2346 * Called from loadDefaults() among other places.
2348 * @param string|bool $token If specified, set the token to this value
2350 public function setToken( $token = false ) {
2353 $this->mToken
= MWCryptRand
::generateHex( USER_TOKEN_LENGTH
);
2355 $this->mToken
= $token;
2360 * Set the password for a password reminder or new account email
2362 * @param string $str New password to set or null to set an invalid
2363 * password hash meaning that the user will not be able to use it
2364 * @param bool $throttle If true, reset the throttle timestamp to the present
2366 public function setNewpassword( $str, $throttle = true ) {
2369 if ( $str === null ) {
2370 $this->mNewpassword
= '';
2371 $this->mNewpassTime
= null;
2373 $this->mNewpassword
= self
::crypt( $str );
2375 $this->mNewpassTime
= wfTimestampNow();
2381 * Has password reminder email been sent within the last
2382 * $wgPasswordReminderResendTime hours?
2385 public function isPasswordReminderThrottled() {
2386 global $wgPasswordReminderResendTime;
2388 if ( !$this->mNewpassTime ||
!$wgPasswordReminderResendTime ) {
2391 $expiry = wfTimestamp( TS_UNIX
, $this->mNewpassTime
) +
$wgPasswordReminderResendTime * 3600;
2392 return time() < $expiry;
2396 * Get the user's e-mail address
2397 * @return string User's email address
2399 public function getEmail() {
2401 wfRunHooks( 'UserGetEmail', array( $this, &$this->mEmail
) );
2402 return $this->mEmail
;
2406 * Get the timestamp of the user's e-mail authentication
2407 * @return string TS_MW timestamp
2409 public function getEmailAuthenticationTimestamp() {
2411 wfRunHooks( 'UserGetEmailAuthenticationTimestamp', array( $this, &$this->mEmailAuthenticated
) );
2412 return $this->mEmailAuthenticated
;
2416 * Set the user's e-mail address
2417 * @param string $str New e-mail address
2419 public function setEmail( $str ) {
2421 if ( $str == $this->mEmail
) {
2424 $this->mEmail
= $str;
2425 $this->invalidateEmail();
2426 wfRunHooks( 'UserSetEmail', array( $this, &$this->mEmail
) );
2430 * Set the user's e-mail address and a confirmation mail if needed.
2433 * @param string $str New e-mail address
2436 public function setEmailWithConfirmation( $str ) {
2437 global $wgEnableEmail, $wgEmailAuthentication;
2439 if ( !$wgEnableEmail ) {
2440 return Status
::newFatal( 'emaildisabled' );
2443 $oldaddr = $this->getEmail();
2444 if ( $str === $oldaddr ) {
2445 return Status
::newGood( true );
2448 $this->setEmail( $str );
2450 if ( $str !== '' && $wgEmailAuthentication ) {
2451 // Send a confirmation request to the new address if needed
2452 $type = $oldaddr != '' ?
'changed' : 'set';
2453 $result = $this->sendConfirmationMail( $type );
2454 if ( $result->isGood() ) {
2455 // Say the the caller that a confirmation mail has been sent
2456 $result->value
= 'eauth';
2459 $result = Status
::newGood( true );
2466 * Get the user's real name
2467 * @return string User's real name
2469 public function getRealName() {
2470 if ( !$this->isItemLoaded( 'realname' ) ) {
2474 return $this->mRealName
;
2478 * Set the user's real name
2479 * @param string $str New real name
2481 public function setRealName( $str ) {
2483 $this->mRealName
= $str;
2487 * Get the user's current setting for a given option.
2489 * @param string $oname The option to check
2490 * @param string $defaultOverride A default value returned if the option does not exist
2491 * @param bool $ignoreHidden Whether to ignore the effects of $wgHiddenPrefs
2492 * @return string User's current value for the option
2493 * @see getBoolOption()
2494 * @see getIntOption()
2496 public function getOption( $oname, $defaultOverride = null, $ignoreHidden = false ) {
2497 global $wgHiddenPrefs;
2498 $this->loadOptions();
2500 # We want 'disabled' preferences to always behave as the default value for
2501 # users, even if they have set the option explicitly in their settings (ie they
2502 # set it, and then it was disabled removing their ability to change it). But
2503 # we don't want to erase the preferences in the database in case the preference
2504 # is re-enabled again. So don't touch $mOptions, just override the returned value
2505 if ( !$ignoreHidden && in_array( $oname, $wgHiddenPrefs ) ) {
2506 return self
::getDefaultOption( $oname );
2509 if ( array_key_exists( $oname, $this->mOptions
) ) {
2510 return $this->mOptions
[$oname];
2512 return $defaultOverride;
2517 * Get all user's options
2521 public function getOptions() {
2522 global $wgHiddenPrefs;
2523 $this->loadOptions();
2524 $options = $this->mOptions
;
2526 # We want 'disabled' preferences to always behave as the default value for
2527 # users, even if they have set the option explicitly in their settings (ie they
2528 # set it, and then it was disabled removing their ability to change it). But
2529 # we don't want to erase the preferences in the database in case the preference
2530 # is re-enabled again. So don't touch $mOptions, just override the returned value
2531 foreach ( $wgHiddenPrefs as $pref ) {
2532 $default = self
::getDefaultOption( $pref );
2533 if ( $default !== null ) {
2534 $options[$pref] = $default;
2542 * Get the user's current setting for a given option, as a boolean value.
2544 * @param string $oname The option to check
2545 * @return bool User's current value for the option
2548 public function getBoolOption( $oname ) {
2549 return (bool)$this->getOption( $oname );
2553 * Get the user's current setting for a given option, as an integer value.
2555 * @param string $oname The option to check
2556 * @param int $defaultOverride A default value returned if the option does not exist
2557 * @return int User's current value for the option
2560 public function getIntOption( $oname, $defaultOverride = 0 ) {
2561 $val = $this->getOption( $oname );
2563 $val = $defaultOverride;
2565 return intval( $val );
2569 * Set the given option for a user.
2571 * @param string $oname The option to set
2572 * @param mixed $val New value to set
2574 public function setOption( $oname, $val ) {
2575 $this->loadOptions();
2577 // Explicitly NULL values should refer to defaults
2578 if ( is_null( $val ) ) {
2579 $val = self
::getDefaultOption( $oname );
2582 $this->mOptions
[$oname] = $val;
2586 * Get a token stored in the preferences (like the watchlist one),
2587 * resetting it if it's empty (and saving changes).
2589 * @param string $oname The option name to retrieve the token from
2590 * @return string|bool User's current value for the option, or false if this option is disabled.
2591 * @see resetTokenFromOption()
2594 public function getTokenFromOption( $oname ) {
2595 global $wgHiddenPrefs;
2596 if ( in_array( $oname, $wgHiddenPrefs ) ) {
2600 $token = $this->getOption( $oname );
2602 $token = $this->resetTokenFromOption( $oname );
2603 $this->saveSettings();
2609 * Reset a token stored in the preferences (like the watchlist one).
2610 * *Does not* save user's preferences (similarly to setOption()).
2612 * @param string $oname The option name to reset the token in
2613 * @return string|bool New token value, or false if this option is disabled.
2614 * @see getTokenFromOption()
2617 public function resetTokenFromOption( $oname ) {
2618 global $wgHiddenPrefs;
2619 if ( in_array( $oname, $wgHiddenPrefs ) ) {
2623 $token = MWCryptRand
::generateHex( 40 );
2624 $this->setOption( $oname, $token );
2629 * Return a list of the types of user options currently returned by
2630 * User::getOptionKinds().
2632 * Currently, the option kinds are:
2633 * - 'registered' - preferences which are registered in core MediaWiki or
2634 * by extensions using the UserGetDefaultOptions hook.
2635 * - 'registered-multiselect' - as above, using the 'multiselect' type.
2636 * - 'registered-checkmatrix' - as above, using the 'checkmatrix' type.
2637 * - 'userjs' - preferences with names starting with 'userjs-', intended to
2638 * be used by user scripts.
2639 * - 'special' - "preferences" that are not accessible via User::getOptions
2640 * or User::setOptions.
2641 * - 'unused' - preferences about which MediaWiki doesn't know anything.
2642 * These are usually legacy options, removed in newer versions.
2644 * The API (and possibly others) use this function to determine the possible
2645 * option types for validation purposes, so make sure to update this when a
2646 * new option kind is added.
2648 * @see User::getOptionKinds
2649 * @return array Option kinds
2651 public static function listOptionKinds() {
2654 'registered-multiselect',
2655 'registered-checkmatrix',
2663 * Return an associative array mapping preferences keys to the kind of a preference they're
2664 * used for. Different kinds are handled differently when setting or reading preferences.
2666 * See User::listOptionKinds for the list of valid option types that can be provided.
2668 * @see User::listOptionKinds
2669 * @param IContextSource $context
2670 * @param array $options Assoc. array with options keys to check as keys.
2671 * Defaults to $this->mOptions.
2672 * @return array the key => kind mapping data
2674 public function getOptionKinds( IContextSource
$context, $options = null ) {
2675 $this->loadOptions();
2676 if ( $options === null ) {
2677 $options = $this->mOptions
;
2680 $prefs = Preferences
::getPreferences( $this, $context );
2683 // Pull out the "special" options, so they don't get converted as
2684 // multiselect or checkmatrix.
2685 $specialOptions = array_fill_keys( Preferences
::getSaveBlacklist(), true );
2686 foreach ( $specialOptions as $name => $value ) {
2687 unset( $prefs[$name] );
2690 // Multiselect and checkmatrix options are stored in the database with
2691 // one key per option, each having a boolean value. Extract those keys.
2692 $multiselectOptions = array();
2693 foreach ( $prefs as $name => $info ) {
2694 if ( ( isset( $info['type'] ) && $info['type'] == 'multiselect' ) ||
2695 ( isset( $info['class'] ) && $info['class'] == 'HTMLMultiSelectField' ) ) {
2696 $opts = HTMLFormField
::flattenOptions( $info['options'] );
2697 $prefix = isset( $info['prefix'] ) ?
$info['prefix'] : $name;
2699 foreach ( $opts as $value ) {
2700 $multiselectOptions["$prefix$value"] = true;
2703 unset( $prefs[$name] );
2706 $checkmatrixOptions = array();
2707 foreach ( $prefs as $name => $info ) {
2708 if ( ( isset( $info['type'] ) && $info['type'] == 'checkmatrix' ) ||
2709 ( isset( $info['class'] ) && $info['class'] == 'HTMLCheckMatrix' ) ) {
2710 $columns = HTMLFormField
::flattenOptions( $info['columns'] );
2711 $rows = HTMLFormField
::flattenOptions( $info['rows'] );
2712 $prefix = isset( $info['prefix'] ) ?
$info['prefix'] : $name;
2714 foreach ( $columns as $column ) {
2715 foreach ( $rows as $row ) {
2716 $checkmatrixOptions["$prefix-$column-$row"] = true;
2720 unset( $prefs[$name] );
2724 // $value is ignored
2725 foreach ( $options as $key => $value ) {
2726 if ( isset( $prefs[$key] ) ) {
2727 $mapping[$key] = 'registered';
2728 } elseif ( isset( $multiselectOptions[$key] ) ) {
2729 $mapping[$key] = 'registered-multiselect';
2730 } elseif ( isset( $checkmatrixOptions[$key] ) ) {
2731 $mapping[$key] = 'registered-checkmatrix';
2732 } elseif ( isset( $specialOptions[$key] ) ) {
2733 $mapping[$key] = 'special';
2734 } elseif ( substr( $key, 0, 7 ) === 'userjs-' ) {
2735 $mapping[$key] = 'userjs';
2737 $mapping[$key] = 'unused';
2745 * Reset certain (or all) options to the site defaults
2747 * The optional parameter determines which kinds of preferences will be reset.
2748 * Supported values are everything that can be reported by getOptionKinds()
2749 * and 'all', which forces a reset of *all* preferences and overrides everything else.
2751 * @param array|string $resetKinds Which kinds of preferences to reset. Defaults to
2752 * array( 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' )
2753 * for backwards-compatibility.
2754 * @param IContextSource|null $context Context source used when $resetKinds
2755 * does not contain 'all', passed to getOptionKinds().
2756 * Defaults to RequestContext::getMain() when null.
2758 public function resetOptions(
2759 $resetKinds = array( 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' ),
2760 IContextSource
$context = null
2763 $defaultOptions = self
::getDefaultOptions();
2765 if ( !is_array( $resetKinds ) ) {
2766 $resetKinds = array( $resetKinds );
2769 if ( in_array( 'all', $resetKinds ) ) {
2770 $newOptions = $defaultOptions;
2772 if ( $context === null ) {
2773 $context = RequestContext
::getMain();
2776 $optionKinds = $this->getOptionKinds( $context );
2777 $resetKinds = array_intersect( $resetKinds, self
::listOptionKinds() );
2778 $newOptions = array();
2780 // Use default values for the options that should be deleted, and
2781 // copy old values for the ones that shouldn't.
2782 foreach ( $this->mOptions
as $key => $value ) {
2783 if ( in_array( $optionKinds[$key], $resetKinds ) ) {
2784 if ( array_key_exists( $key, $defaultOptions ) ) {
2785 $newOptions[$key] = $defaultOptions[$key];
2788 $newOptions[$key] = $value;
2793 $this->mOptions
= $newOptions;
2794 $this->mOptionsLoaded
= true;
2798 * Get the user's preferred date format.
2799 * @return string User's preferred date format
2801 public function getDatePreference() {
2802 // Important migration for old data rows
2803 if ( is_null( $this->mDatePreference
) ) {
2805 $value = $this->getOption( 'date' );
2806 $map = $wgLang->getDatePreferenceMigrationMap();
2807 if ( isset( $map[$value] ) ) {
2808 $value = $map[$value];
2810 $this->mDatePreference
= $value;
2812 return $this->mDatePreference
;
2816 * Determine based on the wiki configuration and the user's options,
2817 * whether this user must be over HTTPS no matter what.
2821 public function requiresHTTPS() {
2822 global $wgSecureLogin;
2823 if ( !$wgSecureLogin ) {
2826 $https = $this->getBoolOption( 'prefershttps' );
2827 wfRunHooks( 'UserRequiresHTTPS', array( $this, &$https ) );
2829 $https = wfCanIPUseHTTPS( $this->getRequest()->getIP() );
2836 * Get the user preferred stub threshold
2840 public function getStubThreshold() {
2841 global $wgMaxArticleSize; # Maximum article size, in Kb
2842 $threshold = $this->getIntOption( 'stubthreshold' );
2843 if ( $threshold > $wgMaxArticleSize * 1024 ) {
2844 // If they have set an impossible value, disable the preference
2845 // so we can use the parser cache again.
2852 * Get the permissions this user has.
2853 * @return array Array of String permission names
2855 public function getRights() {
2856 if ( is_null( $this->mRights
) ) {
2857 $this->mRights
= self
::getGroupPermissions( $this->getEffectiveGroups() );
2858 wfRunHooks( 'UserGetRights', array( $this, &$this->mRights
) );
2859 // Force reindexation of rights when a hook has unset one of them
2860 $this->mRights
= array_values( array_unique( $this->mRights
) );
2862 return $this->mRights
;
2866 * Get the list of explicit group memberships this user has.
2867 * The implicit * and user groups are not included.
2868 * @return array Array of String internal group names
2870 public function getGroups() {
2872 $this->loadGroups();
2873 return $this->mGroups
;
2877 * Get the list of implicit group memberships this user has.
2878 * This includes all explicit groups, plus 'user' if logged in,
2879 * '*' for all accounts, and autopromoted groups
2880 * @param bool $recache Whether to avoid the cache
2881 * @return array Array of String internal group names
2883 public function getEffectiveGroups( $recache = false ) {
2884 if ( $recache ||
is_null( $this->mEffectiveGroups
) ) {
2885 wfProfileIn( __METHOD__
);
2886 $this->mEffectiveGroups
= array_unique( array_merge(
2887 $this->getGroups(), // explicit groups
2888 $this->getAutomaticGroups( $recache ) // implicit groups
2890 // Hook for additional groups
2891 wfRunHooks( 'UserEffectiveGroups', array( &$this, &$this->mEffectiveGroups
) );
2892 // Force reindexation of groups when a hook has unset one of them
2893 $this->mEffectiveGroups
= array_values( array_unique( $this->mEffectiveGroups
) );
2894 wfProfileOut( __METHOD__
);
2896 return $this->mEffectiveGroups
;
2900 * Get the list of implicit group memberships this user has.
2901 * This includes 'user' if logged in, '*' for all accounts,
2902 * and autopromoted groups
2903 * @param bool $recache Whether to avoid the cache
2904 * @return array Array of String internal group names
2906 public function getAutomaticGroups( $recache = false ) {
2907 if ( $recache ||
is_null( $this->mImplicitGroups
) ) {
2908 wfProfileIn( __METHOD__
);
2909 $this->mImplicitGroups
= array( '*' );
2910 if ( $this->getId() ) {
2911 $this->mImplicitGroups
[] = 'user';
2913 $this->mImplicitGroups
= array_unique( array_merge(
2914 $this->mImplicitGroups
,
2915 Autopromote
::getAutopromoteGroups( $this )
2919 // Assure data consistency with rights/groups,
2920 // as getEffectiveGroups() depends on this function
2921 $this->mEffectiveGroups
= null;
2923 wfProfileOut( __METHOD__
);
2925 return $this->mImplicitGroups
;
2929 * Returns the groups the user has belonged to.
2931 * The user may still belong to the returned groups. Compare with getGroups().
2933 * The function will not return groups the user had belonged to before MW 1.17
2935 * @return array Names of the groups the user has belonged to.
2937 public function getFormerGroups() {
2938 if ( is_null( $this->mFormerGroups
) ) {
2939 $dbr = wfGetDB( DB_MASTER
);
2940 $res = $dbr->select( 'user_former_groups',
2941 array( 'ufg_group' ),
2942 array( 'ufg_user' => $this->mId
),
2944 $this->mFormerGroups
= array();
2945 foreach ( $res as $row ) {
2946 $this->mFormerGroups
[] = $row->ufg_group
;
2949 return $this->mFormerGroups
;
2953 * Get the user's edit count.
2954 * @return int|null null for anonymous users
2956 public function getEditCount() {
2957 if ( !$this->getId() ) {
2961 if ( !isset( $this->mEditCount
) ) {
2962 /* Populate the count, if it has not been populated yet */
2963 wfProfileIn( __METHOD__
);
2964 $dbr = wfGetDB( DB_SLAVE
);
2965 // check if the user_editcount field has been initialized
2966 $count = $dbr->selectField(
2967 'user', 'user_editcount',
2968 array( 'user_id' => $this->mId
),
2972 if ( $count === null ) {
2973 // it has not been initialized. do so.
2974 $count = $this->initEditCount();
2976 $this->mEditCount
= $count;
2977 wfProfileOut( __METHOD__
);
2979 return (int)$this->mEditCount
;
2983 * Add the user to the given group.
2984 * This takes immediate effect.
2985 * @param string $group Name of the group to add
2987 public function addGroup( $group ) {
2988 if ( wfRunHooks( 'UserAddGroup', array( $this, &$group ) ) ) {
2989 $dbw = wfGetDB( DB_MASTER
);
2990 if ( $this->getId() ) {
2991 $dbw->insert( 'user_groups',
2993 'ug_user' => $this->getID(),
2994 'ug_group' => $group,
2997 array( 'IGNORE' ) );
3000 $this->loadGroups();
3001 $this->mGroups
[] = $group;
3002 // In case loadGroups was not called before, we now have the right twice.
3003 // Get rid of the duplicate.
3004 $this->mGroups
= array_unique( $this->mGroups
);
3006 // Refresh the groups caches, and clear the rights cache so it will be
3007 // refreshed on the next call to $this->getRights().
3008 $this->getEffectiveGroups( true );
3009 $this->mRights
= null;
3011 $this->invalidateCache();
3015 * Remove the user from the given group.
3016 * This takes immediate effect.
3017 * @param string $group Name of the group to remove
3019 public function removeGroup( $group ) {
3021 if ( wfRunHooks( 'UserRemoveGroup', array( $this, &$group ) ) ) {
3022 $dbw = wfGetDB( DB_MASTER
);
3023 $dbw->delete( 'user_groups',
3025 'ug_user' => $this->getID(),
3026 'ug_group' => $group,
3028 // Remember that the user was in this group
3029 $dbw->insert( 'user_former_groups',
3031 'ufg_user' => $this->getID(),
3032 'ufg_group' => $group,
3035 array( 'IGNORE' ) );
3037 $this->loadGroups();
3038 $this->mGroups
= array_diff( $this->mGroups
, array( $group ) );
3040 // Refresh the groups caches, and clear the rights cache so it will be
3041 // refreshed on the next call to $this->getRights().
3042 $this->getEffectiveGroups( true );
3043 $this->mRights
= null;
3045 $this->invalidateCache();
3049 * Get whether the user is logged in
3052 public function isLoggedIn() {
3053 return $this->getID() != 0;
3057 * Get whether the user is anonymous
3060 public function isAnon() {
3061 return !$this->isLoggedIn();
3065 * Check if user is allowed to access a feature / make an action
3067 * @internal param \String $varargs permissions to test
3068 * @return bool True if user is allowed to perform *any* of the given actions
3072 public function isAllowedAny( /*...*/ ) {
3073 $permissions = func_get_args();
3074 foreach ( $permissions as $permission ) {
3075 if ( $this->isAllowed( $permission ) ) {
3084 * @internal param $varargs string
3085 * @return bool True if the user is allowed to perform *all* of the given actions
3087 public function isAllowedAll( /*...*/ ) {
3088 $permissions = func_get_args();
3089 foreach ( $permissions as $permission ) {
3090 if ( !$this->isAllowed( $permission ) ) {
3098 * Internal mechanics of testing a permission
3099 * @param string $action
3102 public function isAllowed( $action = '' ) {
3103 if ( $action === '' ) {
3104 return true; // In the spirit of DWIM
3106 // Patrolling may not be enabled
3107 if ( $action === 'patrol' ||
$action === 'autopatrol' ) {
3108 global $wgUseRCPatrol, $wgUseNPPatrol;
3109 if ( !$wgUseRCPatrol && !$wgUseNPPatrol ) {
3113 // Use strict parameter to avoid matching numeric 0 accidentally inserted
3114 // by misconfiguration: 0 == 'foo'
3115 return in_array( $action, $this->getRights(), true );
3119 * Check whether to enable recent changes patrol features for this user
3120 * @return bool True or false
3122 public function useRCPatrol() {
3123 global $wgUseRCPatrol;
3124 return $wgUseRCPatrol && $this->isAllowedAny( 'patrol', 'patrolmarks' );
3128 * Check whether to enable new pages patrol features for this user
3129 * @return bool True or false
3131 public function useNPPatrol() {
3132 global $wgUseRCPatrol, $wgUseNPPatrol;
3134 ( $wgUseRCPatrol ||
$wgUseNPPatrol )
3135 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3140 * Get the WebRequest object to use with this object
3142 * @return WebRequest
3144 public function getRequest() {
3145 if ( $this->mRequest
) {
3146 return $this->mRequest
;
3154 * Get the current skin, loading it if required
3155 * @return Skin The current skin
3156 * @todo FIXME: Need to check the old failback system [AV]
3157 * @deprecated since 1.18 Use ->getSkin() in the most relevant outputting context you have
3159 public function getSkin() {
3160 wfDeprecated( __METHOD__
, '1.18' );
3161 return RequestContext
::getMain()->getSkin();
3165 * Get a WatchedItem for this user and $title.
3167 * @since 1.22 $checkRights parameter added
3168 * @param Title $title
3169 * @param int $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3170 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
3171 * @return WatchedItem
3173 public function getWatchedItem( $title, $checkRights = WatchedItem
::CHECK_USER_RIGHTS
) {
3174 $key = $checkRights . ':' . $title->getNamespace() . ':' . $title->getDBkey();
3176 if ( isset( $this->mWatchedItems
[$key] ) ) {
3177 return $this->mWatchedItems
[$key];
3180 if ( count( $this->mWatchedItems
) >= self
::MAX_WATCHED_ITEMS_CACHE
) {
3181 $this->mWatchedItems
= array();
3184 $this->mWatchedItems
[$key] = WatchedItem
::fromUserTitle( $this, $title, $checkRights );
3185 return $this->mWatchedItems
[$key];
3189 * Check the watched status of an article.
3190 * @since 1.22 $checkRights parameter added
3191 * @param Title $title Title of the article to look at
3192 * @param int $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3193 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
3196 public function isWatched( $title, $checkRights = WatchedItem
::CHECK_USER_RIGHTS
) {
3197 return $this->getWatchedItem( $title, $checkRights )->isWatched();
3202 * @since 1.22 $checkRights parameter added
3203 * @param Title $title Title of the article to look at
3204 * @param int $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3205 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
3207 public function addWatch( $title, $checkRights = WatchedItem
::CHECK_USER_RIGHTS
) {
3208 $this->getWatchedItem( $title, $checkRights )->addWatch();
3209 $this->invalidateCache();
3213 * Stop watching an article.
3214 * @since 1.22 $checkRights parameter added
3215 * @param Title $title Title of the article to look at
3216 * @param int $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3217 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
3219 public function removeWatch( $title, $checkRights = WatchedItem
::CHECK_USER_RIGHTS
) {
3220 $this->getWatchedItem( $title, $checkRights )->removeWatch();
3221 $this->invalidateCache();
3225 * Clear the user's notification timestamp for the given title.
3226 * If e-notif e-mails are on, they will receive notification mails on
3227 * the next change of the page if it's watched etc.
3228 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3229 * @param Title $title Title of the article to look at
3230 * @param int $oldid The revision id being viewed. If not given or 0, latest revision is assumed.
3232 public function clearNotification( &$title, $oldid = 0 ) {
3233 global $wgUseEnotif, $wgShowUpdatedMarker;
3235 // Do nothing if the database is locked to writes
3236 if ( wfReadOnly() ) {
3240 // Do nothing if not allowed to edit the watchlist
3241 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
3245 // If we're working on user's talk page, we should update the talk page message indicator
3246 if ( $title->getNamespace() == NS_USER_TALK
&& $title->getText() == $this->getName() ) {
3247 if ( !wfRunHooks( 'UserClearNewTalkNotification', array( &$this, $oldid ) ) ) {
3251 $nextid = $oldid ?
$title->getNextRevisionID( $oldid ) : null;
3253 if ( !$oldid ||
!$nextid ) {
3254 // If we're looking at the latest revision, we should definitely clear it
3255 $this->setNewtalk( false );
3257 // Otherwise we should update its revision, if it's present
3258 if ( $this->getNewtalk() ) {
3259 // Naturally the other one won't clear by itself
3260 $this->setNewtalk( false );
3261 $this->setNewtalk( true, Revision
::newFromId( $nextid ) );
3266 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3270 if ( $this->isAnon() ) {
3271 // Nothing else to do...
3275 // Only update the timestamp if the page is being watched.
3276 // The query to find out if it is watched is cached both in memcached and per-invocation,
3277 // and when it does have to be executed, it can be on a slave
3278 // If this is the user's newtalk page, we always update the timestamp
3280 if ( $title->getNamespace() == NS_USER_TALK
&& $title->getText() == $this->getName() ) {
3284 $this->getWatchedItem( $title )->resetNotificationTimestamp( $force, $oldid );
3288 * Resets all of the given user's page-change notification timestamps.
3289 * If e-notif e-mails are on, they will receive notification mails on
3290 * the next change of any watched page.
3291 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3293 public function clearAllNotifications() {
3294 if ( wfReadOnly() ) {
3298 // Do nothing if not allowed to edit the watchlist
3299 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
3303 global $wgUseEnotif, $wgShowUpdatedMarker;
3304 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3305 $this->setNewtalk( false );
3308 $id = $this->getId();
3310 $dbw = wfGetDB( DB_MASTER
);
3311 $dbw->update( 'watchlist',
3312 array( /* SET */ 'wl_notificationtimestamp' => null ),
3313 array( /* WHERE */ 'wl_user' => $id ),
3316 // We also need to clear here the "you have new message" notification for the own user_talk page;
3317 // it's cleared one page view later in WikiPage::doViewUpdates().
3322 * Set this user's options from an encoded string
3323 * @param string $str Encoded options to import
3325 * @deprecated since 1.19 due to removal of user_options from the user table
3327 private function decodeOptions( $str ) {
3328 wfDeprecated( __METHOD__
, '1.19' );
3333 $this->mOptionsLoaded
= true;
3334 $this->mOptionOverrides
= array();
3336 // If an option is not set in $str, use the default value
3337 $this->mOptions
= self
::getDefaultOptions();
3339 $a = explode( "\n", $str );
3340 foreach ( $a as $s ) {
3342 if ( preg_match( "/^(.[^=]*)=(.*)$/", $s, $m ) ) {
3343 $this->mOptions
[$m[1]] = $m[2];
3344 $this->mOptionOverrides
[$m[1]] = $m[2];
3350 * Set a cookie on the user's client. Wrapper for
3351 * WebResponse::setCookie
3352 * @param string $name Name of the cookie to set
3353 * @param string $value Value to set
3354 * @param int $exp Expiration time, as a UNIX time value;
3355 * if 0 or not specified, use the default $wgCookieExpiration
3356 * @param bool $secure
3357 * true: Force setting the secure attribute when setting the cookie
3358 * false: Force NOT setting the secure attribute when setting the cookie
3359 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3360 * @param array $params Array of options sent passed to WebResponse::setcookie()
3362 protected function setCookie( $name, $value, $exp = 0, $secure = null, $params = array() ) {
3363 $params['secure'] = $secure;
3364 $this->getRequest()->response()->setcookie( $name, $value, $exp, $params );
3368 * Clear a cookie on the user's client
3369 * @param string $name Name of the cookie to clear
3370 * @param bool $secure
3371 * true: Force setting the secure attribute when setting the cookie
3372 * false: Force NOT setting the secure attribute when setting the cookie
3373 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3374 * @param array $params Array of options sent passed to WebResponse::setcookie()
3376 protected function clearCookie( $name, $secure = null, $params = array() ) {
3377 $this->setCookie( $name, '', time() - 86400, $secure, $params );
3381 * Set the default cookies for this session on the user's client.
3383 * @param WebRequest|null $request WebRequest object to use; $wgRequest will be used if null
3385 * @param bool $secure Whether to force secure/insecure cookies or use default
3386 * @param bool $rememberMe Whether to add a Token cookie for elongated sessions
3388 public function setCookies( $request = null, $secure = null, $rememberMe = false ) {
3389 if ( $request === null ) {
3390 $request = $this->getRequest();
3394 if ( 0 == $this->mId
) {
3397 if ( !$this->mToken
) {
3398 // When token is empty or NULL generate a new one and then save it to the database
3399 // This allows a wiki to re-secure itself after a leak of it's user table or $wgSecretKey
3400 // Simply by setting every cell in the user_token column to NULL and letting them be
3401 // regenerated as users log back into the wiki.
3403 $this->saveSettings();
3406 'wsUserID' => $this->mId
,
3407 'wsToken' => $this->mToken
,
3408 'wsUserName' => $this->getName()
3411 'UserID' => $this->mId
,
3412 'UserName' => $this->getName(),
3414 if ( $rememberMe ) {
3415 $cookies['Token'] = $this->mToken
;
3417 $cookies['Token'] = false;
3420 wfRunHooks( 'UserSetCookies', array( $this, &$session, &$cookies ) );
3422 foreach ( $session as $name => $value ) {
3423 $request->setSessionData( $name, $value );
3425 foreach ( $cookies as $name => $value ) {
3426 if ( $value === false ) {
3427 $this->clearCookie( $name );
3429 $this->setCookie( $name, $value, 0, $secure );
3434 * If wpStickHTTPS was selected, also set an insecure cookie that
3435 * will cause the site to redirect the user to HTTPS, if they access
3436 * it over HTTP. Bug 29898. Use an un-prefixed cookie, so it's the same
3437 * as the one set by centralauth (bug 53538). Also set it to session, or
3438 * standard time setting, based on if rememberme was set.
3440 if ( $request->getCheck( 'wpStickHTTPS' ) ||
$this->requiresHTTPS() ) {
3444 $rememberMe ?
0 : null,
3446 array( 'prefix' => '' ) // no prefix
3452 * Log this user out.
3454 public function logout() {
3455 if ( wfRunHooks( 'UserLogout', array( &$this ) ) ) {
3461 * Clear the user's cookies and session, and reset the instance cache.
3464 public function doLogout() {
3465 $this->clearInstanceCache( 'defaults' );
3467 $this->getRequest()->setSessionData( 'wsUserID', 0 );
3469 $this->clearCookie( 'UserID' );
3470 $this->clearCookie( 'Token' );
3471 $this->clearCookie( 'forceHTTPS', false, array( 'prefix' => '' ) );
3473 // Remember when user logged out, to prevent seeing cached pages
3474 $this->setCookie( 'LoggedOut', time(), time() +
86400 );
3478 * Save this user's settings into the database.
3479 * @todo Only rarely do all these fields need to be set!
3481 public function saveSettings() {
3485 if ( wfReadOnly() ) {
3488 if ( 0 == $this->mId
) {
3492 $this->mTouched
= self
::newTouchedTimestamp();
3493 if ( !$wgAuth->allowSetLocalPassword() ) {
3494 $this->mPassword
= '';
3497 $dbw = wfGetDB( DB_MASTER
);
3498 $dbw->update( 'user',
3500 'user_name' => $this->mName
,
3501 'user_password' => $this->mPassword
,
3502 'user_newpassword' => $this->mNewpassword
,
3503 'user_newpass_time' => $dbw->timestampOrNull( $this->mNewpassTime
),
3504 'user_real_name' => $this->mRealName
,
3505 'user_email' => $this->mEmail
,
3506 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated
),
3507 'user_touched' => $dbw->timestamp( $this->mTouched
),
3508 'user_token' => strval( $this->mToken
),
3509 'user_email_token' => $this->mEmailToken
,
3510 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires
),
3511 'user_password_expires' => $dbw->timestampOrNull( $this->mPasswordExpires
),
3512 ), array( /* WHERE */
3513 'user_id' => $this->mId
3517 $this->saveOptions();
3519 wfRunHooks( 'UserSaveSettings', array( $this ) );
3520 $this->clearSharedCache();
3521 $this->getUserPage()->invalidateCache();
3525 * If only this user's username is known, and it exists, return the user ID.
3528 public function idForName() {
3529 $s = trim( $this->getName() );
3534 $dbr = wfGetDB( DB_SLAVE
);
3535 $id = $dbr->selectField( 'user', 'user_id', array( 'user_name' => $s ), __METHOD__
);
3536 if ( $id === false ) {
3543 * Add a user to the database, return the user object
3545 * @param string $name Username to add
3546 * @param array $params Array of Strings Non-default parameters to save to
3547 * the database as user_* fields:
3548 * - password: The user's password hash. Password logins will be disabled
3549 * if this is omitted.
3550 * - newpassword: Hash for a temporary password that has been mailed to
3552 * - email: The user's email address.
3553 * - email_authenticated: The email authentication timestamp.
3554 * - real_name: The user's real name.
3555 * - options: An associative array of non-default options.
3556 * - token: Random authentication token. Do not set.
3557 * - registration: Registration timestamp. Do not set.
3559 * @return User|null User object, or null if the username already exists.
3561 public static function createNew( $name, $params = array() ) {
3564 $user->setToken(); // init token
3565 if ( isset( $params['options'] ) ) {
3566 $user->mOptions
= $params['options'] +
(array)$user->mOptions
;
3567 unset( $params['options'] );
3569 $dbw = wfGetDB( DB_MASTER
);
3570 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
3573 'user_id' => $seqVal,
3574 'user_name' => $name,
3575 'user_password' => $user->mPassword
,
3576 'user_newpassword' => $user->mNewpassword
,
3577 'user_newpass_time' => $dbw->timestampOrNull( $user->mNewpassTime
),
3578 'user_email' => $user->mEmail
,
3579 'user_email_authenticated' => $dbw->timestampOrNull( $user->mEmailAuthenticated
),
3580 'user_real_name' => $user->mRealName
,
3581 'user_token' => strval( $user->mToken
),
3582 'user_registration' => $dbw->timestamp( $user->mRegistration
),
3583 'user_editcount' => 0,
3584 'user_touched' => $dbw->timestamp( self
::newTouchedTimestamp() ),
3586 foreach ( $params as $name => $value ) {
3587 $fields["user_$name"] = $value;
3589 $dbw->insert( 'user', $fields, __METHOD__
, array( 'IGNORE' ) );
3590 if ( $dbw->affectedRows() ) {
3591 $newUser = User
::newFromId( $dbw->insertId() );
3599 * Add this existing user object to the database. If the user already
3600 * exists, a fatal status object is returned, and the user object is
3601 * initialised with the data from the database.
3603 * Previously, this function generated a DB error due to a key conflict
3604 * if the user already existed. Many extension callers use this function
3605 * in code along the lines of:
3607 * $user = User::newFromName( $name );
3608 * if ( !$user->isLoggedIn() ) {
3609 * $user->addToDatabase();
3611 * // do something with $user...
3613 * However, this was vulnerable to a race condition (bug 16020). By
3614 * initialising the user object if the user exists, we aim to support this
3615 * calling sequence as far as possible.
3617 * Note that if the user exists, this function will acquire a write lock,
3618 * so it is still advisable to make the call conditional on isLoggedIn(),
3619 * and to commit the transaction after calling.
3621 * @throws MWException
3624 public function addToDatabase() {
3626 if ( !$this->mToken
) {
3627 $this->setToken(); // init token
3630 $this->mTouched
= self
::newTouchedTimestamp();
3632 $dbw = wfGetDB( DB_MASTER
);
3633 $inWrite = $dbw->writesOrCallbacksPending();
3634 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
3635 $dbw->insert( 'user',
3637 'user_id' => $seqVal,
3638 'user_name' => $this->mName
,
3639 'user_password' => $this->mPassword
,
3640 'user_newpassword' => $this->mNewpassword
,
3641 'user_newpass_time' => $dbw->timestampOrNull( $this->mNewpassTime
),
3642 'user_email' => $this->mEmail
,
3643 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated
),
3644 'user_real_name' => $this->mRealName
,
3645 'user_token' => strval( $this->mToken
),
3646 'user_registration' => $dbw->timestamp( $this->mRegistration
),
3647 'user_editcount' => 0,
3648 'user_touched' => $dbw->timestamp( $this->mTouched
),
3652 if ( !$dbw->affectedRows() ) {
3654 // XXX: Get out of REPEATABLE-READ so the SELECT below works.
3655 // Often this case happens early in views before any writes.
3656 // This shows up at least with CentralAuth.
3657 $dbw->commit( __METHOD__
, 'flush' );
3659 $this->mId
= $dbw->selectField( 'user', 'user_id',
3660 array( 'user_name' => $this->mName
), __METHOD__
);
3663 if ( $this->loadFromDatabase() ) {
3668 throw new MWException( __METHOD__
. ": hit a key conflict attempting " .
3669 "to insert user '{$this->mName}' row, but it was not present in select!" );
3671 return Status
::newFatal( 'userexists' );
3673 $this->mId
= $dbw->insertId();
3675 // Clear instance cache other than user table data, which is already accurate
3676 $this->clearInstanceCache();
3678 $this->saveOptions();
3679 return Status
::newGood();
3683 * If this user is logged-in and blocked,
3684 * block any IP address they've successfully logged in from.
3685 * @return bool A block was spread
3687 public function spreadAnyEditBlock() {
3688 if ( $this->isLoggedIn() && $this->isBlocked() ) {
3689 return $this->spreadBlock();
3695 * If this (non-anonymous) user is blocked,
3696 * block the IP address they've successfully logged in from.
3697 * @return bool A block was spread
3699 protected function spreadBlock() {
3700 wfDebug( __METHOD__
. "()\n" );
3702 if ( $this->mId
== 0 ) {
3706 $userblock = Block
::newFromTarget( $this->getName() );
3707 if ( !$userblock ) {
3711 return (bool)$userblock->doAutoblock( $this->getRequest()->getIP() );
3715 * Get whether the user is explicitly blocked from account creation.
3716 * @return bool|Block
3718 public function isBlockedFromCreateAccount() {
3719 $this->getBlockedStatus();
3720 if ( $this->mBlock
&& $this->mBlock
->prevents( 'createaccount' ) ) {
3721 return $this->mBlock
;
3724 # bug 13611: if the IP address the user is trying to create an account from is
3725 # blocked with createaccount disabled, prevent new account creation there even
3726 # when the user is logged in
3727 if ( $this->mBlockedFromCreateAccount
=== false && !$this->isAllowed( 'ipblock-exempt' ) ) {
3728 $this->mBlockedFromCreateAccount
= Block
::newFromTarget( null, $this->getRequest()->getIP() );
3730 return $this->mBlockedFromCreateAccount
instanceof Block
3731 && $this->mBlockedFromCreateAccount
->prevents( 'createaccount' )
3732 ?
$this->mBlockedFromCreateAccount
3737 * Get whether the user is blocked from using Special:Emailuser.
3740 public function isBlockedFromEmailuser() {
3741 $this->getBlockedStatus();
3742 return $this->mBlock
&& $this->mBlock
->prevents( 'sendemail' );
3746 * Get whether the user is allowed to create an account.
3749 public function isAllowedToCreateAccount() {
3750 return $this->isAllowed( 'createaccount' ) && !$this->isBlockedFromCreateAccount();
3754 * Get this user's personal page title.
3756 * @return Title User's personal page title
3758 public function getUserPage() {
3759 return Title
::makeTitle( NS_USER
, $this->getName() );
3763 * Get this user's talk page title.
3765 * @return Title User's talk page title
3767 public function getTalkPage() {
3768 $title = $this->getUserPage();
3769 return $title->getTalkPage();
3773 * Determine whether the user is a newbie. Newbies are either
3774 * anonymous IPs, or the most recently created accounts.
3777 public function isNewbie() {
3778 return !$this->isAllowed( 'autoconfirmed' );
3782 * Check to see if the given clear-text password is one of the accepted passwords
3783 * @param string $password user password.
3784 * @return bool True if the given password is correct, otherwise False.
3786 public function checkPassword( $password ) {
3787 global $wgAuth, $wgLegacyEncoding;
3790 // Certain authentication plugins do NOT want to save
3791 // domain passwords in a mysql database, so we should
3792 // check this (in case $wgAuth->strict() is false).
3794 if ( $wgAuth->authenticate( $this->getName(), $password ) ) {
3796 } elseif ( $wgAuth->strict() ) {
3797 // Auth plugin doesn't allow local authentication
3799 } elseif ( $wgAuth->strictUserAuth( $this->getName() ) ) {
3800 // Auth plugin doesn't allow local authentication for this user name
3803 if ( self
::comparePasswords( $this->mPassword
, $password, $this->mId
) ) {
3805 } elseif ( $wgLegacyEncoding ) {
3806 // Some wikis were converted from ISO 8859-1 to UTF-8, the passwords can't be converted
3807 // Check for this with iconv
3808 $cp1252Password = iconv( 'UTF-8', 'WINDOWS-1252//TRANSLIT', $password );
3809 if ( $cp1252Password != $password
3810 && self
::comparePasswords( $this->mPassword
, $cp1252Password, $this->mId
)
3819 * Check if the given clear-text password matches the temporary password
3820 * sent by e-mail for password reset operations.
3822 * @param string $plaintext
3824 * @return bool True if matches, false otherwise
3826 public function checkTemporaryPassword( $plaintext ) {
3827 global $wgNewPasswordExpiry;
3830 if ( self
::comparePasswords( $this->mNewpassword
, $plaintext, $this->getId() ) ) {
3831 if ( is_null( $this->mNewpassTime
) ) {
3834 $expiry = wfTimestamp( TS_UNIX
, $this->mNewpassTime
) +
$wgNewPasswordExpiry;
3835 return ( time() < $expiry );
3842 * Alias for getEditToken.
3843 * @deprecated since 1.19, use getEditToken instead.
3845 * @param string|array $salt of Strings Optional function-specific data for hashing
3846 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
3847 * @return string The new edit token
3849 public function editToken( $salt = '', $request = null ) {
3850 wfDeprecated( __METHOD__
, '1.19' );
3851 return $this->getEditToken( $salt, $request );
3855 * Initialize (if necessary) and return a session token value
3856 * which can be used in edit forms to show that the user's
3857 * login credentials aren't being hijacked with a foreign form
3862 * @param string|array $salt of Strings Optional function-specific data for hashing
3863 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
3864 * @return string The new edit token
3866 public function getEditToken( $salt = '', $request = null ) {
3867 if ( $request == null ) {
3868 $request = $this->getRequest();
3871 if ( $this->isAnon() ) {
3872 return EDIT_TOKEN_SUFFIX
;
3874 $token = $request->getSessionData( 'wsEditToken' );
3875 if ( $token === null ) {
3876 $token = MWCryptRand
::generateHex( 32 );
3877 $request->setSessionData( 'wsEditToken', $token );
3879 if ( is_array( $salt ) ) {
3880 $salt = implode( '|', $salt );
3882 return md5( $token . $salt ) . EDIT_TOKEN_SUFFIX
;
3887 * Generate a looking random token for various uses.
3889 * @return string The new random token
3890 * @deprecated since 1.20: Use MWCryptRand for secure purposes or
3891 * wfRandomString for pseudo-randomness.
3893 public static function generateToken() {
3894 return MWCryptRand
::generateHex( 32 );
3898 * Check given value against the token value stored in the session.
3899 * A match should confirm that the form was submitted from the
3900 * user's own login session, not a form submission from a third-party
3903 * @param string $val Input value to compare
3904 * @param string $salt Optional function-specific data for hashing
3905 * @param WebRequest|null $request Object to use or null to use $wgRequest
3906 * @return bool Whether the token matches
3908 public function matchEditToken( $val, $salt = '', $request = null ) {
3909 $sessionToken = $this->getEditToken( $salt, $request );
3910 if ( $val != $sessionToken ) {
3911 wfDebug( "User::matchEditToken: broken session data\n" );
3914 return $val == $sessionToken;
3918 * Check given value against the token value stored in the session,
3919 * ignoring the suffix.
3921 * @param string $val Input value to compare
3922 * @param string $salt Optional function-specific data for hashing
3923 * @param WebRequest|null $request object to use or null to use $wgRequest
3924 * @return bool Whether the token matches
3926 public function matchEditTokenNoSuffix( $val, $salt = '', $request = null ) {
3927 $sessionToken = $this->getEditToken( $salt, $request );
3928 return substr( $sessionToken, 0, 32 ) == substr( $val, 0, 32 );
3932 * Generate a new e-mail confirmation token and send a confirmation/invalidation
3933 * mail to the user's given address.
3935 * @param string $type Message to send, either "created", "changed" or "set"
3938 public function sendConfirmationMail( $type = 'created' ) {
3940 $expiration = null; // gets passed-by-ref and defined in next line.
3941 $token = $this->confirmationToken( $expiration );
3942 $url = $this->confirmationTokenUrl( $token );
3943 $invalidateURL = $this->invalidationTokenUrl( $token );
3944 $this->saveSettings();
3946 if ( $type == 'created' ||
$type === false ) {
3947 $message = 'confirmemail_body';
3948 } elseif ( $type === true ) {
3949 $message = 'confirmemail_body_changed';
3951 // Messages: confirmemail_body_changed, confirmemail_body_set
3952 $message = 'confirmemail_body_' . $type;
3955 return $this->sendMail( wfMessage( 'confirmemail_subject' )->text(),
3956 wfMessage( $message,
3957 $this->getRequest()->getIP(),
3960 $wgLang->timeanddate( $expiration, false ),
3962 $wgLang->date( $expiration, false ),
3963 $wgLang->time( $expiration, false ) )->text() );
3967 * Send an e-mail to this user's account. Does not check for
3968 * confirmed status or validity.
3970 * @param string $subject Message subject
3971 * @param string $body Message body
3972 * @param string $from Optional From address; if unspecified, default
3973 * $wgPasswordSender will be used.
3974 * @param string $replyto Reply-To address
3977 public function sendMail( $subject, $body, $from = null, $replyto = null ) {
3978 if ( is_null( $from ) ) {
3979 global $wgPasswordSender;
3980 $sender = new MailAddress( $wgPasswordSender,
3981 wfMessage( 'emailsender' )->inContentLanguage()->text() );
3983 $sender = new MailAddress( $from );
3986 $to = new MailAddress( $this );
3987 return UserMailer
::send( $to, $sender, $subject, $body, $replyto );
3991 * Generate, store, and return a new e-mail confirmation code.
3992 * A hash (unsalted, since it's used as a key) is stored.
3994 * @note Call saveSettings() after calling this function to commit
3995 * this change to the database.
3997 * @param string &$expiration Accepts the expiration time
3998 * @return string New token
4000 protected function confirmationToken( &$expiration ) {
4001 global $wgUserEmailConfirmationTokenExpiry;
4003 $expires = $now +
$wgUserEmailConfirmationTokenExpiry;
4004 $expiration = wfTimestamp( TS_MW
, $expires );
4006 $token = MWCryptRand
::generateHex( 32 );
4007 $hash = md5( $token );
4008 $this->mEmailToken
= $hash;
4009 $this->mEmailTokenExpires
= $expiration;
4014 * Return a URL the user can use to confirm their email address.
4015 * @param string $token Accepts the email confirmation token
4016 * @return string New token URL
4018 protected function confirmationTokenUrl( $token ) {
4019 return $this->getTokenUrl( 'ConfirmEmail', $token );
4023 * Return a URL the user can use to invalidate their email address.
4024 * @param string $token Accepts the email confirmation token
4025 * @return string New token URL
4027 protected function invalidationTokenUrl( $token ) {
4028 return $this->getTokenUrl( 'InvalidateEmail', $token );
4032 * Internal function to format the e-mail validation/invalidation URLs.
4033 * This uses a quickie hack to use the
4034 * hardcoded English names of the Special: pages, for ASCII safety.
4036 * @note Since these URLs get dropped directly into emails, using the
4037 * short English names avoids insanely long URL-encoded links, which
4038 * also sometimes can get corrupted in some browsers/mailers
4039 * (bug 6957 with Gmail and Internet Explorer).
4041 * @param string $page Special page
4042 * @param string $token Token
4043 * @return string Formatted URL
4045 protected function getTokenUrl( $page, $token ) {
4046 // Hack to bypass localization of 'Special:'
4047 $title = Title
::makeTitle( NS_MAIN
, "Special:$page/$token" );
4048 return $title->getCanonicalURL();
4052 * Mark the e-mail address confirmed.
4054 * @note Call saveSettings() after calling this function to commit the change.
4058 public function confirmEmail() {
4059 // Check if it's already confirmed, so we don't touch the database
4060 // and fire the ConfirmEmailComplete hook on redundant confirmations.
4061 if ( !$this->isEmailConfirmed() ) {
4062 $this->setEmailAuthenticationTimestamp( wfTimestampNow() );
4063 wfRunHooks( 'ConfirmEmailComplete', array( $this ) );
4069 * Invalidate the user's e-mail confirmation, and unauthenticate the e-mail
4070 * address if it was already confirmed.
4072 * @note Call saveSettings() after calling this function to commit the change.
4073 * @return bool Returns true
4075 public function invalidateEmail() {
4077 $this->mEmailToken
= null;
4078 $this->mEmailTokenExpires
= null;
4079 $this->setEmailAuthenticationTimestamp( null );
4080 wfRunHooks( 'InvalidateEmailComplete', array( $this ) );
4085 * Set the e-mail authentication timestamp.
4086 * @param string $timestamp TS_MW timestamp
4088 public function setEmailAuthenticationTimestamp( $timestamp ) {
4090 $this->mEmailAuthenticated
= $timestamp;
4091 wfRunHooks( 'UserSetEmailAuthenticationTimestamp', array( $this, &$this->mEmailAuthenticated
) );
4095 * Is this user allowed to send e-mails within limits of current
4096 * site configuration?
4099 public function canSendEmail() {
4100 global $wgEnableEmail, $wgEnableUserEmail;
4101 if ( !$wgEnableEmail ||
!$wgEnableUserEmail ||
!$this->isAllowed( 'sendemail' ) ) {
4104 $canSend = $this->isEmailConfirmed();
4105 wfRunHooks( 'UserCanSendEmail', array( &$this, &$canSend ) );
4110 * Is this user allowed to receive e-mails within limits of current
4111 * site configuration?
4114 public function canReceiveEmail() {
4115 return $this->isEmailConfirmed() && !$this->getOption( 'disablemail' );
4119 * Is this user's e-mail address valid-looking and confirmed within
4120 * limits of the current site configuration?
4122 * @note If $wgEmailAuthentication is on, this may require the user to have
4123 * confirmed their address by returning a code or using a password
4124 * sent to the address from the wiki.
4128 public function isEmailConfirmed() {
4129 global $wgEmailAuthentication;
4132 if ( wfRunHooks( 'EmailConfirmed', array( &$this, &$confirmed ) ) ) {
4133 if ( $this->isAnon() ) {
4136 if ( !Sanitizer
::validateEmail( $this->mEmail
) ) {
4139 if ( $wgEmailAuthentication && !$this->getEmailAuthenticationTimestamp() ) {
4149 * Check whether there is an outstanding request for e-mail confirmation.
4152 public function isEmailConfirmationPending() {
4153 global $wgEmailAuthentication;
4154 return $wgEmailAuthentication &&
4155 !$this->isEmailConfirmed() &&
4156 $this->mEmailToken
&&
4157 $this->mEmailTokenExpires
> wfTimestamp();
4161 * Get the timestamp of account creation.
4163 * @return string|bool|null Timestamp of account creation, false for
4164 * non-existent/anonymous user accounts, or null if existing account
4165 * but information is not in database.
4167 public function getRegistration() {
4168 if ( $this->isAnon() ) {
4172 return $this->mRegistration
;
4176 * Get the timestamp of the first edit
4178 * @return string|bool Timestamp of first edit, or false for
4179 * non-existent/anonymous user accounts.
4181 public function getFirstEditTimestamp() {
4182 if ( $this->getId() == 0 ) {
4183 return false; // anons
4185 $dbr = wfGetDB( DB_SLAVE
);
4186 $time = $dbr->selectField( 'revision', 'rev_timestamp',
4187 array( 'rev_user' => $this->getId() ),
4189 array( 'ORDER BY' => 'rev_timestamp ASC' )
4192 return false; // no edits
4194 return wfTimestamp( TS_MW
, $time );
4198 * Get the permissions associated with a given list of groups
4200 * @param array $groups Array of Strings List of internal group names
4201 * @return array Array of Strings List of permission key names for given groups combined
4203 public static function getGroupPermissions( $groups ) {
4204 global $wgGroupPermissions, $wgRevokePermissions;
4206 // grant every granted permission first
4207 foreach ( $groups as $group ) {
4208 if ( isset( $wgGroupPermissions[$group] ) ) {
4209 $rights = array_merge( $rights,
4210 // array_filter removes empty items
4211 array_keys( array_filter( $wgGroupPermissions[$group] ) ) );
4214 // now revoke the revoked permissions
4215 foreach ( $groups as $group ) {
4216 if ( isset( $wgRevokePermissions[$group] ) ) {
4217 $rights = array_diff( $rights,
4218 array_keys( array_filter( $wgRevokePermissions[$group] ) ) );
4221 return array_unique( $rights );
4225 * Get all the groups who have a given permission
4227 * @param string $role Role to check
4228 * @return array Array of Strings List of internal group names with the given permission
4230 public static function getGroupsWithPermission( $role ) {
4231 global $wgGroupPermissions;
4232 $allowedGroups = array();
4233 foreach ( array_keys( $wgGroupPermissions ) as $group ) {
4234 if ( self
::groupHasPermission( $group, $role ) ) {
4235 $allowedGroups[] = $group;
4238 return $allowedGroups;
4242 * Check, if the given group has the given permission
4244 * If you're wanting to check whether all users have a permission, use
4245 * User::isEveryoneAllowed() instead. That properly checks if it's revoked
4249 * @param string $group Group to check
4250 * @param string $role Role to check
4253 public static function groupHasPermission( $group, $role ) {
4254 global $wgGroupPermissions, $wgRevokePermissions;
4255 return isset( $wgGroupPermissions[$group][$role] ) && $wgGroupPermissions[$group][$role]
4256 && !( isset( $wgRevokePermissions[$group][$role] ) && $wgRevokePermissions[$group][$role] );
4260 * Check if all users have the given permission
4263 * @param string $right Right to check
4266 public static function isEveryoneAllowed( $right ) {
4267 global $wgGroupPermissions, $wgRevokePermissions;
4268 static $cache = array();
4270 // Use the cached results, except in unit tests which rely on
4271 // being able change the permission mid-request
4272 if ( isset( $cache[$right] ) && !defined( 'MW_PHPUNIT_TEST' ) ) {
4273 return $cache[$right];
4276 if ( !isset( $wgGroupPermissions['*'][$right] ) ||
!$wgGroupPermissions['*'][$right] ) {
4277 $cache[$right] = false;
4281 // If it's revoked anywhere, then everyone doesn't have it
4282 foreach ( $wgRevokePermissions as $rights ) {
4283 if ( isset( $rights[$right] ) && $rights[$right] ) {
4284 $cache[$right] = false;
4289 // Allow extensions (e.g. OAuth) to say false
4290 if ( !wfRunHooks( 'UserIsEveryoneAllowed', array( $right ) ) ) {
4291 $cache[$right] = false;
4295 $cache[$right] = true;
4300 * Get the localized descriptive name for a group, if it exists
4302 * @param string $group Internal group name
4303 * @return string Localized descriptive group name
4305 public static function getGroupName( $group ) {
4306 $msg = wfMessage( "group-$group" );
4307 return $msg->isBlank() ?
$group : $msg->text();
4311 * Get the localized descriptive name for a member of a group, if it exists
4313 * @param string $group Internal group name
4314 * @param string $username Username for gender (since 1.19)
4315 * @return string Localized name for group member
4317 public static function getGroupMember( $group, $username = '#' ) {
4318 $msg = wfMessage( "group-$group-member", $username );
4319 return $msg->isBlank() ?
$group : $msg->text();
4323 * Return the set of defined explicit groups.
4324 * The implicit groups (by default *, 'user' and 'autoconfirmed')
4325 * are not included, as they are defined automatically, not in the database.
4326 * @return array Array of internal group names
4328 public static function getAllGroups() {
4329 global $wgGroupPermissions, $wgRevokePermissions;
4331 array_merge( array_keys( $wgGroupPermissions ), array_keys( $wgRevokePermissions ) ),
4332 self
::getImplicitGroups()
4337 * Get a list of all available permissions.
4338 * @return array Array of permission names
4340 public static function getAllRights() {
4341 if ( self
::$mAllRights === false ) {
4342 global $wgAvailableRights;
4343 if ( count( $wgAvailableRights ) ) {
4344 self
::$mAllRights = array_unique( array_merge( self
::$mCoreRights, $wgAvailableRights ) );
4346 self
::$mAllRights = self
::$mCoreRights;
4348 wfRunHooks( 'UserGetAllRights', array( &self
::$mAllRights ) );
4350 return self
::$mAllRights;
4354 * Get a list of implicit groups
4355 * @return array Array of Strings Array of internal group names
4357 public static function getImplicitGroups() {
4358 global $wgImplicitGroups;
4360 $groups = $wgImplicitGroups;
4361 # Deprecated, use $wgImplictGroups instead
4362 wfRunHooks( 'UserGetImplicitGroups', array( &$groups ) );
4368 * Get the title of a page describing a particular group
4370 * @param string $group Internal group name
4371 * @return Title|bool Title of the page if it exists, false otherwise
4373 public static function getGroupPage( $group ) {
4374 $msg = wfMessage( 'grouppage-' . $group )->inContentLanguage();
4375 if ( $msg->exists() ) {
4376 $title = Title
::newFromText( $msg->text() );
4377 if ( is_object( $title ) ) {
4385 * Create a link to the group in HTML, if available;
4386 * else return the group name.
4388 * @param string $group Internal name of the group
4389 * @param string $text The text of the link
4390 * @return string HTML link to the group
4392 public static function makeGroupLinkHTML( $group, $text = '' ) {
4393 if ( $text == '' ) {
4394 $text = self
::getGroupName( $group );
4396 $title = self
::getGroupPage( $group );
4398 return Linker
::link( $title, htmlspecialchars( $text ) );
4405 * Create a link to the group in Wikitext, if available;
4406 * else return the group name.
4408 * @param string $group Internal name of the group
4409 * @param string $text The text of the link
4410 * @return string Wikilink to the group
4412 public static function makeGroupLinkWiki( $group, $text = '' ) {
4413 if ( $text == '' ) {
4414 $text = self
::getGroupName( $group );
4416 $title = self
::getGroupPage( $group );
4418 $page = $title->getPrefixedText();
4419 return "[[$page|$text]]";
4426 * Returns an array of the groups that a particular group can add/remove.
4428 * @param string $group The group to check for whether it can add/remove
4429 * @return array array( 'add' => array( addablegroups ),
4430 * 'remove' => array( removablegroups ),
4431 * 'add-self' => array( addablegroups to self),
4432 * 'remove-self' => array( removable groups from self) )
4434 public static function changeableByGroup( $group ) {
4435 global $wgAddGroups, $wgRemoveGroups, $wgGroupsAddToSelf, $wgGroupsRemoveFromSelf;
4439 'remove' => array(),
4440 'add-self' => array(),
4441 'remove-self' => array()
4444 if ( empty( $wgAddGroups[$group] ) ) {
4445 // Don't add anything to $groups
4446 } elseif ( $wgAddGroups[$group] === true ) {
4447 // You get everything
4448 $groups['add'] = self
::getAllGroups();
4449 } elseif ( is_array( $wgAddGroups[$group] ) ) {
4450 $groups['add'] = $wgAddGroups[$group];
4453 // Same thing for remove
4454 if ( empty( $wgRemoveGroups[$group] ) ) {
4455 } elseif ( $wgRemoveGroups[$group] === true ) {
4456 $groups['remove'] = self
::getAllGroups();
4457 } elseif ( is_array( $wgRemoveGroups[$group] ) ) {
4458 $groups['remove'] = $wgRemoveGroups[$group];
4461 // Re-map numeric keys of AddToSelf/RemoveFromSelf to the 'user' key for backwards compatibility
4462 if ( empty( $wgGroupsAddToSelf['user'] ) ||
$wgGroupsAddToSelf['user'] !== true ) {
4463 foreach ( $wgGroupsAddToSelf as $key => $value ) {
4464 if ( is_int( $key ) ) {
4465 $wgGroupsAddToSelf['user'][] = $value;
4470 if ( empty( $wgGroupsRemoveFromSelf['user'] ) ||
$wgGroupsRemoveFromSelf['user'] !== true ) {
4471 foreach ( $wgGroupsRemoveFromSelf as $key => $value ) {
4472 if ( is_int( $key ) ) {
4473 $wgGroupsRemoveFromSelf['user'][] = $value;
4478 // Now figure out what groups the user can add to him/herself
4479 if ( empty( $wgGroupsAddToSelf[$group] ) ) {
4480 } elseif ( $wgGroupsAddToSelf[$group] === true ) {
4481 // No idea WHY this would be used, but it's there
4482 $groups['add-self'] = User
::getAllGroups();
4483 } elseif ( is_array( $wgGroupsAddToSelf[$group] ) ) {
4484 $groups['add-self'] = $wgGroupsAddToSelf[$group];
4487 if ( empty( $wgGroupsRemoveFromSelf[$group] ) ) {
4488 } elseif ( $wgGroupsRemoveFromSelf[$group] === true ) {
4489 $groups['remove-self'] = User
::getAllGroups();
4490 } elseif ( is_array( $wgGroupsRemoveFromSelf[$group] ) ) {
4491 $groups['remove-self'] = $wgGroupsRemoveFromSelf[$group];
4498 * Returns an array of groups that this user can add and remove
4499 * @return array array( 'add' => array( addablegroups ),
4500 * 'remove' => array( removablegroups ),
4501 * 'add-self' => array( addablegroups to self),
4502 * 'remove-self' => array( removable groups from self) )
4504 public function changeableGroups() {
4505 if ( $this->isAllowed( 'userrights' ) ) {
4506 // This group gives the right to modify everything (reverse-
4507 // compatibility with old "userrights lets you change
4509 // Using array_merge to make the groups reindexed
4510 $all = array_merge( User
::getAllGroups() );
4514 'add-self' => array(),
4515 'remove-self' => array()
4519 // Okay, it's not so simple, we will have to go through the arrays
4522 'remove' => array(),
4523 'add-self' => array(),
4524 'remove-self' => array()
4526 $addergroups = $this->getEffectiveGroups();
4528 foreach ( $addergroups as $addergroup ) {
4529 $groups = array_merge_recursive(
4530 $groups, $this->changeableByGroup( $addergroup )
4532 $groups['add'] = array_unique( $groups['add'] );
4533 $groups['remove'] = array_unique( $groups['remove'] );
4534 $groups['add-self'] = array_unique( $groups['add-self'] );
4535 $groups['remove-self'] = array_unique( $groups['remove-self'] );
4541 * Increment the user's edit-count field.
4542 * Will have no effect for anonymous users.
4544 public function incEditCount() {
4545 if ( !$this->isAnon() ) {
4546 $dbw = wfGetDB( DB_MASTER
);
4549 array( 'user_editcount=user_editcount+1' ),
4550 array( 'user_id' => $this->getId() ),
4554 // Lazy initialization check...
4555 if ( $dbw->affectedRows() == 0 ) {
4556 // Now here's a goddamn hack...
4557 $dbr = wfGetDB( DB_SLAVE
);
4558 if ( $dbr !== $dbw ) {
4559 // If we actually have a slave server, the count is
4560 // at least one behind because the current transaction
4561 // has not been committed and replicated.
4562 $this->initEditCount( 1 );
4564 // But if DB_SLAVE is selecting the master, then the
4565 // count we just read includes the revision that was
4566 // just added in the working transaction.
4567 $this->initEditCount();
4571 // edit count in user cache too
4572 $this->invalidateCache();
4576 * Initialize user_editcount from data out of the revision table
4578 * @param int $add Edits to add to the count from the revision table
4579 * @return int Number of edits
4581 protected function initEditCount( $add = 0 ) {
4582 // Pull from a slave to be less cruel to servers
4583 // Accuracy isn't the point anyway here
4584 $dbr = wfGetDB( DB_SLAVE
);
4585 $count = (int)$dbr->selectField(
4588 array( 'rev_user' => $this->getId() ),
4591 $count = $count +
$add;
4593 $dbw = wfGetDB( DB_MASTER
);
4596 array( 'user_editcount' => $count ),
4597 array( 'user_id' => $this->getId() ),
4605 * Get the description of a given right
4607 * @param string $right Right to query
4608 * @return string Localized description of the right
4610 public static function getRightDescription( $right ) {
4611 $key = "right-$right";
4612 $msg = wfMessage( $key );
4613 return $msg->isBlank() ?
$right : $msg->text();
4617 * Make an old-style password hash
4619 * @param string $password Plain-text password
4620 * @param string $userId User ID
4621 * @return string Password hash
4623 public static function oldCrypt( $password, $userId ) {
4624 global $wgPasswordSalt;
4625 if ( $wgPasswordSalt ) {
4626 return md5( $userId . '-' . md5( $password ) );
4628 return md5( $password );
4633 * Make a new-style password hash
4635 * @param string $password Plain-text password
4636 * @param bool|string $salt Optional salt, may be random or the user ID.
4637 * If unspecified or false, will generate one automatically
4638 * @return string Password hash
4640 public static function crypt( $password, $salt = false ) {
4641 global $wgPasswordSalt;
4644 if ( !wfRunHooks( 'UserCryptPassword', array( &$password, &$salt, &$wgPasswordSalt, &$hash ) ) ) {
4648 if ( $wgPasswordSalt ) {
4649 if ( $salt === false ) {
4650 $salt = MWCryptRand
::generateHex( 8 );
4652 return ':B:' . $salt . ':' . md5( $salt . '-' . md5( $password ) );
4654 return ':A:' . md5( $password );
4659 * Compare a password hash with a plain-text password. Requires the user
4660 * ID if there's a chance that the hash is an old-style hash.
4662 * @param string $hash Password hash
4663 * @param string $password Plain-text password to compare
4664 * @param string|bool $userId User ID for old-style password salt
4668 public static function comparePasswords( $hash, $password, $userId = false ) {
4669 $type = substr( $hash, 0, 3 );
4672 if ( !wfRunHooks( 'UserComparePasswords', array( &$hash, &$password, &$userId, &$result ) ) ) {
4676 if ( $type == ':A:' ) {
4678 return md5( $password ) === substr( $hash, 3 );
4679 } elseif ( $type == ':B:' ) {
4681 list( $salt, $realHash ) = explode( ':', substr( $hash, 3 ), 2 );
4682 return md5( $salt . '-' . md5( $password ) ) === $realHash;
4685 return self
::oldCrypt( $password, $userId ) === $hash;
4690 * Add a newuser log entry for this user.
4691 * Before 1.19 the return value was always true.
4693 * @param string|bool $action Account creation type.
4694 * - String, one of the following values:
4695 * - 'create' for an anonymous user creating an account for himself.
4696 * This will force the action's performer to be the created user itself,
4697 * no matter the value of $wgUser
4698 * - 'create2' for a logged in user creating an account for someone else
4699 * - 'byemail' when the created user will receive its password by e-mail
4700 * - 'autocreate' when the user is automatically created (such as by CentralAuth).
4701 * - Boolean means whether the account was created by e-mail (deprecated):
4702 * - true will be converted to 'byemail'
4703 * - false will be converted to 'create' if this object is the same as
4704 * $wgUser and to 'create2' otherwise
4706 * @param string $reason User supplied reason
4708 * @return int|bool True if not $wgNewUserLog; otherwise ID of log item or 0 on failure
4710 public function addNewUserLogEntry( $action = false, $reason = '' ) {
4711 global $wgUser, $wgNewUserLog;
4712 if ( empty( $wgNewUserLog ) ) {
4713 return true; // disabled
4716 if ( $action === true ) {
4717 $action = 'byemail';
4718 } elseif ( $action === false ) {
4719 if ( $this->getName() == $wgUser->getName() ) {
4722 $action = 'create2';
4726 if ( $action === 'create' ||
$action === 'autocreate' ) {
4729 $performer = $wgUser;
4732 $logEntry = new ManualLogEntry( 'newusers', $action );
4733 $logEntry->setPerformer( $performer );
4734 $logEntry->setTarget( $this->getUserPage() );
4735 $logEntry->setComment( $reason );
4736 $logEntry->setParameters( array(
4737 '4::userid' => $this->getId(),
4739 $logid = $logEntry->insert();
4741 if ( $action !== 'autocreate' ) {
4742 $logEntry->publish( $logid );
4749 * Add an autocreate newuser log entry for this user
4750 * Used by things like CentralAuth and perhaps other authplugins.
4751 * Consider calling addNewUserLogEntry() directly instead.
4755 public function addNewUserLogEntryAutoCreate() {
4756 $this->addNewUserLogEntry( 'autocreate' );
4762 * Load the user options either from cache, the database or an array
4764 * @param array $data Rows for the current user out of the user_properties table
4766 protected function loadOptions( $data = null ) {
4771 if ( $this->mOptionsLoaded
) {
4775 $this->mOptions
= self
::getDefaultOptions();
4777 if ( !$this->getId() ) {
4778 // For unlogged-in users, load language/variant options from request.
4779 // There's no need to do it for logged-in users: they can set preferences,
4780 // and handling of page content is done by $pageLang->getPreferredVariant() and such,
4781 // so don't override user's choice (especially when the user chooses site default).
4782 $variant = $wgContLang->getDefaultVariant();
4783 $this->mOptions
['variant'] = $variant;
4784 $this->mOptions
['language'] = $variant;
4785 $this->mOptionsLoaded
= true;
4789 // Maybe load from the object
4790 if ( !is_null( $this->mOptionOverrides
) ) {
4791 wfDebug( "User: loading options for user " . $this->getId() . " from override cache.\n" );
4792 foreach ( $this->mOptionOverrides
as $key => $value ) {
4793 $this->mOptions
[$key] = $value;
4796 if ( !is_array( $data ) ) {
4797 wfDebug( "User: loading options for user " . $this->getId() . " from database.\n" );
4798 // Load from database
4799 $dbr = wfGetDB( DB_SLAVE
);
4801 $res = $dbr->select(
4803 array( 'up_property', 'up_value' ),
4804 array( 'up_user' => $this->getId() ),
4808 $this->mOptionOverrides
= array();
4810 foreach ( $res as $row ) {
4811 $data[$row->up_property
] = $row->up_value
;
4814 foreach ( $data as $property => $value ) {
4815 $this->mOptionOverrides
[$property] = $value;
4816 $this->mOptions
[$property] = $value;
4820 $this->mOptionsLoaded
= true;
4822 wfRunHooks( 'UserLoadOptions', array( $this, &$this->mOptions
) );
4828 protected function saveOptions() {
4829 $this->loadOptions();
4831 // Not using getOptions(), to keep hidden preferences in database
4832 $saveOptions = $this->mOptions
;
4834 // Allow hooks to abort, for instance to save to a global profile.
4835 // Reset options to default state before saving.
4836 if ( !wfRunHooks( 'UserSaveOptions', array( $this, &$saveOptions ) ) ) {
4840 $userId = $this->getId();
4841 $insert_rows = array();
4842 foreach ( $saveOptions as $key => $value ) {
4843 // Don't bother storing default values
4844 $defaultOption = self
::getDefaultOption( $key );
4845 if ( ( is_null( $defaultOption ) &&
4846 !( $value === false ||
is_null( $value ) ) ) ||
4847 $value != $defaultOption
4849 $insert_rows[] = array(
4850 'up_user' => $userId,
4851 'up_property' => $key,
4852 'up_value' => $value,
4857 $dbw = wfGetDB( DB_MASTER
);
4858 // Find and delete any prior preference rows...
4859 $res = $dbw->select( 'user_properties',
4860 array( 'up_property' ), array( 'up_user' => $userId ), __METHOD__
);
4861 $priorKeys = array();
4862 foreach ( $res as $row ) {
4863 $priorKeys[] = $row->up_property
;
4865 if ( count( $priorKeys ) ) {
4866 // Do the DELETE by PRIMARY KEY for prior rows.
4867 // In the past a very large portion of calls to this function are for setting
4868 // 'rememberpassword' for new accounts (a preference that has since been removed).
4869 // Doing a blanket per-user DELETE for new accounts with no rows in the table
4870 // caused gap locks on [max user ID,+infinity) which caused high contention since
4871 // updates would pile up on each other as they are for higher (newer) user IDs.
4872 // It might not be necessary these days, but it shouldn't hurt either.
4873 $dbw->delete( 'user_properties',
4874 array( 'up_user' => $userId, 'up_property' => $priorKeys ), __METHOD__
);
4876 // Insert the new preference rows
4877 $dbw->insert( 'user_properties', $insert_rows, __METHOD__
, array( 'IGNORE' ) );
4881 * Provide an array of HTML5 attributes to put on an input element
4882 * intended for the user to enter a new password. This may include
4883 * required, title, and/or pattern, depending on $wgMinimalPasswordLength.
4885 * Do *not* use this when asking the user to enter his current password!
4886 * Regardless of configuration, users may have invalid passwords for whatever
4887 * reason (e.g., they were set before requirements were tightened up).
4888 * Only use it when asking for a new password, like on account creation or
4891 * Obviously, you still need to do server-side checking.
4893 * NOTE: A combination of bugs in various browsers means that this function
4894 * actually just returns array() unconditionally at the moment. May as
4895 * well keep it around for when the browser bugs get fixed, though.
4897 * @todo FIXME: This does not belong here; put it in Html or Linker or somewhere
4899 * @return array Array of HTML attributes suitable for feeding to
4900 * Html::element(), directly or indirectly. (Don't feed to Xml::*()!
4901 * That will get confused by the boolean attribute syntax used.)
4903 public static function passwordChangeInputAttribs() {
4904 global $wgMinimalPasswordLength;
4906 if ( $wgMinimalPasswordLength == 0 ) {
4910 # Note that the pattern requirement will always be satisfied if the
4911 # input is empty, so we need required in all cases.
4913 # @todo FIXME: Bug 23769: This needs to not claim the password is required
4914 # if e-mail confirmation is being used. Since HTML5 input validation
4915 # is b0rked anyway in some browsers, just return nothing. When it's
4916 # re-enabled, fix this code to not output required for e-mail
4918 #$ret = array( 'required' );
4921 # We can't actually do this right now, because Opera 9.6 will print out
4922 # the entered password visibly in its error message! When other
4923 # browsers add support for this attribute, or Opera fixes its support,
4924 # we can add support with a version check to avoid doing this on Opera
4925 # versions where it will be a problem. Reported to Opera as
4926 # DSK-262266, but they don't have a public bug tracker for us to follow.
4928 if ( $wgMinimalPasswordLength > 1 ) {
4929 $ret['pattern'] = '.{' . intval( $wgMinimalPasswordLength ) . ',}';
4930 $ret['title'] = wfMessage( 'passwordtooshort' )
4931 ->numParams( $wgMinimalPasswordLength )->text();
4939 * Return the list of user fields that should be selected to create
4940 * a new user object.
4943 public static function selectFields() {
4950 'user_newpass_time',
4954 'user_email_authenticated',
4956 'user_email_token_expires',
4957 'user_password_expires',
4958 'user_registration',
4964 * Factory function for fatal permission-denied errors
4967 * @param string $permission User right required
4970 static function newFatalPermissionDeniedStatus( $permission ) {
4973 $groups = array_map(
4974 array( 'User', 'makeGroupLinkWiki' ),
4975 User
::getGroupsWithPermission( $permission )
4979 return Status
::newFatal( 'badaccess-groups', $wgLang->commaList( $groups ), count( $groups ) );
4981 return Status
::newFatal( 'badaccess-group0' );