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