Merge "Made User::touch no longer call load()"
[lhc/web/wiklou.git] / includes / User.php
1 <?php
2 /**
3 * Implements the User class for the %MediaWiki software.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 */
22
23 /**
24 * String Some punctuation to prevent editing from broken text-mangling proxies.
25 * @ingroup Constants
26 */
27 define( 'EDIT_TOKEN_SUFFIX', '+\\' );
28
29 /**
30 * The User object encapsulates all of the user-specific settings (user_id,
31 * name, rights, password, email address, options, last login time). Client
32 * classes use the getXXX() functions to access these fields. These functions
33 * do all the work of determining whether the user is logged in,
34 * whether the requested option can be satisfied from cookies or
35 * whether a database query is needed. Most of the settings needed
36 * for rendering normal pages are set in the cookie to minimize use
37 * of the database.
38 */
39 class User implements IDBAccessObject {
40 /**
41 * @const int Number of characters in user_token field.
42 */
43 const TOKEN_LENGTH = 32;
44
45 /**
46 * Global constant made accessible as class constants so that autoloader
47 * magic can be used.
48 */
49 const EDIT_TOKEN_SUFFIX = EDIT_TOKEN_SUFFIX;
50
51 /**
52 * @const int Serialized record version.
53 */
54 const VERSION = 10;
55
56 /**
57 * Maximum items in $mWatchedItems
58 */
59 const MAX_WATCHED_ITEMS_CACHE = 100;
60
61 /**
62 * Exclude user options that are set to their default value.
63 * @since 1.25
64 */
65 const GETOPTIONS_EXCLUDE_DEFAULTS = 1;
66
67 /**
68 * @var PasswordFactory Lazily loaded factory object for passwords
69 */
70 private static $mPasswordFactory = null;
71
72 /**
73 * Array of Strings List of member variables which are saved to the
74 * shared cache (memcached). Any operation which changes the
75 * corresponding database fields must call a cache-clearing function.
76 * @showinitializer
77 */
78 protected static $mCacheVars = array(
79 // user table
80 'mId',
81 'mName',
82 'mRealName',
83 'mEmail',
84 'mTouched',
85 'mToken',
86 'mEmailAuthenticated',
87 'mEmailToken',
88 'mEmailTokenExpires',
89 'mRegistration',
90 'mEditCount',
91 // user_groups table
92 'mGroups',
93 // user_properties table
94 'mOptionOverrides',
95 );
96
97 /**
98 * Array of Strings Core rights.
99 * Each of these should have a corresponding message of the form
100 * "right-$right".
101 * @showinitializer
102 */
103 protected static $mCoreRights = array(
104 'apihighlimits',
105 'applychangetags',
106 'autoconfirmed',
107 'autopatrol',
108 'bigdelete',
109 'block',
110 'blockemail',
111 'bot',
112 'browsearchive',
113 'changetags',
114 'createaccount',
115 'createpage',
116 'createtalk',
117 'delete',
118 'deletedhistory',
119 'deletedtext',
120 'deletelogentry',
121 'deleterevision',
122 'edit',
123 'editcontentmodel',
124 'editinterface',
125 'editprotected',
126 'editmyoptions',
127 'editmyprivateinfo',
128 'editmyusercss',
129 'editmyuserjs',
130 'editmywatchlist',
131 'editsemiprotected',
132 'editusercssjs', #deprecated
133 'editusercss',
134 'edituserjs',
135 'hideuser',
136 'import',
137 'importupload',
138 'ipblock-exempt',
139 'managechangetags',
140 'markbotedits',
141 'mergehistory',
142 'minoredit',
143 'move',
144 'movefile',
145 'move-categorypages',
146 'move-rootuserpages',
147 'move-subpages',
148 'nominornewtalk',
149 'noratelimit',
150 'override-export-depth',
151 'pagelang',
152 'passwordreset',
153 'patrol',
154 'patrolmarks',
155 'protect',
156 'proxyunbannable',
157 'purge',
158 'read',
159 'reupload',
160 'reupload-own',
161 'reupload-shared',
162 'rollback',
163 'sendemail',
164 'siteadmin',
165 'suppressionlog',
166 'suppressredirect',
167 'suppressrevision',
168 'unblockself',
169 'undelete',
170 'unwatchedpages',
171 'upload',
172 'upload_by_url',
173 'userrights',
174 'userrights-interwiki',
175 'viewmyprivateinfo',
176 'viewmywatchlist',
177 'viewsuppressed',
178 'writeapi',
179 );
180
181 /**
182 * String Cached results of getAllRights()
183 */
184 protected static $mAllRights = false;
185
186 /** @name Cache variables */
187 //@{
188 public $mId;
189
190 public $mName;
191
192 public $mRealName;
193
194 /**
195 * @todo Make this actually private
196 * @private
197 */
198 public $mPassword;
199
200 /**
201 * @todo Make this actually private
202 * @private
203 */
204 public $mNewpassword;
205
206 public $mNewpassTime;
207
208 public $mEmail;
209 /** @var string TS_MW timestamp from the DB */
210 public $mTouched;
211 /** @var string TS_MW timestamp from cache */
212 protected $mQuickTouched;
213
214 protected $mToken;
215
216 public $mEmailAuthenticated;
217
218 protected $mEmailToken;
219
220 protected $mEmailTokenExpires;
221
222 protected $mRegistration;
223
224 protected $mEditCount;
225
226 public $mGroups;
227
228 protected $mOptionOverrides;
229
230 protected $mPasswordExpires;
231 //@}
232
233 /**
234 * Bool Whether the cache variables have been loaded.
235 */
236 //@{
237 public $mOptionsLoaded;
238
239 /**
240 * Array with already loaded items or true if all items have been loaded.
241 */
242 protected $mLoadedItems = array();
243 //@}
244
245 /**
246 * String Initialization data source if mLoadedItems!==true. May be one of:
247 * - 'defaults' anonymous user initialised from class defaults
248 * - 'name' initialise from mName
249 * - 'id' initialise from mId
250 * - 'session' log in from cookies or session if possible
251 *
252 * Use the User::newFrom*() family of functions to set this.
253 */
254 public $mFrom;
255
256 /**
257 * Lazy-initialized variables, invalidated with clearInstanceCache
258 */
259 protected $mNewtalk;
260
261 protected $mDatePreference;
262
263 public $mBlockedby;
264
265 protected $mHash;
266
267 public $mRights;
268
269 protected $mBlockreason;
270
271 protected $mEffectiveGroups;
272
273 protected $mImplicitGroups;
274
275 protected $mFormerGroups;
276
277 protected $mBlockedGlobally;
278
279 protected $mLocked;
280
281 public $mHideName;
282
283 public $mOptions;
284
285 /**
286 * @var WebRequest
287 */
288 private $mRequest;
289
290 /** @var Block */
291 public $mBlock;
292
293 /** @var bool */
294 protected $mAllowUsertalk;
295
296 /** @var Block */
297 private $mBlockedFromCreateAccount = false;
298
299 /** @var array */
300 private $mWatchedItems = array();
301
302 /** @var integer User::READ_* constant bitfield used to load data */
303 protected $queryFlagsUsed = self::READ_NORMAL;
304
305 public static $idCacheByName = array();
306
307 /**
308 * Lightweight constructor for an anonymous user.
309 * Use the User::newFrom* factory functions for other kinds of users.
310 *
311 * @see newFromName()
312 * @see newFromId()
313 * @see newFromConfirmationCode()
314 * @see newFromSession()
315 * @see newFromRow()
316 */
317 public function __construct() {
318 $this->clearInstanceCache( 'defaults' );
319 }
320
321 /**
322 * @return string
323 */
324 public function __toString() {
325 return $this->getName();
326 }
327
328 /**
329 * Load the user table data for this object from the source given by mFrom.
330 *
331 * @param integer $flags User::READ_* constant bitfield
332 */
333 public function load( $flags = self::READ_LATEST ) {
334 if ( $this->mLoadedItems === true ) {
335 return;
336 }
337
338 // Set it now to avoid infinite recursion in accessors
339 $this->mLoadedItems = true;
340 $this->queryFlagsUsed = $flags;
341
342 switch ( $this->mFrom ) {
343 case 'defaults':
344 $this->loadDefaults();
345 break;
346 case 'name':
347 // @TODO: this gets the ID from a slave, assuming renames
348 // are rare. This should be controllable and more consistent.
349 $this->mId = self::idFromName( $this->mName );
350 if ( !$this->mId ) {
351 // Nonexistent user placeholder object
352 $this->loadDefaults( $this->mName );
353 } else {
354 $this->loadFromId( $flags );
355 }
356 break;
357 case 'id':
358 $this->loadFromId( $flags );
359 break;
360 case 'session':
361 if ( !$this->loadFromSession() ) {
362 // Loading from session failed. Load defaults.
363 $this->loadDefaults();
364 }
365 Hooks::run( 'UserLoadAfterLoadFromSession', array( $this ) );
366 break;
367 default:
368 throw new MWException( "Unrecognised value for User->mFrom: \"{$this->mFrom}\"" );
369 }
370 }
371
372 /**
373 * Load user table data, given mId has already been set.
374 * @param integer $flags User::READ_* constant bitfield
375 * @return bool False if the ID does not exist, true otherwise
376 */
377 public function loadFromId( $flags = self::READ_LATEST ) {
378 if ( $this->mId == 0 ) {
379 $this->loadDefaults();
380 return false;
381 }
382
383 // Try cache
384 $cache = $this->loadFromCache();
385 if ( !$cache ) {
386 wfDebug( "User: cache miss for user {$this->mId}\n" );
387 // Load from DB
388 if ( !$this->loadFromDatabase( $flags ) ) {
389 // Can't load from ID, user is anonymous
390 return false;
391 }
392 if ( $flags & self::READ_LATEST ) {
393 // Only save master data back to the cache to keep it consistent.
394 // @TODO: save it anyway and have callers specifiy $flags and have
395 // load() called as needed. That requires updating MANY callers...
396 $this->saveToCache();
397 }
398 }
399
400 $this->mLoadedItems = true;
401 $this->queryFlagsUsed = $flags;
402
403 return true;
404 }
405
406 /**
407 * Load user data from shared cache, given mId has already been set.
408 *
409 * @return bool false if the ID does not exist or data is invalid, true otherwise
410 * @since 1.25
411 */
412 protected function loadFromCache() {
413 if ( $this->mId == 0 ) {
414 $this->loadDefaults();
415 return false;
416 }
417
418 $cache = ObjectCache::getMainWANInstance();
419 $key = wfMemcKey( 'user', 'id', $this->mId );
420 $data = $cache->get( $key );
421 if ( !is_array( $data ) || $data['mVersion'] < self::VERSION ) {
422 // Object is expired
423 return false;
424 }
425
426 wfDebug( "User: got user {$this->mId} from cache\n" );
427
428 // Restore from cache
429 foreach ( self::$mCacheVars as $name ) {
430 $this->$name = $data[$name];
431 }
432
433 return true;
434 }
435
436 /**
437 * Save user data to the shared cache
438 *
439 * This method should not be called outside the User class
440 */
441 public function saveToCache() {
442 $this->load();
443 $this->loadGroups();
444 $this->loadOptions();
445
446 if ( $this->isAnon() ) {
447 // Anonymous users are uncached
448 return;
449 }
450
451 $cache = ObjectCache::getMainWANInstance();
452
453 // The cache needs good consistency due to its high TTL, so the user
454 // should have been loaded from the master to avoid lag amplification.
455 if ( !( $this->queryFlagsUsed & self::READ_LATEST ) ) {
456 wfWarn( "Cannot cache slave-loaded User object with ID '{$this->mId}'." );
457 return;
458 }
459
460 $data = array();
461 foreach ( self::$mCacheVars as $name ) {
462 $data[$name] = $this->$name;
463 }
464 $data['mVersion'] = self::VERSION;
465 $key = wfMemcKey( 'user', 'id', $this->mId );
466
467 $cache->set( $key, $data );
468 }
469
470 /** @name newFrom*() static factory methods */
471 //@{
472
473 /**
474 * Static factory method for creation from username.
475 *
476 * This is slightly less efficient than newFromId(), so use newFromId() if
477 * you have both an ID and a name handy.
478 *
479 * @param string $name Username, validated by Title::newFromText()
480 * @param string|bool $validate Validate username. Takes the same parameters as
481 * User::getCanonicalName(), except that true is accepted as an alias
482 * for 'valid', for BC.
483 *
484 * @return User|bool User object, or false if the username is invalid
485 * (e.g. if it contains illegal characters or is an IP address). If the
486 * username is not present in the database, the result will be a user object
487 * with a name, zero user ID and default settings.
488 */
489 public static function newFromName( $name, $validate = 'valid' ) {
490 if ( $validate === true ) {
491 $validate = 'valid';
492 }
493 $name = self::getCanonicalName( $name, $validate );
494 if ( $name === false ) {
495 return false;
496 } else {
497 // Create unloaded user object
498 $u = new User;
499 $u->mName = $name;
500 $u->mFrom = 'name';
501 $u->setItemLoaded( 'name' );
502 return $u;
503 }
504 }
505
506 /**
507 * Static factory method for creation from a given user ID.
508 *
509 * @param int $id Valid user ID
510 * @return User The corresponding User object
511 */
512 public static function newFromId( $id ) {
513 $u = new User;
514 $u->mId = $id;
515 $u->mFrom = 'id';
516 $u->setItemLoaded( 'id' );
517 return $u;
518 }
519
520 /**
521 * Factory method to fetch whichever user has a given email confirmation code.
522 * This code is generated when an account is created or its e-mail address
523 * has changed.
524 *
525 * If the code is invalid or has expired, returns NULL.
526 *
527 * @param string $code Confirmation code
528 * @return User|null
529 */
530 public static function newFromConfirmationCode( $code ) {
531 $dbr = wfGetDB( DB_SLAVE );
532 $id = $dbr->selectField( 'user', 'user_id', array(
533 'user_email_token' => md5( $code ),
534 'user_email_token_expires > ' . $dbr->addQuotes( $dbr->timestamp() ),
535 ) );
536 if ( $id !== false ) {
537 return User::newFromId( $id );
538 } else {
539 return null;
540 }
541 }
542
543 /**
544 * Create a new user object using data from session or cookies. If the
545 * login credentials are invalid, the result is an anonymous user.
546 *
547 * @param WebRequest|null $request Object to use; $wgRequest will be used if omitted.
548 * @return User
549 */
550 public static function newFromSession( WebRequest $request = null ) {
551 $user = new User;
552 $user->mFrom = 'session';
553 $user->mRequest = $request;
554 return $user;
555 }
556
557 /**
558 * Create a new user object from a user row.
559 * The row should have the following fields from the user table in it:
560 * - either user_name or user_id to load further data if needed (or both)
561 * - user_real_name
562 * - all other fields (email, password, etc.)
563 * It is useless to provide the remaining fields if either user_id,
564 * user_name and user_real_name are not provided because the whole row
565 * will be loaded once more from the database when accessing them.
566 *
567 * @param stdClass $row A row from the user table
568 * @param array $data Further data to load into the object (see User::loadFromRow for valid keys)
569 * @return User
570 */
571 public static function newFromRow( $row, $data = null ) {
572 $user = new User;
573 $user->loadFromRow( $row, $data );
574 return $user;
575 }
576
577 //@}
578
579 /**
580 * Get the username corresponding to a given user ID
581 * @param int $id User ID
582 * @return string|bool The corresponding username
583 */
584 public static function whoIs( $id ) {
585 return UserCache::singleton()->getProp( $id, 'name' );
586 }
587
588 /**
589 * Get the real name of a user given their user ID
590 *
591 * @param int $id User ID
592 * @return string|bool The corresponding user's real name
593 */
594 public static function whoIsReal( $id ) {
595 return UserCache::singleton()->getProp( $id, 'real_name' );
596 }
597
598 /**
599 * Get database id given a user name
600 * @param string $name Username
601 * @return int|null The corresponding user's ID, or null if user is nonexistent
602 */
603 public static function idFromName( $name ) {
604 $nt = Title::makeTitleSafe( NS_USER, $name );
605 if ( is_null( $nt ) ) {
606 // Illegal name
607 return null;
608 }
609
610 if ( isset( self::$idCacheByName[$name] ) ) {
611 return self::$idCacheByName[$name];
612 }
613
614 $dbr = wfGetDB( DB_SLAVE );
615 $s = $dbr->selectRow(
616 'user',
617 array( 'user_id' ),
618 array( 'user_name' => $nt->getText() ),
619 __METHOD__
620 );
621
622 if ( $s === false ) {
623 $result = null;
624 } else {
625 $result = $s->user_id;
626 }
627
628 self::$idCacheByName[$name] = $result;
629
630 if ( count( self::$idCacheByName ) > 1000 ) {
631 self::$idCacheByName = array();
632 }
633
634 return $result;
635 }
636
637 /**
638 * Reset the cache used in idFromName(). For use in tests.
639 */
640 public static function resetIdByNameCache() {
641 self::$idCacheByName = array();
642 }
643
644 /**
645 * Does the string match an anonymous IPv4 address?
646 *
647 * This function exists for username validation, in order to reject
648 * usernames which are similar in form to IP addresses. Strings such
649 * as 300.300.300.300 will return true because it looks like an IP
650 * address, despite not being strictly valid.
651 *
652 * We match "\d{1,3}\.\d{1,3}\.\d{1,3}\.xxx" as an anonymous IP
653 * address because the usemod software would "cloak" anonymous IP
654 * addresses like this, if we allowed accounts like this to be created
655 * new users could get the old edits of these anonymous users.
656 *
657 * @param string $name Name to match
658 * @return bool
659 */
660 public static function isIP( $name ) {
661 return preg_match( '/^\d{1,3}\.\d{1,3}\.\d{1,3}\.(?:xxx|\d{1,3})$/', $name )
662 || IP::isIPv6( $name );
663 }
664
665 /**
666 * Is the input a valid username?
667 *
668 * Checks if the input is a valid username, we don't want an empty string,
669 * an IP address, anything that contains slashes (would mess up subpages),
670 * is longer than the maximum allowed username size or doesn't begin with
671 * a capital letter.
672 *
673 * @param string $name Name to match
674 * @return bool
675 */
676 public static function isValidUserName( $name ) {
677 global $wgContLang, $wgMaxNameChars;
678
679 if ( $name == ''
680 || User::isIP( $name )
681 || strpos( $name, '/' ) !== false
682 || strlen( $name ) > $wgMaxNameChars
683 || $name != $wgContLang->ucfirst( $name )
684 ) {
685 wfDebugLog( 'username', __METHOD__ .
686 ": '$name' invalid due to empty, IP, slash, length, or lowercase" );
687 return false;
688 }
689
690 // Ensure that the name can't be misresolved as a different title,
691 // such as with extra namespace keys at the start.
692 $parsed = Title::newFromText( $name );
693 if ( is_null( $parsed )
694 || $parsed->getNamespace()
695 || strcmp( $name, $parsed->getPrefixedText() ) ) {
696 wfDebugLog( 'username', __METHOD__ .
697 ": '$name' invalid due to ambiguous prefixes" );
698 return false;
699 }
700
701 // Check an additional blacklist of troublemaker characters.
702 // Should these be merged into the title char list?
703 $unicodeBlacklist = '/[' .
704 '\x{0080}-\x{009f}' . # iso-8859-1 control chars
705 '\x{00a0}' . # non-breaking space
706 '\x{2000}-\x{200f}' . # various whitespace
707 '\x{2028}-\x{202f}' . # breaks and control chars
708 '\x{3000}' . # ideographic space
709 '\x{e000}-\x{f8ff}' . # private use
710 ']/u';
711 if ( preg_match( $unicodeBlacklist, $name ) ) {
712 wfDebugLog( 'username', __METHOD__ .
713 ": '$name' invalid due to blacklisted characters" );
714 return false;
715 }
716
717 return true;
718 }
719
720 /**
721 * Usernames which fail to pass this function will be blocked
722 * from user login and new account registrations, but may be used
723 * internally by batch processes.
724 *
725 * If an account already exists in this form, login will be blocked
726 * by a failure to pass this function.
727 *
728 * @param string $name Name to match
729 * @return bool
730 */
731 public static function isUsableName( $name ) {
732 global $wgReservedUsernames;
733 // Must be a valid username, obviously ;)
734 if ( !self::isValidUserName( $name ) ) {
735 return false;
736 }
737
738 static $reservedUsernames = false;
739 if ( !$reservedUsernames ) {
740 $reservedUsernames = $wgReservedUsernames;
741 Hooks::run( 'UserGetReservedNames', array( &$reservedUsernames ) );
742 }
743
744 // Certain names may be reserved for batch processes.
745 foreach ( $reservedUsernames as $reserved ) {
746 if ( substr( $reserved, 0, 4 ) == 'msg:' ) {
747 $reserved = wfMessage( substr( $reserved, 4 ) )->inContentLanguage()->text();
748 }
749 if ( $reserved == $name ) {
750 return false;
751 }
752 }
753 return true;
754 }
755
756 /**
757 * Usernames which fail to pass this function will be blocked
758 * from new account registrations, but may be used internally
759 * either by batch processes or by user accounts which have
760 * already been created.
761 *
762 * Additional blacklisting may be added here rather than in
763 * isValidUserName() to avoid disrupting existing accounts.
764 *
765 * @param string $name String to match
766 * @return bool
767 */
768 public static function isCreatableName( $name ) {
769 global $wgInvalidUsernameCharacters;
770
771 // Ensure that the username isn't longer than 235 bytes, so that
772 // (at least for the builtin skins) user javascript and css files
773 // will work. (bug 23080)
774 if ( strlen( $name ) > 235 ) {
775 wfDebugLog( 'username', __METHOD__ .
776 ": '$name' invalid due to length" );
777 return false;
778 }
779
780 // Preg yells if you try to give it an empty string
781 if ( $wgInvalidUsernameCharacters !== '' ) {
782 if ( preg_match( '/[' . preg_quote( $wgInvalidUsernameCharacters, '/' ) . ']/', $name ) ) {
783 wfDebugLog( 'username', __METHOD__ .
784 ": '$name' invalid due to wgInvalidUsernameCharacters" );
785 return false;
786 }
787 }
788
789 return self::isUsableName( $name );
790 }
791
792 /**
793 * Is the input a valid password for this user?
794 *
795 * @param string $password Desired password
796 * @return bool
797 */
798 public function isValidPassword( $password ) {
799 //simple boolean wrapper for getPasswordValidity
800 return $this->getPasswordValidity( $password ) === true;
801 }
802
803
804 /**
805 * Given unvalidated password input, return error message on failure.
806 *
807 * @param string $password Desired password
808 * @return bool|string|array True on success, string or array of error message on failure
809 */
810 public function getPasswordValidity( $password ) {
811 $result = $this->checkPasswordValidity( $password );
812 if ( $result->isGood() ) {
813 return true;
814 } else {
815 $messages = array();
816 foreach ( $result->getErrorsByType( 'error' ) as $error ) {
817 $messages[] = $error['message'];
818 }
819 foreach ( $result->getErrorsByType( 'warning' ) as $warning ) {
820 $messages[] = $warning['message'];
821 }
822 if ( count( $messages ) === 1 ) {
823 return $messages[0];
824 }
825 return $messages;
826 }
827 }
828
829 /**
830 * Check if this is a valid password for this user
831 *
832 * Create a Status object based on the password's validity.
833 * The Status should be set to fatal if the user should not
834 * be allowed to log in, and should have any errors that
835 * would block changing the password.
836 *
837 * If the return value of this is not OK, the password
838 * should not be checked. If the return value is not Good,
839 * the password can be checked, but the user should not be
840 * able to set their password to this.
841 *
842 * @param string $password Desired password
843 * @return Status
844 * @since 1.23
845 */
846 public function checkPasswordValidity( $password ) {
847 global $wgMinimalPasswordLength, $wgMaximalPasswordLength, $wgContLang;
848
849 static $blockedLogins = array(
850 'Useruser' => 'Passpass', 'Useruser1' => 'Passpass1', # r75589
851 'Apitestsysop' => 'testpass', 'Apitestuser' => 'testpass' # r75605
852 );
853
854 $status = Status::newGood();
855
856 $result = false; //init $result to false for the internal checks
857
858 if ( !Hooks::run( 'isValidPassword', array( $password, &$result, $this ) ) ) {
859 $status->error( $result );
860 return $status;
861 }
862
863 if ( $result === false ) {
864 if ( strlen( $password ) < $wgMinimalPasswordLength ) {
865 $status->error( 'passwordtooshort', $wgMinimalPasswordLength );
866 return $status;
867 } elseif ( strlen( $password ) > $wgMaximalPasswordLength ) {
868 // T64685: Password too long, might cause DoS attack
869 $status->fatal( 'passwordtoolong', $wgMaximalPasswordLength );
870 return $status;
871 } elseif ( $wgContLang->lc( $password ) == $wgContLang->lc( $this->mName ) ) {
872 $status->error( 'password-name-match' );
873 return $status;
874 } elseif ( isset( $blockedLogins[$this->getName()] )
875 && $password == $blockedLogins[$this->getName()]
876 ) {
877 $status->error( 'password-login-forbidden' );
878 return $status;
879 } else {
880 //it seems weird returning a Good status here, but this is because of the
881 //initialization of $result to false above. If the hook is never run or it
882 //doesn't modify $result, then we will likely get down into this if with
883 //a valid password.
884 return $status;
885 }
886 } elseif ( $result === true ) {
887 return $status;
888 } else {
889 $status->error( $result );
890 return $status; //the isValidPassword hook set a string $result and returned true
891 }
892 }
893
894 /**
895 * Expire a user's password
896 * @since 1.23
897 * @param int $ts Optional timestamp to convert, default 0 for the current time
898 */
899 public function expirePassword( $ts = 0 ) {
900 $this->loadPasswords();
901 $timestamp = wfTimestamp( TS_MW, $ts );
902 $this->mPasswordExpires = $timestamp;
903 $this->saveSettings();
904 }
905
906 /**
907 * Clear the password expiration for a user
908 * @since 1.23
909 * @param bool $load Ensure user object is loaded first
910 */
911 public function resetPasswordExpiration( $load = true ) {
912 global $wgPasswordExpirationDays;
913 if ( $load ) {
914 $this->load();
915 }
916 $newExpire = null;
917 if ( $wgPasswordExpirationDays ) {
918 $newExpire = wfTimestamp(
919 TS_MW,
920 time() + ( $wgPasswordExpirationDays * 24 * 3600 )
921 );
922 }
923 // Give extensions a chance to force an expiration
924 Hooks::run( 'ResetPasswordExpiration', array( $this, &$newExpire ) );
925 $this->mPasswordExpires = $newExpire;
926 }
927
928 /**
929 * Check if the user's password is expired.
930 * TODO: Put this and password length into a PasswordPolicy object
931 * @since 1.23
932 * @return string|bool The expiration type, or false if not expired
933 * hard: A password change is required to login
934 * soft: Allow login, but encourage password change
935 * false: Password is not expired
936 */
937 public function getPasswordExpired() {
938 global $wgPasswordExpireGrace;
939 $expired = false;
940 $now = wfTimestamp();
941 $expiration = $this->getPasswordExpireDate();
942 $expUnix = wfTimestamp( TS_UNIX, $expiration );
943 if ( $expiration !== null && $expUnix < $now ) {
944 $expired = ( $expUnix + $wgPasswordExpireGrace < $now ) ? 'hard' : 'soft';
945 }
946 return $expired;
947 }
948
949 /**
950 * Get this user's password expiration date. Since this may be using
951 * the cached User object, we assume that whatever mechanism is setting
952 * the expiration date is also expiring the User cache.
953 * @since 1.23
954 * @return string|bool The datestamp of the expiration, or null if not set
955 */
956 public function getPasswordExpireDate() {
957 $this->load();
958 return $this->mPasswordExpires;
959 }
960
961 /**
962 * Given unvalidated user input, return a canonical username, or false if
963 * the username is invalid.
964 * @param string $name User input
965 * @param string|bool $validate Type of validation to use:
966 * - false No validation
967 * - 'valid' Valid for batch processes
968 * - 'usable' Valid for batch processes and login
969 * - 'creatable' Valid for batch processes, login and account creation
970 *
971 * @throws MWException
972 * @return bool|string
973 */
974 public static function getCanonicalName( $name, $validate = 'valid' ) {
975 // Force usernames to capital
976 global $wgContLang;
977 $name = $wgContLang->ucfirst( $name );
978
979 # Reject names containing '#'; these will be cleaned up
980 # with title normalisation, but then it's too late to
981 # check elsewhere
982 if ( strpos( $name, '#' ) !== false ) {
983 return false;
984 }
985
986 // Clean up name according to title rules,
987 // but only when validation is requested (bug 12654)
988 $t = ( $validate !== false ) ?
989 Title::newFromText( $name ) : Title::makeTitle( NS_USER, $name );
990 // Check for invalid titles
991 if ( is_null( $t ) ) {
992 return false;
993 }
994
995 // Reject various classes of invalid names
996 global $wgAuth;
997 $name = $wgAuth->getCanonicalName( $t->getText() );
998
999 switch ( $validate ) {
1000 case false:
1001 break;
1002 case 'valid':
1003 if ( !User::isValidUserName( $name ) ) {
1004 $name = false;
1005 }
1006 break;
1007 case 'usable':
1008 if ( !User::isUsableName( $name ) ) {
1009 $name = false;
1010 }
1011 break;
1012 case 'creatable':
1013 if ( !User::isCreatableName( $name ) ) {
1014 $name = false;
1015 }
1016 break;
1017 default:
1018 throw new MWException( 'Invalid parameter value for $validate in ' . __METHOD__ );
1019 }
1020 return $name;
1021 }
1022
1023 /**
1024 * Count the number of edits of a user
1025 *
1026 * @param int $uid User ID to check
1027 * @return int The user's edit count
1028 *
1029 * @deprecated since 1.21 in favour of User::getEditCount
1030 */
1031 public static function edits( $uid ) {
1032 wfDeprecated( __METHOD__, '1.21' );
1033 $user = self::newFromId( $uid );
1034 return $user->getEditCount();
1035 }
1036
1037 /**
1038 * Return a random password.
1039 *
1040 * @return string New random password
1041 */
1042 public static function randomPassword() {
1043 global $wgMinimalPasswordLength;
1044 // Decide the final password length based on our min password length,
1045 // stopping at a minimum of 10 chars.
1046 $length = max( 10, $wgMinimalPasswordLength );
1047 // Multiply by 1.25 to get the number of hex characters we need
1048 $length = $length * 1.25;
1049 // Generate random hex chars
1050 $hex = MWCryptRand::generateHex( $length );
1051 // Convert from base 16 to base 32 to get a proper password like string
1052 return wfBaseConvert( $hex, 16, 32 );
1053 }
1054
1055 /**
1056 * Set cached properties to default.
1057 *
1058 * @note This no longer clears uncached lazy-initialised properties;
1059 * the constructor does that instead.
1060 *
1061 * @param string|bool $name
1062 */
1063 public function loadDefaults( $name = false ) {
1064
1065 $passwordFactory = self::getPasswordFactory();
1066
1067 $this->mId = 0;
1068 $this->mName = $name;
1069 $this->mRealName = '';
1070 $this->mPassword = $passwordFactory->newFromCiphertext( null );
1071 $this->mNewpassword = $passwordFactory->newFromCiphertext( null );
1072 $this->mNewpassTime = null;
1073 $this->mEmail = '';
1074 $this->mOptionOverrides = null;
1075 $this->mOptionsLoaded = false;
1076
1077 $loggedOut = $this->getRequest()->getCookie( 'LoggedOut' );
1078 if ( $loggedOut !== null ) {
1079 $this->mTouched = wfTimestamp( TS_MW, $loggedOut );
1080 } else {
1081 $this->mTouched = '1'; # Allow any pages to be cached
1082 }
1083
1084 $this->mToken = null; // Don't run cryptographic functions till we need a token
1085 $this->mEmailAuthenticated = null;
1086 $this->mEmailToken = '';
1087 $this->mEmailTokenExpires = null;
1088 $this->mPasswordExpires = null;
1089 $this->resetPasswordExpiration( false );
1090 $this->mRegistration = wfTimestamp( TS_MW );
1091 $this->mGroups = array();
1092
1093 Hooks::run( 'UserLoadDefaults', array( $this, $name ) );
1094 }
1095
1096 /**
1097 * Return whether an item has been loaded.
1098 *
1099 * @param string $item Item to check. Current possibilities:
1100 * - id
1101 * - name
1102 * - realname
1103 * @param string $all 'all' to check if the whole object has been loaded
1104 * or any other string to check if only the item is available (e.g.
1105 * for optimisation)
1106 * @return bool
1107 */
1108 public function isItemLoaded( $item, $all = 'all' ) {
1109 return ( $this->mLoadedItems === true && $all === 'all' ) ||
1110 ( isset( $this->mLoadedItems[$item] ) && $this->mLoadedItems[$item] === true );
1111 }
1112
1113 /**
1114 * Set that an item has been loaded
1115 *
1116 * @param string $item
1117 */
1118 protected function setItemLoaded( $item ) {
1119 if ( is_array( $this->mLoadedItems ) ) {
1120 $this->mLoadedItems[$item] = true;
1121 }
1122 }
1123
1124 /**
1125 * Load user data from the session or login cookie.
1126 *
1127 * @return bool True if the user is logged in, false otherwise.
1128 */
1129 private function loadFromSession() {
1130 $result = null;
1131 Hooks::run( 'UserLoadFromSession', array( $this, &$result ) );
1132 if ( $result !== null ) {
1133 return $result;
1134 }
1135
1136 $request = $this->getRequest();
1137
1138 $cookieId = $request->getCookie( 'UserID' );
1139 $sessId = $request->getSessionData( 'wsUserID' );
1140
1141 if ( $cookieId !== null ) {
1142 $sId = intval( $cookieId );
1143 if ( $sessId !== null && $cookieId != $sessId ) {
1144 wfDebugLog( 'loginSessions', "Session user ID ($sessId) and
1145 cookie user ID ($sId) don't match!" );
1146 return false;
1147 }
1148 $request->setSessionData( 'wsUserID', $sId );
1149 } elseif ( $sessId !== null && $sessId != 0 ) {
1150 $sId = $sessId;
1151 } else {
1152 return false;
1153 }
1154
1155 if ( $request->getSessionData( 'wsUserName' ) !== null ) {
1156 $sName = $request->getSessionData( 'wsUserName' );
1157 } elseif ( $request->getCookie( 'UserName' ) !== null ) {
1158 $sName = $request->getCookie( 'UserName' );
1159 $request->setSessionData( 'wsUserName', $sName );
1160 } else {
1161 return false;
1162 }
1163
1164 $proposedUser = User::newFromId( $sId );
1165 $proposedUser->load( self::READ_LATEST );
1166 if ( !$proposedUser->isLoggedIn() ) {
1167 // Not a valid ID
1168 return false;
1169 }
1170
1171 global $wgBlockDisablesLogin;
1172 if ( $wgBlockDisablesLogin && $proposedUser->isBlocked() ) {
1173 // User blocked and we've disabled blocked user logins
1174 return false;
1175 }
1176
1177 if ( $request->getSessionData( 'wsToken' ) ) {
1178 $passwordCorrect =
1179 ( $proposedUser->getToken( false ) === $request->getSessionData( 'wsToken' ) );
1180 $from = 'session';
1181 } elseif ( $request->getCookie( 'Token' ) ) {
1182 # Get the token from DB/cache and clean it up to remove garbage padding.
1183 # This deals with historical problems with bugs and the default column value.
1184 $token = rtrim( $proposedUser->getToken( false ) ); // correct token
1185 // Make comparison in constant time (bug 61346)
1186 $passwordCorrect = strlen( $token )
1187 && hash_equals( $token, $request->getCookie( 'Token' ) );
1188 $from = 'cookie';
1189 } else {
1190 // No session or persistent login cookie
1191 return false;
1192 }
1193
1194 if ( ( $sName === $proposedUser->getName() ) && $passwordCorrect ) {
1195 $this->loadFromUserObject( $proposedUser );
1196 $request->setSessionData( 'wsToken', $this->mToken );
1197 wfDebug( "User: logged in from $from\n" );
1198 return true;
1199 } else {
1200 // Invalid credentials
1201 wfDebug( "User: can't log in from $from, invalid credentials\n" );
1202 return false;
1203 }
1204 }
1205
1206 /**
1207 * Load user and user_group data from the database.
1208 * $this->mId must be set, this is how the user is identified.
1209 *
1210 * @param integer $flags User::READ_* constant bitfield
1211 * @return bool True if the user exists, false if the user is anonymous
1212 */
1213 public function loadFromDatabase( $flags = self::READ_LATEST ) {
1214 // Paranoia
1215 $this->mId = intval( $this->mId );
1216
1217 // Anonymous user
1218 if ( !$this->mId ) {
1219 $this->loadDefaults();
1220 return false;
1221 }
1222
1223 $db = ( $flags & self::READ_LATEST )
1224 ? wfGetDB( DB_MASTER )
1225 : wfGetDB( DB_SLAVE );
1226
1227 $s = $db->selectRow(
1228 'user',
1229 self::selectFields(),
1230 array( 'user_id' => $this->mId ),
1231 __METHOD__,
1232 ( ( $flags & self::READ_LOCKING ) == self::READ_LOCKING )
1233 ? array( 'LOCK IN SHARE MODE' )
1234 : array()
1235 );
1236
1237 $this->queryFlagsUsed = $flags;
1238 Hooks::run( 'UserLoadFromDatabase', array( $this, &$s ) );
1239
1240 if ( $s !== false ) {
1241 // Initialise user table data
1242 $this->loadFromRow( $s );
1243 $this->mGroups = null; // deferred
1244 $this->getEditCount(); // revalidation for nulls
1245 return true;
1246 } else {
1247 // Invalid user_id
1248 $this->mId = 0;
1249 $this->loadDefaults();
1250 return false;
1251 }
1252 }
1253
1254 /**
1255 * Initialize this object from a row from the user table.
1256 *
1257 * @param stdClass $row Row from the user table to load.
1258 * @param array $data Further user data to load into the object
1259 *
1260 * user_groups Array with groups out of the user_groups table
1261 * user_properties Array with properties out of the user_properties table
1262 */
1263 protected function loadFromRow( $row, $data = null ) {
1264 $all = true;
1265 $passwordFactory = self::getPasswordFactory();
1266
1267 $this->mGroups = null; // deferred
1268
1269 if ( isset( $row->user_name ) ) {
1270 $this->mName = $row->user_name;
1271 $this->mFrom = 'name';
1272 $this->setItemLoaded( 'name' );
1273 } else {
1274 $all = false;
1275 }
1276
1277 if ( isset( $row->user_real_name ) ) {
1278 $this->mRealName = $row->user_real_name;
1279 $this->setItemLoaded( 'realname' );
1280 } else {
1281 $all = false;
1282 }
1283
1284 if ( isset( $row->user_id ) ) {
1285 $this->mId = intval( $row->user_id );
1286 $this->mFrom = 'id';
1287 $this->setItemLoaded( 'id' );
1288 } else {
1289 $all = false;
1290 }
1291
1292 if ( isset( $row->user_id ) && isset( $row->user_name ) ) {
1293 self::$idCacheByName[$row->user_name] = $row->user_id;
1294 }
1295
1296 if ( isset( $row->user_editcount ) ) {
1297 $this->mEditCount = $row->user_editcount;
1298 } else {
1299 $all = false;
1300 }
1301
1302 if ( isset( $row->user_password ) ) {
1303 // Check for *really* old password hashes that don't even have a type
1304 // The old hash format was just an md5 hex hash, with no type information
1305 if ( preg_match( '/^[0-9a-f]{32}$/', $row->user_password ) ) {
1306 $row->user_password = ":A:{$this->mId}:{$row->user_password}";
1307 }
1308
1309 try {
1310 $this->mPassword = $passwordFactory->newFromCiphertext( $row->user_password );
1311 } catch ( PasswordError $e ) {
1312 wfDebug( 'Invalid password hash found in database.' );
1313 $this->mPassword = $passwordFactory->newFromCiphertext( null );
1314 }
1315
1316 try {
1317 $this->mNewpassword = $passwordFactory->newFromCiphertext( $row->user_newpassword );
1318 } catch ( PasswordError $e ) {
1319 wfDebug( 'Invalid password hash found in database.' );
1320 $this->mNewpassword = $passwordFactory->newFromCiphertext( null );
1321 }
1322
1323 $this->mNewpassTime = wfTimestampOrNull( TS_MW, $row->user_newpass_time );
1324 $this->mPasswordExpires = wfTimestampOrNull( TS_MW, $row->user_password_expires );
1325 }
1326
1327 if ( isset( $row->user_email ) ) {
1328 $this->mEmail = $row->user_email;
1329 $this->mTouched = wfTimestamp( TS_MW, $row->user_touched );
1330 $this->mToken = $row->user_token;
1331 if ( $this->mToken == '' ) {
1332 $this->mToken = null;
1333 }
1334 $this->mEmailAuthenticated = wfTimestampOrNull( TS_MW, $row->user_email_authenticated );
1335 $this->mEmailToken = $row->user_email_token;
1336 $this->mEmailTokenExpires = wfTimestampOrNull( TS_MW, $row->user_email_token_expires );
1337 $this->mRegistration = wfTimestampOrNull( TS_MW, $row->user_registration );
1338 } else {
1339 $all = false;
1340 }
1341
1342 if ( $all ) {
1343 $this->mLoadedItems = true;
1344 }
1345
1346 if ( is_array( $data ) ) {
1347 if ( isset( $data['user_groups'] ) && is_array( $data['user_groups'] ) ) {
1348 $this->mGroups = $data['user_groups'];
1349 }
1350 if ( isset( $data['user_properties'] ) && is_array( $data['user_properties'] ) ) {
1351 $this->loadOptions( $data['user_properties'] );
1352 }
1353 }
1354 }
1355
1356 /**
1357 * Load the data for this user object from another user object.
1358 *
1359 * @param User $user
1360 */
1361 protected function loadFromUserObject( $user ) {
1362 $user->load();
1363 $user->loadGroups();
1364 $user->loadOptions();
1365 foreach ( self::$mCacheVars as $var ) {
1366 $this->$var = $user->$var;
1367 }
1368 }
1369
1370 /**
1371 * Load the groups from the database if they aren't already loaded.
1372 */
1373 private function loadGroups() {
1374 if ( is_null( $this->mGroups ) ) {
1375 $db = ( $this->queryFlagsUsed & self::READ_LATEST )
1376 ? wfGetDB( DB_MASTER )
1377 : wfGetDB( DB_SLAVE );
1378 $res = $db->select( 'user_groups',
1379 array( 'ug_group' ),
1380 array( 'ug_user' => $this->mId ),
1381 __METHOD__ );
1382 $this->mGroups = array();
1383 foreach ( $res as $row ) {
1384 $this->mGroups[] = $row->ug_group;
1385 }
1386 }
1387 }
1388
1389 /**
1390 * Load the user's password hashes from the database
1391 *
1392 * This is usually called in a scenario where the actual User object was
1393 * loaded from the cache, and then password comparison needs to be performed.
1394 * Password hashes are not stored in memcached.
1395 *
1396 * @since 1.24
1397 */
1398 private function loadPasswords() {
1399 if ( $this->getId() !== 0 &&
1400 ( $this->mPassword === null || $this->mNewpassword === null )
1401 ) {
1402 $db = ( $this->queryFlagsUsed & self::READ_LATEST )
1403 ? wfGetDB( DB_MASTER )
1404 : wfGetDB( DB_SLAVE );
1405
1406 $this->loadFromRow( $db->selectRow(
1407 'user',
1408 array( 'user_password', 'user_newpassword',
1409 'user_newpass_time', 'user_password_expires' ),
1410 array( 'user_id' => $this->getId() ),
1411 __METHOD__
1412 ) );
1413 }
1414 }
1415
1416 /**
1417 * Add the user to the group if he/she meets given criteria.
1418 *
1419 * Contrary to autopromotion by \ref $wgAutopromote, the group will be
1420 * possible to remove manually via Special:UserRights. In such case it
1421 * will not be re-added automatically. The user will also not lose the
1422 * group if they no longer meet the criteria.
1423 *
1424 * @param string $event Key in $wgAutopromoteOnce (each one has groups/criteria)
1425 *
1426 * @return array Array of groups the user has been promoted to.
1427 *
1428 * @see $wgAutopromoteOnce
1429 */
1430 public function addAutopromoteOnceGroups( $event ) {
1431 global $wgAutopromoteOnceLogInRC, $wgAuth;
1432
1433 if ( wfReadOnly() || !$this->getId() ) {
1434 return array();
1435 }
1436
1437 $toPromote = Autopromote::getAutopromoteOnceGroups( $this, $event );
1438 if ( !count( $toPromote ) ) {
1439 return array();
1440 }
1441
1442 if ( !$this->checkAndSetTouched() ) {
1443 return array(); // raced out (bug T48834)
1444 }
1445
1446 $oldGroups = $this->getGroups(); // previous groups
1447 foreach ( $toPromote as $group ) {
1448 $this->addGroup( $group );
1449 }
1450
1451 // update groups in external authentication database
1452 $wgAuth->updateExternalDBGroups( $this, $toPromote );
1453
1454 $newGroups = array_merge( $oldGroups, $toPromote ); // all groups
1455
1456 $logEntry = new ManualLogEntry( 'rights', 'autopromote' );
1457 $logEntry->setPerformer( $this );
1458 $logEntry->setTarget( $this->getUserPage() );
1459 $logEntry->setParameters( array(
1460 '4::oldgroups' => $oldGroups,
1461 '5::newgroups' => $newGroups,
1462 ) );
1463 $logid = $logEntry->insert();
1464 if ( $wgAutopromoteOnceLogInRC ) {
1465 $logEntry->publish( $logid );
1466 }
1467
1468 return $toPromote;
1469 }
1470
1471 /**
1472 * Bump user_touched if it didn't change since this object was loaded
1473 *
1474 * On success, the mTouched field is updated.
1475 * The user serialization cache is always cleared.
1476 *
1477 * @return bool Whether user_touched was actually updated
1478 * @since 1.26
1479 */
1480 protected function checkAndSetTouched() {
1481 $this->load();
1482
1483 if ( !$this->mId ) {
1484 return false; // anon
1485 }
1486
1487 // Get a new user_touched that is higher than the old one
1488 $oldTouched = $this->mTouched;
1489 $newTouched = $this->newTouchedTimestamp();
1490
1491 $dbw = wfGetDB( DB_MASTER );
1492 $dbw->update( 'user',
1493 array( 'user_touched' => $dbw->timestamp( $newTouched ) ),
1494 array(
1495 'user_id' => $this->mId,
1496 'user_touched' => $dbw->timestamp( $oldTouched ) // CAS check
1497 ),
1498 __METHOD__
1499 );
1500 $success = ( $dbw->affectedRows() > 0 );
1501
1502 if ( $success ) {
1503 $this->mTouched = $newTouched;
1504 }
1505
1506 // Clears on failure too since that is desired if the cache is stale
1507 $this->clearSharedCache();
1508
1509 return $success;
1510 }
1511
1512 /**
1513 * Clear various cached data stored in this object. The cache of the user table
1514 * data (i.e. self::$mCacheVars) is not cleared unless $reloadFrom is given.
1515 *
1516 * @param bool|string $reloadFrom Reload user and user_groups table data from a
1517 * given source. May be "name", "id", "defaults", "session", or false for no reload.
1518 */
1519 public function clearInstanceCache( $reloadFrom = false ) {
1520 $this->mNewtalk = -1;
1521 $this->mDatePreference = null;
1522 $this->mBlockedby = -1; # Unset
1523 $this->mHash = false;
1524 $this->mRights = null;
1525 $this->mEffectiveGroups = null;
1526 $this->mImplicitGroups = null;
1527 $this->mGroups = null;
1528 $this->mOptions = null;
1529 $this->mOptionsLoaded = false;
1530 $this->mEditCount = null;
1531
1532 if ( $reloadFrom ) {
1533 $this->mLoadedItems = array();
1534 $this->mFrom = $reloadFrom;
1535 }
1536 }
1537
1538 /**
1539 * Combine the language default options with any site-specific options
1540 * and add the default language variants.
1541 *
1542 * @return array Array of String options
1543 */
1544 public static function getDefaultOptions() {
1545 global $wgNamespacesToBeSearchedDefault, $wgDefaultUserOptions, $wgContLang, $wgDefaultSkin;
1546
1547 static $defOpt = null;
1548 if ( !defined( 'MW_PHPUNIT_TEST' ) && $defOpt !== null ) {
1549 // Disabling this for the unit tests, as they rely on being able to change $wgContLang
1550 // mid-request and see that change reflected in the return value of this function.
1551 // Which is insane and would never happen during normal MW operation
1552 return $defOpt;
1553 }
1554
1555 $defOpt = $wgDefaultUserOptions;
1556 // Default language setting
1557 $defOpt['language'] = $wgContLang->getCode();
1558 foreach ( LanguageConverter::$languagesWithVariants as $langCode ) {
1559 $defOpt[$langCode == $wgContLang->getCode() ? 'variant' : "variant-$langCode"] = $langCode;
1560 }
1561 foreach ( SearchEngine::searchableNamespaces() as $nsnum => $nsname ) {
1562 $defOpt['searchNs' . $nsnum] = !empty( $wgNamespacesToBeSearchedDefault[$nsnum] );
1563 }
1564 $defOpt['skin'] = Skin::normalizeKey( $wgDefaultSkin );
1565
1566 Hooks::run( 'UserGetDefaultOptions', array( &$defOpt ) );
1567
1568 return $defOpt;
1569 }
1570
1571 /**
1572 * Get a given default option value.
1573 *
1574 * @param string $opt Name of option to retrieve
1575 * @return string Default option value
1576 */
1577 public static function getDefaultOption( $opt ) {
1578 $defOpts = self::getDefaultOptions();
1579 if ( isset( $defOpts[$opt] ) ) {
1580 return $defOpts[$opt];
1581 } else {
1582 return null;
1583 }
1584 }
1585
1586 /**
1587 * Get blocking information
1588 * @param bool $bFromSlave Whether to check the slave database first.
1589 * To improve performance, non-critical checks are done against slaves.
1590 * Check when actually saving should be done against master.
1591 */
1592 private function getBlockedStatus( $bFromSlave = true ) {
1593 global $wgProxyWhitelist, $wgUser, $wgApplyIpBlocksToXff;
1594
1595 if ( -1 != $this->mBlockedby ) {
1596 return;
1597 }
1598
1599 wfDebug( __METHOD__ . ": checking...\n" );
1600
1601 // Initialize data...
1602 // Otherwise something ends up stomping on $this->mBlockedby when
1603 // things get lazy-loaded later, causing false positive block hits
1604 // due to -1 !== 0. Probably session-related... Nothing should be
1605 // overwriting mBlockedby, surely?
1606 $this->load();
1607
1608 # We only need to worry about passing the IP address to the Block generator if the
1609 # user is not immune to autoblocks/hardblocks, and they are the current user so we
1610 # know which IP address they're actually coming from
1611 if ( !$this->isAllowed( 'ipblock-exempt' ) && $this->getID() == $wgUser->getID() ) {
1612 $ip = $this->getRequest()->getIP();
1613 } else {
1614 $ip = null;
1615 }
1616
1617 // User/IP blocking
1618 $block = Block::newFromTarget( $this, $ip, !$bFromSlave );
1619
1620 // Proxy blocking
1621 if ( !$block instanceof Block && $ip !== null && !$this->isAllowed( 'proxyunbannable' )
1622 && !in_array( $ip, $wgProxyWhitelist )
1623 ) {
1624 // Local list
1625 if ( self::isLocallyBlockedProxy( $ip ) ) {
1626 $block = new Block;
1627 $block->setBlocker( wfMessage( 'proxyblocker' )->text() );
1628 $block->mReason = wfMessage( 'proxyblockreason' )->text();
1629 $block->setTarget( $ip );
1630 } elseif ( $this->isAnon() && $this->isDnsBlacklisted( $ip ) ) {
1631 $block = new Block;
1632 $block->setBlocker( wfMessage( 'sorbs' )->text() );
1633 $block->mReason = wfMessage( 'sorbsreason' )->text();
1634 $block->setTarget( $ip );
1635 }
1636 }
1637
1638 // (bug 23343) Apply IP blocks to the contents of XFF headers, if enabled
1639 if ( !$block instanceof Block
1640 && $wgApplyIpBlocksToXff
1641 && $ip !== null
1642 && !$this->isAllowed( 'proxyunbannable' )
1643 && !in_array( $ip, $wgProxyWhitelist )
1644 ) {
1645 $xff = $this->getRequest()->getHeader( 'X-Forwarded-For' );
1646 $xff = array_map( 'trim', explode( ',', $xff ) );
1647 $xff = array_diff( $xff, array( $ip ) );
1648 $xffblocks = Block::getBlocksForIPList( $xff, $this->isAnon(), !$bFromSlave );
1649 $block = Block::chooseBlock( $xffblocks, $xff );
1650 if ( $block instanceof Block ) {
1651 # Mangle the reason to alert the user that the block
1652 # originated from matching the X-Forwarded-For header.
1653 $block->mReason = wfMessage( 'xffblockreason', $block->mReason )->text();
1654 }
1655 }
1656
1657 if ( $block instanceof Block ) {
1658 wfDebug( __METHOD__ . ": Found block.\n" );
1659 $this->mBlock = $block;
1660 $this->mBlockedby = $block->getByName();
1661 $this->mBlockreason = $block->mReason;
1662 $this->mHideName = $block->mHideName;
1663 $this->mAllowUsertalk = !$block->prevents( 'editownusertalk' );
1664 } else {
1665 $this->mBlockedby = '';
1666 $this->mHideName = 0;
1667 $this->mAllowUsertalk = false;
1668 }
1669
1670 // Extensions
1671 Hooks::run( 'GetBlockedStatus', array( &$this ) );
1672
1673 }
1674
1675 /**
1676 * Whether the given IP is in a DNS blacklist.
1677 *
1678 * @param string $ip IP to check
1679 * @param bool $checkWhitelist Whether to check the whitelist first
1680 * @return bool True if blacklisted.
1681 */
1682 public function isDnsBlacklisted( $ip, $checkWhitelist = false ) {
1683 global $wgEnableDnsBlacklist, $wgDnsBlacklistUrls, $wgProxyWhitelist;
1684
1685 if ( !$wgEnableDnsBlacklist ) {
1686 return false;
1687 }
1688
1689 if ( $checkWhitelist && in_array( $ip, $wgProxyWhitelist ) ) {
1690 return false;
1691 }
1692
1693 return $this->inDnsBlacklist( $ip, $wgDnsBlacklistUrls );
1694 }
1695
1696 /**
1697 * Whether the given IP is in a given DNS blacklist.
1698 *
1699 * @param string $ip IP to check
1700 * @param string|array $bases Array of Strings: URL of the DNS blacklist
1701 * @return bool True if blacklisted.
1702 */
1703 public function inDnsBlacklist( $ip, $bases ) {
1704
1705 $found = false;
1706 // @todo FIXME: IPv6 ??? (http://bugs.php.net/bug.php?id=33170)
1707 if ( IP::isIPv4( $ip ) ) {
1708 // Reverse IP, bug 21255
1709 $ipReversed = implode( '.', array_reverse( explode( '.', $ip ) ) );
1710
1711 foreach ( (array)$bases as $base ) {
1712 // Make hostname
1713 // If we have an access key, use that too (ProjectHoneypot, etc.)
1714 if ( is_array( $base ) ) {
1715 if ( count( $base ) >= 2 ) {
1716 // Access key is 1, base URL is 0
1717 $host = "{$base[1]}.$ipReversed.{$base[0]}";
1718 } else {
1719 $host = "$ipReversed.{$base[0]}";
1720 }
1721 } else {
1722 $host = "$ipReversed.$base";
1723 }
1724
1725 // Send query
1726 $ipList = gethostbynamel( $host );
1727
1728 if ( $ipList ) {
1729 wfDebugLog( 'dnsblacklist', "Hostname $host is {$ipList[0]}, it's a proxy says $base!" );
1730 $found = true;
1731 break;
1732 } else {
1733 wfDebugLog( 'dnsblacklist', "Requested $host, not found in $base." );
1734 }
1735 }
1736 }
1737
1738 return $found;
1739 }
1740
1741 /**
1742 * Check if an IP address is in the local proxy list
1743 *
1744 * @param string $ip
1745 *
1746 * @return bool
1747 */
1748 public static function isLocallyBlockedProxy( $ip ) {
1749 global $wgProxyList;
1750
1751 if ( !$wgProxyList ) {
1752 return false;
1753 }
1754
1755 if ( !is_array( $wgProxyList ) ) {
1756 // Load from the specified file
1757 $wgProxyList = array_map( 'trim', file( $wgProxyList ) );
1758 }
1759
1760 if ( !is_array( $wgProxyList ) ) {
1761 $ret = false;
1762 } elseif ( array_search( $ip, $wgProxyList ) !== false ) {
1763 $ret = true;
1764 } elseif ( array_key_exists( $ip, $wgProxyList ) ) {
1765 // Old-style flipped proxy list
1766 $ret = true;
1767 } else {
1768 $ret = false;
1769 }
1770 return $ret;
1771 }
1772
1773 /**
1774 * Is this user subject to rate limiting?
1775 *
1776 * @return bool True if rate limited
1777 */
1778 public function isPingLimitable() {
1779 global $wgRateLimitsExcludedIPs;
1780 if ( in_array( $this->getRequest()->getIP(), $wgRateLimitsExcludedIPs ) ) {
1781 // No other good way currently to disable rate limits
1782 // for specific IPs. :P
1783 // But this is a crappy hack and should die.
1784 return false;
1785 }
1786 return !$this->isAllowed( 'noratelimit' );
1787 }
1788
1789 /**
1790 * Primitive rate limits: enforce maximum actions per time period
1791 * to put a brake on flooding.
1792 *
1793 * The method generates both a generic profiling point and a per action one
1794 * (suffix being "-$action".
1795 *
1796 * @note When using a shared cache like memcached, IP-address
1797 * last-hit counters will be shared across wikis.
1798 *
1799 * @param string $action Action to enforce; 'edit' if unspecified
1800 * @param int $incrBy Positive amount to increment counter by [defaults to 1]
1801 * @return bool True if a rate limiter was tripped
1802 */
1803 public function pingLimiter( $action = 'edit', $incrBy = 1 ) {
1804 // Call the 'PingLimiter' hook
1805 $result = false;
1806 if ( !Hooks::run( 'PingLimiter', array( &$this, $action, &$result, $incrBy ) ) ) {
1807 return $result;
1808 }
1809
1810 global $wgRateLimits;
1811 if ( !isset( $wgRateLimits[$action] ) ) {
1812 return false;
1813 }
1814
1815 // Some groups shouldn't trigger the ping limiter, ever
1816 if ( !$this->isPingLimitable() ) {
1817 return false;
1818 }
1819
1820 global $wgMemc;
1821
1822 $limits = $wgRateLimits[$action];
1823 $keys = array();
1824 $id = $this->getId();
1825 $userLimit = false;
1826
1827 if ( isset( $limits['anon'] ) && $id == 0 ) {
1828 $keys[wfMemcKey( 'limiter', $action, 'anon' )] = $limits['anon'];
1829 }
1830
1831 if ( isset( $limits['user'] ) && $id != 0 ) {
1832 $userLimit = $limits['user'];
1833 }
1834 if ( $this->isNewbie() ) {
1835 if ( isset( $limits['newbie'] ) && $id != 0 ) {
1836 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $limits['newbie'];
1837 }
1838 if ( isset( $limits['ip'] ) ) {
1839 $ip = $this->getRequest()->getIP();
1840 $keys["mediawiki:limiter:$action:ip:$ip"] = $limits['ip'];
1841 }
1842 if ( isset( $limits['subnet'] ) ) {
1843 $ip = $this->getRequest()->getIP();
1844 $matches = array();
1845 $subnet = false;
1846 if ( IP::isIPv6( $ip ) ) {
1847 $parts = IP::parseRange( "$ip/64" );
1848 $subnet = $parts[0];
1849 } elseif ( preg_match( '/^(\d+\.\d+\.\d+)\.\d+$/', $ip, $matches ) ) {
1850 // IPv4
1851 $subnet = $matches[1];
1852 }
1853 if ( $subnet !== false ) {
1854 $keys["mediawiki:limiter:$action:subnet:$subnet"] = $limits['subnet'];
1855 }
1856 }
1857 }
1858 // Check for group-specific permissions
1859 // If more than one group applies, use the group with the highest limit
1860 foreach ( $this->getGroups() as $group ) {
1861 if ( isset( $limits[$group] ) ) {
1862 if ( $userLimit === false
1863 || $limits[$group][0] / $limits[$group][1] > $userLimit[0] / $userLimit[1]
1864 ) {
1865 $userLimit = $limits[$group];
1866 }
1867 }
1868 }
1869 // Set the user limit key
1870 if ( $userLimit !== false ) {
1871 list( $max, $period ) = $userLimit;
1872 wfDebug( __METHOD__ . ": effective user limit: $max in {$period}s\n" );
1873 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $userLimit;
1874 }
1875
1876 $triggered = false;
1877 foreach ( $keys as $key => $limit ) {
1878 list( $max, $period ) = $limit;
1879 $summary = "(limit $max in {$period}s)";
1880 $count = $wgMemc->get( $key );
1881 // Already pinged?
1882 if ( $count ) {
1883 if ( $count >= $max ) {
1884 wfDebugLog( 'ratelimit', "User '{$this->getName()}' " .
1885 "(IP {$this->getRequest()->getIP()}) tripped $key at $count $summary" );
1886 $triggered = true;
1887 } else {
1888 wfDebug( __METHOD__ . ": ok. $key at $count $summary\n" );
1889 }
1890 } else {
1891 wfDebug( __METHOD__ . ": adding record for $key $summary\n" );
1892 if ( $incrBy > 0 ) {
1893 $wgMemc->add( $key, 0, intval( $period ) ); // first ping
1894 }
1895 }
1896 if ( $incrBy > 0 ) {
1897 $wgMemc->incr( $key, $incrBy );
1898 }
1899 }
1900
1901 return $triggered;
1902 }
1903
1904 /**
1905 * Check if user is blocked
1906 *
1907 * @param bool $bFromSlave Whether to check the slave database instead of
1908 * the master. Hacked from false due to horrible probs on site.
1909 * @return bool True if blocked, false otherwise
1910 */
1911 public function isBlocked( $bFromSlave = true ) {
1912 return $this->getBlock( $bFromSlave ) instanceof Block && $this->getBlock()->prevents( 'edit' );
1913 }
1914
1915 /**
1916 * Get the block affecting the user, or null if the user is not blocked
1917 *
1918 * @param bool $bFromSlave Whether to check the slave database instead of the master
1919 * @return Block|null
1920 */
1921 public function getBlock( $bFromSlave = true ) {
1922 $this->getBlockedStatus( $bFromSlave );
1923 return $this->mBlock instanceof Block ? $this->mBlock : null;
1924 }
1925
1926 /**
1927 * Check if user is blocked from editing a particular article
1928 *
1929 * @param Title $title Title to check
1930 * @param bool $bFromSlave Whether to check the slave database instead of the master
1931 * @return bool
1932 */
1933 public function isBlockedFrom( $title, $bFromSlave = false ) {
1934 global $wgBlockAllowsUTEdit;
1935
1936 $blocked = $this->isBlocked( $bFromSlave );
1937 $allowUsertalk = ( $wgBlockAllowsUTEdit ? $this->mAllowUsertalk : false );
1938 // If a user's name is suppressed, they cannot make edits anywhere
1939 if ( !$this->mHideName && $allowUsertalk && $title->getText() === $this->getName()
1940 && $title->getNamespace() == NS_USER_TALK ) {
1941 $blocked = false;
1942 wfDebug( __METHOD__ . ": self-talk page, ignoring any blocks\n" );
1943 }
1944
1945 Hooks::run( 'UserIsBlockedFrom', array( $this, $title, &$blocked, &$allowUsertalk ) );
1946
1947 return $blocked;
1948 }
1949
1950 /**
1951 * If user is blocked, return the name of the user who placed the block
1952 * @return string Name of blocker
1953 */
1954 public function blockedBy() {
1955 $this->getBlockedStatus();
1956 return $this->mBlockedby;
1957 }
1958
1959 /**
1960 * If user is blocked, return the specified reason for the block
1961 * @return string Blocking reason
1962 */
1963 public function blockedFor() {
1964 $this->getBlockedStatus();
1965 return $this->mBlockreason;
1966 }
1967
1968 /**
1969 * If user is blocked, return the ID for the block
1970 * @return int Block ID
1971 */
1972 public function getBlockId() {
1973 $this->getBlockedStatus();
1974 return ( $this->mBlock ? $this->mBlock->getId() : false );
1975 }
1976
1977 /**
1978 * Check if user is blocked on all wikis.
1979 * Do not use for actual edit permission checks!
1980 * This is intended for quick UI checks.
1981 *
1982 * @param string $ip IP address, uses current client if none given
1983 * @return bool True if blocked, false otherwise
1984 */
1985 public function isBlockedGlobally( $ip = '' ) {
1986 if ( $this->mBlockedGlobally !== null ) {
1987 return $this->mBlockedGlobally;
1988 }
1989 // User is already an IP?
1990 if ( IP::isIPAddress( $this->getName() ) ) {
1991 $ip = $this->getName();
1992 } elseif ( !$ip ) {
1993 $ip = $this->getRequest()->getIP();
1994 }
1995 $blocked = false;
1996 Hooks::run( 'UserIsBlockedGlobally', array( &$this, $ip, &$blocked ) );
1997 $this->mBlockedGlobally = (bool)$blocked;
1998 return $this->mBlockedGlobally;
1999 }
2000
2001 /**
2002 * Check if user account is locked
2003 *
2004 * @return bool True if locked, false otherwise
2005 */
2006 public function isLocked() {
2007 if ( $this->mLocked !== null ) {
2008 return $this->mLocked;
2009 }
2010 global $wgAuth;
2011 $authUser = $wgAuth->getUserInstance( $this );
2012 $this->mLocked = (bool)$authUser->isLocked();
2013 return $this->mLocked;
2014 }
2015
2016 /**
2017 * Check if user account is hidden
2018 *
2019 * @return bool True if hidden, false otherwise
2020 */
2021 public function isHidden() {
2022 if ( $this->mHideName !== null ) {
2023 return $this->mHideName;
2024 }
2025 $this->getBlockedStatus();
2026 if ( !$this->mHideName ) {
2027 global $wgAuth;
2028 $authUser = $wgAuth->getUserInstance( $this );
2029 $this->mHideName = (bool)$authUser->isHidden();
2030 }
2031 return $this->mHideName;
2032 }
2033
2034 /**
2035 * Get the user's ID.
2036 * @return int The user's ID; 0 if the user is anonymous or nonexistent
2037 */
2038 public function getId() {
2039 if ( $this->mId === null && $this->mName !== null && User::isIP( $this->mName ) ) {
2040 // Special case, we know the user is anonymous
2041 return 0;
2042 } elseif ( !$this->isItemLoaded( 'id' ) ) {
2043 // Don't load if this was initialized from an ID
2044 $this->load();
2045 }
2046 return $this->mId;
2047 }
2048
2049 /**
2050 * Set the user and reload all fields according to a given ID
2051 * @param int $v User ID to reload
2052 */
2053 public function setId( $v ) {
2054 $this->mId = $v;
2055 $this->clearInstanceCache( 'id' );
2056 }
2057
2058 /**
2059 * Get the user name, or the IP of an anonymous user
2060 * @return string User's name or IP address
2061 */
2062 public function getName() {
2063 if ( $this->isItemLoaded( 'name', 'only' ) ) {
2064 // Special case optimisation
2065 return $this->mName;
2066 } else {
2067 $this->load();
2068 if ( $this->mName === false ) {
2069 // Clean up IPs
2070 $this->mName = IP::sanitizeIP( $this->getRequest()->getIP() );
2071 }
2072 return $this->mName;
2073 }
2074 }
2075
2076 /**
2077 * Set the user name.
2078 *
2079 * This does not reload fields from the database according to the given
2080 * name. Rather, it is used to create a temporary "nonexistent user" for
2081 * later addition to the database. It can also be used to set the IP
2082 * address for an anonymous user to something other than the current
2083 * remote IP.
2084 *
2085 * @note User::newFromName() has roughly the same function, when the named user
2086 * does not exist.
2087 * @param string $str New user name to set
2088 */
2089 public function setName( $str ) {
2090 $this->load();
2091 $this->mName = $str;
2092 }
2093
2094 /**
2095 * Get the user's name escaped by underscores.
2096 * @return string Username escaped by underscores.
2097 */
2098 public function getTitleKey() {
2099 return str_replace( ' ', '_', $this->getName() );
2100 }
2101
2102 /**
2103 * Check if the user has new messages.
2104 * @return bool True if the user has new messages
2105 */
2106 public function getNewtalk() {
2107 $this->load();
2108
2109 // Load the newtalk status if it is unloaded (mNewtalk=-1)
2110 if ( $this->mNewtalk === -1 ) {
2111 $this->mNewtalk = false; # reset talk page status
2112
2113 // Check memcached separately for anons, who have no
2114 // entire User object stored in there.
2115 if ( !$this->mId ) {
2116 global $wgDisableAnonTalk;
2117 if ( $wgDisableAnonTalk ) {
2118 // Anon newtalk disabled by configuration.
2119 $this->mNewtalk = false;
2120 } else {
2121 $this->mNewtalk = $this->checkNewtalk( 'user_ip', $this->getName() );
2122 }
2123 } else {
2124 $this->mNewtalk = $this->checkNewtalk( 'user_id', $this->mId );
2125 }
2126 }
2127
2128 return (bool)$this->mNewtalk;
2129 }
2130
2131 /**
2132 * Return the data needed to construct links for new talk page message
2133 * alerts. If there are new messages, this will return an associative array
2134 * with the following data:
2135 * wiki: The database name of the wiki
2136 * link: Root-relative link to the user's talk page
2137 * rev: The last talk page revision that the user has seen or null. This
2138 * is useful for building diff links.
2139 * If there are no new messages, it returns an empty array.
2140 * @note This function was designed to accomodate multiple talk pages, but
2141 * currently only returns a single link and revision.
2142 * @return array
2143 */
2144 public function getNewMessageLinks() {
2145 $talks = array();
2146 if ( !Hooks::run( 'UserRetrieveNewTalks', array( &$this, &$talks ) ) ) {
2147 return $talks;
2148 } elseif ( !$this->getNewtalk() ) {
2149 return array();
2150 }
2151 $utp = $this->getTalkPage();
2152 $dbr = wfGetDB( DB_SLAVE );
2153 // Get the "last viewed rev" timestamp from the oldest message notification
2154 $timestamp = $dbr->selectField( 'user_newtalk',
2155 'MIN(user_last_timestamp)',
2156 $this->isAnon() ? array( 'user_ip' => $this->getName() ) : array( 'user_id' => $this->getID() ),
2157 __METHOD__ );
2158 $rev = $timestamp ? Revision::loadFromTimestamp( $dbr, $utp, $timestamp ) : null;
2159 return array( array( 'wiki' => wfWikiID(), 'link' => $utp->getLocalURL(), 'rev' => $rev ) );
2160 }
2161
2162 /**
2163 * Get the revision ID for the last talk page revision viewed by the talk
2164 * page owner.
2165 * @return int|null Revision ID or null
2166 */
2167 public function getNewMessageRevisionId() {
2168 $newMessageRevisionId = null;
2169 $newMessageLinks = $this->getNewMessageLinks();
2170 if ( $newMessageLinks ) {
2171 // Note: getNewMessageLinks() never returns more than a single link
2172 // and it is always for the same wiki, but we double-check here in
2173 // case that changes some time in the future.
2174 if ( count( $newMessageLinks ) === 1
2175 && $newMessageLinks[0]['wiki'] === wfWikiID()
2176 && $newMessageLinks[0]['rev']
2177 ) {
2178 $newMessageRevision = $newMessageLinks[0]['rev'];
2179 $newMessageRevisionId = $newMessageRevision->getId();
2180 }
2181 }
2182 return $newMessageRevisionId;
2183 }
2184
2185 /**
2186 * Internal uncached check for new messages
2187 *
2188 * @see getNewtalk()
2189 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2190 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2191 * @return bool True if the user has new messages
2192 */
2193 protected function checkNewtalk( $field, $id ) {
2194 $dbr = wfGetDB( DB_SLAVE );
2195
2196 $ok = $dbr->selectField( 'user_newtalk', $field, array( $field => $id ), __METHOD__ );
2197
2198 return $ok !== false;
2199 }
2200
2201 /**
2202 * Add or update the new messages flag
2203 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2204 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2205 * @param Revision|null $curRev New, as yet unseen revision of the user talk page. Ignored if null.
2206 * @return bool True if successful, false otherwise
2207 */
2208 protected function updateNewtalk( $field, $id, $curRev = null ) {
2209 // Get timestamp of the talk page revision prior to the current one
2210 $prevRev = $curRev ? $curRev->getPrevious() : false;
2211 $ts = $prevRev ? $prevRev->getTimestamp() : null;
2212 // Mark the user as having new messages since this revision
2213 $dbw = wfGetDB( DB_MASTER );
2214 $dbw->insert( 'user_newtalk',
2215 array( $field => $id, 'user_last_timestamp' => $dbw->timestampOrNull( $ts ) ),
2216 __METHOD__,
2217 'IGNORE' );
2218 if ( $dbw->affectedRows() ) {
2219 wfDebug( __METHOD__ . ": set on ($field, $id)\n" );
2220 return true;
2221 } else {
2222 wfDebug( __METHOD__ . " already set ($field, $id)\n" );
2223 return false;
2224 }
2225 }
2226
2227 /**
2228 * Clear the new messages flag for the given user
2229 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2230 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2231 * @return bool True if successful, false otherwise
2232 */
2233 protected function deleteNewtalk( $field, $id ) {
2234 $dbw = wfGetDB( DB_MASTER );
2235 $dbw->delete( 'user_newtalk',
2236 array( $field => $id ),
2237 __METHOD__ );
2238 if ( $dbw->affectedRows() ) {
2239 wfDebug( __METHOD__ . ": killed on ($field, $id)\n" );
2240 return true;
2241 } else {
2242 wfDebug( __METHOD__ . ": already gone ($field, $id)\n" );
2243 return false;
2244 }
2245 }
2246
2247 /**
2248 * Update the 'You have new messages!' status.
2249 * @param bool $val Whether the user has new messages
2250 * @param Revision $curRev New, as yet unseen revision of the user talk
2251 * page. Ignored if null or !$val.
2252 */
2253 public function setNewtalk( $val, $curRev = null ) {
2254 if ( wfReadOnly() ) {
2255 return;
2256 }
2257
2258 $this->load();
2259 $this->mNewtalk = $val;
2260
2261 if ( $this->isAnon() ) {
2262 $field = 'user_ip';
2263 $id = $this->getName();
2264 } else {
2265 $field = 'user_id';
2266 $id = $this->getId();
2267 }
2268
2269 if ( $val ) {
2270 $changed = $this->updateNewtalk( $field, $id, $curRev );
2271 } else {
2272 $changed = $this->deleteNewtalk( $field, $id );
2273 }
2274
2275 if ( $changed ) {
2276 $this->invalidateCache();
2277 }
2278 }
2279
2280 /**
2281 * Generate a current or new-future timestamp to be stored in the
2282 * user_touched field when we update things.
2283 * @return string Timestamp in TS_MW format
2284 */
2285 private function newTouchedTimestamp() {
2286 global $wgClockSkewFudge;
2287
2288 $time = wfTimestamp( TS_MW, time() + $wgClockSkewFudge );
2289 if ( $this->mTouched && $time <= $this->mTouched ) {
2290 $time = wfTimestamp( TS_MW, wfTimestamp( TS_UNIX, $this->mTouched ) + 1 );
2291 }
2292
2293 return $time;
2294 }
2295
2296 /**
2297 * Clear user data from memcached.
2298 * Use after applying fun updates to the database; caller's
2299 * responsibility to update user_touched if appropriate.
2300 *
2301 * Called implicitly from invalidateCache() and saveSettings().
2302 */
2303 public function clearSharedCache() {
2304 $id = $this->getId();
2305 if ( $id ) {
2306 $key = wfMemcKey( 'user', 'id', $id );
2307 ObjectCache::getMainWANInstance()->delete( $key );
2308 }
2309 }
2310
2311 /**
2312 * Immediately touch the user data cache for this account
2313 *
2314 * Calls touch() and removes account data from memcached
2315 */
2316 public function invalidateCache() {
2317 $this->touch();
2318 $this->clearSharedCache();
2319 }
2320
2321 /**
2322 * Update the "touched" timestamp for the user
2323 *
2324 * This is useful on various login/logout events when making sure that
2325 * a browser or proxy that has multiple tenants does not suffer cache
2326 * pollution where the new user sees the old users content. The value
2327 * of getTouched() is checked when determining 304 vs 200 responses.
2328 * Unlike invalidateCache(), this preserves the User object cache and
2329 * avoids database writes.
2330 *
2331 * @since 1.25
2332 */
2333 public function touch() {
2334 $id = $this->getId();
2335 if ( $id ) {
2336 $key = wfMemcKey( 'user-quicktouched', 'id', $id );
2337 ObjectCache::getMainWANInstance()->touchCheckKey( $key );
2338 $this->mQuickTouched = null;
2339 }
2340 }
2341
2342 /**
2343 * Validate the cache for this account.
2344 * @param string $timestamp A timestamp in TS_MW format
2345 * @return bool
2346 */
2347 public function validateCache( $timestamp ) {
2348 return ( $timestamp >= $this->getTouched() );
2349 }
2350
2351 /**
2352 * Get the user touched timestamp
2353 * @return string TS_MW Timestamp
2354 */
2355 public function getTouched() {
2356 $this->load();
2357
2358 if ( $this->mId ) {
2359 if ( $this->mQuickTouched === null ) {
2360 $cache = ObjectCache::getMainWANInstance();
2361 $key = wfMemcKey( 'user-quicktouched', 'id', $this->mId );
2362
2363 $timestamp = $cache->getCheckKeyTime( $key );
2364 if ( $timestamp ) {
2365 $this->mQuickTouched = wfTimestamp( TS_MW, $timestamp );
2366 } else {
2367 # Set the timestamp to get HTTP 304 cache hits
2368 $this->touch();
2369 }
2370 }
2371
2372 return max( $this->mTouched, $this->mQuickTouched );
2373 }
2374
2375 return $this->mTouched;
2376 }
2377
2378 /**
2379 * Get the user_touched timestamp field (time of last DB updates)
2380 * @return string TS_MW Timestamp
2381 * @since 1.26
2382 */
2383 public function getDBTouched() {
2384 $this->load();
2385
2386 return $this->mTouched;
2387 }
2388
2389 /**
2390 * @return Password
2391 * @since 1.24
2392 */
2393 public function getPassword() {
2394 $this->loadPasswords();
2395
2396 return $this->mPassword;
2397 }
2398
2399 /**
2400 * @return Password
2401 * @since 1.24
2402 */
2403 public function getTemporaryPassword() {
2404 $this->loadPasswords();
2405
2406 return $this->mNewpassword;
2407 }
2408
2409 /**
2410 * Set the password and reset the random token.
2411 * Calls through to authentication plugin if necessary;
2412 * will have no effect if the auth plugin refuses to
2413 * pass the change through or if the legal password
2414 * checks fail.
2415 *
2416 * As a special case, setting the password to null
2417 * wipes it, so the account cannot be logged in until
2418 * a new password is set, for instance via e-mail.
2419 *
2420 * @param string $str New password to set
2421 * @throws PasswordError On failure
2422 *
2423 * @return bool
2424 */
2425 public function setPassword( $str ) {
2426 global $wgAuth;
2427
2428 $this->loadPasswords();
2429
2430 if ( $str !== null ) {
2431 if ( !$wgAuth->allowPasswordChange() ) {
2432 throw new PasswordError( wfMessage( 'password-change-forbidden' )->text() );
2433 }
2434
2435 $status = $this->checkPasswordValidity( $str );
2436 if ( !$status->isGood() ) {
2437 throw new PasswordError( $status->getMessage()->text() );
2438 }
2439 }
2440
2441 if ( !$wgAuth->setPassword( $this, $str ) ) {
2442 throw new PasswordError( wfMessage( 'externaldberror' )->text() );
2443 }
2444
2445 $this->setInternalPassword( $str );
2446
2447 return true;
2448 }
2449
2450 /**
2451 * Set the password and reset the random token unconditionally.
2452 *
2453 * @param string|null $str New password to set or null to set an invalid
2454 * password hash meaning that the user will not be able to log in
2455 * through the web interface.
2456 */
2457 public function setInternalPassword( $str ) {
2458 $this->setToken();
2459
2460 $passwordFactory = self::getPasswordFactory();
2461 $this->mPassword = $passwordFactory->newFromPlaintext( $str );
2462
2463 $this->mNewpassword = $passwordFactory->newFromCiphertext( null );
2464 $this->mNewpassTime = null;
2465 }
2466
2467 /**
2468 * Get the user's current token.
2469 * @param bool $forceCreation Force the generation of a new token if the
2470 * user doesn't have one (default=true for backwards compatibility).
2471 * @return string Token
2472 */
2473 public function getToken( $forceCreation = true ) {
2474 $this->load();
2475 if ( !$this->mToken && $forceCreation ) {
2476 $this->setToken();
2477 }
2478 return $this->mToken;
2479 }
2480
2481 /**
2482 * Set the random token (used for persistent authentication)
2483 * Called from loadDefaults() among other places.
2484 *
2485 * @param string|bool $token If specified, set the token to this value
2486 */
2487 public function setToken( $token = false ) {
2488 $this->load();
2489 if ( !$token ) {
2490 $this->mToken = MWCryptRand::generateHex( self::TOKEN_LENGTH );
2491 } else {
2492 $this->mToken = $token;
2493 }
2494 }
2495
2496 /**
2497 * Set the password for a password reminder or new account email
2498 *
2499 * @param string $str New password to set or null to set an invalid
2500 * password hash meaning that the user will not be able to use it
2501 * @param bool $throttle If true, reset the throttle timestamp to the present
2502 */
2503 public function setNewpassword( $str, $throttle = true ) {
2504 $this->loadPasswords();
2505
2506 $this->mNewpassword = self::getPasswordFactory()->newFromPlaintext( $str );
2507 if ( $str === null ) {
2508 $this->mNewpassTime = null;
2509 } elseif ( $throttle ) {
2510 $this->mNewpassTime = wfTimestampNow();
2511 }
2512 }
2513
2514 /**
2515 * Has password reminder email been sent within the last
2516 * $wgPasswordReminderResendTime hours?
2517 * @return bool
2518 */
2519 public function isPasswordReminderThrottled() {
2520 global $wgPasswordReminderResendTime;
2521 $this->load();
2522 if ( !$this->mNewpassTime || !$wgPasswordReminderResendTime ) {
2523 return false;
2524 }
2525 $expiry = wfTimestamp( TS_UNIX, $this->mNewpassTime ) + $wgPasswordReminderResendTime * 3600;
2526 return time() < $expiry;
2527 }
2528
2529 /**
2530 * Get the user's e-mail address
2531 * @return string User's email address
2532 */
2533 public function getEmail() {
2534 $this->load();
2535 Hooks::run( 'UserGetEmail', array( $this, &$this->mEmail ) );
2536 return $this->mEmail;
2537 }
2538
2539 /**
2540 * Get the timestamp of the user's e-mail authentication
2541 * @return string TS_MW timestamp
2542 */
2543 public function getEmailAuthenticationTimestamp() {
2544 $this->load();
2545 Hooks::run( 'UserGetEmailAuthenticationTimestamp', array( $this, &$this->mEmailAuthenticated ) );
2546 return $this->mEmailAuthenticated;
2547 }
2548
2549 /**
2550 * Set the user's e-mail address
2551 * @param string $str New e-mail address
2552 */
2553 public function setEmail( $str ) {
2554 $this->load();
2555 if ( $str == $this->mEmail ) {
2556 return;
2557 }
2558 $this->invalidateEmail();
2559 $this->mEmail = $str;
2560 Hooks::run( 'UserSetEmail', array( $this, &$this->mEmail ) );
2561 }
2562
2563 /**
2564 * Set the user's e-mail address and a confirmation mail if needed.
2565 *
2566 * @since 1.20
2567 * @param string $str New e-mail address
2568 * @return Status
2569 */
2570 public function setEmailWithConfirmation( $str ) {
2571 global $wgEnableEmail, $wgEmailAuthentication;
2572
2573 if ( !$wgEnableEmail ) {
2574 return Status::newFatal( 'emaildisabled' );
2575 }
2576
2577 $oldaddr = $this->getEmail();
2578 if ( $str === $oldaddr ) {
2579 return Status::newGood( true );
2580 }
2581
2582 $this->setEmail( $str );
2583
2584 if ( $str !== '' && $wgEmailAuthentication ) {
2585 // Send a confirmation request to the new address if needed
2586 $type = $oldaddr != '' ? 'changed' : 'set';
2587 $result = $this->sendConfirmationMail( $type );
2588 if ( $result->isGood() ) {
2589 // Say to the caller that a confirmation mail has been sent
2590 $result->value = 'eauth';
2591 }
2592 } else {
2593 $result = Status::newGood( true );
2594 }
2595
2596 return $result;
2597 }
2598
2599 /**
2600 * Get the user's real name
2601 * @return string User's real name
2602 */
2603 public function getRealName() {
2604 if ( !$this->isItemLoaded( 'realname' ) ) {
2605 $this->load();
2606 }
2607
2608 return $this->mRealName;
2609 }
2610
2611 /**
2612 * Set the user's real name
2613 * @param string $str New real name
2614 */
2615 public function setRealName( $str ) {
2616 $this->load();
2617 $this->mRealName = $str;
2618 }
2619
2620 /**
2621 * Get the user's current setting for a given option.
2622 *
2623 * @param string $oname The option to check
2624 * @param string $defaultOverride A default value returned if the option does not exist
2625 * @param bool $ignoreHidden Whether to ignore the effects of $wgHiddenPrefs
2626 * @return string User's current value for the option
2627 * @see getBoolOption()
2628 * @see getIntOption()
2629 */
2630 public function getOption( $oname, $defaultOverride = null, $ignoreHidden = false ) {
2631 global $wgHiddenPrefs;
2632 $this->loadOptions();
2633
2634 # We want 'disabled' preferences to always behave as the default value for
2635 # users, even if they have set the option explicitly in their settings (ie they
2636 # set it, and then it was disabled removing their ability to change it). But
2637 # we don't want to erase the preferences in the database in case the preference
2638 # is re-enabled again. So don't touch $mOptions, just override the returned value
2639 if ( !$ignoreHidden && in_array( $oname, $wgHiddenPrefs ) ) {
2640 return self::getDefaultOption( $oname );
2641 }
2642
2643 if ( array_key_exists( $oname, $this->mOptions ) ) {
2644 return $this->mOptions[$oname];
2645 } else {
2646 return $defaultOverride;
2647 }
2648 }
2649
2650 /**
2651 * Get all user's options
2652 *
2653 * @param int $flags Bitwise combination of:
2654 * User::GETOPTIONS_EXCLUDE_DEFAULTS Exclude user options that are set
2655 * to the default value. (Since 1.25)
2656 * @return array
2657 */
2658 public function getOptions( $flags = 0 ) {
2659 global $wgHiddenPrefs;
2660 $this->loadOptions();
2661 $options = $this->mOptions;
2662
2663 # We want 'disabled' preferences to always behave as the default value for
2664 # users, even if they have set the option explicitly in their settings (ie they
2665 # set it, and then it was disabled removing their ability to change it). But
2666 # we don't want to erase the preferences in the database in case the preference
2667 # is re-enabled again. So don't touch $mOptions, just override the returned value
2668 foreach ( $wgHiddenPrefs as $pref ) {
2669 $default = self::getDefaultOption( $pref );
2670 if ( $default !== null ) {
2671 $options[$pref] = $default;
2672 }
2673 }
2674
2675 if ( $flags & self::GETOPTIONS_EXCLUDE_DEFAULTS ) {
2676 $options = array_diff_assoc( $options, self::getDefaultOptions() );
2677 }
2678
2679 return $options;
2680 }
2681
2682 /**
2683 * Get the user's current setting for a given option, as a boolean value.
2684 *
2685 * @param string $oname The option to check
2686 * @return bool User's current value for the option
2687 * @see getOption()
2688 */
2689 public function getBoolOption( $oname ) {
2690 return (bool)$this->getOption( $oname );
2691 }
2692
2693 /**
2694 * Get the user's current setting for a given option, as an integer value.
2695 *
2696 * @param string $oname The option to check
2697 * @param int $defaultOverride A default value returned if the option does not exist
2698 * @return int User's current value for the option
2699 * @see getOption()
2700 */
2701 public function getIntOption( $oname, $defaultOverride = 0 ) {
2702 $val = $this->getOption( $oname );
2703 if ( $val == '' ) {
2704 $val = $defaultOverride;
2705 }
2706 return intval( $val );
2707 }
2708
2709 /**
2710 * Set the given option for a user.
2711 *
2712 * You need to call saveSettings() to actually write to the database.
2713 *
2714 * @param string $oname The option to set
2715 * @param mixed $val New value to set
2716 */
2717 public function setOption( $oname, $val ) {
2718 $this->loadOptions();
2719
2720 // Explicitly NULL values should refer to defaults
2721 if ( is_null( $val ) ) {
2722 $val = self::getDefaultOption( $oname );
2723 }
2724
2725 $this->mOptions[$oname] = $val;
2726 }
2727
2728 /**
2729 * Get a token stored in the preferences (like the watchlist one),
2730 * resetting it if it's empty (and saving changes).
2731 *
2732 * @param string $oname The option name to retrieve the token from
2733 * @return string|bool User's current value for the option, or false if this option is disabled.
2734 * @see resetTokenFromOption()
2735 * @see getOption()
2736 */
2737 public function getTokenFromOption( $oname ) {
2738 global $wgHiddenPrefs;
2739 if ( in_array( $oname, $wgHiddenPrefs ) ) {
2740 return false;
2741 }
2742
2743 $token = $this->getOption( $oname );
2744 if ( !$token ) {
2745 $token = $this->resetTokenFromOption( $oname );
2746 if ( !wfReadOnly() ) {
2747 $this->saveSettings();
2748 }
2749 }
2750 return $token;
2751 }
2752
2753 /**
2754 * Reset a token stored in the preferences (like the watchlist one).
2755 * *Does not* save user's preferences (similarly to setOption()).
2756 *
2757 * @param string $oname The option name to reset the token in
2758 * @return string|bool New token value, or false if this option is disabled.
2759 * @see getTokenFromOption()
2760 * @see setOption()
2761 */
2762 public function resetTokenFromOption( $oname ) {
2763 global $wgHiddenPrefs;
2764 if ( in_array( $oname, $wgHiddenPrefs ) ) {
2765 return false;
2766 }
2767
2768 $token = MWCryptRand::generateHex( 40 );
2769 $this->setOption( $oname, $token );
2770 return $token;
2771 }
2772
2773 /**
2774 * Return a list of the types of user options currently returned by
2775 * User::getOptionKinds().
2776 *
2777 * Currently, the option kinds are:
2778 * - 'registered' - preferences which are registered in core MediaWiki or
2779 * by extensions using the UserGetDefaultOptions hook.
2780 * - 'registered-multiselect' - as above, using the 'multiselect' type.
2781 * - 'registered-checkmatrix' - as above, using the 'checkmatrix' type.
2782 * - 'userjs' - preferences with names starting with 'userjs-', intended to
2783 * be used by user scripts.
2784 * - 'special' - "preferences" that are not accessible via User::getOptions
2785 * or User::setOptions.
2786 * - 'unused' - preferences about which MediaWiki doesn't know anything.
2787 * These are usually legacy options, removed in newer versions.
2788 *
2789 * The API (and possibly others) use this function to determine the possible
2790 * option types for validation purposes, so make sure to update this when a
2791 * new option kind is added.
2792 *
2793 * @see User::getOptionKinds
2794 * @return array Option kinds
2795 */
2796 public static function listOptionKinds() {
2797 return array(
2798 'registered',
2799 'registered-multiselect',
2800 'registered-checkmatrix',
2801 'userjs',
2802 'special',
2803 'unused'
2804 );
2805 }
2806
2807 /**
2808 * Return an associative array mapping preferences keys to the kind of a preference they're
2809 * used for. Different kinds are handled differently when setting or reading preferences.
2810 *
2811 * See User::listOptionKinds for the list of valid option types that can be provided.
2812 *
2813 * @see User::listOptionKinds
2814 * @param IContextSource $context
2815 * @param array $options Assoc. array with options keys to check as keys.
2816 * Defaults to $this->mOptions.
2817 * @return array The key => kind mapping data
2818 */
2819 public function getOptionKinds( IContextSource $context, $options = null ) {
2820 $this->loadOptions();
2821 if ( $options === null ) {
2822 $options = $this->mOptions;
2823 }
2824
2825 $prefs = Preferences::getPreferences( $this, $context );
2826 $mapping = array();
2827
2828 // Pull out the "special" options, so they don't get converted as
2829 // multiselect or checkmatrix.
2830 $specialOptions = array_fill_keys( Preferences::getSaveBlacklist(), true );
2831 foreach ( $specialOptions as $name => $value ) {
2832 unset( $prefs[$name] );
2833 }
2834
2835 // Multiselect and checkmatrix options are stored in the database with
2836 // one key per option, each having a boolean value. Extract those keys.
2837 $multiselectOptions = array();
2838 foreach ( $prefs as $name => $info ) {
2839 if ( ( isset( $info['type'] ) && $info['type'] == 'multiselect' ) ||
2840 ( isset( $info['class'] ) && $info['class'] == 'HTMLMultiSelectField' ) ) {
2841 $opts = HTMLFormField::flattenOptions( $info['options'] );
2842 $prefix = isset( $info['prefix'] ) ? $info['prefix'] : $name;
2843
2844 foreach ( $opts as $value ) {
2845 $multiselectOptions["$prefix$value"] = true;
2846 }
2847
2848 unset( $prefs[$name] );
2849 }
2850 }
2851 $checkmatrixOptions = array();
2852 foreach ( $prefs as $name => $info ) {
2853 if ( ( isset( $info['type'] ) && $info['type'] == 'checkmatrix' ) ||
2854 ( isset( $info['class'] ) && $info['class'] == 'HTMLCheckMatrix' ) ) {
2855 $columns = HTMLFormField::flattenOptions( $info['columns'] );
2856 $rows = HTMLFormField::flattenOptions( $info['rows'] );
2857 $prefix = isset( $info['prefix'] ) ? $info['prefix'] : $name;
2858
2859 foreach ( $columns as $column ) {
2860 foreach ( $rows as $row ) {
2861 $checkmatrixOptions["$prefix$column-$row"] = true;
2862 }
2863 }
2864
2865 unset( $prefs[$name] );
2866 }
2867 }
2868
2869 // $value is ignored
2870 foreach ( $options as $key => $value ) {
2871 if ( isset( $prefs[$key] ) ) {
2872 $mapping[$key] = 'registered';
2873 } elseif ( isset( $multiselectOptions[$key] ) ) {
2874 $mapping[$key] = 'registered-multiselect';
2875 } elseif ( isset( $checkmatrixOptions[$key] ) ) {
2876 $mapping[$key] = 'registered-checkmatrix';
2877 } elseif ( isset( $specialOptions[$key] ) ) {
2878 $mapping[$key] = 'special';
2879 } elseif ( substr( $key, 0, 7 ) === 'userjs-' ) {
2880 $mapping[$key] = 'userjs';
2881 } else {
2882 $mapping[$key] = 'unused';
2883 }
2884 }
2885
2886 return $mapping;
2887 }
2888
2889 /**
2890 * Reset certain (or all) options to the site defaults
2891 *
2892 * The optional parameter determines which kinds of preferences will be reset.
2893 * Supported values are everything that can be reported by getOptionKinds()
2894 * and 'all', which forces a reset of *all* preferences and overrides everything else.
2895 *
2896 * @param array|string $resetKinds Which kinds of preferences to reset. Defaults to
2897 * array( 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' )
2898 * for backwards-compatibility.
2899 * @param IContextSource|null $context Context source used when $resetKinds
2900 * does not contain 'all', passed to getOptionKinds().
2901 * Defaults to RequestContext::getMain() when null.
2902 */
2903 public function resetOptions(
2904 $resetKinds = array( 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' ),
2905 IContextSource $context = null
2906 ) {
2907 $this->load();
2908 $defaultOptions = self::getDefaultOptions();
2909
2910 if ( !is_array( $resetKinds ) ) {
2911 $resetKinds = array( $resetKinds );
2912 }
2913
2914 if ( in_array( 'all', $resetKinds ) ) {
2915 $newOptions = $defaultOptions;
2916 } else {
2917 if ( $context === null ) {
2918 $context = RequestContext::getMain();
2919 }
2920
2921 $optionKinds = $this->getOptionKinds( $context );
2922 $resetKinds = array_intersect( $resetKinds, self::listOptionKinds() );
2923 $newOptions = array();
2924
2925 // Use default values for the options that should be deleted, and
2926 // copy old values for the ones that shouldn't.
2927 foreach ( $this->mOptions as $key => $value ) {
2928 if ( in_array( $optionKinds[$key], $resetKinds ) ) {
2929 if ( array_key_exists( $key, $defaultOptions ) ) {
2930 $newOptions[$key] = $defaultOptions[$key];
2931 }
2932 } else {
2933 $newOptions[$key] = $value;
2934 }
2935 }
2936 }
2937
2938 Hooks::run( 'UserResetAllOptions', array( $this, &$newOptions, $this->mOptions, $resetKinds ) );
2939
2940 $this->mOptions = $newOptions;
2941 $this->mOptionsLoaded = true;
2942 }
2943
2944 /**
2945 * Get the user's preferred date format.
2946 * @return string User's preferred date format
2947 */
2948 public function getDatePreference() {
2949 // Important migration for old data rows
2950 if ( is_null( $this->mDatePreference ) ) {
2951 global $wgLang;
2952 $value = $this->getOption( 'date' );
2953 $map = $wgLang->getDatePreferenceMigrationMap();
2954 if ( isset( $map[$value] ) ) {
2955 $value = $map[$value];
2956 }
2957 $this->mDatePreference = $value;
2958 }
2959 return $this->mDatePreference;
2960 }
2961
2962 /**
2963 * Determine based on the wiki configuration and the user's options,
2964 * whether this user must be over HTTPS no matter what.
2965 *
2966 * @return bool
2967 */
2968 public function requiresHTTPS() {
2969 global $wgSecureLogin;
2970 if ( !$wgSecureLogin ) {
2971 return false;
2972 } else {
2973 $https = $this->getBoolOption( 'prefershttps' );
2974 Hooks::run( 'UserRequiresHTTPS', array( $this, &$https ) );
2975 if ( $https ) {
2976 $https = wfCanIPUseHTTPS( $this->getRequest()->getIP() );
2977 }
2978 return $https;
2979 }
2980 }
2981
2982 /**
2983 * Get the user preferred stub threshold
2984 *
2985 * @return int
2986 */
2987 public function getStubThreshold() {
2988 global $wgMaxArticleSize; # Maximum article size, in Kb
2989 $threshold = $this->getIntOption( 'stubthreshold' );
2990 if ( $threshold > $wgMaxArticleSize * 1024 ) {
2991 // If they have set an impossible value, disable the preference
2992 // so we can use the parser cache again.
2993 $threshold = 0;
2994 }
2995 return $threshold;
2996 }
2997
2998 /**
2999 * Get the permissions this user has.
3000 * @return array Array of String permission names
3001 */
3002 public function getRights() {
3003 if ( is_null( $this->mRights ) ) {
3004 $this->mRights = self::getGroupPermissions( $this->getEffectiveGroups() );
3005 Hooks::run( 'UserGetRights', array( $this, &$this->mRights ) );
3006 // Force reindexation of rights when a hook has unset one of them
3007 $this->mRights = array_values( array_unique( $this->mRights ) );
3008 }
3009 return $this->mRights;
3010 }
3011
3012 /**
3013 * Get the list of explicit group memberships this user has.
3014 * The implicit * and user groups are not included.
3015 * @return array Array of String internal group names
3016 */
3017 public function getGroups() {
3018 $this->load();
3019 $this->loadGroups();
3020 return $this->mGroups;
3021 }
3022
3023 /**
3024 * Get the list of implicit group memberships this user has.
3025 * This includes all explicit groups, plus 'user' if logged in,
3026 * '*' for all accounts, and autopromoted groups
3027 * @param bool $recache Whether to avoid the cache
3028 * @return array Array of String internal group names
3029 */
3030 public function getEffectiveGroups( $recache = false ) {
3031 if ( $recache || is_null( $this->mEffectiveGroups ) ) {
3032 $this->mEffectiveGroups = array_unique( array_merge(
3033 $this->getGroups(), // explicit groups
3034 $this->getAutomaticGroups( $recache ) // implicit groups
3035 ) );
3036 // Hook for additional groups
3037 Hooks::run( 'UserEffectiveGroups', array( &$this, &$this->mEffectiveGroups ) );
3038 // Force reindexation of groups when a hook has unset one of them
3039 $this->mEffectiveGroups = array_values( array_unique( $this->mEffectiveGroups ) );
3040 }
3041 return $this->mEffectiveGroups;
3042 }
3043
3044 /**
3045 * Get the list of implicit group memberships this user has.
3046 * This includes 'user' if logged in, '*' for all accounts,
3047 * and autopromoted groups
3048 * @param bool $recache Whether to avoid the cache
3049 * @return array Array of String internal group names
3050 */
3051 public function getAutomaticGroups( $recache = false ) {
3052 if ( $recache || is_null( $this->mImplicitGroups ) ) {
3053 $this->mImplicitGroups = array( '*' );
3054 if ( $this->getId() ) {
3055 $this->mImplicitGroups[] = 'user';
3056
3057 $this->mImplicitGroups = array_unique( array_merge(
3058 $this->mImplicitGroups,
3059 Autopromote::getAutopromoteGroups( $this )
3060 ) );
3061 }
3062 if ( $recache ) {
3063 // Assure data consistency with rights/groups,
3064 // as getEffectiveGroups() depends on this function
3065 $this->mEffectiveGroups = null;
3066 }
3067 }
3068 return $this->mImplicitGroups;
3069 }
3070
3071 /**
3072 * Returns the groups the user has belonged to.
3073 *
3074 * The user may still belong to the returned groups. Compare with getGroups().
3075 *
3076 * The function will not return groups the user had belonged to before MW 1.17
3077 *
3078 * @return array Names of the groups the user has belonged to.
3079 */
3080 public function getFormerGroups() {
3081 $this->load();
3082
3083 if ( is_null( $this->mFormerGroups ) ) {
3084 $db = ( $this->queryFlagsUsed & self::READ_LATEST )
3085 ? wfGetDB( DB_MASTER )
3086 : wfGetDB( DB_SLAVE );
3087 $res = $db->select( 'user_former_groups',
3088 array( 'ufg_group' ),
3089 array( 'ufg_user' => $this->mId ),
3090 __METHOD__ );
3091 $this->mFormerGroups = array();
3092 foreach ( $res as $row ) {
3093 $this->mFormerGroups[] = $row->ufg_group;
3094 }
3095 }
3096
3097 return $this->mFormerGroups;
3098 }
3099
3100 /**
3101 * Get the user's edit count.
3102 * @return int|null Null for anonymous users
3103 */
3104 public function getEditCount() {
3105 if ( !$this->getId() ) {
3106 return null;
3107 }
3108
3109 if ( $this->mEditCount === null ) {
3110 /* Populate the count, if it has not been populated yet */
3111 $dbr = wfGetDB( DB_SLAVE );
3112 // check if the user_editcount field has been initialized
3113 $count = $dbr->selectField(
3114 'user', 'user_editcount',
3115 array( 'user_id' => $this->mId ),
3116 __METHOD__
3117 );
3118
3119 if ( $count === null ) {
3120 // it has not been initialized. do so.
3121 $count = $this->initEditCount();
3122 }
3123 $this->mEditCount = $count;
3124 }
3125 return (int)$this->mEditCount;
3126 }
3127
3128 /**
3129 * Add the user to the given group.
3130 * This takes immediate effect.
3131 * @param string $group Name of the group to add
3132 * @return bool
3133 */
3134 public function addGroup( $group ) {
3135 $this->load();
3136
3137 if ( !Hooks::run( 'UserAddGroup', array( $this, &$group ) ) ) {
3138 return false;
3139 }
3140
3141 $dbw = wfGetDB( DB_MASTER );
3142 if ( $this->getId() ) {
3143 $dbw->insert( 'user_groups',
3144 array(
3145 'ug_user' => $this->getID(),
3146 'ug_group' => $group,
3147 ),
3148 __METHOD__,
3149 array( 'IGNORE' ) );
3150 }
3151
3152 $this->loadGroups();
3153 $this->mGroups[] = $group;
3154 // In case loadGroups was not called before, we now have the right twice.
3155 // Get rid of the duplicate.
3156 $this->mGroups = array_unique( $this->mGroups );
3157
3158 // Refresh the groups caches, and clear the rights cache so it will be
3159 // refreshed on the next call to $this->getRights().
3160 $this->getEffectiveGroups( true );
3161 $this->mRights = null;
3162
3163 $this->invalidateCache();
3164
3165 return true;
3166 }
3167
3168 /**
3169 * Remove the user from the given group.
3170 * This takes immediate effect.
3171 * @param string $group Name of the group to remove
3172 * @return bool
3173 */
3174 public function removeGroup( $group ) {
3175 $this->load();
3176 if ( !Hooks::run( 'UserRemoveGroup', array( $this, &$group ) ) ) {
3177 return false;
3178 }
3179
3180 $dbw = wfGetDB( DB_MASTER );
3181 $dbw->delete( 'user_groups',
3182 array(
3183 'ug_user' => $this->getID(),
3184 'ug_group' => $group,
3185 ), __METHOD__
3186 );
3187 // Remember that the user was in this group
3188 $dbw->insert( 'user_former_groups',
3189 array(
3190 'ufg_user' => $this->getID(),
3191 'ufg_group' => $group,
3192 ),
3193 __METHOD__,
3194 array( 'IGNORE' )
3195 );
3196
3197 $this->loadGroups();
3198 $this->mGroups = array_diff( $this->mGroups, array( $group ) );
3199
3200 // Refresh the groups caches, and clear the rights cache so it will be
3201 // refreshed on the next call to $this->getRights().
3202 $this->getEffectiveGroups( true );
3203 $this->mRights = null;
3204
3205 $this->invalidateCache();
3206
3207 return true;
3208 }
3209
3210 /**
3211 * Get whether the user is logged in
3212 * @return bool
3213 */
3214 public function isLoggedIn() {
3215 return $this->getID() != 0;
3216 }
3217
3218 /**
3219 * Get whether the user is anonymous
3220 * @return bool
3221 */
3222 public function isAnon() {
3223 return !$this->isLoggedIn();
3224 }
3225
3226 /**
3227 * Check if user is allowed to access a feature / make an action
3228 *
3229 * @param string $permissions,... Permissions to test
3230 * @return bool True if user is allowed to perform *any* of the given actions
3231 */
3232 public function isAllowedAny( /*...*/ ) {
3233 $permissions = func_get_args();
3234 foreach ( $permissions as $permission ) {
3235 if ( $this->isAllowed( $permission ) ) {
3236 return true;
3237 }
3238 }
3239 return false;
3240 }
3241
3242 /**
3243 *
3244 * @param string $permissions,... Permissions to test
3245 * @return bool True if the user is allowed to perform *all* of the given actions
3246 */
3247 public function isAllowedAll( /*...*/ ) {
3248 $permissions = func_get_args();
3249 foreach ( $permissions as $permission ) {
3250 if ( !$this->isAllowed( $permission ) ) {
3251 return false;
3252 }
3253 }
3254 return true;
3255 }
3256
3257 /**
3258 * Internal mechanics of testing a permission
3259 * @param string $action
3260 * @return bool
3261 */
3262 public function isAllowed( $action = '' ) {
3263 if ( $action === '' ) {
3264 return true; // In the spirit of DWIM
3265 }
3266 // Patrolling may not be enabled
3267 if ( $action === 'patrol' || $action === 'autopatrol' ) {
3268 global $wgUseRCPatrol, $wgUseNPPatrol;
3269 if ( !$wgUseRCPatrol && !$wgUseNPPatrol ) {
3270 return false;
3271 }
3272 }
3273 // Use strict parameter to avoid matching numeric 0 accidentally inserted
3274 // by misconfiguration: 0 == 'foo'
3275 return in_array( $action, $this->getRights(), true );
3276 }
3277
3278 /**
3279 * Check whether to enable recent changes patrol features for this user
3280 * @return bool True or false
3281 */
3282 public function useRCPatrol() {
3283 global $wgUseRCPatrol;
3284 return $wgUseRCPatrol && $this->isAllowedAny( 'patrol', 'patrolmarks' );
3285 }
3286
3287 /**
3288 * Check whether to enable new pages patrol features for this user
3289 * @return bool True or false
3290 */
3291 public function useNPPatrol() {
3292 global $wgUseRCPatrol, $wgUseNPPatrol;
3293 return (
3294 ( $wgUseRCPatrol || $wgUseNPPatrol )
3295 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3296 );
3297 }
3298
3299 /**
3300 * Get the WebRequest object to use with this object
3301 *
3302 * @return WebRequest
3303 */
3304 public function getRequest() {
3305 if ( $this->mRequest ) {
3306 return $this->mRequest;
3307 } else {
3308 global $wgRequest;
3309 return $wgRequest;
3310 }
3311 }
3312
3313 /**
3314 * Get the current skin, loading it if required
3315 * @return Skin The current skin
3316 * @todo FIXME: Need to check the old failback system [AV]
3317 * @deprecated since 1.18 Use ->getSkin() in the most relevant outputting context you have
3318 */
3319 public function getSkin() {
3320 wfDeprecated( __METHOD__, '1.18' );
3321 return RequestContext::getMain()->getSkin();
3322 }
3323
3324 /**
3325 * Get a WatchedItem for this user and $title.
3326 *
3327 * @since 1.22 $checkRights parameter added
3328 * @param Title $title
3329 * @param int $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3330 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
3331 * @return WatchedItem
3332 */
3333 public function getWatchedItem( $title, $checkRights = WatchedItem::CHECK_USER_RIGHTS ) {
3334 $key = $checkRights . ':' . $title->getNamespace() . ':' . $title->getDBkey();
3335
3336 if ( isset( $this->mWatchedItems[$key] ) ) {
3337 return $this->mWatchedItems[$key];
3338 }
3339
3340 if ( count( $this->mWatchedItems ) >= self::MAX_WATCHED_ITEMS_CACHE ) {
3341 $this->mWatchedItems = array();
3342 }
3343
3344 $this->mWatchedItems[$key] = WatchedItem::fromUserTitle( $this, $title, $checkRights );
3345 return $this->mWatchedItems[$key];
3346 }
3347
3348 /**
3349 * Check the watched status of an article.
3350 * @since 1.22 $checkRights parameter added
3351 * @param Title $title Title of the article to look at
3352 * @param int $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3353 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
3354 * @return bool
3355 */
3356 public function isWatched( $title, $checkRights = WatchedItem::CHECK_USER_RIGHTS ) {
3357 return $this->getWatchedItem( $title, $checkRights )->isWatched();
3358 }
3359
3360 /**
3361 * Watch an article.
3362 * @since 1.22 $checkRights parameter added
3363 * @param Title $title Title of the article to look at
3364 * @param int $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3365 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
3366 */
3367 public function addWatch( $title, $checkRights = WatchedItem::CHECK_USER_RIGHTS ) {
3368 $this->getWatchedItem( $title, $checkRights )->addWatch();
3369 $this->invalidateCache();
3370 }
3371
3372 /**
3373 * Stop watching an article.
3374 * @since 1.22 $checkRights parameter added
3375 * @param Title $title Title of the article to look at
3376 * @param int $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3377 * Pass WatchedItem::CHECK_USER_RIGHTS or WatchedItem::IGNORE_USER_RIGHTS.
3378 */
3379 public function removeWatch( $title, $checkRights = WatchedItem::CHECK_USER_RIGHTS ) {
3380 $this->getWatchedItem( $title, $checkRights )->removeWatch();
3381 $this->invalidateCache();
3382 }
3383
3384 /**
3385 * Clear the user's notification timestamp for the given title.
3386 * If e-notif e-mails are on, they will receive notification mails on
3387 * the next change of the page if it's watched etc.
3388 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3389 * @param Title $title Title of the article to look at
3390 * @param int $oldid The revision id being viewed. If not given or 0, latest revision is assumed.
3391 */
3392 public function clearNotification( &$title, $oldid = 0 ) {
3393 global $wgUseEnotif, $wgShowUpdatedMarker;
3394
3395 // Do nothing if the database is locked to writes
3396 if ( wfReadOnly() ) {
3397 return;
3398 }
3399
3400 // Do nothing if not allowed to edit the watchlist
3401 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
3402 return;
3403 }
3404
3405 // If we're working on user's talk page, we should update the talk page message indicator
3406 if ( $title->getNamespace() == NS_USER_TALK && $title->getText() == $this->getName() ) {
3407 if ( !Hooks::run( 'UserClearNewTalkNotification', array( &$this, $oldid ) ) ) {
3408 return;
3409 }
3410
3411 $nextid = $oldid ? $title->getNextRevisionID( $oldid ) : null;
3412
3413 if ( !$oldid || !$nextid ) {
3414 // If we're looking at the latest revision, we should definitely clear it
3415 $this->setNewtalk( false );
3416 } else {
3417 // Otherwise we should update its revision, if it's present
3418 if ( $this->getNewtalk() ) {
3419 // Naturally the other one won't clear by itself
3420 $this->setNewtalk( false );
3421 $this->setNewtalk( true, Revision::newFromId( $nextid ) );
3422 }
3423 }
3424 }
3425
3426 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3427 return;
3428 }
3429
3430 if ( $this->isAnon() ) {
3431 // Nothing else to do...
3432 return;
3433 }
3434
3435 // Only update the timestamp if the page is being watched.
3436 // The query to find out if it is watched is cached both in memcached and per-invocation,
3437 // and when it does have to be executed, it can be on a slave
3438 // If this is the user's newtalk page, we always update the timestamp
3439 $force = '';
3440 if ( $title->getNamespace() == NS_USER_TALK && $title->getText() == $this->getName() ) {
3441 $force = 'force';
3442 }
3443
3444 $this->getWatchedItem( $title )->resetNotificationTimestamp(
3445 $force, $oldid, WatchedItem::DEFERRED
3446 );
3447 }
3448
3449 /**
3450 * Resets all of the given user's page-change notification timestamps.
3451 * If e-notif e-mails are on, they will receive notification mails on
3452 * the next change of any watched page.
3453 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3454 */
3455 public function clearAllNotifications() {
3456 if ( wfReadOnly() ) {
3457 return;
3458 }
3459
3460 // Do nothing if not allowed to edit the watchlist
3461 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
3462 return;
3463 }
3464
3465 global $wgUseEnotif, $wgShowUpdatedMarker;
3466 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3467 $this->setNewtalk( false );
3468 return;
3469 }
3470 $id = $this->getId();
3471 if ( $id != 0 ) {
3472 $dbw = wfGetDB( DB_MASTER );
3473 $dbw->update( 'watchlist',
3474 array( /* SET */ 'wl_notificationtimestamp' => null ),
3475 array( /* WHERE */ 'wl_user' => $id ),
3476 __METHOD__
3477 );
3478 // We also need to clear here the "you have new message" notification for the own user_talk page;
3479 // it's cleared one page view later in WikiPage::doViewUpdates().
3480 }
3481 }
3482
3483 /**
3484 * Set a cookie on the user's client. Wrapper for
3485 * WebResponse::setCookie
3486 * @param string $name Name of the cookie to set
3487 * @param string $value Value to set
3488 * @param int $exp Expiration time, as a UNIX time value;
3489 * if 0 or not specified, use the default $wgCookieExpiration
3490 * @param bool $secure
3491 * true: Force setting the secure attribute when setting the cookie
3492 * false: Force NOT setting the secure attribute when setting the cookie
3493 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3494 * @param array $params Array of options sent passed to WebResponse::setcookie()
3495 * @param WebRequest|null $request WebRequest object to use; $wgRequest will be used if null
3496 * is passed.
3497 */
3498 protected function setCookie(
3499 $name, $value, $exp = 0, $secure = null, $params = array(), $request = null
3500 ) {
3501 if ( $request === null ) {
3502 $request = $this->getRequest();
3503 }
3504 $params['secure'] = $secure;
3505 $request->response()->setcookie( $name, $value, $exp, $params );
3506 }
3507
3508 /**
3509 * Clear a cookie on the user's client
3510 * @param string $name Name of the cookie to clear
3511 * @param bool $secure
3512 * true: Force setting the secure attribute when setting the cookie
3513 * false: Force NOT setting the secure attribute when setting the cookie
3514 * null (default): Use the default ($wgCookieSecure) to set the secure attribute
3515 * @param array $params Array of options sent passed to WebResponse::setcookie()
3516 */
3517 protected function clearCookie( $name, $secure = null, $params = array() ) {
3518 $this->setCookie( $name, '', time() - 86400, $secure, $params );
3519 }
3520
3521 /**
3522 * Set the default cookies for this session on the user's client.
3523 *
3524 * @param WebRequest|null $request WebRequest object to use; $wgRequest will be used if null
3525 * is passed.
3526 * @param bool $secure Whether to force secure/insecure cookies or use default
3527 * @param bool $rememberMe Whether to add a Token cookie for elongated sessions
3528 */
3529 public function setCookies( $request = null, $secure = null, $rememberMe = false ) {
3530 if ( $request === null ) {
3531 $request = $this->getRequest();
3532 }
3533
3534 $this->load();
3535 if ( 0 == $this->mId ) {
3536 return;
3537 }
3538 if ( !$this->mToken ) {
3539 // When token is empty or NULL generate a new one and then save it to the database
3540 // This allows a wiki to re-secure itself after a leak of it's user table or $wgSecretKey
3541 // Simply by setting every cell in the user_token column to NULL and letting them be
3542 // regenerated as users log back into the wiki.
3543 $this->setToken();
3544 if ( !wfReadOnly() ) {
3545 $this->saveSettings();
3546 }
3547 }
3548 $session = array(
3549 'wsUserID' => $this->mId,
3550 'wsToken' => $this->mToken,
3551 'wsUserName' => $this->getName()
3552 );
3553 $cookies = array(
3554 'UserID' => $this->mId,
3555 'UserName' => $this->getName(),
3556 );
3557 if ( $rememberMe ) {
3558 $cookies['Token'] = $this->mToken;
3559 } else {
3560 $cookies['Token'] = false;
3561 }
3562
3563 Hooks::run( 'UserSetCookies', array( $this, &$session, &$cookies ) );
3564
3565 foreach ( $session as $name => $value ) {
3566 $request->setSessionData( $name, $value );
3567 }
3568 foreach ( $cookies as $name => $value ) {
3569 if ( $value === false ) {
3570 $this->clearCookie( $name );
3571 } else {
3572 $this->setCookie( $name, $value, 0, $secure, array(), $request );
3573 }
3574 }
3575
3576 /**
3577 * If wpStickHTTPS was selected, also set an insecure cookie that
3578 * will cause the site to redirect the user to HTTPS, if they access
3579 * it over HTTP. Bug 29898. Use an un-prefixed cookie, so it's the same
3580 * as the one set by centralauth (bug 53538). Also set it to session, or
3581 * standard time setting, based on if rememberme was set.
3582 */
3583 if ( $request->getCheck( 'wpStickHTTPS' ) || $this->requiresHTTPS() ) {
3584 $this->setCookie(
3585 'forceHTTPS',
3586 'true',
3587 $rememberMe ? 0 : null,
3588 false,
3589 array( 'prefix' => '' ) // no prefix
3590 );
3591 }
3592 }
3593
3594 /**
3595 * Log this user out.
3596 */
3597 public function logout() {
3598 if ( Hooks::run( 'UserLogout', array( &$this ) ) ) {
3599 $this->doLogout();
3600 }
3601 }
3602
3603 /**
3604 * Clear the user's cookies and session, and reset the instance cache.
3605 * @see logout()
3606 */
3607 public function doLogout() {
3608 $this->clearInstanceCache( 'defaults' );
3609
3610 $this->getRequest()->setSessionData( 'wsUserID', 0 );
3611
3612 $this->clearCookie( 'UserID' );
3613 $this->clearCookie( 'Token' );
3614 $this->clearCookie( 'forceHTTPS', false, array( 'prefix' => '' ) );
3615
3616 // Remember when user logged out, to prevent seeing cached pages
3617 $this->setCookie( 'LoggedOut', time(), time() + 86400 );
3618 }
3619
3620 /**
3621 * Save this user's settings into the database.
3622 * @todo Only rarely do all these fields need to be set!
3623 */
3624 public function saveSettings() {
3625 global $wgAuth;
3626
3627 if ( wfReadOnly() ) {
3628 // @TODO: caller should deal with this instead!
3629 // This should really just be an exception.
3630 MWExceptionHandler::logException( new DBExpectedError(
3631 null,
3632 "Could not update user with ID '{$this->mId}'; DB is read-only."
3633 ) );
3634 return;
3635 }
3636
3637 $this->load();
3638 $this->loadPasswords();
3639 if ( 0 == $this->mId ) {
3640 return; // anon
3641 }
3642
3643 // This method is for updating existing users, so the user should
3644 // have been loaded from the master to begin with to avoid problems.
3645 if ( !( $this->queryFlagsUsed & self::READ_LATEST ) ) {
3646 wfWarn( "Attempting to save slave-loaded User object with ID '{$this->mId}'." );
3647 }
3648
3649 // Get a new user_touched that is higher than the old one.
3650 // This will be used for a CAS check as a last-resort safety
3651 // check against race conditions and slave lag.
3652 $oldTouched = $this->mTouched;
3653 $newTouched = $this->newTouchedTimestamp();
3654
3655 if ( !$wgAuth->allowSetLocalPassword() ) {
3656 $this->mPassword = self::getPasswordFactory()->newFromCiphertext( null );
3657 }
3658
3659 $dbw = wfGetDB( DB_MASTER );
3660 $dbw->update( 'user',
3661 array( /* SET */
3662 'user_name' => $this->mName,
3663 'user_password' => $this->mPassword->toString(),
3664 'user_newpassword' => $this->mNewpassword->toString(),
3665 'user_newpass_time' => $dbw->timestampOrNull( $this->mNewpassTime ),
3666 'user_real_name' => $this->mRealName,
3667 'user_email' => $this->mEmail,
3668 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
3669 'user_touched' => $dbw->timestamp( $newTouched ),
3670 'user_token' => strval( $this->mToken ),
3671 'user_email_token' => $this->mEmailToken,
3672 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires ),
3673 'user_password_expires' => $dbw->timestampOrNull( $this->mPasswordExpires ),
3674 ), array( /* WHERE */
3675 'user_id' => $this->mId,
3676 'user_touched' => $dbw->timestamp( $oldTouched ) // CAS check
3677 ), __METHOD__
3678 );
3679
3680 if ( !$dbw->affectedRows() ) {
3681 // Maybe the problem was a missed cache update; clear it to be safe
3682 $this->clearSharedCache();
3683 // User was changed in the meantime or loaded with stale data
3684 MWExceptionHandler::logException( new MWException(
3685 "CAS update failed on user_touched for user ID '{$this->mId}';" .
3686 "the version of the user to be saved is older than the current version."
3687 ) );
3688
3689 return;
3690 }
3691
3692 $this->mTouched = $newTouched;
3693 $this->saveOptions();
3694
3695 Hooks::run( 'UserSaveSettings', array( $this ) );
3696 $this->clearSharedCache();
3697 $this->getUserPage()->invalidateCache();
3698
3699 // T95839: clear the cache again post-commit to reduce race conditions
3700 // where stale values are written back to the cache by other threads.
3701 // Note: this *still* doesn't deal with REPEATABLE-READ snapshot lag...
3702 $that = $this;
3703 $dbw->onTransactionIdle( function() use ( $that ) {
3704 $that->clearSharedCache();
3705 } );
3706 }
3707
3708 /**
3709 * If only this user's username is known, and it exists, return the user ID.
3710 * @return int
3711 */
3712 public function idForName() {
3713 $s = trim( $this->getName() );
3714 if ( $s === '' ) {
3715 return 0;
3716 }
3717
3718 $dbr = wfGetDB( DB_SLAVE );
3719 $id = $dbr->selectField( 'user', 'user_id', array( 'user_name' => $s ), __METHOD__ );
3720 if ( $id === false ) {
3721 $id = 0;
3722 }
3723 return $id;
3724 }
3725
3726 /**
3727 * Add a user to the database, return the user object
3728 *
3729 * @param string $name Username to add
3730 * @param array $params Array of Strings Non-default parameters to save to
3731 * the database as user_* fields:
3732 * - password: The user's password hash. Password logins will be disabled
3733 * if this is omitted.
3734 * - newpassword: Hash for a temporary password that has been mailed to
3735 * the user.
3736 * - email: The user's email address.
3737 * - email_authenticated: The email authentication timestamp.
3738 * - real_name: The user's real name.
3739 * - options: An associative array of non-default options.
3740 * - token: Random authentication token. Do not set.
3741 * - registration: Registration timestamp. Do not set.
3742 *
3743 * @return User|null User object, or null if the username already exists.
3744 */
3745 public static function createNew( $name, $params = array() ) {
3746 $user = new User;
3747 $user->load();
3748 $user->loadPasswords();
3749 $user->setToken(); // init token
3750 if ( isset( $params['options'] ) ) {
3751 $user->mOptions = $params['options'] + (array)$user->mOptions;
3752 unset( $params['options'] );
3753 }
3754 $dbw = wfGetDB( DB_MASTER );
3755 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
3756
3757 $fields = array(
3758 'user_id' => $seqVal,
3759 'user_name' => $name,
3760 'user_password' => $user->mPassword->toString(),
3761 'user_newpassword' => $user->mNewpassword->toString(),
3762 'user_newpass_time' => $dbw->timestampOrNull( $user->mNewpassTime ),
3763 'user_email' => $user->mEmail,
3764 'user_email_authenticated' => $dbw->timestampOrNull( $user->mEmailAuthenticated ),
3765 'user_real_name' => $user->mRealName,
3766 'user_token' => strval( $user->mToken ),
3767 'user_registration' => $dbw->timestamp( $user->mRegistration ),
3768 'user_editcount' => 0,
3769 'user_touched' => $dbw->timestamp( $user->newTouchedTimestamp() ),
3770 );
3771 foreach ( $params as $name => $value ) {
3772 $fields["user_$name"] = $value;
3773 }
3774 $dbw->insert( 'user', $fields, __METHOD__, array( 'IGNORE' ) );
3775 if ( $dbw->affectedRows() ) {
3776 $newUser = User::newFromId( $dbw->insertId() );
3777 } else {
3778 $newUser = null;
3779 }
3780 return $newUser;
3781 }
3782
3783 /**
3784 * Add this existing user object to the database. If the user already
3785 * exists, a fatal status object is returned, and the user object is
3786 * initialised with the data from the database.
3787 *
3788 * Previously, this function generated a DB error due to a key conflict
3789 * if the user already existed. Many extension callers use this function
3790 * in code along the lines of:
3791 *
3792 * $user = User::newFromName( $name );
3793 * if ( !$user->isLoggedIn() ) {
3794 * $user->addToDatabase();
3795 * }
3796 * // do something with $user...
3797 *
3798 * However, this was vulnerable to a race condition (bug 16020). By
3799 * initialising the user object if the user exists, we aim to support this
3800 * calling sequence as far as possible.
3801 *
3802 * Note that if the user exists, this function will acquire a write lock,
3803 * so it is still advisable to make the call conditional on isLoggedIn(),
3804 * and to commit the transaction after calling.
3805 *
3806 * @throws MWException
3807 * @return Status
3808 */
3809 public function addToDatabase() {
3810 $this->load();
3811 $this->loadPasswords();
3812 if ( !$this->mToken ) {
3813 $this->setToken(); // init token
3814 }
3815
3816 $this->mTouched = $this->newTouchedTimestamp();
3817
3818 $dbw = wfGetDB( DB_MASTER );
3819 $inWrite = $dbw->writesOrCallbacksPending();
3820 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
3821 $dbw->insert( 'user',
3822 array(
3823 'user_id' => $seqVal,
3824 'user_name' => $this->mName,
3825 'user_password' => $this->mPassword->toString(),
3826 'user_newpassword' => $this->mNewpassword->toString(),
3827 'user_newpass_time' => $dbw->timestampOrNull( $this->mNewpassTime ),
3828 'user_email' => $this->mEmail,
3829 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
3830 'user_real_name' => $this->mRealName,
3831 'user_token' => strval( $this->mToken ),
3832 'user_registration' => $dbw->timestamp( $this->mRegistration ),
3833 'user_editcount' => 0,
3834 'user_touched' => $dbw->timestamp( $this->mTouched ),
3835 ), __METHOD__,
3836 array( 'IGNORE' )
3837 );
3838 if ( !$dbw->affectedRows() ) {
3839 // The queries below cannot happen in the same REPEATABLE-READ snapshot.
3840 // Handle this by COMMIT, if possible, or by LOCK IN SHARE MODE otherwise.
3841 if ( $inWrite ) {
3842 // Can't commit due to pending writes that may need atomicity.
3843 // This may cause some lock contention unlike the case below.
3844 $options = array( 'LOCK IN SHARE MODE' );
3845 $flags = self::READ_LOCKING;
3846 } else {
3847 // Often, this case happens early in views before any writes when
3848 // using CentralAuth. It's should be OK to commit and break the snapshot.
3849 $dbw->commit( __METHOD__, 'flush' );
3850 $options = array();
3851 $flags = self::READ_LATEST;
3852 }
3853 $this->mId = $dbw->selectField( 'user', 'user_id',
3854 array( 'user_name' => $this->mName ), __METHOD__, $options );
3855 $loaded = false;
3856 if ( $this->mId ) {
3857 if ( $this->loadFromDatabase( $flags ) ) {
3858 $loaded = true;
3859 }
3860 }
3861 if ( !$loaded ) {
3862 throw new MWException( __METHOD__ . ": hit a key conflict attempting " .
3863 "to insert user '{$this->mName}' row, but it was not present in select!" );
3864 }
3865 return Status::newFatal( 'userexists' );
3866 }
3867 $this->mId = $dbw->insertId();
3868
3869 // Clear instance cache other than user table data, which is already accurate
3870 $this->clearInstanceCache();
3871
3872 $this->saveOptions();
3873 return Status::newGood();
3874 }
3875
3876 /**
3877 * If this user is logged-in and blocked,
3878 * block any IP address they've successfully logged in from.
3879 * @return bool A block was spread
3880 */
3881 public function spreadAnyEditBlock() {
3882 if ( $this->isLoggedIn() && $this->isBlocked() ) {
3883 return $this->spreadBlock();
3884 }
3885 return false;
3886 }
3887
3888 /**
3889 * If this (non-anonymous) user is blocked,
3890 * block the IP address they've successfully logged in from.
3891 * @return bool A block was spread
3892 */
3893 protected function spreadBlock() {
3894 wfDebug( __METHOD__ . "()\n" );
3895 $this->load();
3896 if ( $this->mId == 0 ) {
3897 return false;
3898 }
3899
3900 $userblock = Block::newFromTarget( $this->getName() );
3901 if ( !$userblock ) {
3902 return false;
3903 }
3904
3905 return (bool)$userblock->doAutoblock( $this->getRequest()->getIP() );
3906 }
3907
3908 /**
3909 * Get whether the user is explicitly blocked from account creation.
3910 * @return bool|Block
3911 */
3912 public function isBlockedFromCreateAccount() {
3913 $this->getBlockedStatus();
3914 if ( $this->mBlock && $this->mBlock->prevents( 'createaccount' ) ) {
3915 return $this->mBlock;
3916 }
3917
3918 # bug 13611: if the IP address the user is trying to create an account from is
3919 # blocked with createaccount disabled, prevent new account creation there even
3920 # when the user is logged in
3921 if ( $this->mBlockedFromCreateAccount === false && !$this->isAllowed( 'ipblock-exempt' ) ) {
3922 $this->mBlockedFromCreateAccount = Block::newFromTarget( null, $this->getRequest()->getIP() );
3923 }
3924 return $this->mBlockedFromCreateAccount instanceof Block
3925 && $this->mBlockedFromCreateAccount->prevents( 'createaccount' )
3926 ? $this->mBlockedFromCreateAccount
3927 : false;
3928 }
3929
3930 /**
3931 * Get whether the user is blocked from using Special:Emailuser.
3932 * @return bool
3933 */
3934 public function isBlockedFromEmailuser() {
3935 $this->getBlockedStatus();
3936 return $this->mBlock && $this->mBlock->prevents( 'sendemail' );
3937 }
3938
3939 /**
3940 * Get whether the user is allowed to create an account.
3941 * @return bool
3942 */
3943 public function isAllowedToCreateAccount() {
3944 return $this->isAllowed( 'createaccount' ) && !$this->isBlockedFromCreateAccount();
3945 }
3946
3947 /**
3948 * Get this user's personal page title.
3949 *
3950 * @return Title User's personal page title
3951 */
3952 public function getUserPage() {
3953 return Title::makeTitle( NS_USER, $this->getName() );
3954 }
3955
3956 /**
3957 * Get this user's talk page title.
3958 *
3959 * @return Title User's talk page title
3960 */
3961 public function getTalkPage() {
3962 $title = $this->getUserPage();
3963 return $title->getTalkPage();
3964 }
3965
3966 /**
3967 * Determine whether the user is a newbie. Newbies are either
3968 * anonymous IPs, or the most recently created accounts.
3969 * @return bool
3970 */
3971 public function isNewbie() {
3972 return !$this->isAllowed( 'autoconfirmed' );
3973 }
3974
3975 /**
3976 * Check to see if the given clear-text password is one of the accepted passwords
3977 * @param string $password User password
3978 * @return bool True if the given password is correct, otherwise False
3979 */
3980 public function checkPassword( $password ) {
3981 global $wgAuth, $wgLegacyEncoding;
3982
3983 $this->loadPasswords();
3984
3985 // Some passwords will give a fatal Status, which means there is
3986 // some sort of technical or security reason for this password to
3987 // be completely invalid and should never be checked (e.g., T64685)
3988 if ( !$this->checkPasswordValidity( $password )->isOK() ) {
3989 return false;
3990 }
3991
3992 // Certain authentication plugins do NOT want to save
3993 // domain passwords in a mysql database, so we should
3994 // check this (in case $wgAuth->strict() is false).
3995 if ( $wgAuth->authenticate( $this->getName(), $password ) ) {
3996 return true;
3997 } elseif ( $wgAuth->strict() ) {
3998 // Auth plugin doesn't allow local authentication
3999 return false;
4000 } elseif ( $wgAuth->strictUserAuth( $this->getName() ) ) {
4001 // Auth plugin doesn't allow local authentication for this user name
4002 return false;
4003 }
4004
4005 if ( !$this->mPassword->equals( $password ) ) {
4006 if ( $wgLegacyEncoding ) {
4007 // Some wikis were converted from ISO 8859-1 to UTF-8, the passwords can't be converted
4008 // Check for this with iconv
4009 $cp1252Password = iconv( 'UTF-8', 'WINDOWS-1252//TRANSLIT', $password );
4010 if ( $cp1252Password === $password || !$this->mPassword->equals( $cp1252Password ) ) {
4011 return false;
4012 }
4013 } else {
4014 return false;
4015 }
4016 }
4017
4018 $passwordFactory = self::getPasswordFactory();
4019 if ( $passwordFactory->needsUpdate( $this->mPassword ) && !wfReadOnly() ) {
4020 $this->mPassword = $passwordFactory->newFromPlaintext( $password );
4021 $this->saveSettings();
4022 }
4023
4024 return true;
4025 }
4026
4027 /**
4028 * Check if the given clear-text password matches the temporary password
4029 * sent by e-mail for password reset operations.
4030 *
4031 * @param string $plaintext
4032 *
4033 * @return bool True if matches, false otherwise
4034 */
4035 public function checkTemporaryPassword( $plaintext ) {
4036 global $wgNewPasswordExpiry;
4037
4038 $this->load();
4039 $this->loadPasswords();
4040 if ( $this->mNewpassword->equals( $plaintext ) ) {
4041 if ( is_null( $this->mNewpassTime ) ) {
4042 return true;
4043 }
4044 $expiry = wfTimestamp( TS_UNIX, $this->mNewpassTime ) + $wgNewPasswordExpiry;
4045 return ( time() < $expiry );
4046 } else {
4047 return false;
4048 }
4049 }
4050
4051 /**
4052 * Alias for getEditToken.
4053 * @deprecated since 1.19, use getEditToken instead.
4054 *
4055 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4056 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4057 * @return string The new edit token
4058 */
4059 public function editToken( $salt = '', $request = null ) {
4060 wfDeprecated( __METHOD__, '1.19' );
4061 return $this->getEditToken( $salt, $request );
4062 }
4063
4064 /**
4065 * Internal implementation for self::getEditToken() and
4066 * self::matchEditToken().
4067 *
4068 * @param string|array $salt
4069 * @param WebRequest $request
4070 * @param string|int $timestamp
4071 * @return string
4072 */
4073 private function getEditTokenAtTimestamp( $salt, $request, $timestamp ) {
4074 if ( $this->isAnon() ) {
4075 return self::EDIT_TOKEN_SUFFIX;
4076 } else {
4077 $token = $request->getSessionData( 'wsEditToken' );
4078 if ( $token === null ) {
4079 $token = MWCryptRand::generateHex( 32 );
4080 $request->setSessionData( 'wsEditToken', $token );
4081 }
4082 if ( is_array( $salt ) ) {
4083 $salt = implode( '|', $salt );
4084 }
4085 return hash_hmac( 'md5', $timestamp . $salt, $token, false ) .
4086 dechex( $timestamp ) .
4087 self::EDIT_TOKEN_SUFFIX;
4088 }
4089 }
4090
4091 /**
4092 * Initialize (if necessary) and return a session token value
4093 * which can be used in edit forms to show that the user's
4094 * login credentials aren't being hijacked with a foreign form
4095 * submission.
4096 *
4097 * @since 1.19
4098 *
4099 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4100 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4101 * @return string The new edit token
4102 */
4103 public function getEditToken( $salt = '', $request = null ) {
4104 return $this->getEditTokenAtTimestamp(
4105 $salt, $request ?: $this->getRequest(), wfTimestamp()
4106 );
4107 }
4108
4109 /**
4110 * Generate a looking random token for various uses.
4111 *
4112 * @return string The new random token
4113 * @deprecated since 1.20: Use MWCryptRand for secure purposes or
4114 * wfRandomString for pseudo-randomness.
4115 */
4116 public static function generateToken() {
4117 return MWCryptRand::generateHex( 32 );
4118 }
4119
4120 /**
4121 * Get the embedded timestamp from a token.
4122 * @param string $val Input token
4123 * @return int|null
4124 */
4125 public static function getEditTokenTimestamp( $val ) {
4126 $suffixLen = strlen( self::EDIT_TOKEN_SUFFIX );
4127 if ( strlen( $val ) <= 32 + $suffixLen ) {
4128 return null;
4129 }
4130
4131 return hexdec( substr( $val, 32, -$suffixLen ) );
4132 }
4133
4134 /**
4135 * Check given value against the token value stored in the session.
4136 * A match should confirm that the form was submitted from the
4137 * user's own login session, not a form submission from a third-party
4138 * site.
4139 *
4140 * @param string $val Input value to compare
4141 * @param string $salt Optional function-specific data for hashing
4142 * @param WebRequest|null $request Object to use or null to use $wgRequest
4143 * @param int $maxage Fail tokens older than this, in seconds
4144 * @return bool Whether the token matches
4145 */
4146 public function matchEditToken( $val, $salt = '', $request = null, $maxage = null ) {
4147 if ( $this->isAnon() ) {
4148 return $val === self::EDIT_TOKEN_SUFFIX;
4149 }
4150
4151 $timestamp = self::getEditTokenTimestamp( $val );
4152 if ( $timestamp === null ) {
4153 return false;
4154 }
4155 if ( $maxage !== null && $timestamp < wfTimestamp() - $maxage ) {
4156 // Expired token
4157 return false;
4158 }
4159
4160 $sessionToken = $this->getEditTokenAtTimestamp(
4161 $salt, $request ?: $this->getRequest(), $timestamp
4162 );
4163
4164 if ( $val != $sessionToken ) {
4165 wfDebug( "User::matchEditToken: broken session data\n" );
4166 }
4167
4168 return hash_equals( $sessionToken, $val );
4169 }
4170
4171 /**
4172 * Check given value against the token value stored in the session,
4173 * ignoring the suffix.
4174 *
4175 * @param string $val Input value to compare
4176 * @param string $salt Optional function-specific data for hashing
4177 * @param WebRequest|null $request Object to use or null to use $wgRequest
4178 * @param int $maxage Fail tokens older than this, in seconds
4179 * @return bool Whether the token matches
4180 */
4181 public function matchEditTokenNoSuffix( $val, $salt = '', $request = null, $maxage = null ) {
4182 $val = substr( $val, 0, strspn( $val, '0123456789abcdef' ) ) . self::EDIT_TOKEN_SUFFIX;
4183 return $this->matchEditToken( $val, $salt, $request, $maxage );
4184 }
4185
4186 /**
4187 * Generate a new e-mail confirmation token and send a confirmation/invalidation
4188 * mail to the user's given address.
4189 *
4190 * @param string $type Message to send, either "created", "changed" or "set"
4191 * @return Status
4192 */
4193 public function sendConfirmationMail( $type = 'created' ) {
4194 global $wgLang;
4195 $expiration = null; // gets passed-by-ref and defined in next line.
4196 $token = $this->confirmationToken( $expiration );
4197 $url = $this->confirmationTokenUrl( $token );
4198 $invalidateURL = $this->invalidationTokenUrl( $token );
4199 $this->saveSettings();
4200
4201 if ( $type == 'created' || $type === false ) {
4202 $message = 'confirmemail_body';
4203 } elseif ( $type === true ) {
4204 $message = 'confirmemail_body_changed';
4205 } else {
4206 // Messages: confirmemail_body_changed, confirmemail_body_set
4207 $message = 'confirmemail_body_' . $type;
4208 }
4209
4210 return $this->sendMail( wfMessage( 'confirmemail_subject' )->text(),
4211 wfMessage( $message,
4212 $this->getRequest()->getIP(),
4213 $this->getName(),
4214 $url,
4215 $wgLang->timeanddate( $expiration, false ),
4216 $invalidateURL,
4217 $wgLang->date( $expiration, false ),
4218 $wgLang->time( $expiration, false ) )->text() );
4219 }
4220
4221 /**
4222 * Send an e-mail to this user's account. Does not check for
4223 * confirmed status or validity.
4224 *
4225 * @param string $subject Message subject
4226 * @param string $body Message body
4227 * @param string $from Optional From address; if unspecified, default
4228 * $wgPasswordSender will be used.
4229 * @param string $replyto Reply-To address
4230 * @return Status
4231 */
4232 public function sendMail( $subject, $body, $from = null, $replyto = null ) {
4233 if ( is_null( $from ) ) {
4234 global $wgPasswordSender;
4235 $sender = new MailAddress( $wgPasswordSender,
4236 wfMessage( 'emailsender' )->inContentLanguage()->text() );
4237 } else {
4238 $sender = MailAddress::newFromUser( $from );
4239 }
4240
4241 $to = MailAddress::newFromUser( $this );
4242 return UserMailer::send( $to, $sender, $subject, $body, $replyto );
4243 }
4244
4245 /**
4246 * Generate, store, and return a new e-mail confirmation code.
4247 * A hash (unsalted, since it's used as a key) is stored.
4248 *
4249 * @note Call saveSettings() after calling this function to commit
4250 * this change to the database.
4251 *
4252 * @param string &$expiration Accepts the expiration time
4253 * @return string New token
4254 */
4255 protected function confirmationToken( &$expiration ) {
4256 global $wgUserEmailConfirmationTokenExpiry;
4257 $now = time();
4258 $expires = $now + $wgUserEmailConfirmationTokenExpiry;
4259 $expiration = wfTimestamp( TS_MW, $expires );
4260 $this->load();
4261 $token = MWCryptRand::generateHex( 32 );
4262 $hash = md5( $token );
4263 $this->mEmailToken = $hash;
4264 $this->mEmailTokenExpires = $expiration;
4265 return $token;
4266 }
4267
4268 /**
4269 * Return a URL the user can use to confirm their email address.
4270 * @param string $token Accepts the email confirmation token
4271 * @return string New token URL
4272 */
4273 protected function confirmationTokenUrl( $token ) {
4274 return $this->getTokenUrl( 'ConfirmEmail', $token );
4275 }
4276
4277 /**
4278 * Return a URL the user can use to invalidate their email address.
4279 * @param string $token Accepts the email confirmation token
4280 * @return string New token URL
4281 */
4282 protected function invalidationTokenUrl( $token ) {
4283 return $this->getTokenUrl( 'InvalidateEmail', $token );
4284 }
4285
4286 /**
4287 * Internal function to format the e-mail validation/invalidation URLs.
4288 * This uses a quickie hack to use the
4289 * hardcoded English names of the Special: pages, for ASCII safety.
4290 *
4291 * @note Since these URLs get dropped directly into emails, using the
4292 * short English names avoids insanely long URL-encoded links, which
4293 * also sometimes can get corrupted in some browsers/mailers
4294 * (bug 6957 with Gmail and Internet Explorer).
4295 *
4296 * @param string $page Special page
4297 * @param string $token Token
4298 * @return string Formatted URL
4299 */
4300 protected function getTokenUrl( $page, $token ) {
4301 // Hack to bypass localization of 'Special:'
4302 $title = Title::makeTitle( NS_MAIN, "Special:$page/$token" );
4303 return $title->getCanonicalURL();
4304 }
4305
4306 /**
4307 * Mark the e-mail address confirmed.
4308 *
4309 * @note Call saveSettings() after calling this function to commit the change.
4310 *
4311 * @return bool
4312 */
4313 public function confirmEmail() {
4314 // Check if it's already confirmed, so we don't touch the database
4315 // and fire the ConfirmEmailComplete hook on redundant confirmations.
4316 if ( !$this->isEmailConfirmed() ) {
4317 $this->setEmailAuthenticationTimestamp( wfTimestampNow() );
4318 Hooks::run( 'ConfirmEmailComplete', array( $this ) );
4319 }
4320 return true;
4321 }
4322
4323 /**
4324 * Invalidate the user's e-mail confirmation, and unauthenticate the e-mail
4325 * address if it was already confirmed.
4326 *
4327 * @note Call saveSettings() after calling this function to commit the change.
4328 * @return bool Returns true
4329 */
4330 public function invalidateEmail() {
4331 $this->load();
4332 $this->mEmailToken = null;
4333 $this->mEmailTokenExpires = null;
4334 $this->setEmailAuthenticationTimestamp( null );
4335 $this->mEmail = '';
4336 Hooks::run( 'InvalidateEmailComplete', array( $this ) );
4337 return true;
4338 }
4339
4340 /**
4341 * Set the e-mail authentication timestamp.
4342 * @param string $timestamp TS_MW timestamp
4343 */
4344 public function setEmailAuthenticationTimestamp( $timestamp ) {
4345 $this->load();
4346 $this->mEmailAuthenticated = $timestamp;
4347 Hooks::run( 'UserSetEmailAuthenticationTimestamp', array( $this, &$this->mEmailAuthenticated ) );
4348 }
4349
4350 /**
4351 * Is this user allowed to send e-mails within limits of current
4352 * site configuration?
4353 * @return bool
4354 */
4355 public function canSendEmail() {
4356 global $wgEnableEmail, $wgEnableUserEmail;
4357 if ( !$wgEnableEmail || !$wgEnableUserEmail || !$this->isAllowed( 'sendemail' ) ) {
4358 return false;
4359 }
4360 $canSend = $this->isEmailConfirmed();
4361 Hooks::run( 'UserCanSendEmail', array( &$this, &$canSend ) );
4362 return $canSend;
4363 }
4364
4365 /**
4366 * Is this user allowed to receive e-mails within limits of current
4367 * site configuration?
4368 * @return bool
4369 */
4370 public function canReceiveEmail() {
4371 return $this->isEmailConfirmed() && !$this->getOption( 'disablemail' );
4372 }
4373
4374 /**
4375 * Is this user's e-mail address valid-looking and confirmed within
4376 * limits of the current site configuration?
4377 *
4378 * @note If $wgEmailAuthentication is on, this may require the user to have
4379 * confirmed their address by returning a code or using a password
4380 * sent to the address from the wiki.
4381 *
4382 * @return bool
4383 */
4384 public function isEmailConfirmed() {
4385 global $wgEmailAuthentication;
4386 $this->load();
4387 $confirmed = true;
4388 if ( Hooks::run( 'EmailConfirmed', array( &$this, &$confirmed ) ) ) {
4389 if ( $this->isAnon() ) {
4390 return false;
4391 }
4392 if ( !Sanitizer::validateEmail( $this->mEmail ) ) {
4393 return false;
4394 }
4395 if ( $wgEmailAuthentication && !$this->getEmailAuthenticationTimestamp() ) {
4396 return false;
4397 }
4398 return true;
4399 } else {
4400 return $confirmed;
4401 }
4402 }
4403
4404 /**
4405 * Check whether there is an outstanding request for e-mail confirmation.
4406 * @return bool
4407 */
4408 public function isEmailConfirmationPending() {
4409 global $wgEmailAuthentication;
4410 return $wgEmailAuthentication &&
4411 !$this->isEmailConfirmed() &&
4412 $this->mEmailToken &&
4413 $this->mEmailTokenExpires > wfTimestamp();
4414 }
4415
4416 /**
4417 * Get the timestamp of account creation.
4418 *
4419 * @return string|bool|null Timestamp of account creation, false for
4420 * non-existent/anonymous user accounts, or null if existing account
4421 * but information is not in database.
4422 */
4423 public function getRegistration() {
4424 if ( $this->isAnon() ) {
4425 return false;
4426 }
4427 $this->load();
4428 return $this->mRegistration;
4429 }
4430
4431 /**
4432 * Get the timestamp of the first edit
4433 *
4434 * @return string|bool Timestamp of first edit, or false for
4435 * non-existent/anonymous user accounts.
4436 */
4437 public function getFirstEditTimestamp() {
4438 if ( $this->getId() == 0 ) {
4439 return false; // anons
4440 }
4441 $dbr = wfGetDB( DB_SLAVE );
4442 $time = $dbr->selectField( 'revision', 'rev_timestamp',
4443 array( 'rev_user' => $this->getId() ),
4444 __METHOD__,
4445 array( 'ORDER BY' => 'rev_timestamp ASC' )
4446 );
4447 if ( !$time ) {
4448 return false; // no edits
4449 }
4450 return wfTimestamp( TS_MW, $time );
4451 }
4452
4453 /**
4454 * Get the permissions associated with a given list of groups
4455 *
4456 * @param array $groups Array of Strings List of internal group names
4457 * @return array Array of Strings List of permission key names for given groups combined
4458 */
4459 public static function getGroupPermissions( $groups ) {
4460 global $wgGroupPermissions, $wgRevokePermissions;
4461 $rights = array();
4462 // grant every granted permission first
4463 foreach ( $groups as $group ) {
4464 if ( isset( $wgGroupPermissions[$group] ) ) {
4465 $rights = array_merge( $rights,
4466 // array_filter removes empty items
4467 array_keys( array_filter( $wgGroupPermissions[$group] ) ) );
4468 }
4469 }
4470 // now revoke the revoked permissions
4471 foreach ( $groups as $group ) {
4472 if ( isset( $wgRevokePermissions[$group] ) ) {
4473 $rights = array_diff( $rights,
4474 array_keys( array_filter( $wgRevokePermissions[$group] ) ) );
4475 }
4476 }
4477 return array_unique( $rights );
4478 }
4479
4480 /**
4481 * Get all the groups who have a given permission
4482 *
4483 * @param string $role Role to check
4484 * @return array Array of Strings List of internal group names with the given permission
4485 */
4486 public static function getGroupsWithPermission( $role ) {
4487 global $wgGroupPermissions;
4488 $allowedGroups = array();
4489 foreach ( array_keys( $wgGroupPermissions ) as $group ) {
4490 if ( self::groupHasPermission( $group, $role ) ) {
4491 $allowedGroups[] = $group;
4492 }
4493 }
4494 return $allowedGroups;
4495 }
4496
4497 /**
4498 * Check, if the given group has the given permission
4499 *
4500 * If you're wanting to check whether all users have a permission, use
4501 * User::isEveryoneAllowed() instead. That properly checks if it's revoked
4502 * from anyone.
4503 *
4504 * @since 1.21
4505 * @param string $group Group to check
4506 * @param string $role Role to check
4507 * @return bool
4508 */
4509 public static function groupHasPermission( $group, $role ) {
4510 global $wgGroupPermissions, $wgRevokePermissions;
4511 return isset( $wgGroupPermissions[$group][$role] ) && $wgGroupPermissions[$group][$role]
4512 && !( isset( $wgRevokePermissions[$group][$role] ) && $wgRevokePermissions[$group][$role] );
4513 }
4514
4515 /**
4516 * Check if all users have the given permission
4517 *
4518 * @since 1.22
4519 * @param string $right Right to check
4520 * @return bool
4521 */
4522 public static function isEveryoneAllowed( $right ) {
4523 global $wgGroupPermissions, $wgRevokePermissions;
4524 static $cache = array();
4525
4526 // Use the cached results, except in unit tests which rely on
4527 // being able change the permission mid-request
4528 if ( isset( $cache[$right] ) && !defined( 'MW_PHPUNIT_TEST' ) ) {
4529 return $cache[$right];
4530 }
4531
4532 if ( !isset( $wgGroupPermissions['*'][$right] ) || !$wgGroupPermissions['*'][$right] ) {
4533 $cache[$right] = false;
4534 return false;
4535 }
4536
4537 // If it's revoked anywhere, then everyone doesn't have it
4538 foreach ( $wgRevokePermissions as $rights ) {
4539 if ( isset( $rights[$right] ) && $rights[$right] ) {
4540 $cache[$right] = false;
4541 return false;
4542 }
4543 }
4544
4545 // Allow extensions (e.g. OAuth) to say false
4546 if ( !Hooks::run( 'UserIsEveryoneAllowed', array( $right ) ) ) {
4547 $cache[$right] = false;
4548 return false;
4549 }
4550
4551 $cache[$right] = true;
4552 return true;
4553 }
4554
4555 /**
4556 * Get the localized descriptive name for a group, if it exists
4557 *
4558 * @param string $group Internal group name
4559 * @return string Localized descriptive group name
4560 */
4561 public static function getGroupName( $group ) {
4562 $msg = wfMessage( "group-$group" );
4563 return $msg->isBlank() ? $group : $msg->text();
4564 }
4565
4566 /**
4567 * Get the localized descriptive name for a member of a group, if it exists
4568 *
4569 * @param string $group Internal group name
4570 * @param string $username Username for gender (since 1.19)
4571 * @return string Localized name for group member
4572 */
4573 public static function getGroupMember( $group, $username = '#' ) {
4574 $msg = wfMessage( "group-$group-member", $username );
4575 return $msg->isBlank() ? $group : $msg->text();
4576 }
4577
4578 /**
4579 * Return the set of defined explicit groups.
4580 * The implicit groups (by default *, 'user' and 'autoconfirmed')
4581 * are not included, as they are defined automatically, not in the database.
4582 * @return array Array of internal group names
4583 */
4584 public static function getAllGroups() {
4585 global $wgGroupPermissions, $wgRevokePermissions;
4586 return array_diff(
4587 array_merge( array_keys( $wgGroupPermissions ), array_keys( $wgRevokePermissions ) ),
4588 self::getImplicitGroups()
4589 );
4590 }
4591
4592 /**
4593 * Get a list of all available permissions.
4594 * @return string[] Array of permission names
4595 */
4596 public static function getAllRights() {
4597 if ( self::$mAllRights === false ) {
4598 global $wgAvailableRights;
4599 if ( count( $wgAvailableRights ) ) {
4600 self::$mAllRights = array_unique( array_merge( self::$mCoreRights, $wgAvailableRights ) );
4601 } else {
4602 self::$mAllRights = self::$mCoreRights;
4603 }
4604 Hooks::run( 'UserGetAllRights', array( &self::$mAllRights ) );
4605 }
4606 return self::$mAllRights;
4607 }
4608
4609 /**
4610 * Get a list of implicit groups
4611 * @return array Array of Strings Array of internal group names
4612 */
4613 public static function getImplicitGroups() {
4614 global $wgImplicitGroups;
4615
4616 $groups = $wgImplicitGroups;
4617 # Deprecated, use $wgImplicitGroups instead
4618 Hooks::run( 'UserGetImplicitGroups', array( &$groups ), '1.25' );
4619
4620 return $groups;
4621 }
4622
4623 /**
4624 * Get the title of a page describing a particular group
4625 *
4626 * @param string $group Internal group name
4627 * @return Title|bool Title of the page if it exists, false otherwise
4628 */
4629 public static function getGroupPage( $group ) {
4630 $msg = wfMessage( 'grouppage-' . $group )->inContentLanguage();
4631 if ( $msg->exists() ) {
4632 $title = Title::newFromText( $msg->text() );
4633 if ( is_object( $title ) ) {
4634 return $title;
4635 }
4636 }
4637 return false;
4638 }
4639
4640 /**
4641 * Create a link to the group in HTML, if available;
4642 * else return the group name.
4643 *
4644 * @param string $group Internal name of the group
4645 * @param string $text The text of the link
4646 * @return string HTML link to the group
4647 */
4648 public static function makeGroupLinkHTML( $group, $text = '' ) {
4649 if ( $text == '' ) {
4650 $text = self::getGroupName( $group );
4651 }
4652 $title = self::getGroupPage( $group );
4653 if ( $title ) {
4654 return Linker::link( $title, htmlspecialchars( $text ) );
4655 } else {
4656 return htmlspecialchars( $text );
4657 }
4658 }
4659
4660 /**
4661 * Create a link to the group in Wikitext, if available;
4662 * else return the group name.
4663 *
4664 * @param string $group Internal name of the group
4665 * @param string $text The text of the link
4666 * @return string Wikilink to the group
4667 */
4668 public static function makeGroupLinkWiki( $group, $text = '' ) {
4669 if ( $text == '' ) {
4670 $text = self::getGroupName( $group );
4671 }
4672 $title = self::getGroupPage( $group );
4673 if ( $title ) {
4674 $page = $title->getFullText();
4675 return "[[$page|$text]]";
4676 } else {
4677 return $text;
4678 }
4679 }
4680
4681 /**
4682 * Returns an array of the groups that a particular group can add/remove.
4683 *
4684 * @param string $group The group to check for whether it can add/remove
4685 * @return array Array( 'add' => array( addablegroups ),
4686 * 'remove' => array( removablegroups ),
4687 * 'add-self' => array( addablegroups to self),
4688 * 'remove-self' => array( removable groups from self) )
4689 */
4690 public static function changeableByGroup( $group ) {
4691 global $wgAddGroups, $wgRemoveGroups, $wgGroupsAddToSelf, $wgGroupsRemoveFromSelf;
4692
4693 $groups = array(
4694 'add' => array(),
4695 'remove' => array(),
4696 'add-self' => array(),
4697 'remove-self' => array()
4698 );
4699
4700 if ( empty( $wgAddGroups[$group] ) ) {
4701 // Don't add anything to $groups
4702 } elseif ( $wgAddGroups[$group] === true ) {
4703 // You get everything
4704 $groups['add'] = self::getAllGroups();
4705 } elseif ( is_array( $wgAddGroups[$group] ) ) {
4706 $groups['add'] = $wgAddGroups[$group];
4707 }
4708
4709 // Same thing for remove
4710 if ( empty( $wgRemoveGroups[$group] ) ) {
4711 // Do nothing
4712 } elseif ( $wgRemoveGroups[$group] === true ) {
4713 $groups['remove'] = self::getAllGroups();
4714 } elseif ( is_array( $wgRemoveGroups[$group] ) ) {
4715 $groups['remove'] = $wgRemoveGroups[$group];
4716 }
4717
4718 // Re-map numeric keys of AddToSelf/RemoveFromSelf to the 'user' key for backwards compatibility
4719 if ( empty( $wgGroupsAddToSelf['user'] ) || $wgGroupsAddToSelf['user'] !== true ) {
4720 foreach ( $wgGroupsAddToSelf as $key => $value ) {
4721 if ( is_int( $key ) ) {
4722 $wgGroupsAddToSelf['user'][] = $value;
4723 }
4724 }
4725 }
4726
4727 if ( empty( $wgGroupsRemoveFromSelf['user'] ) || $wgGroupsRemoveFromSelf['user'] !== true ) {
4728 foreach ( $wgGroupsRemoveFromSelf as $key => $value ) {
4729 if ( is_int( $key ) ) {
4730 $wgGroupsRemoveFromSelf['user'][] = $value;
4731 }
4732 }
4733 }
4734
4735 // Now figure out what groups the user can add to him/herself
4736 if ( empty( $wgGroupsAddToSelf[$group] ) ) {
4737 // Do nothing
4738 } elseif ( $wgGroupsAddToSelf[$group] === true ) {
4739 // No idea WHY this would be used, but it's there
4740 $groups['add-self'] = User::getAllGroups();
4741 } elseif ( is_array( $wgGroupsAddToSelf[$group] ) ) {
4742 $groups['add-self'] = $wgGroupsAddToSelf[$group];
4743 }
4744
4745 if ( empty( $wgGroupsRemoveFromSelf[$group] ) ) {
4746 // Do nothing
4747 } elseif ( $wgGroupsRemoveFromSelf[$group] === true ) {
4748 $groups['remove-self'] = User::getAllGroups();
4749 } elseif ( is_array( $wgGroupsRemoveFromSelf[$group] ) ) {
4750 $groups['remove-self'] = $wgGroupsRemoveFromSelf[$group];
4751 }
4752
4753 return $groups;
4754 }
4755
4756 /**
4757 * Returns an array of groups that this user can add and remove
4758 * @return array Array( 'add' => array( addablegroups ),
4759 * 'remove' => array( removablegroups ),
4760 * 'add-self' => array( addablegroups to self),
4761 * 'remove-self' => array( removable groups from self) )
4762 */
4763 public function changeableGroups() {
4764 if ( $this->isAllowed( 'userrights' ) ) {
4765 // This group gives the right to modify everything (reverse-
4766 // compatibility with old "userrights lets you change
4767 // everything")
4768 // Using array_merge to make the groups reindexed
4769 $all = array_merge( User::getAllGroups() );
4770 return array(
4771 'add' => $all,
4772 'remove' => $all,
4773 'add-self' => array(),
4774 'remove-self' => array()
4775 );
4776 }
4777
4778 // Okay, it's not so simple, we will have to go through the arrays
4779 $groups = array(
4780 'add' => array(),
4781 'remove' => array(),
4782 'add-self' => array(),
4783 'remove-self' => array()
4784 );
4785 $addergroups = $this->getEffectiveGroups();
4786
4787 foreach ( $addergroups as $addergroup ) {
4788 $groups = array_merge_recursive(
4789 $groups, $this->changeableByGroup( $addergroup )
4790 );
4791 $groups['add'] = array_unique( $groups['add'] );
4792 $groups['remove'] = array_unique( $groups['remove'] );
4793 $groups['add-self'] = array_unique( $groups['add-self'] );
4794 $groups['remove-self'] = array_unique( $groups['remove-self'] );
4795 }
4796 return $groups;
4797 }
4798
4799 /**
4800 * Deferred version of incEditCountImmediate()
4801 */
4802 public function incEditCount() {
4803 $that = $this;
4804 wfGetDB( DB_MASTER )->onTransactionPreCommitOrIdle( function() use ( $that ) {
4805 $that->incEditCountImmediate();
4806 } );
4807 }
4808
4809 /**
4810 * Increment the user's edit-count field.
4811 * Will have no effect for anonymous users.
4812 * @since 1.26
4813 */
4814 public function incEditCountImmediate() {
4815 if ( $this->isAnon() ) {
4816 return;
4817 }
4818
4819 $dbw = wfGetDB( DB_MASTER );
4820 // No rows will be "affected" if user_editcount is NULL
4821 $dbw->update(
4822 'user',
4823 array( 'user_editcount=user_editcount+1' ),
4824 array( 'user_id' => $this->getId() ),
4825 __METHOD__
4826 );
4827 // Lazy initialization check...
4828 if ( $dbw->affectedRows() == 0 ) {
4829 // Now here's a goddamn hack...
4830 $dbr = wfGetDB( DB_SLAVE );
4831 if ( $dbr !== $dbw ) {
4832 // If we actually have a slave server, the count is
4833 // at least one behind because the current transaction
4834 // has not been committed and replicated.
4835 $this->initEditCount( 1 );
4836 } else {
4837 // But if DB_SLAVE is selecting the master, then the
4838 // count we just read includes the revision that was
4839 // just added in the working transaction.
4840 $this->initEditCount();
4841 }
4842 }
4843 // Edit count in user cache too
4844 $this->invalidateCache();
4845 }
4846
4847 /**
4848 * Initialize user_editcount from data out of the revision table
4849 *
4850 * @param int $add Edits to add to the count from the revision table
4851 * @return int Number of edits
4852 */
4853 protected function initEditCount( $add = 0 ) {
4854 // Pull from a slave to be less cruel to servers
4855 // Accuracy isn't the point anyway here
4856 $dbr = wfGetDB( DB_SLAVE );
4857 $count = (int)$dbr->selectField(
4858 'revision',
4859 'COUNT(rev_user)',
4860 array( 'rev_user' => $this->getId() ),
4861 __METHOD__
4862 );
4863 $count = $count + $add;
4864
4865 $dbw = wfGetDB( DB_MASTER );
4866 $dbw->update(
4867 'user',
4868 array( 'user_editcount' => $count ),
4869 array( 'user_id' => $this->getId() ),
4870 __METHOD__
4871 );
4872
4873 return $count;
4874 }
4875
4876 /**
4877 * Get the description of a given right
4878 *
4879 * @param string $right Right to query
4880 * @return string Localized description of the right
4881 */
4882 public static function getRightDescription( $right ) {
4883 $key = "right-$right";
4884 $msg = wfMessage( $key );
4885 return $msg->isBlank() ? $right : $msg->text();
4886 }
4887
4888 /**
4889 * Make a new-style password hash
4890 *
4891 * @param string $password Plain-text password
4892 * @param bool|string $salt Optional salt, may be random or the user ID.
4893 * If unspecified or false, will generate one automatically
4894 * @return string Password hash
4895 * @deprecated since 1.24, use Password class
4896 */
4897 public static function crypt( $password, $salt = false ) {
4898 wfDeprecated( __METHOD__, '1.24' );
4899 $hash = self::getPasswordFactory()->newFromPlaintext( $password );
4900 return $hash->toString();
4901 }
4902
4903 /**
4904 * Compare a password hash with a plain-text password. Requires the user
4905 * ID if there's a chance that the hash is an old-style hash.
4906 *
4907 * @param string $hash Password hash
4908 * @param string $password Plain-text password to compare
4909 * @param string|bool $userId User ID for old-style password salt
4910 *
4911 * @return bool
4912 * @deprecated since 1.24, use Password class
4913 */
4914 public static function comparePasswords( $hash, $password, $userId = false ) {
4915 wfDeprecated( __METHOD__, '1.24' );
4916
4917 // Check for *really* old password hashes that don't even have a type
4918 // The old hash format was just an md5 hex hash, with no type information
4919 if ( preg_match( '/^[0-9a-f]{32}$/', $hash ) ) {
4920 global $wgPasswordSalt;
4921 if ( $wgPasswordSalt ) {
4922 $password = ":B:{$userId}:{$hash}";
4923 } else {
4924 $password = ":A:{$hash}";
4925 }
4926 }
4927
4928 $hash = self::getPasswordFactory()->newFromCiphertext( $hash );
4929 return $hash->equals( $password );
4930 }
4931
4932 /**
4933 * Add a newuser log entry for this user.
4934 * Before 1.19 the return value was always true.
4935 *
4936 * @param string|bool $action Account creation type.
4937 * - String, one of the following values:
4938 * - 'create' for an anonymous user creating an account for himself.
4939 * This will force the action's performer to be the created user itself,
4940 * no matter the value of $wgUser
4941 * - 'create2' for a logged in user creating an account for someone else
4942 * - 'byemail' when the created user will receive its password by e-mail
4943 * - 'autocreate' when the user is automatically created (such as by CentralAuth).
4944 * - Boolean means whether the account was created by e-mail (deprecated):
4945 * - true will be converted to 'byemail'
4946 * - false will be converted to 'create' if this object is the same as
4947 * $wgUser and to 'create2' otherwise
4948 *
4949 * @param string $reason User supplied reason
4950 *
4951 * @return int|bool True if not $wgNewUserLog; otherwise ID of log item or 0 on failure
4952 */
4953 public function addNewUserLogEntry( $action = false, $reason = '' ) {
4954 global $wgUser, $wgNewUserLog;
4955 if ( empty( $wgNewUserLog ) ) {
4956 return true; // disabled
4957 }
4958
4959 if ( $action === true ) {
4960 $action = 'byemail';
4961 } elseif ( $action === false ) {
4962 if ( $this->equals( $wgUser ) ) {
4963 $action = 'create';
4964 } else {
4965 $action = 'create2';
4966 }
4967 }
4968
4969 if ( $action === 'create' || $action === 'autocreate' ) {
4970 $performer = $this;
4971 } else {
4972 $performer = $wgUser;
4973 }
4974
4975 $logEntry = new ManualLogEntry( 'newusers', $action );
4976 $logEntry->setPerformer( $performer );
4977 $logEntry->setTarget( $this->getUserPage() );
4978 $logEntry->setComment( $reason );
4979 $logEntry->setParameters( array(
4980 '4::userid' => $this->getId(),
4981 ) );
4982 $logid = $logEntry->insert();
4983
4984 if ( $action !== 'autocreate' ) {
4985 $logEntry->publish( $logid );
4986 }
4987
4988 return (int)$logid;
4989 }
4990
4991 /**
4992 * Add an autocreate newuser log entry for this user
4993 * Used by things like CentralAuth and perhaps other authplugins.
4994 * Consider calling addNewUserLogEntry() directly instead.
4995 *
4996 * @return bool
4997 */
4998 public function addNewUserLogEntryAutoCreate() {
4999 $this->addNewUserLogEntry( 'autocreate' );
5000
5001 return true;
5002 }
5003
5004 /**
5005 * Load the user options either from cache, the database or an array
5006 *
5007 * @param array $data Rows for the current user out of the user_properties table
5008 */
5009 protected function loadOptions( $data = null ) {
5010 global $wgContLang;
5011
5012 $this->load();
5013
5014 if ( $this->mOptionsLoaded ) {
5015 return;
5016 }
5017
5018 $this->mOptions = self::getDefaultOptions();
5019
5020 if ( !$this->getId() ) {
5021 // For unlogged-in users, load language/variant options from request.
5022 // There's no need to do it for logged-in users: they can set preferences,
5023 // and handling of page content is done by $pageLang->getPreferredVariant() and such,
5024 // so don't override user's choice (especially when the user chooses site default).
5025 $variant = $wgContLang->getDefaultVariant();
5026 $this->mOptions['variant'] = $variant;
5027 $this->mOptions['language'] = $variant;
5028 $this->mOptionsLoaded = true;
5029 return;
5030 }
5031
5032 // Maybe load from the object
5033 if ( !is_null( $this->mOptionOverrides ) ) {
5034 wfDebug( "User: loading options for user " . $this->getId() . " from override cache.\n" );
5035 foreach ( $this->mOptionOverrides as $key => $value ) {
5036 $this->mOptions[$key] = $value;
5037 }
5038 } else {
5039 if ( !is_array( $data ) ) {
5040 wfDebug( "User: loading options for user " . $this->getId() . " from database.\n" );
5041 // Load from database
5042 $dbr = ( $this->queryFlagsUsed & self::READ_LATEST )
5043 ? wfGetDB( DB_MASTER )
5044 : wfGetDB( DB_SLAVE );
5045
5046 $res = $dbr->select(
5047 'user_properties',
5048 array( 'up_property', 'up_value' ),
5049 array( 'up_user' => $this->getId() ),
5050 __METHOD__
5051 );
5052
5053 $this->mOptionOverrides = array();
5054 $data = array();
5055 foreach ( $res as $row ) {
5056 $data[$row->up_property] = $row->up_value;
5057 }
5058 }
5059 foreach ( $data as $property => $value ) {
5060 $this->mOptionOverrides[$property] = $value;
5061 $this->mOptions[$property] = $value;
5062 }
5063 }
5064
5065 $this->mOptionsLoaded = true;
5066
5067 Hooks::run( 'UserLoadOptions', array( $this, &$this->mOptions ) );
5068 }
5069
5070 /**
5071 * Saves the non-default options for this user, as previously set e.g. via
5072 * setOption(), in the database's "user_properties" (preferences) table.
5073 * Usually used via saveSettings().
5074 */
5075 protected function saveOptions() {
5076 $this->loadOptions();
5077
5078 // Not using getOptions(), to keep hidden preferences in database
5079 $saveOptions = $this->mOptions;
5080
5081 // Allow hooks to abort, for instance to save to a global profile.
5082 // Reset options to default state before saving.
5083 if ( !Hooks::run( 'UserSaveOptions', array( $this, &$saveOptions ) ) ) {
5084 return;
5085 }
5086
5087 $userId = $this->getId();
5088
5089 $insert_rows = array(); // all the new preference rows
5090 foreach ( $saveOptions as $key => $value ) {
5091 // Don't bother storing default values
5092 $defaultOption = self::getDefaultOption( $key );
5093 if ( ( $defaultOption === null && $value !== false && $value !== null )
5094 || $value != $defaultOption
5095 ) {
5096 $insert_rows[] = array(
5097 'up_user' => $userId,
5098 'up_property' => $key,
5099 'up_value' => $value,
5100 );
5101 }
5102 }
5103
5104 $dbw = wfGetDB( DB_MASTER );
5105
5106 $res = $dbw->select( 'user_properties',
5107 array( 'up_property', 'up_value' ), array( 'up_user' => $userId ), __METHOD__ );
5108
5109 // Find prior rows that need to be removed or updated. These rows will
5110 // all be deleted (the later so that INSERT IGNORE applies the new values).
5111 $keysDelete = array();
5112 foreach ( $res as $row ) {
5113 if ( !isset( $saveOptions[$row->up_property] )
5114 || strcmp( $saveOptions[$row->up_property], $row->up_value ) != 0
5115 ) {
5116 $keysDelete[] = $row->up_property;
5117 }
5118 }
5119
5120 if ( count( $keysDelete ) ) {
5121 // Do the DELETE by PRIMARY KEY for prior rows.
5122 // In the past a very large portion of calls to this function are for setting
5123 // 'rememberpassword' for new accounts (a preference that has since been removed).
5124 // Doing a blanket per-user DELETE for new accounts with no rows in the table
5125 // caused gap locks on [max user ID,+infinity) which caused high contention since
5126 // updates would pile up on each other as they are for higher (newer) user IDs.
5127 // It might not be necessary these days, but it shouldn't hurt either.
5128 $dbw->delete( 'user_properties',
5129 array( 'up_user' => $userId, 'up_property' => $keysDelete ), __METHOD__ );
5130 }
5131 // Insert the new preference rows
5132 $dbw->insert( 'user_properties', $insert_rows, __METHOD__, array( 'IGNORE' ) );
5133 }
5134
5135 /**
5136 * Lazily instantiate and return a factory object for making passwords
5137 *
5138 * @return PasswordFactory
5139 */
5140 public static function getPasswordFactory() {
5141 if ( self::$mPasswordFactory === null ) {
5142 self::$mPasswordFactory = new PasswordFactory();
5143 self::$mPasswordFactory->init( RequestContext::getMain()->getConfig() );
5144 }
5145
5146 return self::$mPasswordFactory;
5147 }
5148
5149 /**
5150 * Provide an array of HTML5 attributes to put on an input element
5151 * intended for the user to enter a new password. This may include
5152 * required, title, and/or pattern, depending on $wgMinimalPasswordLength.
5153 *
5154 * Do *not* use this when asking the user to enter his current password!
5155 * Regardless of configuration, users may have invalid passwords for whatever
5156 * reason (e.g., they were set before requirements were tightened up).
5157 * Only use it when asking for a new password, like on account creation or
5158 * ResetPass.
5159 *
5160 * Obviously, you still need to do server-side checking.
5161 *
5162 * NOTE: A combination of bugs in various browsers means that this function
5163 * actually just returns array() unconditionally at the moment. May as
5164 * well keep it around for when the browser bugs get fixed, though.
5165 *
5166 * @todo FIXME: This does not belong here; put it in Html or Linker or somewhere
5167 *
5168 * @return array Array of HTML attributes suitable for feeding to
5169 * Html::element(), directly or indirectly. (Don't feed to Xml::*()!
5170 * That will get confused by the boolean attribute syntax used.)
5171 */
5172 public static function passwordChangeInputAttribs() {
5173 global $wgMinimalPasswordLength;
5174
5175 if ( $wgMinimalPasswordLength == 0 ) {
5176 return array();
5177 }
5178
5179 # Note that the pattern requirement will always be satisfied if the
5180 # input is empty, so we need required in all cases.
5181 #
5182 # @todo FIXME: Bug 23769: This needs to not claim the password is required
5183 # if e-mail confirmation is being used. Since HTML5 input validation
5184 # is b0rked anyway in some browsers, just return nothing. When it's
5185 # re-enabled, fix this code to not output required for e-mail
5186 # registration.
5187 #$ret = array( 'required' );
5188 $ret = array();
5189
5190 # We can't actually do this right now, because Opera 9.6 will print out
5191 # the entered password visibly in its error message! When other
5192 # browsers add support for this attribute, or Opera fixes its support,
5193 # we can add support with a version check to avoid doing this on Opera
5194 # versions where it will be a problem. Reported to Opera as
5195 # DSK-262266, but they don't have a public bug tracker for us to follow.
5196 /*
5197 if ( $wgMinimalPasswordLength > 1 ) {
5198 $ret['pattern'] = '.{' . intval( $wgMinimalPasswordLength ) . ',}';
5199 $ret['title'] = wfMessage( 'passwordtooshort' )
5200 ->numParams( $wgMinimalPasswordLength )->text();
5201 }
5202 */
5203
5204 return $ret;
5205 }
5206
5207 /**
5208 * Return the list of user fields that should be selected to create
5209 * a new user object.
5210 * @return array
5211 */
5212 public static function selectFields() {
5213 return array(
5214 'user_id',
5215 'user_name',
5216 'user_real_name',
5217 'user_email',
5218 'user_touched',
5219 'user_token',
5220 'user_email_authenticated',
5221 'user_email_token',
5222 'user_email_token_expires',
5223 'user_registration',
5224 'user_editcount',
5225 );
5226 }
5227
5228 /**
5229 * Factory function for fatal permission-denied errors
5230 *
5231 * @since 1.22
5232 * @param string $permission User right required
5233 * @return Status
5234 */
5235 static function newFatalPermissionDeniedStatus( $permission ) {
5236 global $wgLang;
5237
5238 $groups = array_map(
5239 array( 'User', 'makeGroupLinkWiki' ),
5240 User::getGroupsWithPermission( $permission )
5241 );
5242
5243 if ( $groups ) {
5244 return Status::newFatal( 'badaccess-groups', $wgLang->commaList( $groups ), count( $groups ) );
5245 } else {
5246 return Status::newFatal( 'badaccess-group0' );
5247 }
5248 }
5249
5250 /**
5251 * Checks if two user objects point to the same user.
5252 *
5253 * @since 1.25
5254 * @param User $user
5255 * @return bool
5256 */
5257 public function equals( User $user ) {
5258 return $this->getName() === $user->getName();
5259 }
5260 }