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