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', 8 );
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 static $mCacheVars = array(
90 'mEmailAuthenticated',
97 // user_properties table
102 * Array of Strings Core rights.
103 * Each of these should have a corresponding message of the form
107 static $mCoreRights = array(
133 'editusercssjs', #deprecated
145 'move-rootuserpages',
149 'override-export-depth',
172 'userrights-interwiki',
178 * String Cached results of getAllRights()
180 static $mAllRights = false;
182 /** @name Cache variables */
184 var $mId, $mName, $mRealName, $mPassword, $mNewpassword, $mNewpassTime,
185 $mEmail, $mTouched, $mToken, $mEmailAuthenticated,
186 $mEmailToken, $mEmailTokenExpires, $mRegistration, $mEditCount,
187 $mGroups, $mOptionOverrides;
191 * Bool Whether the cache variables have been loaded.
197 * Array with already loaded items or true if all items have been loaded.
199 private $mLoadedItems = array();
203 * String Initialization data source if mLoadedItems!==true. May be one of:
204 * - 'defaults' anonymous user initialised from class defaults
205 * - 'name' initialise from mName
206 * - 'id' initialise from mId
207 * - 'session' log in from cookies or session if possible
209 * Use the User::newFrom*() family of functions to set this.
214 * Lazy-initialized variables, invalidated with clearInstanceCache
216 var $mNewtalk, $mDatePreference, $mBlockedby, $mHash, $mRights,
217 $mBlockreason, $mEffectiveGroups, $mImplicitGroups, $mFormerGroups, $mBlockedGlobally,
218 $mLocked, $mHideName, $mOptions;
238 private $mBlockedFromCreateAccount = false;
243 private $mWatchedItems = array();
245 static $idCacheByName = array();
248 * Lightweight constructor for an anonymous user.
249 * Use the User::newFrom* factory functions for other kinds of users.
253 * @see newFromConfirmationCode()
254 * @see newFromSession()
257 function __construct() {
258 $this->clearInstanceCache( 'defaults' );
264 function __toString() {
265 return $this->getName();
269 * Load the user table data for this object from the source given by mFrom.
271 public function load() {
272 if ( $this->mLoadedItems
=== true ) {
275 wfProfileIn( __METHOD__
);
277 // Set it now to avoid infinite recursion in accessors
278 $this->mLoadedItems
= true;
280 switch ( $this->mFrom
) {
282 $this->loadDefaults();
285 $this->mId
= self
::idFromName( $this->mName
);
287 // Nonexistent user placeholder object
288 $this->loadDefaults( $this->mName
);
297 if ( !$this->loadFromSession() ) {
298 // Loading from session failed. Load defaults.
299 $this->loadDefaults();
301 wfRunHooks( 'UserLoadAfterLoadFromSession', array( $this ) );
304 wfProfileOut( __METHOD__
);
305 throw new MWException( "Unrecognised value for User->mFrom: \"{$this->mFrom}\"" );
307 wfProfileOut( __METHOD__
);
311 * Load user table data, given mId has already been set.
312 * @return bool false if the ID does not exist, true otherwise
314 public function loadFromId() {
316 if ( $this->mId
== 0 ) {
317 $this->loadDefaults();
322 $key = wfMemcKey( 'user', 'id', $this->mId
);
323 $data = $wgMemc->get( $key );
324 if ( !is_array( $data ) ||
$data['mVersion'] < MW_USER_VERSION
) {
325 // Object is expired, load from DB
330 wfDebug( "User: cache miss for user {$this->mId}\n" );
332 if ( !$this->loadFromDatabase() ) {
333 // Can't load from ID, user is anonymous
336 $this->saveToCache();
338 wfDebug( "User: got user {$this->mId} from cache\n" );
339 // Restore from cache
340 foreach ( self
::$mCacheVars as $name ) {
341 $this->$name = $data[$name];
345 $this->mLoadedItems
= true;
351 * Save user data to the shared cache
353 public function saveToCache() {
356 $this->loadOptions();
357 if ( $this->isAnon() ) {
358 // Anonymous users are uncached
362 foreach ( self
::$mCacheVars as $name ) {
363 $data[$name] = $this->$name;
365 $data['mVersion'] = MW_USER_VERSION
;
366 $key = wfMemcKey( 'user', 'id', $this->mId
);
368 $wgMemc->set( $key, $data );
371 /** @name newFrom*() static factory methods */
375 * Static factory method for creation from username.
377 * This is slightly less efficient than newFromId(), so use newFromId() if
378 * you have both an ID and a name handy.
380 * @param string $name Username, validated by Title::newFromText()
381 * @param string|bool $validate Validate username. Takes the same parameters as
382 * User::getCanonicalName(), except that true is accepted as an alias
383 * for 'valid', for BC.
385 * @return User|bool User object, or false if the username is invalid
386 * (e.g. if it contains illegal characters or is an IP address). If the
387 * username is not present in the database, the result will be a user object
388 * with a name, zero user ID and default settings.
390 public static function newFromName( $name, $validate = 'valid' ) {
391 if ( $validate === true ) {
394 $name = self
::getCanonicalName( $name, $validate );
395 if ( $name === false ) {
398 // Create unloaded user object
402 $u->setItemLoaded( 'name' );
408 * Static factory method for creation from a given user ID.
410 * @param int $id Valid user ID
411 * @return User The corresponding User object
413 public static function newFromId( $id ) {
417 $u->setItemLoaded( 'id' );
422 * Factory method to fetch whichever user has a given email confirmation code.
423 * This code is generated when an account is created or its e-mail address
426 * If the code is invalid or has expired, returns NULL.
428 * @param string $code Confirmation code
431 public static function newFromConfirmationCode( $code ) {
432 $dbr = wfGetDB( DB_SLAVE
);
433 $id = $dbr->selectField( 'user', 'user_id', array(
434 'user_email_token' => md5( $code ),
435 'user_email_token_expires > ' . $dbr->addQuotes( $dbr->timestamp() ),
437 if ( $id !== false ) {
438 return User
::newFromId( $id );
445 * Create a new user object using data from session or cookies. If the
446 * login credentials are invalid, the result is an anonymous user.
448 * @param WebRequest $request Object to use; $wgRequest will be used if omitted.
449 * @return User object
451 public static function newFromSession( WebRequest
$request = null ) {
453 $user->mFrom
= 'session';
454 $user->mRequest
= $request;
459 * Create a new user object from a user row.
460 * The row should have the following fields from the user table in it:
461 * - either user_name or user_id to load further data if needed (or both)
463 * - all other fields (email, password, etc.)
464 * It is useless to provide the remaining fields if either user_id,
465 * user_name and user_real_name are not provided because the whole row
466 * will be loaded once more from the database when accessing them.
468 * @param array $row A row from the user table
469 * @param array $data Further data to load into the object (see User::loadFromRow for valid keys)
472 public static function newFromRow( $row, $data = null ) {
474 $user->loadFromRow( $row, $data );
481 * Get the username corresponding to a given user ID
482 * @param int $id User ID
483 * @return string|bool The corresponding username
485 public static function whoIs( $id ) {
486 return UserCache
::singleton()->getProp( $id, 'name' );
490 * Get the real name of a user given their user ID
492 * @param int $id User ID
493 * @return string|bool The corresponding user's real name
495 public static function whoIsReal( $id ) {
496 return UserCache
::singleton()->getProp( $id, 'real_name' );
500 * Get database id given a user name
501 * @param string $name Username
502 * @return int|null The corresponding user's ID, or null if user is nonexistent
504 public static function idFromName( $name ) {
505 $nt = Title
::makeTitleSafe( NS_USER
, $name );
506 if ( is_null( $nt ) ) {
511 if ( isset( self
::$idCacheByName[$name] ) ) {
512 return self
::$idCacheByName[$name];
515 $dbr = wfGetDB( DB_SLAVE
);
516 $s = $dbr->selectRow( 'user', array( 'user_id' ), array( 'user_name' => $nt->getText() ), __METHOD__
);
518 if ( $s === false ) {
521 $result = $s->user_id
;
524 self
::$idCacheByName[$name] = $result;
526 if ( count( self
::$idCacheByName ) > 1000 ) {
527 self
::$idCacheByName = array();
534 * Reset the cache used in idFromName(). For use in tests.
536 public static function resetIdByNameCache() {
537 self
::$idCacheByName = array();
541 * Does the string match an anonymous IPv4 address?
543 * This function exists for username validation, in order to reject
544 * usernames which are similar in form to IP addresses. Strings such
545 * as 300.300.300.300 will return true because it looks like an IP
546 * address, despite not being strictly valid.
548 * We match "\d{1,3}\.\d{1,3}\.\d{1,3}\.xxx" as an anonymous IP
549 * address because the usemod software would "cloak" anonymous IP
550 * addresses like this, if we allowed accounts like this to be created
551 * new users could get the old edits of these anonymous users.
553 * @param string $name Name to match
556 public static function isIP( $name ) {
557 return preg_match( '/^\d{1,3}\.\d{1,3}\.\d{1,3}\.(?:xxx|\d{1,3})$/', $name ) || IP
::isIPv6( $name );
561 * Is the input a valid username?
563 * Checks if the input is a valid username, we don't want an empty string,
564 * an IP address, anything that contains slashes (would mess up subpages),
565 * is longer than the maximum allowed username size or doesn't begin with
568 * @param string $name Name to match
571 public static function isValidUserName( $name ) {
572 global $wgContLang, $wgMaxNameChars;
575 || User
::isIP( $name )
576 ||
strpos( $name, '/' ) !== false
577 ||
strlen( $name ) > $wgMaxNameChars
578 ||
$name != $wgContLang->ucfirst( $name ) ) {
579 wfDebugLog( 'username', __METHOD__
.
580 ": '$name' invalid due to empty, IP, slash, length, or lowercase" );
584 // Ensure that the name can't be misresolved as a different title,
585 // such as with extra namespace keys at the start.
586 $parsed = Title
::newFromText( $name );
587 if ( is_null( $parsed )
588 ||
$parsed->getNamespace()
589 ||
strcmp( $name, $parsed->getPrefixedText() ) ) {
590 wfDebugLog( 'username', __METHOD__
.
591 ": '$name' invalid due to ambiguous prefixes" );
595 // Check an additional blacklist of troublemaker characters.
596 // Should these be merged into the title char list?
597 $unicodeBlacklist = '/[' .
598 '\x{0080}-\x{009f}' . # iso-8859-1 control chars
599 '\x{00a0}' . # non-breaking space
600 '\x{2000}-\x{200f}' . # various whitespace
601 '\x{2028}-\x{202f}' . # breaks and control chars
602 '\x{3000}' . # ideographic space
603 '\x{e000}-\x{f8ff}' . # private use
605 if ( preg_match( $unicodeBlacklist, $name ) ) {
606 wfDebugLog( 'username', __METHOD__
.
607 ": '$name' invalid due to blacklisted characters" );
615 * Usernames which fail to pass this function will be blocked
616 * from user login and new account registrations, but may be used
617 * internally by batch processes.
619 * If an account already exists in this form, login will be blocked
620 * by a failure to pass this function.
622 * @param string $name Name to match
625 public static function isUsableName( $name ) {
626 global $wgReservedUsernames;
627 // Must be a valid username, obviously ;)
628 if ( !self
::isValidUserName( $name ) ) {
632 static $reservedUsernames = false;
633 if ( !$reservedUsernames ) {
634 $reservedUsernames = $wgReservedUsernames;
635 wfRunHooks( 'UserGetReservedNames', array( &$reservedUsernames ) );
638 // Certain names may be reserved for batch processes.
639 foreach ( $reservedUsernames as $reserved ) {
640 if ( substr( $reserved, 0, 4 ) == 'msg:' ) {
641 $reserved = wfMessage( substr( $reserved, 4 ) )->inContentLanguage()->text();
643 if ( $reserved == $name ) {
651 * Usernames which fail to pass this function will be blocked
652 * from new account registrations, but may be used internally
653 * either by batch processes or by user accounts which have
654 * already been created.
656 * Additional blacklisting may be added here rather than in
657 * isValidUserName() to avoid disrupting existing accounts.
659 * @param string $name to match
662 public static function isCreatableName( $name ) {
663 global $wgInvalidUsernameCharacters;
665 // Ensure that the username isn't longer than 235 bytes, so that
666 // (at least for the builtin skins) user javascript and css files
667 // will work. (bug 23080)
668 if ( strlen( $name ) > 235 ) {
669 wfDebugLog( 'username', __METHOD__
.
670 ": '$name' invalid due to length" );
674 // Preg yells if you try to give it an empty string
675 if ( $wgInvalidUsernameCharacters !== '' ) {
676 if ( preg_match( '/[' . preg_quote( $wgInvalidUsernameCharacters, '/' ) . ']/', $name ) ) {
677 wfDebugLog( 'username', __METHOD__
.
678 ": '$name' invalid due to wgInvalidUsernameCharacters" );
683 return self
::isUsableName( $name );
687 * Is the input a valid password for this user?
689 * @param string $password Desired password
692 public function isValidPassword( $password ) {
693 //simple boolean wrapper for getPasswordValidity
694 return $this->getPasswordValidity( $password ) === true;
698 * Given unvalidated password input, return error message on failure.
700 * @param string $password Desired password
701 * @return mixed: true on success, string or array of error message on failure
703 public function getPasswordValidity( $password ) {
704 global $wgMinimalPasswordLength, $wgContLang;
706 static $blockedLogins = array(
707 'Useruser' => 'Passpass', 'Useruser1' => 'Passpass1', # r75589
708 'Apitestsysop' => 'testpass', 'Apitestuser' => 'testpass' # r75605
711 $result = false; //init $result to false for the internal checks
713 if ( !wfRunHooks( 'isValidPassword', array( $password, &$result, $this ) ) ) {
717 if ( $result === false ) {
718 if ( strlen( $password ) < $wgMinimalPasswordLength ) {
719 return 'passwordtooshort';
720 } elseif ( $wgContLang->lc( $password ) == $wgContLang->lc( $this->mName
) ) {
721 return 'password-name-match';
722 } elseif ( isset( $blockedLogins[$this->getName()] ) && $password == $blockedLogins[$this->getName()] ) {
723 return 'password-login-forbidden';
725 //it seems weird returning true here, but this is because of the
726 //initialization of $result to false above. If the hook is never run or it
727 //doesn't modify $result, then we will likely get down into this if with
731 } elseif ( $result === true ) {
734 return $result; //the isValidPassword hook set a string $result and returned true
739 * Does a string look like an e-mail address?
741 * This validates an email address using an HTML5 specification found at:
742 * http://www.whatwg.org/html/states-of-the-type-attribute.html#valid-e-mail-address
743 * Which as of 2011-01-24 says:
745 * A valid e-mail address is a string that matches the ABNF production
746 * 1*( atext / "." ) "@" ldh-str *( "." ldh-str ) where atext is defined
747 * in RFC 5322 section 3.2.3, and ldh-str is defined in RFC 1034 section
750 * This function is an implementation of the specification as requested in
753 * Client-side forms will use the same standard validation rules via JS or
754 * HTML 5 validation; additional restrictions can be enforced server-side
755 * by extensions via the 'isValidEmailAddr' hook.
757 * Note that this validation doesn't 100% match RFC 2822, but is believed
758 * to be liberal enough for wide use. Some invalid addresses will still
759 * pass validation here.
761 * @param string $addr E-mail address
763 * @deprecated since 1.18 call Sanitizer::isValidEmail() directly
765 public static function isValidEmailAddr( $addr ) {
766 wfDeprecated( __METHOD__
, '1.18' );
767 return Sanitizer
::validateEmail( $addr );
771 * Given unvalidated user input, return a canonical username, or false if
772 * the username is invalid.
773 * @param string $name User input
774 * @param string|bool $validate type of validation to use:
775 * - false No validation
776 * - 'valid' Valid for batch processes
777 * - 'usable' Valid for batch processes and login
778 * - 'creatable' Valid for batch processes, login and account creation
780 * @throws MWException
781 * @return bool|string
783 public static function getCanonicalName( $name, $validate = 'valid' ) {
784 // Force usernames to capital
786 $name = $wgContLang->ucfirst( $name );
788 # Reject names containing '#'; these will be cleaned up
789 # with title normalisation, but then it's too late to
791 if ( strpos( $name, '#' ) !== false ) {
795 // Clean up name according to title rules
796 $t = ( $validate === 'valid' ) ?
797 Title
::newFromText( $name ) : Title
::makeTitle( NS_USER
, $name );
798 // Check for invalid titles
799 if ( is_null( $t ) ) {
803 // Reject various classes of invalid names
805 $name = $wgAuth->getCanonicalName( $t->getText() );
807 switch ( $validate ) {
811 if ( !User
::isValidUserName( $name ) ) {
816 if ( !User
::isUsableName( $name ) ) {
821 if ( !User
::isCreatableName( $name ) ) {
826 throw new MWException( 'Invalid parameter value for $validate in ' . __METHOD__
);
832 * Count the number of edits of a user
834 * @param int $uid User ID to check
835 * @return int The user's edit count
837 * @deprecated since 1.21 in favour of User::getEditCount
839 public static function edits( $uid ) {
840 wfDeprecated( __METHOD__
, '1.21' );
841 $user = self
::newFromId( $uid );
842 return $user->getEditCount();
846 * Return a random password.
848 * @return string New random password
850 public static function randomPassword() {
851 global $wgMinimalPasswordLength;
852 // Decide the final password length based on our min password length, stopping at a minimum of 10 chars
853 $length = max( 10, $wgMinimalPasswordLength );
854 // Multiply by 1.25 to get the number of hex characters we need
855 $length = $length * 1.25;
856 // Generate random hex chars
857 $hex = MWCryptRand
::generateHex( $length );
858 // Convert from base 16 to base 32 to get a proper password like string
859 return wfBaseConvert( $hex, 16, 32 );
863 * Set cached properties to default.
865 * @note This no longer clears uncached lazy-initialised properties;
866 * the constructor does that instead.
868 * @param $name string|bool
870 public function loadDefaults( $name = false ) {
871 wfProfileIn( __METHOD__
);
874 $this->mName
= $name;
875 $this->mRealName
= '';
876 $this->mPassword
= $this->mNewpassword
= '';
877 $this->mNewpassTime
= null;
879 $this->mOptionOverrides
= null;
880 $this->mOptionsLoaded
= false;
882 $loggedOut = $this->getRequest()->getCookie( 'LoggedOut' );
883 if ( $loggedOut !== null ) {
884 $this->mTouched
= wfTimestamp( TS_MW
, $loggedOut );
886 $this->mTouched
= '1'; # Allow any pages to be cached
889 $this->mToken
= null; // Don't run cryptographic functions till we need a token
890 $this->mEmailAuthenticated
= null;
891 $this->mEmailToken
= '';
892 $this->mEmailTokenExpires
= null;
893 $this->mRegistration
= wfTimestamp( TS_MW
);
894 $this->mGroups
= array();
896 wfRunHooks( 'UserLoadDefaults', array( $this, $name ) );
898 wfProfileOut( __METHOD__
);
902 * Return whether an item has been loaded.
904 * @param string $item item to check. Current possibilities:
908 * @param string $all 'all' to check if the whole object has been loaded
909 * or any other string to check if only the item is available (e.g.
913 public function isItemLoaded( $item, $all = 'all' ) {
914 return ( $this->mLoadedItems
=== true && $all === 'all' ) ||
915 ( isset( $this->mLoadedItems
[$item] ) && $this->mLoadedItems
[$item] === true );
919 * Set that an item has been loaded
921 * @param string $item
923 protected function setItemLoaded( $item ) {
924 if ( is_array( $this->mLoadedItems
) ) {
925 $this->mLoadedItems
[$item] = true;
930 * Load user data from the session or login cookie.
931 * @return bool True if the user is logged in, false otherwise.
933 private function loadFromSession() {
935 wfRunHooks( 'UserLoadFromSession', array( $this, &$result ) );
936 if ( $result !== null ) {
940 $request = $this->getRequest();
942 $cookieId = $request->getCookie( 'UserID' );
943 $sessId = $request->getSessionData( 'wsUserID' );
945 if ( $cookieId !== null ) {
946 $sId = intval( $cookieId );
947 if ( $sessId !== null && $cookieId != $sessId ) {
948 wfDebugLog( 'loginSessions', "Session user ID ($sessId) and
949 cookie user ID ($sId) don't match!" );
952 $request->setSessionData( 'wsUserID', $sId );
953 } elseif ( $sessId !== null && $sessId != 0 ) {
959 if ( $request->getSessionData( 'wsUserName' ) !== null ) {
960 $sName = $request->getSessionData( 'wsUserName' );
961 } elseif ( $request->getCookie( 'UserName' ) !== null ) {
962 $sName = $request->getCookie( 'UserName' );
963 $request->setSessionData( 'wsUserName', $sName );
968 $proposedUser = User
::newFromId( $sId );
969 if ( !$proposedUser->isLoggedIn() ) {
974 global $wgBlockDisablesLogin;
975 if ( $wgBlockDisablesLogin && $proposedUser->isBlocked() ) {
976 // User blocked and we've disabled blocked user logins
980 if ( $request->getSessionData( 'wsToken' ) ) {
981 $passwordCorrect = ( $proposedUser->getToken( false ) === $request->getSessionData( 'wsToken' ) );
983 } elseif ( $request->getCookie( 'Token' ) ) {
984 # Get the token from DB/cache and clean it up to remove garbage padding.
985 # This deals with historical problems with bugs and the default column value.
986 $token = rtrim( $proposedUser->getToken( false ) ); // correct token
987 $passwordCorrect = ( strlen( $token ) && $token === $request->getCookie( 'Token' ) );
990 // No session or persistent login cookie
994 if ( ( $sName === $proposedUser->getName() ) && $passwordCorrect ) {
995 $this->loadFromUserObject( $proposedUser );
996 $request->setSessionData( 'wsToken', $this->mToken
);
997 wfDebug( "User: logged in from $from\n" );
1000 // Invalid credentials
1001 wfDebug( "User: can't log in from $from, invalid credentials\n" );
1007 * Load user and user_group data from the database.
1008 * $this->mId must be set, this is how the user is identified.
1010 * @return bool True if the user exists, false if the user is anonymous
1012 public function loadFromDatabase() {
1014 $this->mId
= intval( $this->mId
);
1017 if ( !$this->mId
) {
1018 $this->loadDefaults();
1022 $dbr = wfGetDB( DB_MASTER
);
1023 $s = $dbr->selectRow( 'user', self
::selectFields(), array( 'user_id' => $this->mId
), __METHOD__
);
1025 wfRunHooks( 'UserLoadFromDatabase', array( $this, &$s ) );
1027 if ( $s !== false ) {
1028 // Initialise user table data
1029 $this->loadFromRow( $s );
1030 $this->mGroups
= null; // deferred
1031 $this->getEditCount(); // revalidation for nulls
1036 $this->loadDefaults();
1042 * Initialize this object from a row from the user table.
1044 * @param array $row Row from the user table to load.
1045 * @param array $data Further user data to load into the object
1047 * user_groups Array with groups out of the user_groups table
1048 * user_properties Array with properties out of the user_properties table
1050 public function loadFromRow( $row, $data = null ) {
1053 $this->mGroups
= null; // deferred
1055 if ( isset( $row->user_name
) ) {
1056 $this->mName
= $row->user_name
;
1057 $this->mFrom
= 'name';
1058 $this->setItemLoaded( 'name' );
1063 if ( isset( $row->user_real_name
) ) {
1064 $this->mRealName
= $row->user_real_name
;
1065 $this->setItemLoaded( 'realname' );
1070 if ( isset( $row->user_id
) ) {
1071 $this->mId
= intval( $row->user_id
);
1072 $this->mFrom
= 'id';
1073 $this->setItemLoaded( 'id' );
1078 if ( isset( $row->user_editcount
) ) {
1079 $this->mEditCount
= $row->user_editcount
;
1084 if ( isset( $row->user_password
) ) {
1085 $this->mPassword
= $row->user_password
;
1086 $this->mNewpassword
= $row->user_newpassword
;
1087 $this->mNewpassTime
= wfTimestampOrNull( TS_MW
, $row->user_newpass_time
);
1088 $this->mEmail
= $row->user_email
;
1089 if ( isset( $row->user_options
) ) {
1090 $this->decodeOptions( $row->user_options
);
1092 $this->mTouched
= wfTimestamp( TS_MW
, $row->user_touched
);
1093 $this->mToken
= $row->user_token
;
1094 if ( $this->mToken
== '' ) {
1095 $this->mToken
= null;
1097 $this->mEmailAuthenticated
= wfTimestampOrNull( TS_MW
, $row->user_email_authenticated
);
1098 $this->mEmailToken
= $row->user_email_token
;
1099 $this->mEmailTokenExpires
= wfTimestampOrNull( TS_MW
, $row->user_email_token_expires
);
1100 $this->mRegistration
= wfTimestampOrNull( TS_MW
, $row->user_registration
);
1106 $this->mLoadedItems
= true;
1109 if ( is_array( $data ) ) {
1110 if ( isset( $data['user_groups'] ) && is_array( $data['user_groups'] ) ) {
1111 $this->mGroups
= $data['user_groups'];
1113 if ( isset( $data['user_properties'] ) && is_array( $data['user_properties'] ) ) {
1114 $this->loadOptions( $data['user_properties'] );
1120 * Load the data for this user object from another user object.
1124 protected function loadFromUserObject( $user ) {
1126 $user->loadGroups();
1127 $user->loadOptions();
1128 foreach ( self
::$mCacheVars as $var ) {
1129 $this->$var = $user->$var;
1134 * Load the groups from the database if they aren't already loaded.
1136 private function loadGroups() {
1137 if ( is_null( $this->mGroups
) ) {
1138 $dbr = wfGetDB( DB_MASTER
);
1139 $res = $dbr->select( 'user_groups',
1140 array( 'ug_group' ),
1141 array( 'ug_user' => $this->mId
),
1143 $this->mGroups
= array();
1144 foreach ( $res as $row ) {
1145 $this->mGroups
[] = $row->ug_group
;
1151 * Add the user to the group if he/she meets given criteria.
1153 * Contrary to autopromotion by \ref $wgAutopromote, the group will be
1154 * possible to remove manually via Special:UserRights. In such case it
1155 * will not be re-added automatically. The user will also not lose the
1156 * group if they no longer meet the criteria.
1158 * @param string $event key in $wgAutopromoteOnce (each one has groups/criteria)
1160 * @return array Array of groups the user has been promoted to.
1162 * @see $wgAutopromoteOnce
1164 public function addAutopromoteOnceGroups( $event ) {
1165 global $wgAutopromoteOnceLogInRC, $wgAuth;
1167 $toPromote = array();
1168 if ( $this->getId() ) {
1169 $toPromote = Autopromote
::getAutopromoteOnceGroups( $this, $event );
1170 if ( count( $toPromote ) ) {
1171 $oldGroups = $this->getGroups(); // previous groups
1173 foreach ( $toPromote as $group ) {
1174 $this->addGroup( $group );
1176 // update groups in external authentication database
1177 $wgAuth->updateExternalDBGroups( $this, $toPromote );
1179 $newGroups = array_merge( $oldGroups, $toPromote ); // all groups
1181 $logEntry = new ManualLogEntry( 'rights', 'autopromote' );
1182 $logEntry->setPerformer( $this );
1183 $logEntry->setTarget( $this->getUserPage() );
1184 $logEntry->setParameters( array(
1185 '4::oldgroups' => $oldGroups,
1186 '5::newgroups' => $newGroups,
1188 $logid = $logEntry->insert();
1189 if ( $wgAutopromoteOnceLogInRC ) {
1190 $logEntry->publish( $logid );
1198 * Clear various cached data stored in this object. The cache of the user table
1199 * data (i.e. self::$mCacheVars) is not cleared unless $reloadFrom is given.
1201 * @param bool|string $reloadFrom Reload user and user_groups table data from a
1202 * given source. May be "name", "id", "defaults", "session", or false for
1205 public function clearInstanceCache( $reloadFrom = false ) {
1206 $this->mNewtalk
= -1;
1207 $this->mDatePreference
= null;
1208 $this->mBlockedby
= -1; # Unset
1209 $this->mHash
= false;
1210 $this->mRights
= null;
1211 $this->mEffectiveGroups
= null;
1212 $this->mImplicitGroups
= null;
1213 $this->mGroups
= null;
1214 $this->mOptions
= null;
1215 $this->mOptionsLoaded
= false;
1216 $this->mEditCount
= null;
1218 if ( $reloadFrom ) {
1219 $this->mLoadedItems
= array();
1220 $this->mFrom
= $reloadFrom;
1225 * Combine the language default options with any site-specific options
1226 * and add the default language variants.
1228 * @return Array of String options
1230 public static function getDefaultOptions() {
1231 global $wgNamespacesToBeSearchedDefault, $wgDefaultUserOptions, $wgContLang, $wgDefaultSkin;
1233 static $defOpt = null;
1234 if ( !defined( 'MW_PHPUNIT_TEST' ) && $defOpt !== null ) {
1235 // Disabling this for the unit tests, as they rely on being able to change $wgContLang
1236 // mid-request and see that change reflected in the return value of this function.
1237 // Which is insane and would never happen during normal MW operation
1241 $defOpt = $wgDefaultUserOptions;
1242 // Default language setting
1243 $defOpt['language'] = $defOpt['variant'] = $wgContLang->getCode();
1244 foreach ( SearchEngine
::searchableNamespaces() as $nsnum => $nsname ) {
1245 $defOpt['searchNs' . $nsnum] = !empty( $wgNamespacesToBeSearchedDefault[$nsnum] );
1247 $defOpt['skin'] = $wgDefaultSkin;
1249 wfRunHooks( 'UserGetDefaultOptions', array( &$defOpt ) );
1255 * Get a given default option value.
1257 * @param string $opt Name of option to retrieve
1258 * @return string Default option value
1260 public static function getDefaultOption( $opt ) {
1261 $defOpts = self
::getDefaultOptions();
1262 if ( isset( $defOpts[$opt] ) ) {
1263 return $defOpts[$opt];
1270 * Get blocking information
1271 * @param bool $bFromSlave Whether to check the slave database first. To
1272 * improve performance, non-critical checks are done
1273 * against slaves. Check when actually saving should be
1274 * done against master.
1276 private function getBlockedStatus( $bFromSlave = true ) {
1277 global $wgProxyWhitelist, $wgUser, $wgApplyIpBlocksToXff;
1279 if ( -1 != $this->mBlockedby
) {
1283 wfProfileIn( __METHOD__
);
1284 wfDebug( __METHOD__
. ": checking...\n" );
1286 // Initialize data...
1287 // Otherwise something ends up stomping on $this->mBlockedby when
1288 // things get lazy-loaded later, causing false positive block hits
1289 // due to -1 !== 0. Probably session-related... Nothing should be
1290 // overwriting mBlockedby, surely?
1293 # We only need to worry about passing the IP address to the Block generator if the
1294 # user is not immune to autoblocks/hardblocks, and they are the current user so we
1295 # know which IP address they're actually coming from
1296 if ( !$this->isAllowed( 'ipblock-exempt' ) && $this->getID() == $wgUser->getID() ) {
1297 $ip = $this->getRequest()->getIP();
1303 $block = Block
::newFromTarget( $this, $ip, !$bFromSlave );
1306 if ( !$block instanceof Block
&& $ip !== null && !$this->isAllowed( 'proxyunbannable' )
1307 && !in_array( $ip, $wgProxyWhitelist ) )
1310 if ( self
::isLocallyBlockedProxy( $ip ) ) {
1312 $block->setBlocker( wfMessage( 'proxyblocker' )->text() );
1313 $block->mReason
= wfMessage( 'proxyblockreason' )->text();
1314 $block->setTarget( $ip );
1315 } elseif ( $this->isAnon() && $this->isDnsBlacklisted( $ip ) ) {
1317 $block->setBlocker( wfMessage( 'sorbs' )->text() );
1318 $block->mReason
= wfMessage( 'sorbsreason' )->text();
1319 $block->setTarget( $ip );
1323 // (bug 23343) Apply IP blocks to the contents of XFF headers, if enabled
1324 if ( !$block instanceof Block
1325 && $wgApplyIpBlocksToXff
1327 && !$this->isAllowed( 'proxyunbannable' )
1328 && !in_array( $ip, $wgProxyWhitelist )
1330 $xff = $this->getRequest()->getHeader( 'X-Forwarded-For' );
1331 $xff = array_map( 'trim', explode( ',', $xff ) );
1332 $xff = array_diff( $xff, array( $ip ) );
1333 $xffblocks = Block
::getBlocksForIPList( $xff, $this->isAnon(), !$bFromSlave );
1334 $block = Block
::chooseBlock( $xffblocks, $xff );
1335 if ( $block instanceof Block
) {
1336 # Mangle the reason to alert the user that the block
1337 # originated from matching the X-Forwarded-For header.
1338 $block->mReason
= wfMessage( 'xffblockreason', $block->mReason
)->text();
1342 if ( $block instanceof Block
) {
1343 wfDebug( __METHOD__
. ": Found block.\n" );
1344 $this->mBlock
= $block;
1345 $this->mBlockedby
= $block->getByName();
1346 $this->mBlockreason
= $block->mReason
;
1347 $this->mHideName
= $block->mHideName
;
1348 $this->mAllowUsertalk
= !$block->prevents( 'editownusertalk' );
1350 $this->mBlockedby
= '';
1351 $this->mHideName
= 0;
1352 $this->mAllowUsertalk
= false;
1356 wfRunHooks( 'GetBlockedStatus', array( &$this ) );
1358 wfProfileOut( __METHOD__
);
1362 * Whether the given IP is in a DNS blacklist.
1364 * @param string $ip IP to check
1365 * @param bool $checkWhitelist whether to check the whitelist first
1366 * @return bool True if blacklisted.
1368 public function isDnsBlacklisted( $ip, $checkWhitelist = false ) {
1369 global $wgEnableSorbs, $wgEnableDnsBlacklist,
1370 $wgSorbsUrl, $wgDnsBlacklistUrls, $wgProxyWhitelist;
1372 if ( !$wgEnableDnsBlacklist && !$wgEnableSorbs ) {
1376 if ( $checkWhitelist && in_array( $ip, $wgProxyWhitelist ) ) {
1380 $urls = array_merge( $wgDnsBlacklistUrls, (array)$wgSorbsUrl );
1381 return $this->inDnsBlacklist( $ip, $urls );
1385 * Whether the given IP is in a given DNS blacklist.
1387 * @param string $ip IP to check
1388 * @param string|array $bases of Strings: URL of the DNS blacklist
1389 * @return bool True if blacklisted.
1391 public function inDnsBlacklist( $ip, $bases ) {
1392 wfProfileIn( __METHOD__
);
1395 // @todo FIXME: IPv6 ??? (http://bugs.php.net/bug.php?id=33170)
1396 if ( IP
::isIPv4( $ip ) ) {
1397 // Reverse IP, bug 21255
1398 $ipReversed = implode( '.', array_reverse( explode( '.', $ip ) ) );
1400 foreach ( (array)$bases as $base ) {
1402 // If we have an access key, use that too (ProjectHoneypot, etc.)
1403 if ( is_array( $base ) ) {
1404 if ( count( $base ) >= 2 ) {
1405 // Access key is 1, base URL is 0
1406 $host = "{$base[1]}.$ipReversed.{$base[0]}";
1408 $host = "$ipReversed.{$base[0]}";
1411 $host = "$ipReversed.$base";
1415 $ipList = gethostbynamel( $host );
1418 wfDebugLog( 'dnsblacklist', "Hostname $host is {$ipList[0]}, it's a proxy says $base!\n" );
1422 wfDebugLog( 'dnsblacklist', "Requested $host, not found in $base.\n" );
1427 wfProfileOut( __METHOD__
);
1432 * Check if an IP address is in the local proxy list
1438 public static function isLocallyBlockedProxy( $ip ) {
1439 global $wgProxyList;
1441 if ( !$wgProxyList ) {
1444 wfProfileIn( __METHOD__
);
1446 if ( !is_array( $wgProxyList ) ) {
1447 // Load from the specified file
1448 $wgProxyList = array_map( 'trim', file( $wgProxyList ) );
1451 if ( !is_array( $wgProxyList ) ) {
1453 } elseif ( array_search( $ip, $wgProxyList ) !== false ) {
1455 } elseif ( array_key_exists( $ip, $wgProxyList ) ) {
1456 // Old-style flipped proxy list
1461 wfProfileOut( __METHOD__
);
1466 * Is this user subject to rate limiting?
1468 * @return bool True if rate limited
1470 public function isPingLimitable() {
1471 global $wgRateLimitsExcludedIPs;
1472 if ( in_array( $this->getRequest()->getIP(), $wgRateLimitsExcludedIPs ) ) {
1473 // No other good way currently to disable rate limits
1474 // for specific IPs. :P
1475 // But this is a crappy hack and should die.
1478 return !$this->isAllowed( 'noratelimit' );
1482 * Primitive rate limits: enforce maximum actions per time period
1483 * to put a brake on flooding.
1485 * @note When using a shared cache like memcached, IP-address
1486 * last-hit counters will be shared across wikis.
1488 * @param string $action Action to enforce; 'edit' if unspecified
1489 * @return bool True if a rate limiter was tripped
1491 public function pingLimiter( $action = 'edit' ) {
1492 // Call the 'PingLimiter' hook
1494 if ( !wfRunHooks( 'PingLimiter', array( &$this, $action, &$result ) ) ) {
1498 global $wgRateLimits;
1499 if ( !isset( $wgRateLimits[$action] ) ) {
1503 // Some groups shouldn't trigger the ping limiter, ever
1504 if ( !$this->isPingLimitable() ) {
1508 global $wgMemc, $wgRateLimitLog;
1509 wfProfileIn( __METHOD__
);
1511 $limits = $wgRateLimits[$action];
1513 $id = $this->getId();
1516 if ( isset( $limits['anon'] ) && $id == 0 ) {
1517 $keys[wfMemcKey( 'limiter', $action, 'anon' )] = $limits['anon'];
1520 if ( isset( $limits['user'] ) && $id != 0 ) {
1521 $userLimit = $limits['user'];
1523 if ( $this->isNewbie() ) {
1524 if ( isset( $limits['newbie'] ) && $id != 0 ) {
1525 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $limits['newbie'];
1527 if ( isset( $limits['ip'] ) ) {
1528 $ip = $this->getRequest()->getIP();
1529 $keys["mediawiki:limiter:$action:ip:$ip"] = $limits['ip'];
1531 if ( isset( $limits['subnet'] ) ) {
1532 $ip = $this->getRequest()->getIP();
1535 if ( IP
::isIPv6( $ip ) ) {
1536 $parts = IP
::parseRange( "$ip/64" );
1537 $subnet = $parts[0];
1538 } elseif ( preg_match( '/^(\d+\.\d+\.\d+)\.\d+$/', $ip, $matches ) ) {
1540 $subnet = $matches[1];
1542 if ( $subnet !== false ) {
1543 $keys["mediawiki:limiter:$action:subnet:$subnet"] = $limits['subnet'];
1547 // Check for group-specific permissions
1548 // If more than one group applies, use the group with the highest limit
1549 foreach ( $this->getGroups() as $group ) {
1550 if ( isset( $limits[$group] ) ) {
1551 if ( $userLimit === false ||
$limits[$group] > $userLimit ) {
1552 $userLimit = $limits[$group];
1556 // Set the user limit key
1557 if ( $userLimit !== false ) {
1558 list( $max, $period ) = $userLimit;
1559 wfDebug( __METHOD__
. ": effective user limit: $max in {$period}s\n" );
1560 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $userLimit;
1564 foreach ( $keys as $key => $limit ) {
1565 list( $max, $period ) = $limit;
1566 $summary = "(limit $max in {$period}s)";
1567 $count = $wgMemc->get( $key );
1570 if ( $count >= $max ) {
1571 wfDebug( __METHOD__
. ": tripped! $key at $count $summary\n" );
1572 if ( $wgRateLimitLog ) {
1573 wfSuppressWarnings();
1574 file_put_contents( $wgRateLimitLog, wfTimestamp( TS_MW
) . ' ' . wfWikiID() . ': ' . $this->getName() . " tripped $key at $count $summary\n", FILE_APPEND
);
1575 wfRestoreWarnings();
1579 wfDebug( __METHOD__
. ": ok. $key at $count $summary\n" );
1582 wfDebug( __METHOD__
. ": adding record for $key $summary\n" );
1583 $wgMemc->add( $key, 0, intval( $period ) ); // first ping
1585 $wgMemc->incr( $key );
1588 wfProfileOut( __METHOD__
);
1593 * Check if user is blocked
1595 * @param bool $bFromSlave Whether to check the slave database instead of the master
1596 * @return bool True if blocked, false otherwise
1598 public function isBlocked( $bFromSlave = true ) { // hacked from false due to horrible probs on site
1599 return $this->getBlock( $bFromSlave ) instanceof Block
&& $this->getBlock()->prevents( 'edit' );
1603 * Get the block affecting the user, or null if the user is not blocked
1605 * @param bool $bFromSlave Whether to check the slave database instead of the master
1606 * @return Block|null
1608 public function getBlock( $bFromSlave = true ) {
1609 $this->getBlockedStatus( $bFromSlave );
1610 return $this->mBlock
instanceof Block ?
$this->mBlock
: null;
1614 * Check if user is blocked from editing a particular article
1616 * @param Title $title Title to check
1617 * @param bool $bFromSlave whether to check the slave database instead of the master
1620 function isBlockedFrom( $title, $bFromSlave = false ) {
1621 global $wgBlockAllowsUTEdit;
1622 wfProfileIn( __METHOD__
);
1624 $blocked = $this->isBlocked( $bFromSlave );
1625 $allowUsertalk = ( $wgBlockAllowsUTEdit ?
$this->mAllowUsertalk
: false );
1626 // If a user's name is suppressed, they cannot make edits anywhere
1627 if ( !$this->mHideName
&& $allowUsertalk && $title->getText() === $this->getName() &&
1628 $title->getNamespace() == NS_USER_TALK
) {
1630 wfDebug( __METHOD__
. ": self-talk page, ignoring any blocks\n" );
1633 wfRunHooks( 'UserIsBlockedFrom', array( $this, $title, &$blocked, &$allowUsertalk ) );
1635 wfProfileOut( __METHOD__
);
1640 * If user is blocked, return the name of the user who placed the block
1641 * @return string Name of blocker
1643 public function blockedBy() {
1644 $this->getBlockedStatus();
1645 return $this->mBlockedby
;
1649 * If user is blocked, return the specified reason for the block
1650 * @return string Blocking reason
1652 public function blockedFor() {
1653 $this->getBlockedStatus();
1654 return $this->mBlockreason
;
1658 * If user is blocked, return the ID for the block
1659 * @return int Block ID
1661 public function getBlockId() {
1662 $this->getBlockedStatus();
1663 return ( $this->mBlock ?
$this->mBlock
->getId() : false );
1667 * Check if user is blocked on all wikis.
1668 * Do not use for actual edit permission checks!
1669 * This is intended for quick UI checks.
1671 * @param string $ip IP address, uses current client if none given
1672 * @return bool True if blocked, false otherwise
1674 public function isBlockedGlobally( $ip = '' ) {
1675 if ( $this->mBlockedGlobally
!== null ) {
1676 return $this->mBlockedGlobally
;
1678 // User is already an IP?
1679 if ( IP
::isIPAddress( $this->getName() ) ) {
1680 $ip = $this->getName();
1682 $ip = $this->getRequest()->getIP();
1685 wfRunHooks( 'UserIsBlockedGlobally', array( &$this, $ip, &$blocked ) );
1686 $this->mBlockedGlobally
= (bool)$blocked;
1687 return $this->mBlockedGlobally
;
1691 * Check if user account is locked
1693 * @return bool True if locked, false otherwise
1695 public function isLocked() {
1696 if ( $this->mLocked
!== null ) {
1697 return $this->mLocked
;
1700 $authUser = $wgAuth->getUserInstance( $this );
1701 $this->mLocked
= (bool)$authUser->isLocked();
1702 return $this->mLocked
;
1706 * Check if user account is hidden
1708 * @return bool True if hidden, false otherwise
1710 public function isHidden() {
1711 if ( $this->mHideName
!== null ) {
1712 return $this->mHideName
;
1714 $this->getBlockedStatus();
1715 if ( !$this->mHideName
) {
1717 $authUser = $wgAuth->getUserInstance( $this );
1718 $this->mHideName
= (bool)$authUser->isHidden();
1720 return $this->mHideName
;
1724 * Get the user's ID.
1725 * @return int The user's ID; 0 if the user is anonymous or nonexistent
1727 public function getId() {
1728 if ( $this->mId
=== null && $this->mName
!== null && User
::isIP( $this->mName
) ) {
1729 // Special case, we know the user is anonymous
1731 } elseif ( !$this->isItemLoaded( 'id' ) ) {
1732 // Don't load if this was initialized from an ID
1739 * Set the user and reload all fields according to a given ID
1740 * @param int $v User ID to reload
1742 public function setId( $v ) {
1744 $this->clearInstanceCache( 'id' );
1748 * Get the user name, or the IP of an anonymous user
1749 * @return string User's name or IP address
1751 public function getName() {
1752 if ( $this->isItemLoaded( 'name', 'only' ) ) {
1753 // Special case optimisation
1754 return $this->mName
;
1757 if ( $this->mName
=== false ) {
1759 $this->mName
= IP
::sanitizeIP( $this->getRequest()->getIP() );
1761 return $this->mName
;
1766 * Set the user name.
1768 * This does not reload fields from the database according to the given
1769 * name. Rather, it is used to create a temporary "nonexistent user" for
1770 * later addition to the database. It can also be used to set the IP
1771 * address for an anonymous user to something other than the current
1774 * @note User::newFromName() has roughly the same function, when the named user
1776 * @param string $str New user name to set
1778 public function setName( $str ) {
1780 $this->mName
= $str;
1784 * Get the user's name escaped by underscores.
1785 * @return string Username escaped by underscores.
1787 public function getTitleKey() {
1788 return str_replace( ' ', '_', $this->getName() );
1792 * Check if the user has new messages.
1793 * @return bool True if the user has new messages
1795 public function getNewtalk() {
1798 // Load the newtalk status if it is unloaded (mNewtalk=-1)
1799 if ( $this->mNewtalk
=== -1 ) {
1800 $this->mNewtalk
= false; # reset talk page status
1802 // Check memcached separately for anons, who have no
1803 // entire User object stored in there.
1804 if ( !$this->mId
) {
1805 global $wgDisableAnonTalk;
1806 if ( $wgDisableAnonTalk ) {
1807 // Anon newtalk disabled by configuration.
1808 $this->mNewtalk
= false;
1811 $key = wfMemcKey( 'newtalk', 'ip', $this->getName() );
1812 $newtalk = $wgMemc->get( $key );
1813 if ( strval( $newtalk ) !== '' ) {
1814 $this->mNewtalk
= (bool)$newtalk;
1816 // Since we are caching this, make sure it is up to date by getting it
1818 $this->mNewtalk
= $this->checkNewtalk( 'user_ip', $this->getName(), true );
1819 $wgMemc->set( $key, (int)$this->mNewtalk
, 1800 );
1823 $this->mNewtalk
= $this->checkNewtalk( 'user_id', $this->mId
);
1827 return (bool)$this->mNewtalk
;
1831 * Return the data needed to construct links for new talk page message
1832 * alerts. If there are new messages, this will return an associative array
1833 * with the following data:
1834 * wiki: The database name of the wiki
1835 * link: Root-relative link to the user's talk page
1836 * rev: The last talk page revision that the user has seen or null. This
1837 * is useful for building diff links.
1838 * If there are no new messages, it returns an empty array.
1839 * @note This function was designed to accomodate multiple talk pages, but
1840 * currently only returns a single link and revision.
1843 public function getNewMessageLinks() {
1845 if ( !wfRunHooks( 'UserRetrieveNewTalks', array( &$this, &$talks ) ) ) {
1847 } elseif ( !$this->getNewtalk() ) {
1850 $utp = $this->getTalkPage();
1851 $dbr = wfGetDB( DB_SLAVE
);
1852 // Get the "last viewed rev" timestamp from the oldest message notification
1853 $timestamp = $dbr->selectField( 'user_newtalk',
1854 'MIN(user_last_timestamp)',
1855 $this->isAnon() ?
array( 'user_ip' => $this->getName() ) : array( 'user_id' => $this->getID() ),
1857 $rev = $timestamp ? Revision
::loadFromTimestamp( $dbr, $utp, $timestamp ) : null;
1858 return array( array( 'wiki' => wfWikiID(), 'link' => $utp->getLocalURL(), 'rev' => $rev ) );
1862 * Get the revision ID for the last talk page revision viewed by the talk
1864 * @return int|null Revision ID or null
1866 public function getNewMessageRevisionId() {
1867 $newMessageRevisionId = null;
1868 $newMessageLinks = $this->getNewMessageLinks();
1869 if ( $newMessageLinks ) {
1870 // Note: getNewMessageLinks() never returns more than a single link
1871 // and it is always for the same wiki, but we double-check here in
1872 // case that changes some time in the future.
1873 if ( count( $newMessageLinks ) === 1
1874 && $newMessageLinks[0]['wiki'] === wfWikiID()
1875 && $newMessageLinks[0]['rev']
1877 $newMessageRevision = $newMessageLinks[0]['rev'];
1878 $newMessageRevisionId = $newMessageRevision->getId();
1881 return $newMessageRevisionId;
1885 * Internal uncached check for new messages
1888 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
1889 * @param string|int $id User's IP address for anonymous users, User ID otherwise
1890 * @param bool $fromMaster true to fetch from the master, false for a slave
1891 * @return bool True if the user has new messages
1893 protected function checkNewtalk( $field, $id, $fromMaster = false ) {
1894 if ( $fromMaster ) {
1895 $db = wfGetDB( DB_MASTER
);
1897 $db = wfGetDB( DB_SLAVE
);
1899 $ok = $db->selectField( 'user_newtalk', $field,
1900 array( $field => $id ), __METHOD__
);
1901 return $ok !== false;
1905 * Add or update the new messages flag
1906 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
1907 * @param string|int $id User's IP address for anonymous users, User ID otherwise
1908 * @param $curRev Revision new, as yet unseen revision of the user talk page. Ignored if null.
1909 * @return bool True if successful, false otherwise
1911 protected function updateNewtalk( $field, $id, $curRev = null ) {
1912 // Get timestamp of the talk page revision prior to the current one
1913 $prevRev = $curRev ?
$curRev->getPrevious() : false;
1914 $ts = $prevRev ?
$prevRev->getTimestamp() : null;
1915 // Mark the user as having new messages since this revision
1916 $dbw = wfGetDB( DB_MASTER
);
1917 $dbw->insert( 'user_newtalk',
1918 array( $field => $id, 'user_last_timestamp' => $dbw->timestampOrNull( $ts ) ),
1921 if ( $dbw->affectedRows() ) {
1922 wfDebug( __METHOD__
. ": set on ($field, $id)\n" );
1925 wfDebug( __METHOD__
. " already set ($field, $id)\n" );
1931 * Clear the new messages flag for the given user
1932 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
1933 * @param string|int $id User's IP address for anonymous users, User ID otherwise
1934 * @return bool True if successful, false otherwise
1936 protected function deleteNewtalk( $field, $id ) {
1937 $dbw = wfGetDB( DB_MASTER
);
1938 $dbw->delete( 'user_newtalk',
1939 array( $field => $id ),
1941 if ( $dbw->affectedRows() ) {
1942 wfDebug( __METHOD__
. ": killed on ($field, $id)\n" );
1945 wfDebug( __METHOD__
. ": already gone ($field, $id)\n" );
1951 * Update the 'You have new messages!' status.
1952 * @param bool $val Whether the user has new messages
1953 * @param $curRev Revision new, as yet unseen revision of the user talk page. Ignored if null or !$val.
1955 public function setNewtalk( $val, $curRev = null ) {
1956 if ( wfReadOnly() ) {
1961 $this->mNewtalk
= $val;
1963 if ( $this->isAnon() ) {
1965 $id = $this->getName();
1968 $id = $this->getId();
1973 $changed = $this->updateNewtalk( $field, $id, $curRev );
1975 $changed = $this->deleteNewtalk( $field, $id );
1978 if ( $this->isAnon() ) {
1979 // Anons have a separate memcached space, since
1980 // user records aren't kept for them.
1981 $key = wfMemcKey( 'newtalk', 'ip', $id );
1982 $wgMemc->set( $key, $val ?
1 : 0, 1800 );
1985 $this->invalidateCache();
1990 * Generate a current or new-future timestamp to be stored in the
1991 * user_touched field when we update things.
1992 * @return string Timestamp in TS_MW format
1994 private static function newTouchedTimestamp() {
1995 global $wgClockSkewFudge;
1996 return wfTimestamp( TS_MW
, time() +
$wgClockSkewFudge );
2000 * Clear user data from memcached.
2001 * Use after applying fun updates to the database; caller's
2002 * responsibility to update user_touched if appropriate.
2004 * Called implicitly from invalidateCache() and saveSettings().
2006 private function clearSharedCache() {
2010 $wgMemc->delete( wfMemcKey( 'user', 'id', $this->mId
) );
2015 * Immediately touch the user data cache for this account.
2016 * Updates user_touched field, and removes account data from memcached
2017 * for reload on the next hit.
2019 public function invalidateCache() {
2020 if ( wfReadOnly() ) {
2025 $this->mTouched
= self
::newTouchedTimestamp();
2027 $dbw = wfGetDB( DB_MASTER
);
2028 $userid = $this->mId
;
2029 $touched = $this->mTouched
;
2030 $method = __METHOD__
;
2031 $dbw->onTransactionIdle( function() use ( $dbw, $userid, $touched, $method ) {
2032 // Prevent contention slams by checking user_touched first
2033 $encTouched = $dbw->addQuotes( $dbw->timestamp( $touched ) );
2034 $needsPurge = $dbw->selectField( 'user', '1',
2035 array( 'user_id' => $userid, 'user_touched < ' . $encTouched ) );
2036 if ( $needsPurge ) {
2037 $dbw->update( 'user',
2038 array( 'user_touched' => $dbw->timestamp( $touched ) ),
2039 array( 'user_id' => $userid, 'user_touched < ' . $encTouched ),
2044 $this->clearSharedCache();
2049 * Validate the cache for this account.
2050 * @param string $timestamp A timestamp in TS_MW format
2053 public function validateCache( $timestamp ) {
2055 return ( $timestamp >= $this->mTouched
);
2059 * Get the user touched timestamp
2060 * @return string timestamp
2062 public function getTouched() {
2064 return $this->mTouched
;
2068 * Set the password and reset the random token.
2069 * Calls through to authentication plugin if necessary;
2070 * will have no effect if the auth plugin refuses to
2071 * pass the change through or if the legal password
2074 * As a special case, setting the password to null
2075 * wipes it, so the account cannot be logged in until
2076 * a new password is set, for instance via e-mail.
2078 * @param string $str New password to set
2079 * @throws PasswordError on failure
2083 public function setPassword( $str ) {
2086 if ( $str !== null ) {
2087 if ( !$wgAuth->allowPasswordChange() ) {
2088 throw new PasswordError( wfMessage( 'password-change-forbidden' )->text() );
2091 if ( !$this->isValidPassword( $str ) ) {
2092 global $wgMinimalPasswordLength;
2093 $valid = $this->getPasswordValidity( $str );
2094 if ( is_array( $valid ) ) {
2095 $message = array_shift( $valid );
2099 $params = array( $wgMinimalPasswordLength );
2101 throw new PasswordError( wfMessage( $message, $params )->text() );
2105 if ( !$wgAuth->setPassword( $this, $str ) ) {
2106 throw new PasswordError( wfMessage( 'externaldberror' )->text() );
2109 $this->setInternalPassword( $str );
2115 * Set the password and reset the random token unconditionally.
2117 * @param string|null $str New password to set or null to set an invalid
2118 * password hash meaning that the user will not be able to log in
2119 * through the web interface.
2121 public function setInternalPassword( $str ) {
2125 if ( $str === null ) {
2126 // Save an invalid hash...
2127 $this->mPassword
= '';
2129 $this->mPassword
= self
::crypt( $str );
2131 $this->mNewpassword
= '';
2132 $this->mNewpassTime
= null;
2136 * Get the user's current token.
2137 * @param bool $forceCreation Force the generation of a new token if the user doesn't have one (default=true for backwards compatibility)
2138 * @return string Token
2140 public function getToken( $forceCreation = true ) {
2142 if ( !$this->mToken
&& $forceCreation ) {
2145 return $this->mToken
;
2149 * Set the random token (used for persistent authentication)
2150 * Called from loadDefaults() among other places.
2152 * @param string|bool $token If specified, set the token to this value
2154 public function setToken( $token = false ) {
2157 $this->mToken
= MWCryptRand
::generateHex( USER_TOKEN_LENGTH
);
2159 $this->mToken
= $token;
2164 * Set the password for a password reminder or new account email
2166 * @param string $str New password to set
2167 * @param bool $throttle If true, reset the throttle timestamp to the present
2169 public function setNewpassword( $str, $throttle = true ) {
2171 $this->mNewpassword
= self
::crypt( $str );
2173 $this->mNewpassTime
= wfTimestampNow();
2178 * Has password reminder email been sent within the last
2179 * $wgPasswordReminderResendTime hours?
2182 public function isPasswordReminderThrottled() {
2183 global $wgPasswordReminderResendTime;
2185 if ( !$this->mNewpassTime ||
!$wgPasswordReminderResendTime ) {
2188 $expiry = wfTimestamp( TS_UNIX
, $this->mNewpassTime
) +
$wgPasswordReminderResendTime * 3600;
2189 return time() < $expiry;
2193 * Get the user's e-mail address
2194 * @return string User's email address
2196 public function getEmail() {
2198 wfRunHooks( 'UserGetEmail', array( $this, &$this->mEmail
) );
2199 return $this->mEmail
;
2203 * Get the timestamp of the user's e-mail authentication
2204 * @return string TS_MW timestamp
2206 public function getEmailAuthenticationTimestamp() {
2208 wfRunHooks( 'UserGetEmailAuthenticationTimestamp', array( $this, &$this->mEmailAuthenticated
) );
2209 return $this->mEmailAuthenticated
;
2213 * Set the user's e-mail address
2214 * @param string $str New e-mail address
2216 public function setEmail( $str ) {
2218 if ( $str == $this->mEmail
) {
2221 $this->mEmail
= $str;
2222 $this->invalidateEmail();
2223 wfRunHooks( 'UserSetEmail', array( $this, &$this->mEmail
) );
2227 * Set the user's e-mail address and a confirmation mail if needed.
2230 * @param string $str New e-mail address
2233 public function setEmailWithConfirmation( $str ) {
2234 global $wgEnableEmail, $wgEmailAuthentication;
2236 if ( !$wgEnableEmail ) {
2237 return Status
::newFatal( 'emaildisabled' );
2240 $oldaddr = $this->getEmail();
2241 if ( $str === $oldaddr ) {
2242 return Status
::newGood( true );
2245 $this->setEmail( $str );
2247 if ( $str !== '' && $wgEmailAuthentication ) {
2248 // Send a confirmation request to the new address if needed
2249 $type = $oldaddr != '' ?
'changed' : 'set';
2250 $result = $this->sendConfirmationMail( $type );
2251 if ( $result->isGood() ) {
2252 // Say the the caller that a confirmation mail has been sent
2253 $result->value
= 'eauth';
2256 $result = Status
::newGood( true );
2263 * Get the user's real name
2264 * @return string User's real name
2266 public function getRealName() {
2267 if ( !$this->isItemLoaded( 'realname' ) ) {
2271 return $this->mRealName
;
2275 * Set the user's real name
2276 * @param string $str New real name
2278 public function setRealName( $str ) {
2280 $this->mRealName
= $str;
2284 * Get the user's current setting for a given option.
2286 * @param string $oname The option to check
2287 * @param string $defaultOverride A default value returned if the option does not exist
2288 * @param bool $ignoreHidden Whether to ignore the effects of $wgHiddenPrefs
2289 * @return string User's current value for the option
2290 * @see getBoolOption()
2291 * @see getIntOption()
2293 public function getOption( $oname, $defaultOverride = null, $ignoreHidden = false ) {
2294 global $wgHiddenPrefs;
2295 $this->loadOptions();
2297 # We want 'disabled' preferences to always behave as the default value for
2298 # users, even if they have set the option explicitly in their settings (ie they
2299 # set it, and then it was disabled removing their ability to change it). But
2300 # we don't want to erase the preferences in the database in case the preference
2301 # is re-enabled again. So don't touch $mOptions, just override the returned value
2302 if ( in_array( $oname, $wgHiddenPrefs ) && !$ignoreHidden ) {
2303 return self
::getDefaultOption( $oname );
2306 if ( array_key_exists( $oname, $this->mOptions
) ) {
2307 return $this->mOptions
[$oname];
2309 return $defaultOverride;
2314 * Get all user's options
2318 public function getOptions() {
2319 global $wgHiddenPrefs;
2320 $this->loadOptions();
2321 $options = $this->mOptions
;
2323 # We want 'disabled' preferences to always behave as the default value for
2324 # users, even if they have set the option explicitly in their settings (ie they
2325 # set it, and then it was disabled removing their ability to change it). But
2326 # we don't want to erase the preferences in the database in case the preference
2327 # is re-enabled again. So don't touch $mOptions, just override the returned value
2328 foreach ( $wgHiddenPrefs as $pref ) {
2329 $default = self
::getDefaultOption( $pref );
2330 if ( $default !== null ) {
2331 $options[$pref] = $default;
2339 * Get the user's current setting for a given option, as a boolean value.
2341 * @param string $oname The option to check
2342 * @return bool User's current value for the option
2345 public function getBoolOption( $oname ) {
2346 return (bool)$this->getOption( $oname );
2350 * Get the user's current setting for a given option, as a boolean value.
2352 * @param string $oname The option to check
2353 * @param int $defaultOverride A default value returned if the option does not exist
2354 * @return int User's current value for the option
2357 public function getIntOption( $oname, $defaultOverride = 0 ) {
2358 $val = $this->getOption( $oname );
2360 $val = $defaultOverride;
2362 return intval( $val );
2366 * Set the given option for a user.
2368 * @param string $oname The option to set
2369 * @param mixed $val New value to set
2371 public function setOption( $oname, $val ) {
2372 $this->loadOptions();
2374 // Explicitly NULL values should refer to defaults
2375 if ( is_null( $val ) ) {
2376 $val = self
::getDefaultOption( $oname );
2379 $this->mOptions
[$oname] = $val;
2383 * Return a list of the types of user options currently returned by
2384 * User::getOptionKinds().
2386 * Currently, the option kinds are:
2387 * - 'registered' - preferences which are registered in core MediaWiki or
2388 * by extensions using the UserGetDefaultOptions hook.
2389 * - 'registered-multiselect' - as above, using the 'multiselect' type.
2390 * - 'registered-checkmatrix' - as above, using the 'checkmatrix' type.
2391 * - 'userjs' - preferences with names starting with 'userjs-', intended to
2392 * be used by user scripts.
2393 * - 'unused' - preferences about which MediaWiki doesn't know anything.
2394 * These are usually legacy options, removed in newer versions.
2396 * The API (and possibly others) use this function to determine the possible
2397 * option types for validation purposes, so make sure to update this when a
2398 * new option kind is added.
2400 * @see User::getOptionKinds
2401 * @return array Option kinds
2403 public static function listOptionKinds() {
2406 'registered-multiselect',
2407 'registered-checkmatrix',
2414 * Return an associative array mapping preferences keys to the kind of a preference they're
2415 * used for. Different kinds are handled differently when setting or reading preferences.
2417 * See User::listOptionKinds for the list of valid option types that can be provided.
2419 * @see User::listOptionKinds
2420 * @param $context IContextSource
2421 * @param array $options assoc. array with options keys to check as keys. Defaults to $this->mOptions.
2422 * @return array the key => kind mapping data
2424 public function getOptionKinds( IContextSource
$context, $options = null ) {
2425 $this->loadOptions();
2426 if ( $options === null ) {
2427 $options = $this->mOptions
;
2430 $prefs = Preferences
::getPreferences( $this, $context );
2433 // Multiselect and checkmatrix options are stored in the database with
2434 // one key per option, each having a boolean value. Extract those keys.
2435 $multiselectOptions = array();
2436 foreach ( $prefs as $name => $info ) {
2437 if ( ( isset( $info['type'] ) && $info['type'] == 'multiselect' ) ||
2438 ( isset( $info['class'] ) && $info['class'] == 'HTMLMultiSelectField' ) ) {
2439 $opts = HTMLFormField
::flattenOptions( $info['options'] );
2440 $prefix = isset( $info['prefix'] ) ?
$info['prefix'] : $name;
2442 foreach ( $opts as $value ) {
2443 $multiselectOptions["$prefix$value"] = true;
2446 unset( $prefs[$name] );
2449 $checkmatrixOptions = array();
2450 foreach ( $prefs as $name => $info ) {
2451 if ( ( isset( $info['type'] ) && $info['type'] == 'checkmatrix' ) ||
2452 ( isset( $info['class'] ) && $info['class'] == 'HTMLCheckMatrix' ) ) {
2453 $columns = HTMLFormField
::flattenOptions( $info['columns'] );
2454 $rows = HTMLFormField
::flattenOptions( $info['rows'] );
2455 $prefix = isset( $info['prefix'] ) ?
$info['prefix'] : $name;
2457 foreach ( $columns as $column ) {
2458 foreach ( $rows as $row ) {
2459 $checkmatrixOptions["$prefix-$column-$row"] = true;
2463 unset( $prefs[$name] );
2467 // $value is ignored
2468 foreach ( $options as $key => $value ) {
2469 if ( isset( $prefs[$key] ) ) {
2470 $mapping[$key] = 'registered';
2471 } elseif ( isset( $multiselectOptions[$key] ) ) {
2472 $mapping[$key] = 'registered-multiselect';
2473 } elseif ( isset( $checkmatrixOptions[$key] ) ) {
2474 $mapping[$key] = 'registered-checkmatrix';
2475 } elseif ( substr( $key, 0, 7 ) === 'userjs-' ) {
2476 $mapping[$key] = 'userjs';
2478 $mapping[$key] = 'unused';
2486 * Reset certain (or all) options to the site defaults
2488 * The optional parameter determines which kinds of preferences will be reset.
2489 * Supported values are everything that can be reported by getOptionKinds()
2490 * and 'all', which forces a reset of *all* preferences and overrides everything else.
2492 * @param array|string $resetKinds which kinds of preferences to reset. Defaults to
2493 * array( 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' )
2494 * for backwards-compatibility.
2495 * @param $context IContextSource|null context source used when $resetKinds
2496 * does not contain 'all', passed to getOptionKinds().
2497 * Defaults to RequestContext::getMain() when null.
2499 public function resetOptions(
2500 $resetKinds = array( 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' ),
2501 IContextSource
$context = null
2504 $defaultOptions = self
::getDefaultOptions();
2506 if ( !is_array( $resetKinds ) ) {
2507 $resetKinds = array( $resetKinds );
2510 if ( in_array( 'all', $resetKinds ) ) {
2511 $newOptions = $defaultOptions;
2513 if ( $context === null ) {
2514 $context = RequestContext
::getMain();
2517 $optionKinds = $this->getOptionKinds( $context );
2518 $resetKinds = array_intersect( $resetKinds, self
::listOptionKinds() );
2519 $newOptions = array();
2521 // Use default values for the options that should be deleted, and
2522 // copy old values for the ones that shouldn't.
2523 foreach ( $this->mOptions
as $key => $value ) {
2524 if ( in_array( $optionKinds[$key], $resetKinds ) ) {
2525 if ( array_key_exists( $key, $defaultOptions ) ) {
2526 $newOptions[$key] = $defaultOptions[$key];
2529 $newOptions[$key] = $value;
2534 $this->mOptions
= $newOptions;
2535 $this->mOptionsLoaded
= true;
2539 * Get the user's preferred date format.
2540 * @return string User's preferred date format
2542 public function getDatePreference() {
2543 // Important migration for old data rows
2544 if ( is_null( $this->mDatePreference
) ) {
2546 $value = $this->getOption( 'date' );
2547 $map = $wgLang->getDatePreferenceMigrationMap();
2548 if ( isset( $map[$value] ) ) {
2549 $value = $map[$value];
2551 $this->mDatePreference
= $value;
2553 return $this->mDatePreference
;
2557 * Get the user preferred stub threshold
2561 public function getStubThreshold() {
2562 global $wgMaxArticleSize; # Maximum article size, in Kb
2563 $threshold = $this->getIntOption( 'stubthreshold' );
2564 if ( $threshold > $wgMaxArticleSize * 1024 ) {
2565 // If they have set an impossible value, disable the preference
2566 // so we can use the parser cache again.
2573 * Get the permissions this user has.
2574 * @return Array of String permission names
2576 public function getRights() {
2577 if ( is_null( $this->mRights
) ) {
2578 $this->mRights
= self
::getGroupPermissions( $this->getEffectiveGroups() );
2579 wfRunHooks( 'UserGetRights', array( $this, &$this->mRights
) );
2580 // Force reindexation of rights when a hook has unset one of them
2581 $this->mRights
= array_values( array_unique( $this->mRights
) );
2583 return $this->mRights
;
2587 * Get the list of explicit group memberships this user has.
2588 * The implicit * and user groups are not included.
2589 * @return Array of String internal group names
2591 public function getGroups() {
2593 $this->loadGroups();
2594 return $this->mGroups
;
2598 * Get the list of implicit group memberships this user has.
2599 * This includes all explicit groups, plus 'user' if logged in,
2600 * '*' for all accounts, and autopromoted groups
2601 * @param bool $recache Whether to avoid the cache
2602 * @return Array of String internal group names
2604 public function getEffectiveGroups( $recache = false ) {
2605 if ( $recache ||
is_null( $this->mEffectiveGroups
) ) {
2606 wfProfileIn( __METHOD__
);
2607 $this->mEffectiveGroups
= array_unique( array_merge(
2608 $this->getGroups(), // explicit groups
2609 $this->getAutomaticGroups( $recache ) // implicit groups
2611 // Hook for additional groups
2612 wfRunHooks( 'UserEffectiveGroups', array( &$this, &$this->mEffectiveGroups
) );
2613 // Force reindexation of groups when a hook has unset one of them
2614 $this->mEffectiveGroups
= array_values( array_unique( $this->mEffectiveGroups
) );
2615 wfProfileOut( __METHOD__
);
2617 return $this->mEffectiveGroups
;
2621 * Get the list of implicit group memberships this user has.
2622 * This includes 'user' if logged in, '*' for all accounts,
2623 * and autopromoted groups
2624 * @param bool $recache Whether to avoid the cache
2625 * @return Array of String internal group names
2627 public function getAutomaticGroups( $recache = false ) {
2628 if ( $recache ||
is_null( $this->mImplicitGroups
) ) {
2629 wfProfileIn( __METHOD__
);
2630 $this->mImplicitGroups
= array( '*' );
2631 if ( $this->getId() ) {
2632 $this->mImplicitGroups
[] = 'user';
2634 $this->mImplicitGroups
= array_unique( array_merge(
2635 $this->mImplicitGroups
,
2636 Autopromote
::getAutopromoteGroups( $this )
2640 // Assure data consistency with rights/groups,
2641 // as getEffectiveGroups() depends on this function
2642 $this->mEffectiveGroups
= null;
2644 wfProfileOut( __METHOD__
);
2646 return $this->mImplicitGroups
;
2650 * Returns the groups the user has belonged to.
2652 * The user may still belong to the returned groups. Compare with getGroups().
2654 * The function will not return groups the user had belonged to before MW 1.17
2656 * @return array Names of the groups the user has belonged to.
2658 public function getFormerGroups() {
2659 if ( is_null( $this->mFormerGroups
) ) {
2660 $dbr = wfGetDB( DB_MASTER
);
2661 $res = $dbr->select( 'user_former_groups',
2662 array( 'ufg_group' ),
2663 array( 'ufg_user' => $this->mId
),
2665 $this->mFormerGroups
= array();
2666 foreach ( $res as $row ) {
2667 $this->mFormerGroups
[] = $row->ufg_group
;
2670 return $this->mFormerGroups
;
2674 * Get the user's edit count.
2677 public function getEditCount() {
2678 if ( !$this->getId() ) {
2682 if ( !isset( $this->mEditCount
) ) {
2683 /* Populate the count, if it has not been populated yet */
2684 wfProfileIn( __METHOD__
);
2685 $dbr = wfGetDB( DB_SLAVE
);
2686 // check if the user_editcount field has been initialized
2687 $count = $dbr->selectField(
2688 'user', 'user_editcount',
2689 array( 'user_id' => $this->mId
),
2693 if ( $count === null ) {
2694 // it has not been initialized. do so.
2695 $count = $this->initEditCount();
2697 $this->mEditCount
= intval( $count );
2698 wfProfileOut( __METHOD__
);
2700 return $this->mEditCount
;
2704 * Add the user to the given group.
2705 * This takes immediate effect.
2706 * @param string $group Name of the group to add
2708 public function addGroup( $group ) {
2709 if ( wfRunHooks( 'UserAddGroup', array( $this, &$group ) ) ) {
2710 $dbw = wfGetDB( DB_MASTER
);
2711 if ( $this->getId() ) {
2712 $dbw->insert( 'user_groups',
2714 'ug_user' => $this->getID(),
2715 'ug_group' => $group,
2718 array( 'IGNORE' ) );
2721 $this->loadGroups();
2722 $this->mGroups
[] = $group;
2723 // In case loadGroups was not called before, we now have the right twice.
2724 // Get rid of the duplicate.
2725 $this->mGroups
= array_unique( $this->mGroups
);
2727 // Refresh the groups caches, and clear the rights cache so it will be
2728 // refreshed on the next call to $this->getRights().
2729 $this->getEffectiveGroups( true );
2730 $this->mRights
= null;
2732 $this->invalidateCache();
2736 * Remove the user from the given group.
2737 * This takes immediate effect.
2738 * @param string $group Name of the group to remove
2740 public function removeGroup( $group ) {
2742 if ( wfRunHooks( 'UserRemoveGroup', array( $this, &$group ) ) ) {
2743 $dbw = wfGetDB( DB_MASTER
);
2744 $dbw->delete( 'user_groups',
2746 'ug_user' => $this->getID(),
2747 'ug_group' => $group,
2749 // Remember that the user was in this group
2750 $dbw->insert( 'user_former_groups',
2752 'ufg_user' => $this->getID(),
2753 'ufg_group' => $group,
2756 array( 'IGNORE' ) );
2758 $this->loadGroups();
2759 $this->mGroups
= array_diff( $this->mGroups
, array( $group ) );
2761 // Refresh the groups caches, and clear the rights cache so it will be
2762 // refreshed on the next call to $this->getRights().
2763 $this->getEffectiveGroups( true );
2764 $this->mRights
= null;
2766 $this->invalidateCache();
2770 * Get whether the user is logged in
2773 public function isLoggedIn() {
2774 return $this->getID() != 0;
2778 * Get whether the user is anonymous
2781 public function isAnon() {
2782 return !$this->isLoggedIn();
2786 * Check if user is allowed to access a feature / make an action
2788 * @internal param \String $varargs permissions to test
2789 * @return boolean: True if user is allowed to perform *any* of the given actions
2793 public function isAllowedAny( /*...*/ ) {
2794 $permissions = func_get_args();
2795 foreach ( $permissions as $permission ) {
2796 if ( $this->isAllowed( $permission ) ) {
2805 * @internal param $varargs string
2806 * @return bool True if the user is allowed to perform *all* of the given actions
2808 public function isAllowedAll( /*...*/ ) {
2809 $permissions = func_get_args();
2810 foreach ( $permissions as $permission ) {
2811 if ( !$this->isAllowed( $permission ) ) {
2819 * Internal mechanics of testing a permission
2820 * @param string $action
2823 public function isAllowed( $action = '' ) {
2824 if ( $action === '' ) {
2825 return true; // In the spirit of DWIM
2827 // Patrolling may not be enabled
2828 if ( $action === 'patrol' ||
$action === 'autopatrol' ) {
2829 global $wgUseRCPatrol, $wgUseNPPatrol;
2830 if ( !$wgUseRCPatrol && !$wgUseNPPatrol ) {
2834 // Use strict parameter to avoid matching numeric 0 accidentally inserted
2835 // by misconfiguration: 0 == 'foo'
2836 return in_array( $action, $this->getRights(), true );
2840 * Check whether to enable recent changes patrol features for this user
2841 * @return boolean: True or false
2843 public function useRCPatrol() {
2844 global $wgUseRCPatrol;
2845 return $wgUseRCPatrol && $this->isAllowedAny( 'patrol', 'patrolmarks' );
2849 * Check whether to enable new pages patrol features for this user
2850 * @return bool True or false
2852 public function useNPPatrol() {
2853 global $wgUseRCPatrol, $wgUseNPPatrol;
2855 ( $wgUseRCPatrol ||
$wgUseNPPatrol )
2856 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
2861 * Get the WebRequest object to use with this object
2863 * @return WebRequest
2865 public function getRequest() {
2866 if ( $this->mRequest
) {
2867 return $this->mRequest
;
2875 * Get the current skin, loading it if required
2876 * @return Skin The current skin
2877 * @todo FIXME: Need to check the old failback system [AV]
2878 * @deprecated since 1.18 Use ->getSkin() in the most relevant outputting context you have
2880 public function getSkin() {
2881 wfDeprecated( __METHOD__
, '1.18' );
2882 return RequestContext
::getMain()->getSkin();
2886 * Get a WatchedItem for this user and $title.
2888 * @since 1.22 $checkRights parameter added
2889 * @param $title Title
2890 * @param $checkRights int Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
2891 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
2892 * @return WatchedItem
2894 public function getWatchedItem( $title, $checkRights = WatchedItem
::CHECK_USER_RIGHTS
) {
2895 $key = $checkRights . ':' . $title->getNamespace() . ':' . $title->getDBkey();
2897 if ( isset( $this->mWatchedItems
[$key] ) ) {
2898 return $this->mWatchedItems
[$key];
2901 if ( count( $this->mWatchedItems
) >= self
::MAX_WATCHED_ITEMS_CACHE
) {
2902 $this->mWatchedItems
= array();
2905 $this->mWatchedItems
[$key] = WatchedItem
::fromUserTitle( $this, $title, $checkRights );
2906 return $this->mWatchedItems
[$key];
2910 * Check the watched status of an article.
2911 * @since 1.22 $checkRights parameter added
2912 * @param $title Title of the article to look at
2913 * @param $checkRights int Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
2914 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
2917 public function isWatched( $title, $checkRights = WatchedItem
::CHECK_USER_RIGHTS
) {
2918 return $this->getWatchedItem( $title, $checkRights )->isWatched();
2923 * @since 1.22 $checkRights parameter added
2924 * @param $title Title of the article to look at
2925 * @param $checkRights int Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
2926 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
2928 public function addWatch( $title, $checkRights = WatchedItem
::CHECK_USER_RIGHTS
) {
2929 $this->getWatchedItem( $title, $checkRights )->addWatch();
2930 $this->invalidateCache();
2934 * Stop watching an article.
2935 * @since 1.22 $checkRights parameter added
2936 * @param $title Title of the article to look at
2937 * @param $checkRights int Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
2938 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
2940 public function removeWatch( $title, $checkRights = WatchedItem
::CHECK_USER_RIGHTS
) {
2941 $this->getWatchedItem( $title, $checkRights )->removeWatch();
2942 $this->invalidateCache();
2946 * Clear the user's notification timestamp for the given title.
2947 * If e-notif e-mails are on, they will receive notification mails on
2948 * the next change of the page if it's watched etc.
2949 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
2950 * @param $title Title of the article to look at
2952 public function clearNotification( &$title ) {
2953 global $wgUseEnotif, $wgShowUpdatedMarker;
2955 // Do nothing if the database is locked to writes
2956 if ( wfReadOnly() ) {
2960 // Do nothing if not allowed to edit the watchlist
2961 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
2965 if ( $title->getNamespace() == NS_USER_TALK
&&
2966 $title->getText() == $this->getName() ) {
2967 if ( !wfRunHooks( 'UserClearNewTalkNotification', array( &$this ) ) ) {
2970 $this->setNewtalk( false );
2973 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
2977 if ( $this->isAnon() ) {
2978 // Nothing else to do...
2982 // Only update the timestamp if the page is being watched.
2983 // The query to find out if it is watched is cached both in memcached and per-invocation,
2984 // and when it does have to be executed, it can be on a slave
2985 // If this is the user's newtalk page, we always update the timestamp
2987 if ( $title->getNamespace() == NS_USER_TALK
&&
2988 $title->getText() == $this->getName() )
2993 $this->getWatchedItem( $title )->resetNotificationTimestamp( $force );
2997 * Resets all of the given user's page-change notification timestamps.
2998 * If e-notif e-mails are on, they will receive notification mails on
2999 * the next change of any watched page.
3000 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3002 public function clearAllNotifications() {
3003 if ( wfReadOnly() ) {
3007 // Do nothing if not allowed to edit the watchlist
3008 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
3012 global $wgUseEnotif, $wgShowUpdatedMarker;
3013 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3014 $this->setNewtalk( false );
3017 $id = $this->getId();
3019 $dbw = wfGetDB( DB_MASTER
);
3020 $dbw->update( 'watchlist',
3022 'wl_notificationtimestamp' => null
3023 ), array( /* WHERE */
3027 # We also need to clear here the "you have new message" notification for the own user_talk page
3028 # This is cleared one page view later in Article::viewUpdates();
3033 * Set this user's options from an encoded string
3034 * @param string $str Encoded options to import
3036 * @deprecated in 1.19 due to removal of user_options from the user table
3038 private function decodeOptions( $str ) {
3039 wfDeprecated( __METHOD__
, '1.19' );
3044 $this->mOptionsLoaded
= true;
3045 $this->mOptionOverrides
= array();
3047 // If an option is not set in $str, use the default value
3048 $this->mOptions
= self
::getDefaultOptions();
3050 $a = explode( "\n", $str );
3051 foreach ( $a as $s ) {
3053 if ( preg_match( "/^(.[^=]*)=(.*)$/", $s, $m ) ) {
3054 $this->mOptions
[$m[1]] = $m[2];
3055 $this->mOptionOverrides
[$m[1]] = $m[2];
3061 * Set a cookie on the user's client. Wrapper for
3062 * WebResponse::setCookie
3063 * @param string $name Name of the cookie to set
3064 * @param string $value Value to set
3065 * @param int $exp Expiration time, as a UNIX time value;
3066 * if 0 or not specified, use the default $wgCookieExpiration
3067 * @param bool $secure
3068 * true: Force setting the secure attribute when setting the cookie
3069 * false: Force NOT setting the secure attribute when setting the cookie
3070 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3072 protected function setCookie( $name, $value, $exp = 0, $secure = null ) {
3073 $this->getRequest()->response()->setcookie( $name, $value, $exp, null, null, $secure );
3077 * Clear a cookie on the user's client
3078 * @param string $name Name of the cookie to clear
3080 protected function clearCookie( $name ) {
3081 $this->setCookie( $name, '', time() - 86400 );
3085 * Set the default cookies for this session on the user's client.
3087 * @param $request WebRequest object to use; $wgRequest will be used if null
3089 * @param bool $secure Whether to force secure/insecure cookies or use default
3091 public function setCookies( $request = null, $secure = null ) {
3092 if ( $request === null ) {
3093 $request = $this->getRequest();
3097 if ( 0 == $this->mId
) {
3100 if ( !$this->mToken
) {
3101 // When token is empty or NULL generate a new one and then save it to the database
3102 // This allows a wiki to re-secure itself after a leak of it's user table or $wgSecretKey
3103 // Simply by setting every cell in the user_token column to NULL and letting them be
3104 // regenerated as users log back into the wiki.
3106 $this->saveSettings();
3109 'wsUserID' => $this->mId
,
3110 'wsToken' => $this->mToken
,
3111 'wsUserName' => $this->getName()
3114 'UserID' => $this->mId
,
3115 'UserName' => $this->getName(),
3117 if ( 1 == $this->getOption( 'rememberpassword' ) ) {
3118 $cookies['Token'] = $this->mToken
;
3120 $cookies['Token'] = false;
3123 wfRunHooks( 'UserSetCookies', array( $this, &$session, &$cookies ) );
3125 foreach ( $session as $name => $value ) {
3126 $request->setSessionData( $name, $value );
3128 foreach ( $cookies as $name => $value ) {
3129 if ( $value === false ) {
3130 $this->clearCookie( $name );
3132 $this->setCookie( $name, $value, 0, $secure );
3137 * If wpStickHTTPS was selected, also set an insecure cookie that
3138 * will cause the site to redirect the user to HTTPS, if they access
3139 * it over HTTP. Bug 29898.
3141 if ( $request->getCheck( 'wpStickHTTPS' ) ) {
3142 $this->setCookie( 'forceHTTPS', 'true', time() +
2592000, false ); //30 days
3147 * Log this user out.
3149 public function logout() {
3150 if ( wfRunHooks( 'UserLogout', array( &$this ) ) ) {
3156 * Clear the user's cookies and session, and reset the instance cache.
3159 public function doLogout() {
3160 $this->clearInstanceCache( 'defaults' );
3162 $this->getRequest()->setSessionData( 'wsUserID', 0 );
3164 $this->clearCookie( 'UserID' );
3165 $this->clearCookie( 'Token' );
3166 $this->clearCookie( 'forceHTTPS' );
3168 // Remember when user logged out, to prevent seeing cached pages
3169 $this->setCookie( 'LoggedOut', time(), time() +
86400 );
3173 * Save this user's settings into the database.
3174 * @todo Only rarely do all these fields need to be set!
3176 public function saveSettings() {
3180 if ( wfReadOnly() ) {
3183 if ( 0 == $this->mId
) {
3187 $this->mTouched
= self
::newTouchedTimestamp();
3188 if ( !$wgAuth->allowSetLocalPassword() ) {
3189 $this->mPassword
= '';
3192 $dbw = wfGetDB( DB_MASTER
);
3193 $dbw->update( 'user',
3195 'user_name' => $this->mName
,
3196 'user_password' => $this->mPassword
,
3197 'user_newpassword' => $this->mNewpassword
,
3198 'user_newpass_time' => $dbw->timestampOrNull( $this->mNewpassTime
),
3199 'user_real_name' => $this->mRealName
,
3200 'user_email' => $this->mEmail
,
3201 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated
),
3202 'user_touched' => $dbw->timestamp( $this->mTouched
),
3203 'user_token' => strval( $this->mToken
),
3204 'user_email_token' => $this->mEmailToken
,
3205 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires
),
3206 ), array( /* WHERE */
3207 'user_id' => $this->mId
3211 $this->saveOptions();
3213 wfRunHooks( 'UserSaveSettings', array( $this ) );
3214 $this->clearSharedCache();
3215 $this->getUserPage()->invalidateCache();
3219 * If only this user's username is known, and it exists, return the user ID.
3222 public function idForName() {
3223 $s = trim( $this->getName() );
3228 $dbr = wfGetDB( DB_SLAVE
);
3229 $id = $dbr->selectField( 'user', 'user_id', array( 'user_name' => $s ), __METHOD__
);
3230 if ( $id === false ) {
3237 * Add a user to the database, return the user object
3239 * @param string $name Username to add
3240 * @param array $params of Strings Non-default parameters to save to the database as user_* fields:
3241 * - password The user's password hash. Password logins will be disabled if this is omitted.
3242 * - newpassword Hash for a temporary password that has been mailed to the user
3243 * - email The user's email address
3244 * - email_authenticated The email authentication timestamp
3245 * - real_name The user's real name
3246 * - options An associative array of non-default options
3247 * - token Random authentication token. Do not set.
3248 * - registration Registration timestamp. Do not set.
3250 * @return User object, or null if the username already exists
3252 public static function createNew( $name, $params = array() ) {
3255 $user->setToken(); // init token
3256 if ( isset( $params['options'] ) ) {
3257 $user->mOptions
= $params['options'] +
(array)$user->mOptions
;
3258 unset( $params['options'] );
3260 $dbw = wfGetDB( DB_MASTER
);
3261 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
3264 'user_id' => $seqVal,
3265 'user_name' => $name,
3266 'user_password' => $user->mPassword
,
3267 'user_newpassword' => $user->mNewpassword
,
3268 'user_newpass_time' => $dbw->timestampOrNull( $user->mNewpassTime
),
3269 'user_email' => $user->mEmail
,
3270 'user_email_authenticated' => $dbw->timestampOrNull( $user->mEmailAuthenticated
),
3271 'user_real_name' => $user->mRealName
,
3272 'user_token' => strval( $user->mToken
),
3273 'user_registration' => $dbw->timestamp( $user->mRegistration
),
3274 'user_editcount' => 0,
3275 'user_touched' => $dbw->timestamp( self
::newTouchedTimestamp() ),
3277 foreach ( $params as $name => $value ) {
3278 $fields["user_$name"] = $value;
3280 $dbw->insert( 'user', $fields, __METHOD__
, array( 'IGNORE' ) );
3281 if ( $dbw->affectedRows() ) {
3282 $newUser = User
::newFromId( $dbw->insertId() );
3290 * Add this existing user object to the database. If the user already
3291 * exists, a fatal status object is returned, and the user object is
3292 * initialised with the data from the database.
3294 * Previously, this function generated a DB error due to a key conflict
3295 * if the user already existed. Many extension callers use this function
3296 * in code along the lines of:
3298 * $user = User::newFromName( $name );
3299 * if ( !$user->isLoggedIn() ) {
3300 * $user->addToDatabase();
3302 * // do something with $user...
3304 * However, this was vulnerable to a race condition (bug 16020). By
3305 * initialising the user object if the user exists, we aim to support this
3306 * calling sequence as far as possible.
3308 * Note that if the user exists, this function will acquire a write lock,
3309 * so it is still advisable to make the call conditional on isLoggedIn(),
3310 * and to commit the transaction after calling.
3312 * @throws MWException
3315 public function addToDatabase() {
3317 if ( !$this->mToken
) {
3318 $this->setToken(); // init token
3321 $this->mTouched
= self
::newTouchedTimestamp();
3323 $dbw = wfGetDB( DB_MASTER
);
3324 $inWrite = $dbw->writesOrCallbacksPending();
3325 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
3326 $dbw->insert( 'user',
3328 'user_id' => $seqVal,
3329 'user_name' => $this->mName
,
3330 'user_password' => $this->mPassword
,
3331 'user_newpassword' => $this->mNewpassword
,
3332 'user_newpass_time' => $dbw->timestampOrNull( $this->mNewpassTime
),
3333 'user_email' => $this->mEmail
,
3334 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated
),
3335 'user_real_name' => $this->mRealName
,
3336 'user_token' => strval( $this->mToken
),
3337 'user_registration' => $dbw->timestamp( $this->mRegistration
),
3338 'user_editcount' => 0,
3339 'user_touched' => $dbw->timestamp( $this->mTouched
),
3343 if ( !$dbw->affectedRows() ) {
3345 // XXX: Get out of REPEATABLE-READ so the SELECT below works.
3346 // Often this case happens early in views before any writes.
3347 // This shows up at least with CentralAuth.
3348 $dbw->commit( __METHOD__
, 'flush' );
3350 $this->mId
= $dbw->selectField( 'user', 'user_id',
3351 array( 'user_name' => $this->mName
), __METHOD__
);
3354 if ( $this->loadFromDatabase() ) {
3359 throw new MWException( __METHOD__
. ": hit a key conflict attempting " .
3360 "to insert user '{$this->mName}' row, but it was not present in select!" );
3362 return Status
::newFatal( 'userexists' );
3364 $this->mId
= $dbw->insertId();
3366 // Clear instance cache other than user table data, which is already accurate
3367 $this->clearInstanceCache();
3369 $this->saveOptions();
3370 return Status
::newGood();
3374 * If this user is logged-in and blocked,
3375 * block any IP address they've successfully logged in from.
3376 * @return bool A block was spread
3378 public function spreadAnyEditBlock() {
3379 if ( $this->isLoggedIn() && $this->isBlocked() ) {
3380 return $this->spreadBlock();
3386 * If this (non-anonymous) user is blocked,
3387 * block the IP address they've successfully logged in from.
3388 * @return bool A block was spread
3390 protected function spreadBlock() {
3391 wfDebug( __METHOD__
. "()\n" );
3393 if ( $this->mId
== 0 ) {
3397 $userblock = Block
::newFromTarget( $this->getName() );
3398 if ( !$userblock ) {
3402 return (bool)$userblock->doAutoblock( $this->getRequest()->getIP() );
3406 * Generate a string which will be different for any combination of
3407 * user options which would produce different parser output.
3408 * This will be used as part of the hash key for the parser cache,
3409 * so users with the same options can share the same cached data
3412 * Extensions which require it should install 'PageRenderingHash' hook,
3413 * which will give them a chance to modify this key based on their own
3416 * @deprecated since 1.17 use the ParserOptions object to get the relevant options
3417 * @return string Page rendering hash
3419 public function getPageRenderingHash() {
3420 wfDeprecated( __METHOD__
, '1.17' );
3422 global $wgRenderHashAppend, $wgLang, $wgContLang;
3423 if ( $this->mHash
) {
3424 return $this->mHash
;
3427 // stubthreshold is only included below for completeness,
3428 // since it disables the parser cache, its value will always
3429 // be 0 when this function is called by parsercache.
3431 $confstr = $this->getOption( 'math' );
3432 $confstr .= '!' . $this->getStubThreshold();
3433 $confstr .= '!' . ( $this->getOption( 'numberheadings' ) ?
'1' : '' );
3434 $confstr .= '!' . $wgLang->getCode();
3435 $confstr .= '!' . $this->getOption( 'thumbsize' );
3436 // add in language specific options, if any
3437 $extra = $wgContLang->getExtraHashOptions();
3440 // Since the skin could be overloading link(), it should be
3441 // included here but in practice, none of our skins do that.
3443 $confstr .= $wgRenderHashAppend;
3445 // Give a chance for extensions to modify the hash, if they have
3446 // extra options or other effects on the parser cache.
3447 wfRunHooks( 'PageRenderingHash', array( &$confstr ) );
3449 // Make it a valid memcached key fragment
3450 $confstr = str_replace( ' ', '_', $confstr );
3451 $this->mHash
= $confstr;
3456 * Get whether the user is explicitly blocked from account creation.
3457 * @return bool|Block
3459 public function isBlockedFromCreateAccount() {
3460 $this->getBlockedStatus();
3461 if ( $this->mBlock
&& $this->mBlock
->prevents( 'createaccount' ) ) {
3462 return $this->mBlock
;
3465 # bug 13611: if the IP address the user is trying to create an account from is
3466 # blocked with createaccount disabled, prevent new account creation there even
3467 # when the user is logged in
3468 if ( $this->mBlockedFromCreateAccount
=== false && !$this->isAllowed( 'ipblock-exempt' ) ) {
3469 $this->mBlockedFromCreateAccount
= Block
::newFromTarget( null, $this->getRequest()->getIP() );
3471 return $this->mBlockedFromCreateAccount
instanceof Block
&& $this->mBlockedFromCreateAccount
->prevents( 'createaccount' )
3472 ?
$this->mBlockedFromCreateAccount
3477 * Get whether the user is blocked from using Special:Emailuser.
3480 public function isBlockedFromEmailuser() {
3481 $this->getBlockedStatus();
3482 return $this->mBlock
&& $this->mBlock
->prevents( 'sendemail' );
3486 * Get whether the user is allowed to create an account.
3489 function isAllowedToCreateAccount() {
3490 return $this->isAllowed( 'createaccount' ) && !$this->isBlockedFromCreateAccount();
3494 * Get this user's personal page title.
3496 * @return Title: User's personal page title
3498 public function getUserPage() {
3499 return Title
::makeTitle( NS_USER
, $this->getName() );
3503 * Get this user's talk page title.
3505 * @return Title: User's talk page title
3507 public function getTalkPage() {
3508 $title = $this->getUserPage();
3509 return $title->getTalkPage();
3513 * Determine whether the user is a newbie. Newbies are either
3514 * anonymous IPs, or the most recently created accounts.
3517 public function isNewbie() {
3518 return !$this->isAllowed( 'autoconfirmed' );
3522 * Check to see if the given clear-text password is one of the accepted passwords
3523 * @param string $password user password.
3524 * @return boolean: True if the given password is correct, otherwise False.
3526 public function checkPassword( $password ) {
3527 global $wgAuth, $wgLegacyEncoding;
3530 // Even though we stop people from creating passwords that
3531 // are shorter than this, doesn't mean people wont be able
3532 // to. Certain authentication plugins do NOT want to save
3533 // domain passwords in a mysql database, so we should
3534 // check this (in case $wgAuth->strict() is false).
3535 if ( !$this->isValidPassword( $password ) ) {
3539 if ( $wgAuth->authenticate( $this->getName(), $password ) ) {
3541 } elseif ( $wgAuth->strict() ) {
3542 // Auth plugin doesn't allow local authentication
3544 } elseif ( $wgAuth->strictUserAuth( $this->getName() ) ) {
3545 // Auth plugin doesn't allow local authentication for this user name
3548 if ( self
::comparePasswords( $this->mPassword
, $password, $this->mId
) ) {
3550 } elseif ( $wgLegacyEncoding ) {
3551 // Some wikis were converted from ISO 8859-1 to UTF-8, the passwords can't be converted
3552 // Check for this with iconv
3553 $cp1252Password = iconv( 'UTF-8', 'WINDOWS-1252//TRANSLIT', $password );
3554 if ( $cp1252Password != $password &&
3555 self
::comparePasswords( $this->mPassword
, $cp1252Password, $this->mId
) )
3564 * Check if the given clear-text password matches the temporary password
3565 * sent by e-mail for password reset operations.
3567 * @param $plaintext string
3569 * @return boolean: True if matches, false otherwise
3571 public function checkTemporaryPassword( $plaintext ) {
3572 global $wgNewPasswordExpiry;
3575 if ( self
::comparePasswords( $this->mNewpassword
, $plaintext, $this->getId() ) ) {
3576 if ( is_null( $this->mNewpassTime
) ) {
3579 $expiry = wfTimestamp( TS_UNIX
, $this->mNewpassTime
) +
$wgNewPasswordExpiry;
3580 return ( time() < $expiry );
3587 * Alias for getEditToken.
3588 * @deprecated since 1.19, use getEditToken instead.
3590 * @param string|array $salt of Strings Optional function-specific data for hashing
3591 * @param $request WebRequest object to use or null to use $wgRequest
3592 * @return string The new edit token
3594 public function editToken( $salt = '', $request = null ) {
3595 wfDeprecated( __METHOD__
, '1.19' );
3596 return $this->getEditToken( $salt, $request );
3600 * Initialize (if necessary) and return a session token value
3601 * which can be used in edit forms to show that the user's
3602 * login credentials aren't being hijacked with a foreign form
3607 * @param string|array $salt of Strings Optional function-specific data for hashing
3608 * @param $request WebRequest object to use or null to use $wgRequest
3609 * @return string The new edit token
3611 public function getEditToken( $salt = '', $request = null ) {
3612 if ( $request == null ) {
3613 $request = $this->getRequest();
3616 if ( $this->isAnon() ) {
3617 return EDIT_TOKEN_SUFFIX
;
3619 $token = $request->getSessionData( 'wsEditToken' );
3620 if ( $token === null ) {
3621 $token = MWCryptRand
::generateHex( 32 );
3622 $request->setSessionData( 'wsEditToken', $token );
3624 if ( is_array( $salt ) ) {
3625 $salt = implode( '|', $salt );
3627 return md5( $token . $salt ) . EDIT_TOKEN_SUFFIX
;
3632 * Generate a looking random token for various uses.
3634 * @return string The new random token
3635 * @deprecated since 1.20: Use MWCryptRand for secure purposes or wfRandomString for pseudo-randomness
3637 public static function generateToken() {
3638 return MWCryptRand
::generateHex( 32 );
3642 * Check given value against the token value stored in the session.
3643 * A match should confirm that the form was submitted from the
3644 * user's own login session, not a form submission from a third-party
3647 * @param string $val Input value to compare
3648 * @param string $salt Optional function-specific data for hashing
3649 * @param WebRequest $request Object to use or null to use $wgRequest
3650 * @return boolean: Whether the token matches
3652 public function matchEditToken( $val, $salt = '', $request = null ) {
3653 $sessionToken = $this->getEditToken( $salt, $request );
3654 if ( $val != $sessionToken ) {
3655 wfDebug( "User::matchEditToken: broken session data\n" );
3657 return $val == $sessionToken;
3661 * Check given value against the token value stored in the session,
3662 * ignoring the suffix.
3664 * @param string $val Input value to compare
3665 * @param string $salt Optional function-specific data for hashing
3666 * @param WebRequest $request object to use or null to use $wgRequest
3667 * @return boolean: Whether the token matches
3669 public function matchEditTokenNoSuffix( $val, $salt = '', $request = null ) {
3670 $sessionToken = $this->getEditToken( $salt, $request );
3671 return substr( $sessionToken, 0, 32 ) == substr( $val, 0, 32 );
3675 * Generate a new e-mail confirmation token and send a confirmation/invalidation
3676 * mail to the user's given address.
3678 * @param string $type message to send, either "created", "changed" or "set"
3679 * @return Status object
3681 public function sendConfirmationMail( $type = 'created' ) {
3683 $expiration = null; // gets passed-by-ref and defined in next line.
3684 $token = $this->confirmationToken( $expiration );
3685 $url = $this->confirmationTokenUrl( $token );
3686 $invalidateURL = $this->invalidationTokenUrl( $token );
3687 $this->saveSettings();
3689 if ( $type == 'created' ||
$type === false ) {
3690 $message = 'confirmemail_body';
3691 } elseif ( $type === true ) {
3692 $message = 'confirmemail_body_changed';
3694 $message = 'confirmemail_body_' . $type;
3697 return $this->sendMail( wfMessage( 'confirmemail_subject' )->text(),
3698 wfMessage( $message,
3699 $this->getRequest()->getIP(),
3702 $wgLang->timeanddate( $expiration, false ),
3704 $wgLang->date( $expiration, false ),
3705 $wgLang->time( $expiration, false ) )->text() );
3709 * Send an e-mail to this user's account. Does not check for
3710 * confirmed status or validity.
3712 * @param string $subject Message subject
3713 * @param string $body Message body
3714 * @param string $from Optional From address; if unspecified, default $wgPasswordSender will be used
3715 * @param string $replyto Reply-To address
3718 public function sendMail( $subject, $body, $from = null, $replyto = null ) {
3719 if ( is_null( $from ) ) {
3720 global $wgPasswordSender, $wgPasswordSenderName;
3721 $sender = new MailAddress( $wgPasswordSender, $wgPasswordSenderName );
3723 $sender = new MailAddress( $from );
3726 $to = new MailAddress( $this );
3727 return UserMailer
::send( $to, $sender, $subject, $body, $replyto );
3731 * Generate, store, and return a new e-mail confirmation code.
3732 * A hash (unsalted, since it's used as a key) is stored.
3734 * @note Call saveSettings() after calling this function to commit
3735 * this change to the database.
3737 * @param &$expiration \mixed Accepts the expiration time
3738 * @return string New token
3740 protected function confirmationToken( &$expiration ) {
3741 global $wgUserEmailConfirmationTokenExpiry;
3743 $expires = $now +
$wgUserEmailConfirmationTokenExpiry;
3744 $expiration = wfTimestamp( TS_MW
, $expires );
3746 $token = MWCryptRand
::generateHex( 32 );
3747 $hash = md5( $token );
3748 $this->mEmailToken
= $hash;
3749 $this->mEmailTokenExpires
= $expiration;
3754 * Return a URL the user can use to confirm their email address.
3755 * @param string $token Accepts the email confirmation token
3756 * @return string New token URL
3758 protected function confirmationTokenUrl( $token ) {
3759 return $this->getTokenUrl( 'ConfirmEmail', $token );
3763 * Return a URL the user can use to invalidate their email address.
3764 * @param string $token Accepts the email confirmation token
3765 * @return string New token URL
3767 protected function invalidationTokenUrl( $token ) {
3768 return $this->getTokenUrl( 'InvalidateEmail', $token );
3772 * Internal function to format the e-mail validation/invalidation URLs.
3773 * This uses a quickie hack to use the
3774 * hardcoded English names of the Special: pages, for ASCII safety.
3776 * @note Since these URLs get dropped directly into emails, using the
3777 * short English names avoids insanely long URL-encoded links, which
3778 * also sometimes can get corrupted in some browsers/mailers
3779 * (bug 6957 with Gmail and Internet Explorer).
3781 * @param string $page Special page
3782 * @param string $token Token
3783 * @return string Formatted URL
3785 protected function getTokenUrl( $page, $token ) {
3786 // Hack to bypass localization of 'Special:'
3787 $title = Title
::makeTitle( NS_MAIN
, "Special:$page/$token" );
3788 return $title->getCanonicalURL();
3792 * Mark the e-mail address confirmed.
3794 * @note Call saveSettings() after calling this function to commit the change.
3798 public function confirmEmail() {
3799 // Check if it's already confirmed, so we don't touch the database
3800 // and fire the ConfirmEmailComplete hook on redundant confirmations.
3801 if ( !$this->isEmailConfirmed() ) {
3802 $this->setEmailAuthenticationTimestamp( wfTimestampNow() );
3803 wfRunHooks( 'ConfirmEmailComplete', array( $this ) );
3809 * Invalidate the user's e-mail confirmation, and unauthenticate the e-mail
3810 * address if it was already confirmed.
3812 * @note Call saveSettings() after calling this function to commit the change.
3813 * @return bool Returns true
3815 function invalidateEmail() {
3817 $this->mEmailToken
= null;
3818 $this->mEmailTokenExpires
= null;
3819 $this->setEmailAuthenticationTimestamp( null );
3820 wfRunHooks( 'InvalidateEmailComplete', array( $this ) );
3825 * Set the e-mail authentication timestamp.
3826 * @param string $timestamp TS_MW timestamp
3828 function setEmailAuthenticationTimestamp( $timestamp ) {
3830 $this->mEmailAuthenticated
= $timestamp;
3831 wfRunHooks( 'UserSetEmailAuthenticationTimestamp', array( $this, &$this->mEmailAuthenticated
) );
3835 * Is this user allowed to send e-mails within limits of current
3836 * site configuration?
3839 public function canSendEmail() {
3840 global $wgEnableEmail, $wgEnableUserEmail;
3841 if ( !$wgEnableEmail ||
!$wgEnableUserEmail ||
!$this->isAllowed( 'sendemail' ) ) {
3844 $canSend = $this->isEmailConfirmed();
3845 wfRunHooks( 'UserCanSendEmail', array( &$this, &$canSend ) );
3850 * Is this user allowed to receive e-mails within limits of current
3851 * site configuration?
3854 public function canReceiveEmail() {
3855 return $this->isEmailConfirmed() && !$this->getOption( 'disablemail' );
3859 * Is this user's e-mail address valid-looking and confirmed within
3860 * limits of the current site configuration?
3862 * @note If $wgEmailAuthentication is on, this may require the user to have
3863 * confirmed their address by returning a code or using a password
3864 * sent to the address from the wiki.
3868 public function isEmailConfirmed() {
3869 global $wgEmailAuthentication;
3872 if ( wfRunHooks( 'EmailConfirmed', array( &$this, &$confirmed ) ) ) {
3873 if ( $this->isAnon() ) {
3876 if ( !Sanitizer
::validateEmail( $this->mEmail
) ) {
3879 if ( $wgEmailAuthentication && !$this->getEmailAuthenticationTimestamp() ) {
3889 * Check whether there is an outstanding request for e-mail confirmation.
3892 public function isEmailConfirmationPending() {
3893 global $wgEmailAuthentication;
3894 return $wgEmailAuthentication &&
3895 !$this->isEmailConfirmed() &&
3896 $this->mEmailToken
&&
3897 $this->mEmailTokenExpires
> wfTimestamp();
3901 * Get the timestamp of account creation.
3903 * @return string|bool|null Timestamp of account creation, false for
3904 * non-existent/anonymous user accounts, or null if existing account
3905 * but information is not in database.
3907 public function getRegistration() {
3908 if ( $this->isAnon() ) {
3912 return $this->mRegistration
;
3916 * Get the timestamp of the first edit
3918 * @return string|bool Timestamp of first edit, or false for
3919 * non-existent/anonymous user accounts.
3921 public function getFirstEditTimestamp() {
3922 if ( $this->getId() == 0 ) {
3923 return false; // anons
3925 $dbr = wfGetDB( DB_SLAVE
);
3926 $time = $dbr->selectField( 'revision', 'rev_timestamp',
3927 array( 'rev_user' => $this->getId() ),
3929 array( 'ORDER BY' => 'rev_timestamp ASC' )
3932 return false; // no edits
3934 return wfTimestamp( TS_MW
, $time );
3938 * Get the permissions associated with a given list of groups
3940 * @param array $groups of Strings List of internal group names
3941 * @return Array of Strings List of permission key names for given groups combined
3943 public static function getGroupPermissions( $groups ) {
3944 global $wgGroupPermissions, $wgRevokePermissions;
3946 // grant every granted permission first
3947 foreach ( $groups as $group ) {
3948 if ( isset( $wgGroupPermissions[$group] ) ) {
3949 $rights = array_merge( $rights,
3950 // array_filter removes empty items
3951 array_keys( array_filter( $wgGroupPermissions[$group] ) ) );
3954 // now revoke the revoked permissions
3955 foreach ( $groups as $group ) {
3956 if ( isset( $wgRevokePermissions[$group] ) ) {
3957 $rights = array_diff( $rights,
3958 array_keys( array_filter( $wgRevokePermissions[$group] ) ) );
3961 return array_unique( $rights );
3965 * Get all the groups who have a given permission
3967 * @param string $role Role to check
3968 * @return Array of Strings List of internal group names with the given permission
3970 public static function getGroupsWithPermission( $role ) {
3971 global $wgGroupPermissions;
3972 $allowedGroups = array();
3973 foreach ( array_keys( $wgGroupPermissions ) as $group ) {
3974 if ( self
::groupHasPermission( $group, $role ) ) {
3975 $allowedGroups[] = $group;
3978 return $allowedGroups;
3982 * Check, if the given group has the given permission
3984 * If you're wanting to check whether all users have a permission, use
3985 * User::isEveryoneAllowed() instead. That properly checks if it's revoked
3989 * @param string $group Group to check
3990 * @param string $role Role to check
3993 public static function groupHasPermission( $group, $role ) {
3994 global $wgGroupPermissions, $wgRevokePermissions;
3995 return isset( $wgGroupPermissions[$group][$role] ) && $wgGroupPermissions[$group][$role]
3996 && !( isset( $wgRevokePermissions[$group][$role] ) && $wgRevokePermissions[$group][$role] );
4000 * Check if all users have the given permission
4003 * @param string $right Right to check
4006 public static function isEveryoneAllowed( $right ) {
4007 global $wgGroupPermissions, $wgRevokePermissions;
4008 static $cache = array();
4010 // Use the cached results, except in unit tests which rely on
4011 // being able change the permission mid-request
4012 if ( isset( $cache[$right] ) && !defined( 'MW_PHPUNIT_TEST' ) ) {
4013 return $cache[$right];
4016 if ( !isset( $wgGroupPermissions['*'][$right] ) ||
!$wgGroupPermissions['*'][$right] ) {
4017 $cache[$right] = false;
4021 // If it's revoked anywhere, then everyone doesn't have it
4022 foreach ( $wgRevokePermissions as $rights ) {
4023 if ( isset( $rights[$right] ) && $rights[$right] ) {
4024 $cache[$right] = false;
4029 // Allow extensions (e.g. OAuth) to say false
4030 if ( !wfRunHooks( 'UserIsEveryoneAllowed', array( $right ) ) ) {
4031 $cache[$right] = false;
4035 $cache[$right] = true;
4040 * Get the localized descriptive name for a group, if it exists
4042 * @param string $group Internal group name
4043 * @return string Localized descriptive group name
4045 public static function getGroupName( $group ) {
4046 $msg = wfMessage( "group-$group" );
4047 return $msg->isBlank() ?
$group : $msg->text();
4051 * Get the localized descriptive name for a member of a group, if it exists
4053 * @param string $group Internal group name
4054 * @param string $username Username for gender (since 1.19)
4055 * @return string Localized name for group member
4057 public static function getGroupMember( $group, $username = '#' ) {
4058 $msg = wfMessage( "group-$group-member", $username );
4059 return $msg->isBlank() ?
$group : $msg->text();
4063 * Return the set of defined explicit groups.
4064 * The implicit groups (by default *, 'user' and 'autoconfirmed')
4065 * are not included, as they are defined automatically, not in the database.
4066 * @return Array of internal group names
4068 public static function getAllGroups() {
4069 global $wgGroupPermissions, $wgRevokePermissions;
4071 array_merge( array_keys( $wgGroupPermissions ), array_keys( $wgRevokePermissions ) ),
4072 self
::getImplicitGroups()
4077 * Get a list of all available permissions.
4078 * @return Array of permission names
4080 public static function getAllRights() {
4081 if ( self
::$mAllRights === false ) {
4082 global $wgAvailableRights;
4083 if ( count( $wgAvailableRights ) ) {
4084 self
::$mAllRights = array_unique( array_merge( self
::$mCoreRights, $wgAvailableRights ) );
4086 self
::$mAllRights = self
::$mCoreRights;
4088 wfRunHooks( 'UserGetAllRights', array( &self
::$mAllRights ) );
4090 return self
::$mAllRights;
4094 * Get a list of implicit groups
4095 * @return Array of Strings Array of internal group names
4097 public static function getImplicitGroups() {
4098 global $wgImplicitGroups;
4099 $groups = $wgImplicitGroups;
4100 wfRunHooks( 'UserGetImplicitGroups', array( &$groups ) ); #deprecated, use $wgImplictGroups instead
4105 * Get the title of a page describing a particular group
4107 * @param string $group Internal group name
4108 * @return Title|bool Title of the page if it exists, false otherwise
4110 public static function getGroupPage( $group ) {
4111 $msg = wfMessage( 'grouppage-' . $group )->inContentLanguage();
4112 if ( $msg->exists() ) {
4113 $title = Title
::newFromText( $msg->text() );
4114 if ( is_object( $title ) ) {
4122 * Create a link to the group in HTML, if available;
4123 * else return the group name.
4125 * @param string $group Internal name of the group
4126 * @param string $text The text of the link
4127 * @return string HTML link to the group
4129 public static function makeGroupLinkHTML( $group, $text = '' ) {
4130 if ( $text == '' ) {
4131 $text = self
::getGroupName( $group );
4133 $title = self
::getGroupPage( $group );
4135 return Linker
::link( $title, htmlspecialchars( $text ) );
4142 * Create a link to the group in Wikitext, if available;
4143 * else return the group name.
4145 * @param string $group Internal name of the group
4146 * @param string $text The text of the link
4147 * @return string Wikilink to the group
4149 public static function makeGroupLinkWiki( $group, $text = '' ) {
4150 if ( $text == '' ) {
4151 $text = self
::getGroupName( $group );
4153 $title = self
::getGroupPage( $group );
4155 $page = $title->getPrefixedText();
4156 return "[[$page|$text]]";
4163 * Returns an array of the groups that a particular group can add/remove.
4165 * @param string $group the group to check for whether it can add/remove
4166 * @return Array array( 'add' => array( addablegroups ),
4167 * 'remove' => array( removablegroups ),
4168 * 'add-self' => array( addablegroups to self),
4169 * 'remove-self' => array( removable groups from self) )
4171 public static function changeableByGroup( $group ) {
4172 global $wgAddGroups, $wgRemoveGroups, $wgGroupsAddToSelf, $wgGroupsRemoveFromSelf;
4174 $groups = array( 'add' => array(), 'remove' => array(), 'add-self' => array(), 'remove-self' => array() );
4175 if ( empty( $wgAddGroups[$group] ) ) {
4176 // Don't add anything to $groups
4177 } elseif ( $wgAddGroups[$group] === true ) {
4178 // You get everything
4179 $groups['add'] = self
::getAllGroups();
4180 } elseif ( is_array( $wgAddGroups[$group] ) ) {
4181 $groups['add'] = $wgAddGroups[$group];
4184 // Same thing for remove
4185 if ( empty( $wgRemoveGroups[$group] ) ) {
4186 } elseif ( $wgRemoveGroups[$group] === true ) {
4187 $groups['remove'] = self
::getAllGroups();
4188 } elseif ( is_array( $wgRemoveGroups[$group] ) ) {
4189 $groups['remove'] = $wgRemoveGroups[$group];
4192 // Re-map numeric keys of AddToSelf/RemoveFromSelf to the 'user' key for backwards compatibility
4193 if ( empty( $wgGroupsAddToSelf['user'] ) ||
$wgGroupsAddToSelf['user'] !== true ) {
4194 foreach ( $wgGroupsAddToSelf as $key => $value ) {
4195 if ( is_int( $key ) ) {
4196 $wgGroupsAddToSelf['user'][] = $value;
4201 if ( empty( $wgGroupsRemoveFromSelf['user'] ) ||
$wgGroupsRemoveFromSelf['user'] !== true ) {
4202 foreach ( $wgGroupsRemoveFromSelf as $key => $value ) {
4203 if ( is_int( $key ) ) {
4204 $wgGroupsRemoveFromSelf['user'][] = $value;
4209 // Now figure out what groups the user can add to him/herself
4210 if ( empty( $wgGroupsAddToSelf[$group] ) ) {
4211 } elseif ( $wgGroupsAddToSelf[$group] === true ) {
4212 // No idea WHY this would be used, but it's there
4213 $groups['add-self'] = User
::getAllGroups();
4214 } elseif ( is_array( $wgGroupsAddToSelf[$group] ) ) {
4215 $groups['add-self'] = $wgGroupsAddToSelf[$group];
4218 if ( empty( $wgGroupsRemoveFromSelf[$group] ) ) {
4219 } elseif ( $wgGroupsRemoveFromSelf[$group] === true ) {
4220 $groups['remove-self'] = User
::getAllGroups();
4221 } elseif ( is_array( $wgGroupsRemoveFromSelf[$group] ) ) {
4222 $groups['remove-self'] = $wgGroupsRemoveFromSelf[$group];
4229 * Returns an array of groups that this user can add and remove
4230 * @return Array array( 'add' => array( addablegroups ),
4231 * 'remove' => array( removablegroups ),
4232 * 'add-self' => array( addablegroups to self),
4233 * 'remove-self' => array( removable groups from self) )
4235 public function changeableGroups() {
4236 if ( $this->isAllowed( 'userrights' ) ) {
4237 // This group gives the right to modify everything (reverse-
4238 // compatibility with old "userrights lets you change
4240 // Using array_merge to make the groups reindexed
4241 $all = array_merge( User
::getAllGroups() );
4245 'add-self' => array(),
4246 'remove-self' => array()
4250 // Okay, it's not so simple, we will have to go through the arrays
4253 'remove' => array(),
4254 'add-self' => array(),
4255 'remove-self' => array()
4257 $addergroups = $this->getEffectiveGroups();
4259 foreach ( $addergroups as $addergroup ) {
4260 $groups = array_merge_recursive(
4261 $groups, $this->changeableByGroup( $addergroup )
4263 $groups['add'] = array_unique( $groups['add'] );
4264 $groups['remove'] = array_unique( $groups['remove'] );
4265 $groups['add-self'] = array_unique( $groups['add-self'] );
4266 $groups['remove-self'] = array_unique( $groups['remove-self'] );
4272 * Increment the user's edit-count field.
4273 * Will have no effect for anonymous users.
4275 public function incEditCount() {
4276 if ( !$this->isAnon() ) {
4277 $dbw = wfGetDB( DB_MASTER
);
4280 array( 'user_editcount=user_editcount+1' ),
4281 array( 'user_id' => $this->getId() ),
4285 // Lazy initialization check...
4286 if ( $dbw->affectedRows() == 0 ) {
4287 // Now here's a goddamn hack...
4288 $dbr = wfGetDB( DB_SLAVE
);
4289 if ( $dbr !== $dbw ) {
4290 // If we actually have a slave server, the count is
4291 // at least one behind because the current transaction
4292 // has not been committed and replicated.
4293 $this->initEditCount( 1 );
4295 // But if DB_SLAVE is selecting the master, then the
4296 // count we just read includes the revision that was
4297 // just added in the working transaction.
4298 $this->initEditCount();
4302 // edit count in user cache too
4303 $this->invalidateCache();
4307 * Initialize user_editcount from data out of the revision table
4309 * @param $add Integer Edits to add to the count from the revision table
4310 * @return integer Number of edits
4312 protected function initEditCount( $add = 0 ) {
4313 // Pull from a slave to be less cruel to servers
4314 // Accuracy isn't the point anyway here
4315 $dbr = wfGetDB( DB_SLAVE
);
4316 $count = (int) $dbr->selectField(
4319 array( 'rev_user' => $this->getId() ),
4322 $count = $count +
$add;
4324 $dbw = wfGetDB( DB_MASTER
);
4327 array( 'user_editcount' => $count ),
4328 array( 'user_id' => $this->getId() ),
4336 * Get the description of a given right
4338 * @param string $right Right to query
4339 * @return string Localized description of the right
4341 public static function getRightDescription( $right ) {
4342 $key = "right-$right";
4343 $msg = wfMessage( $key );
4344 return $msg->isBlank() ?
$right : $msg->text();
4348 * Make an old-style password hash
4350 * @param string $password Plain-text password
4351 * @param string $userId User ID
4352 * @return string Password hash
4354 public static function oldCrypt( $password, $userId ) {
4355 global $wgPasswordSalt;
4356 if ( $wgPasswordSalt ) {
4357 return md5( $userId . '-' . md5( $password ) );
4359 return md5( $password );
4364 * Make a new-style password hash
4366 * @param string $password Plain-text password
4367 * @param bool|string $salt Optional salt, may be random or the user ID.
4368 * If unspecified or false, will generate one automatically
4369 * @return string Password hash
4371 public static function crypt( $password, $salt = false ) {
4372 global $wgPasswordSalt;
4375 if ( !wfRunHooks( 'UserCryptPassword', array( &$password, &$salt, &$wgPasswordSalt, &$hash ) ) ) {
4379 if ( $wgPasswordSalt ) {
4380 if ( $salt === false ) {
4381 $salt = MWCryptRand
::generateHex( 8 );
4383 return ':B:' . $salt . ':' . md5( $salt . '-' . md5( $password ) );
4385 return ':A:' . md5( $password );
4390 * Compare a password hash with a plain-text password. Requires the user
4391 * ID if there's a chance that the hash is an old-style hash.
4393 * @param string $hash Password hash
4394 * @param string $password Plain-text password to compare
4395 * @param string|bool $userId User ID for old-style password salt
4399 public static function comparePasswords( $hash, $password, $userId = false ) {
4400 $type = substr( $hash, 0, 3 );
4403 if ( !wfRunHooks( 'UserComparePasswords', array( &$hash, &$password, &$userId, &$result ) ) ) {
4407 if ( $type == ':A:' ) {
4409 return md5( $password ) === substr( $hash, 3 );
4410 } elseif ( $type == ':B:' ) {
4412 list( $salt, $realHash ) = explode( ':', substr( $hash, 3 ), 2 );
4413 return md5( $salt . '-' . md5( $password ) ) === $realHash;
4416 return self
::oldCrypt( $password, $userId ) === $hash;
4421 * Add a newuser log entry for this user.
4422 * Before 1.19 the return value was always true.
4424 * @param string|bool $action account creation type.
4425 * - String, one of the following values:
4426 * - 'create' for an anonymous user creating an account for himself.
4427 * This will force the action's performer to be the created user itself,
4428 * no matter the value of $wgUser
4429 * - 'create2' for a logged in user creating an account for someone else
4430 * - 'byemail' when the created user will receive its password by e-mail
4431 * - 'autocreate' when the user is automatically created (such as by CentralAuth).
4432 * - Boolean means whether the account was created by e-mail (deprecated):
4433 * - true will be converted to 'byemail'
4434 * - false will be converted to 'create' if this object is the same as
4435 * $wgUser and to 'create2' otherwise
4437 * @param string $reason user supplied reason
4439 * @return int|bool True if not $wgNewUserLog; otherwise ID of log item or 0 on failure
4441 public function addNewUserLogEntry( $action = false, $reason = '' ) {
4442 global $wgUser, $wgNewUserLog;
4443 if ( empty( $wgNewUserLog ) ) {
4444 return true; // disabled
4447 if ( $action === true ) {
4448 $action = 'byemail';
4449 } elseif ( $action === false ) {
4450 if ( $this->getName() == $wgUser->getName() ) {
4453 $action = 'create2';
4457 if ( $action === 'create' ||
$action === 'autocreate' ) {
4460 $performer = $wgUser;
4463 $logEntry = new ManualLogEntry( 'newusers', $action );
4464 $logEntry->setPerformer( $performer );
4465 $logEntry->setTarget( $this->getUserPage() );
4466 $logEntry->setComment( $reason );
4467 $logEntry->setParameters( array(
4468 '4::userid' => $this->getId(),
4470 $logid = $logEntry->insert();
4472 if ( $action !== 'autocreate' ) {
4473 $logEntry->publish( $logid );
4480 * Add an autocreate newuser log entry for this user
4481 * Used by things like CentralAuth and perhaps other authplugins.
4482 * Consider calling addNewUserLogEntry() directly instead.
4486 public function addNewUserLogEntryAutoCreate() {
4487 $this->addNewUserLogEntry( 'autocreate' );
4493 * Load the user options either from cache, the database or an array
4495 * @param array $data Rows for the current user out of the user_properties table
4497 protected function loadOptions( $data = null ) {
4502 if ( $this->mOptionsLoaded
) {
4506 $this->mOptions
= self
::getDefaultOptions();
4508 if ( !$this->getId() ) {
4509 // For unlogged-in users, load language/variant options from request.
4510 // There's no need to do it for logged-in users: they can set preferences,
4511 // and handling of page content is done by $pageLang->getPreferredVariant() and such,
4512 // so don't override user's choice (especially when the user chooses site default).
4513 $variant = $wgContLang->getDefaultVariant();
4514 $this->mOptions
['variant'] = $variant;
4515 $this->mOptions
['language'] = $variant;
4516 $this->mOptionsLoaded
= true;
4520 // Maybe load from the object
4521 if ( !is_null( $this->mOptionOverrides
) ) {
4522 wfDebug( "User: loading options for user " . $this->getId() . " from override cache.\n" );
4523 foreach ( $this->mOptionOverrides
as $key => $value ) {
4524 $this->mOptions
[$key] = $value;
4527 if ( !is_array( $data ) ) {
4528 wfDebug( "User: loading options for user " . $this->getId() . " from database.\n" );
4529 // Load from database
4530 $dbr = wfGetDB( DB_SLAVE
);
4532 $res = $dbr->select(
4534 array( 'up_property', 'up_value' ),
4535 array( 'up_user' => $this->getId() ),
4539 $this->mOptionOverrides
= array();
4541 foreach ( $res as $row ) {
4542 $data[$row->up_property
] = $row->up_value
;
4545 foreach ( $data as $property => $value ) {
4546 $this->mOptionOverrides
[$property] = $value;
4547 $this->mOptions
[$property] = $value;
4551 $this->mOptionsLoaded
= true;
4553 wfRunHooks( 'UserLoadOptions', array( $this, &$this->mOptions
) );
4559 protected function saveOptions() {
4560 $this->loadOptions();
4562 // Not using getOptions(), to keep hidden preferences in database
4563 $saveOptions = $this->mOptions
;
4565 // Allow hooks to abort, for instance to save to a global profile.
4566 // Reset options to default state before saving.
4567 if ( !wfRunHooks( 'UserSaveOptions', array( $this, &$saveOptions ) ) ) {
4571 $userId = $this->getId();
4572 $insert_rows = array();
4573 foreach ( $saveOptions as $key => $value ) {
4574 // Don't bother storing default values
4575 $defaultOption = self
::getDefaultOption( $key );
4576 if ( ( is_null( $defaultOption ) &&
4577 !( $value === false ||
is_null( $value ) ) ) ||
4578 $value != $defaultOption ) {
4579 $insert_rows[] = array(
4580 'up_user' => $userId,
4581 'up_property' => $key,
4582 'up_value' => $value,
4587 $dbw = wfGetDB( DB_MASTER
);
4588 $hasRows = $dbw->selectField( 'user_properties', '1',
4589 array( 'up_user' => $userId ), __METHOD__
);
4592 // Only do this delete if there is something there. A very large portion of
4593 // calls to this function are for setting 'rememberpassword' for new accounts.
4594 // Doing this delete for new accounts with no rows in the table rougly causes
4595 // gap locks on [max user ID,+infinity) which causes high contention since many
4596 // updates will pile up on each other since they are for higher (newer) user IDs.
4597 $dbw->delete( 'user_properties', array( 'up_user' => $userId ), __METHOD__
);
4599 $dbw->insert( 'user_properties', $insert_rows, __METHOD__
, array( 'IGNORE' ) );
4603 * Provide an array of HTML5 attributes to put on an input element
4604 * intended for the user to enter a new password. This may include
4605 * required, title, and/or pattern, depending on $wgMinimalPasswordLength.
4607 * Do *not* use this when asking the user to enter his current password!
4608 * Regardless of configuration, users may have invalid passwords for whatever
4609 * reason (e.g., they were set before requirements were tightened up).
4610 * Only use it when asking for a new password, like on account creation or
4613 * Obviously, you still need to do server-side checking.
4615 * NOTE: A combination of bugs in various browsers means that this function
4616 * actually just returns array() unconditionally at the moment. May as
4617 * well keep it around for when the browser bugs get fixed, though.
4619 * @todo FIXME: This does not belong here; put it in Html or Linker or somewhere
4621 * @return array Array of HTML attributes suitable for feeding to
4622 * Html::element(), directly or indirectly. (Don't feed to Xml::*()!
4623 * That will get confused by the boolean attribute syntax used.)
4625 public static function passwordChangeInputAttribs() {
4626 global $wgMinimalPasswordLength;
4628 if ( $wgMinimalPasswordLength == 0 ) {
4632 # Note that the pattern requirement will always be satisfied if the
4633 # input is empty, so we need required in all cases.
4635 # @todo FIXME: Bug 23769: This needs to not claim the password is required
4636 # if e-mail confirmation is being used. Since HTML5 input validation
4637 # is b0rked anyway in some browsers, just return nothing. When it's
4638 # re-enabled, fix this code to not output required for e-mail
4640 #$ret = array( 'required' );
4643 # We can't actually do this right now, because Opera 9.6 will print out
4644 # the entered password visibly in its error message! When other
4645 # browsers add support for this attribute, or Opera fixes its support,
4646 # we can add support with a version check to avoid doing this on Opera
4647 # versions where it will be a problem. Reported to Opera as
4648 # DSK-262266, but they don't have a public bug tracker for us to follow.
4650 if ( $wgMinimalPasswordLength > 1 ) {
4651 $ret['pattern'] = '.{' . intval( $wgMinimalPasswordLength ) . ',}';
4652 $ret['title'] = wfMessage( 'passwordtooshort' )
4653 ->numParams( $wgMinimalPasswordLength )->text();
4661 * Return the list of user fields that should be selected to create
4662 * a new user object.
4665 public static function selectFields() {
4672 'user_newpass_time',
4676 'user_email_authenticated',
4678 'user_email_token_expires',
4679 'user_registration',
4685 * Factory function for fatal permission-denied errors
4688 * @param string $permission User right required
4691 static function newFatalPermissionDeniedStatus( $permission ) {
4694 $groups = array_map(
4695 array( 'User', 'makeGroupLinkWiki' ),
4696 User
::getGroupsWithPermission( $permission )
4700 return Status
::newFatal( 'badaccess-groups', $wgLang->commaList( $groups ), count( $groups ) );
4702 return Status
::newFatal( 'badaccess-group0' );