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