Merge "Remove deprecated "Parsoid v1 API" compatibility thunks"
[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 if ( isset( $defOpts[$opt] ) ) {
1821 return $defOpts[$opt];
1822 } else {
1823 return null;
1824 }
1825 }
1826
1827 /**
1828 * Get blocking information
1829 * @param bool $bFromSlave Whether to check the replica DB first.
1830 * To improve performance, non-critical checks are done against replica DBs.
1831 * Check when actually saving should be done against master.
1832 */
1833 private function getBlockedStatus( $bFromSlave = true ) {
1834 global $wgProxyWhitelist, $wgUser, $wgApplyIpBlocksToXff, $wgSoftBlockRanges;
1835
1836 if ( -1 != $this->mBlockedby ) {
1837 return;
1838 }
1839
1840 wfDebug( __METHOD__ . ": checking...\n" );
1841
1842 // Initialize data...
1843 // Otherwise something ends up stomping on $this->mBlockedby when
1844 // things get lazy-loaded later, causing false positive block hits
1845 // due to -1 !== 0. Probably session-related... Nothing should be
1846 // overwriting mBlockedby, surely?
1847 $this->load();
1848
1849 # We only need to worry about passing the IP address to the Block generator if the
1850 # user is not immune to autoblocks/hardblocks, and they are the current user so we
1851 # know which IP address they're actually coming from
1852 $ip = null;
1853 if ( !$this->isAllowed( 'ipblock-exempt' ) ) {
1854 // $wgUser->getName() only works after the end of Setup.php. Until
1855 // then, assume it's a logged-out user.
1856 $globalUserName = $wgUser->isSafeToLoad()
1857 ? $wgUser->getName()
1858 : IP::sanitizeIP( $wgUser->getRequest()->getIP() );
1859 if ( $this->getName() === $globalUserName ) {
1860 $ip = $this->getRequest()->getIP();
1861 }
1862 }
1863
1864 // User/IP blocking
1865 $block = Block::newFromTarget( $this, $ip, !$bFromSlave );
1866
1867 // Cookie blocking
1868 if ( !$block instanceof Block ) {
1869 $block = $this->getBlockFromCookieValue( $this->getRequest()->getCookie( 'BlockID' ) );
1870 }
1871
1872 // Proxy blocking
1873 if ( !$block instanceof Block && $ip !== null && !in_array( $ip, $wgProxyWhitelist ) ) {
1874 // Local list
1875 if ( self::isLocallyBlockedProxy( $ip ) ) {
1876 $block = new Block( [
1877 'byText' => wfMessage( 'proxyblocker' )->text(),
1878 'reason' => wfMessage( 'proxyblockreason' )->plain(),
1879 'address' => $ip,
1880 'systemBlock' => 'proxy',
1881 ] );
1882 } elseif ( $this->isAnon() && $this->isDnsBlacklisted( $ip ) ) {
1883 $block = new Block( [
1884 'byText' => wfMessage( 'sorbs' )->text(),
1885 'reason' => wfMessage( 'sorbsreason' )->plain(),
1886 'address' => $ip,
1887 'systemBlock' => 'dnsbl',
1888 ] );
1889 }
1890 }
1891
1892 // (T25343) Apply IP blocks to the contents of XFF headers, if enabled
1893 if ( !$block instanceof Block
1894 && $wgApplyIpBlocksToXff
1895 && $ip !== null
1896 && !in_array( $ip, $wgProxyWhitelist )
1897 ) {
1898 $xff = $this->getRequest()->getHeader( 'X-Forwarded-For' );
1899 $xff = array_map( 'trim', explode( ',', $xff ) );
1900 $xff = array_diff( $xff, [ $ip ] );
1901 $xffblocks = Block::getBlocksForIPList( $xff, $this->isAnon(), !$bFromSlave );
1902 $block = Block::chooseBlock( $xffblocks, $xff );
1903 if ( $block instanceof Block ) {
1904 # Mangle the reason to alert the user that the block
1905 # originated from matching the X-Forwarded-For header.
1906 $block->mReason = wfMessage( 'xffblockreason', $block->mReason )->plain();
1907 }
1908 }
1909
1910 if ( !$block instanceof Block
1911 && $ip !== null
1912 && $this->isAnon()
1913 && IP::isInRanges( $ip, $wgSoftBlockRanges )
1914 ) {
1915 $block = new Block( [
1916 'address' => $ip,
1917 'byText' => 'MediaWiki default',
1918 'reason' => wfMessage( 'softblockrangesreason', $ip )->plain(),
1919 'anonOnly' => true,
1920 'systemBlock' => 'wgSoftBlockRanges',
1921 ] );
1922 }
1923
1924 if ( $block instanceof Block ) {
1925 wfDebug( __METHOD__ . ": Found block.\n" );
1926 $this->mBlock = $block;
1927 $this->mBlockedby = $block->getByName();
1928 $this->mBlockreason = $block->mReason;
1929 $this->mHideName = $block->mHideName;
1930 $this->mAllowUsertalk = !$block->prevents( 'editownusertalk' );
1931 } else {
1932 $this->mBlock = null;
1933 $this->mBlockedby = '';
1934 $this->mBlockreason = '';
1935 $this->mHideName = 0;
1936 $this->mAllowUsertalk = false;
1937 }
1938
1939 // Avoid PHP 7.1 warning of passing $this by reference
1940 $user = $this;
1941 // Extensions
1942 Hooks::run( 'GetBlockedStatus', [ &$user ] );
1943 }
1944
1945 /**
1946 * Try to load a Block from an ID given in a cookie value.
1947 * @param string|null $blockCookieVal The cookie value to check.
1948 * @return Block|bool The Block object, or false if none could be loaded.
1949 */
1950 protected function getBlockFromCookieValue( $blockCookieVal ) {
1951 // Make sure there's something to check. The cookie value must start with a number.
1952 if ( strlen( $blockCookieVal ) < 1 || !is_numeric( substr( $blockCookieVal, 0, 1 ) ) ) {
1953 return false;
1954 }
1955 // Load the Block from the ID in the cookie.
1956 $blockCookieId = Block::getIdFromCookieValue( $blockCookieVal );
1957 if ( $blockCookieId !== null ) {
1958 // An ID was found in the cookie.
1959 $tmpBlock = Block::newFromID( $blockCookieId );
1960 if ( $tmpBlock instanceof Block ) {
1961 $config = RequestContext::getMain()->getConfig();
1962
1963 switch ( $tmpBlock->getType() ) {
1964 case Block::TYPE_USER:
1965 $blockIsValid = !$tmpBlock->isExpired() && $tmpBlock->isAutoblocking();
1966 $useBlockCookie = ( $config->get( 'CookieSetOnAutoblock' ) === true );
1967 break;
1968 case Block::TYPE_IP:
1969 case Block::TYPE_RANGE:
1970 // If block is type IP or IP range, load only if user is not logged in (T152462)
1971 $blockIsValid = !$tmpBlock->isExpired() && !$this->isLoggedIn();
1972 $useBlockCookie = ( $config->get( 'CookieSetOnIpBlock' ) === true );
1973 break;
1974 default:
1975 $blockIsValid = false;
1976 $useBlockCookie = false;
1977 }
1978
1979 if ( $blockIsValid && $useBlockCookie ) {
1980 // Use the block.
1981 return $tmpBlock;
1982 } else {
1983 // If the block is not valid, remove the cookie.
1984 Block::clearCookie( $this->getRequest()->response() );
1985 }
1986 } else {
1987 // If the block doesn't exist, remove the cookie.
1988 Block::clearCookie( $this->getRequest()->response() );
1989 }
1990 }
1991 return false;
1992 }
1993
1994 /**
1995 * Whether the given IP is in a DNS blacklist.
1996 *
1997 * @param string $ip IP to check
1998 * @param bool $checkWhitelist Whether to check the whitelist first
1999 * @return bool True if blacklisted.
2000 */
2001 public function isDnsBlacklisted( $ip, $checkWhitelist = false ) {
2002 global $wgEnableDnsBlacklist, $wgDnsBlacklistUrls, $wgProxyWhitelist;
2003
2004 if ( !$wgEnableDnsBlacklist ) {
2005 return false;
2006 }
2007
2008 if ( $checkWhitelist && in_array( $ip, $wgProxyWhitelist ) ) {
2009 return false;
2010 }
2011
2012 return $this->inDnsBlacklist( $ip, $wgDnsBlacklistUrls );
2013 }
2014
2015 /**
2016 * Whether the given IP is in a given DNS blacklist.
2017 *
2018 * @param string $ip IP to check
2019 * @param string|array $bases Array of Strings: URL of the DNS blacklist
2020 * @return bool True if blacklisted.
2021 */
2022 public function inDnsBlacklist( $ip, $bases ) {
2023 $found = false;
2024 // @todo FIXME: IPv6 ??? (https://bugs.php.net/bug.php?id=33170)
2025 if ( IP::isIPv4( $ip ) ) {
2026 // Reverse IP, T23255
2027 $ipReversed = implode( '.', array_reverse( explode( '.', $ip ) ) );
2028
2029 foreach ( (array)$bases as $base ) {
2030 // Make hostname
2031 // If we have an access key, use that too (ProjectHoneypot, etc.)
2032 $basename = $base;
2033 if ( is_array( $base ) ) {
2034 if ( count( $base ) >= 2 ) {
2035 // Access key is 1, base URL is 0
2036 $host = "{$base[1]}.$ipReversed.{$base[0]}";
2037 } else {
2038 $host = "$ipReversed.{$base[0]}";
2039 }
2040 $basename = $base[0];
2041 } else {
2042 $host = "$ipReversed.$base";
2043 }
2044
2045 // Send query
2046 $ipList = gethostbynamel( $host );
2047
2048 if ( $ipList ) {
2049 wfDebugLog( 'dnsblacklist', "Hostname $host is {$ipList[0]}, it's a proxy says $basename!" );
2050 $found = true;
2051 break;
2052 } else {
2053 wfDebugLog( 'dnsblacklist', "Requested $host, not found in $basename." );
2054 }
2055 }
2056 }
2057
2058 return $found;
2059 }
2060
2061 /**
2062 * Check if an IP address is in the local proxy list
2063 *
2064 * @param string $ip
2065 *
2066 * @return bool
2067 */
2068 public static function isLocallyBlockedProxy( $ip ) {
2069 global $wgProxyList;
2070
2071 if ( !$wgProxyList ) {
2072 return false;
2073 }
2074
2075 if ( !is_array( $wgProxyList ) ) {
2076 // Load values from the specified file
2077 $wgProxyList = array_map( 'trim', file( $wgProxyList ) );
2078 }
2079
2080 $resultProxyList = [];
2081 $deprecatedIPEntries = [];
2082
2083 // backward compatibility: move all ip addresses in keys to values
2084 foreach ( $wgProxyList as $key => $value ) {
2085 $keyIsIP = IP::isIPAddress( $key );
2086 $valueIsIP = IP::isIPAddress( $value );
2087 if ( $keyIsIP && !$valueIsIP ) {
2088 $deprecatedIPEntries[] = $key;
2089 $resultProxyList[] = $key;
2090 } elseif ( $keyIsIP && $valueIsIP ) {
2091 $deprecatedIPEntries[] = $key;
2092 $resultProxyList[] = $key;
2093 $resultProxyList[] = $value;
2094 } else {
2095 $resultProxyList[] = $value;
2096 }
2097 }
2098
2099 if ( $deprecatedIPEntries ) {
2100 wfDeprecated(
2101 'IP addresses in the keys of $wgProxyList (found the following IP addresses in keys: ' .
2102 implode( ', ', $deprecatedIPEntries ) . ', please move them to values)', '1.30' );
2103 }
2104
2105 $proxyListIPSet = new IPSet( $resultProxyList );
2106 return $proxyListIPSet->match( $ip );
2107 }
2108
2109 /**
2110 * Is this user subject to rate limiting?
2111 *
2112 * @return bool True if rate limited
2113 */
2114 public function isPingLimitable() {
2115 global $wgRateLimitsExcludedIPs;
2116 if ( IP::isInRanges( $this->getRequest()->getIP(), $wgRateLimitsExcludedIPs ) ) {
2117 // No other good way currently to disable rate limits
2118 // for specific IPs. :P
2119 // But this is a crappy hack and should die.
2120 return false;
2121 }
2122 return !$this->isAllowed( 'noratelimit' );
2123 }
2124
2125 /**
2126 * Primitive rate limits: enforce maximum actions per time period
2127 * to put a brake on flooding.
2128 *
2129 * The method generates both a generic profiling point and a per action one
2130 * (suffix being "-$action".
2131 *
2132 * @note When using a shared cache like memcached, IP-address
2133 * last-hit counters will be shared across wikis.
2134 *
2135 * @param string $action Action to enforce; 'edit' if unspecified
2136 * @param int $incrBy Positive amount to increment counter by [defaults to 1]
2137 * @return bool True if a rate limiter was tripped
2138 */
2139 public function pingLimiter( $action = 'edit', $incrBy = 1 ) {
2140 // Avoid PHP 7.1 warning of passing $this by reference
2141 $user = $this;
2142 // Call the 'PingLimiter' hook
2143 $result = false;
2144 if ( !Hooks::run( 'PingLimiter', [ &$user, $action, &$result, $incrBy ] ) ) {
2145 return $result;
2146 }
2147
2148 global $wgRateLimits;
2149 if ( !isset( $wgRateLimits[$action] ) ) {
2150 return false;
2151 }
2152
2153 $limits = array_merge(
2154 [ '&can-bypass' => true ],
2155 $wgRateLimits[$action]
2156 );
2157
2158 // Some groups shouldn't trigger the ping limiter, ever
2159 if ( $limits['&can-bypass'] && !$this->isPingLimitable() ) {
2160 return false;
2161 }
2162
2163 $keys = [];
2164 $id = $this->getId();
2165 $userLimit = false;
2166 $isNewbie = $this->isNewbie();
2167 $cache = ObjectCache::getLocalClusterInstance();
2168
2169 if ( $id == 0 ) {
2170 // limits for anons
2171 if ( isset( $limits['anon'] ) ) {
2172 $keys[$cache->makeKey( 'limiter', $action, 'anon' )] = $limits['anon'];
2173 }
2174 } else {
2175 // limits for logged-in users
2176 if ( isset( $limits['user'] ) ) {
2177 $userLimit = $limits['user'];
2178 }
2179 }
2180
2181 // limits for anons and for newbie logged-in users
2182 if ( $isNewbie ) {
2183 // ip-based limits
2184 if ( isset( $limits['ip'] ) ) {
2185 $ip = $this->getRequest()->getIP();
2186 $keys["mediawiki:limiter:$action:ip:$ip"] = $limits['ip'];
2187 }
2188 // subnet-based limits
2189 if ( isset( $limits['subnet'] ) ) {
2190 $ip = $this->getRequest()->getIP();
2191 $subnet = IP::getSubnet( $ip );
2192 if ( $subnet !== false ) {
2193 $keys["mediawiki:limiter:$action:subnet:$subnet"] = $limits['subnet'];
2194 }
2195 }
2196 }
2197
2198 // Check for group-specific permissions
2199 // If more than one group applies, use the group with the highest limit ratio (max/period)
2200 foreach ( $this->getGroups() as $group ) {
2201 if ( isset( $limits[$group] ) ) {
2202 if ( $userLimit === false
2203 || $limits[$group][0] / $limits[$group][1] > $userLimit[0] / $userLimit[1]
2204 ) {
2205 $userLimit = $limits[$group];
2206 }
2207 }
2208 }
2209
2210 // limits for newbie logged-in users (override all the normal user limits)
2211 if ( $id !== 0 && $isNewbie && isset( $limits['newbie'] ) ) {
2212 $userLimit = $limits['newbie'];
2213 }
2214
2215 // Set the user limit key
2216 if ( $userLimit !== false ) {
2217 list( $max, $period ) = $userLimit;
2218 wfDebug( __METHOD__ . ": effective user limit: $max in {$period}s\n" );
2219 $keys[$cache->makeKey( 'limiter', $action, 'user', $id )] = $userLimit;
2220 }
2221
2222 // ip-based limits for all ping-limitable users
2223 if ( isset( $limits['ip-all'] ) ) {
2224 $ip = $this->getRequest()->getIP();
2225 // ignore if user limit is more permissive
2226 if ( $isNewbie || $userLimit === false
2227 || $limits['ip-all'][0] / $limits['ip-all'][1] > $userLimit[0] / $userLimit[1] ) {
2228 $keys["mediawiki:limiter:$action:ip-all:$ip"] = $limits['ip-all'];
2229 }
2230 }
2231
2232 // subnet-based limits for all ping-limitable users
2233 if ( isset( $limits['subnet-all'] ) ) {
2234 $ip = $this->getRequest()->getIP();
2235 $subnet = IP::getSubnet( $ip );
2236 if ( $subnet !== false ) {
2237 // ignore if user limit is more permissive
2238 if ( $isNewbie || $userLimit === false
2239 || $limits['ip-all'][0] / $limits['ip-all'][1]
2240 > $userLimit[0] / $userLimit[1] ) {
2241 $keys["mediawiki:limiter:$action:subnet-all:$subnet"] = $limits['subnet-all'];
2242 }
2243 }
2244 }
2245
2246 $triggered = false;
2247 foreach ( $keys as $key => $limit ) {
2248 list( $max, $period ) = $limit;
2249 $summary = "(limit $max in {$period}s)";
2250 $count = $cache->get( $key );
2251 // Already pinged?
2252 if ( $count ) {
2253 if ( $count >= $max ) {
2254 wfDebugLog( 'ratelimit', "User '{$this->getName()}' " .
2255 "(IP {$this->getRequest()->getIP()}) tripped $key at $count $summary" );
2256 $triggered = true;
2257 } else {
2258 wfDebug( __METHOD__ . ": ok. $key at $count $summary\n" );
2259 }
2260 } else {
2261 wfDebug( __METHOD__ . ": adding record for $key $summary\n" );
2262 if ( $incrBy > 0 ) {
2263 $cache->add( $key, 0, intval( $period ) ); // first ping
2264 }
2265 }
2266 if ( $incrBy > 0 ) {
2267 $cache->incr( $key, $incrBy );
2268 }
2269 }
2270
2271 return $triggered;
2272 }
2273
2274 /**
2275 * Check if user is blocked
2276 *
2277 * @param bool $bFromSlave Whether to check the replica DB instead of
2278 * the master. Hacked from false due to horrible probs on site.
2279 * @return bool True if blocked, false otherwise
2280 */
2281 public function isBlocked( $bFromSlave = true ) {
2282 return $this->getBlock( $bFromSlave ) instanceof Block && $this->getBlock()->prevents( 'edit' );
2283 }
2284
2285 /**
2286 * Get the block affecting the user, or null if the user is not blocked
2287 *
2288 * @param bool $bFromSlave Whether to check the replica DB instead of the master
2289 * @return Block|null
2290 */
2291 public function getBlock( $bFromSlave = true ) {
2292 $this->getBlockedStatus( $bFromSlave );
2293 return $this->mBlock instanceof Block ? $this->mBlock : null;
2294 }
2295
2296 /**
2297 * Check if user is blocked from editing a particular article
2298 *
2299 * @param Title $title Title to check
2300 * @param bool $fromSlave Whether to check the replica DB instead of the master
2301 * @return bool
2302 */
2303 public function isBlockedFrom( $title, $fromSlave = false ) {
2304 $blocked = $this->isHidden();
2305
2306 if ( !$blocked ) {
2307 $block = $this->getBlock( $fromSlave );
2308 if ( $block ) {
2309 $blocked = $block->preventsEdit( $title );
2310 }
2311 }
2312
2313 // only for the purpose of the hook. We really don't need this here.
2314 $allowUsertalk = $this->mAllowUsertalk;
2315
2316 Hooks::run( 'UserIsBlockedFrom', [ $this, $title, &$blocked, &$allowUsertalk ] );
2317
2318 return $blocked;
2319 }
2320
2321 /**
2322 * If user is blocked, return the name of the user who placed the block
2323 * @return string Name of blocker
2324 */
2325 public function blockedBy() {
2326 $this->getBlockedStatus();
2327 return $this->mBlockedby;
2328 }
2329
2330 /**
2331 * If user is blocked, return the specified reason for the block
2332 * @return string Blocking reason
2333 */
2334 public function blockedFor() {
2335 $this->getBlockedStatus();
2336 return $this->mBlockreason;
2337 }
2338
2339 /**
2340 * If user is blocked, return the ID for the block
2341 * @return int Block ID
2342 */
2343 public function getBlockId() {
2344 $this->getBlockedStatus();
2345 return ( $this->mBlock ? $this->mBlock->getId() : false );
2346 }
2347
2348 /**
2349 * Check if user is blocked on all wikis.
2350 * Do not use for actual edit permission checks!
2351 * This is intended for quick UI checks.
2352 *
2353 * @param string $ip IP address, uses current client if none given
2354 * @return bool True if blocked, false otherwise
2355 */
2356 public function isBlockedGlobally( $ip = '' ) {
2357 return $this->getGlobalBlock( $ip ) instanceof Block;
2358 }
2359
2360 /**
2361 * Check if user is blocked on all wikis.
2362 * Do not use for actual edit permission checks!
2363 * This is intended for quick UI checks.
2364 *
2365 * @param string $ip IP address, uses current client if none given
2366 * @return Block|null Block object if blocked, null otherwise
2367 * @throws FatalError
2368 * @throws MWException
2369 */
2370 public function getGlobalBlock( $ip = '' ) {
2371 if ( $this->mGlobalBlock !== null ) {
2372 return $this->mGlobalBlock ?: null;
2373 }
2374 // User is already an IP?
2375 if ( IP::isIPAddress( $this->getName() ) ) {
2376 $ip = $this->getName();
2377 } elseif ( !$ip ) {
2378 $ip = $this->getRequest()->getIP();
2379 }
2380 // Avoid PHP 7.1 warning of passing $this by reference
2381 $user = $this;
2382 $blocked = false;
2383 $block = null;
2384 Hooks::run( 'UserIsBlockedGlobally', [ &$user, $ip, &$blocked, &$block ] );
2385
2386 if ( $blocked && $block === null ) {
2387 // back-compat: UserIsBlockedGlobally didn't have $block param first
2388 $block = new Block( [
2389 'address' => $ip,
2390 'systemBlock' => 'global-block'
2391 ] );
2392 }
2393
2394 $this->mGlobalBlock = $blocked ? $block : false;
2395 return $this->mGlobalBlock ?: null;
2396 }
2397
2398 /**
2399 * Check if user account is locked
2400 *
2401 * @return bool True if locked, false otherwise
2402 */
2403 public function isLocked() {
2404 if ( $this->mLocked !== null ) {
2405 return $this->mLocked;
2406 }
2407 // Avoid PHP 7.1 warning of passing $this by reference
2408 $user = $this;
2409 $authUser = AuthManager::callLegacyAuthPlugin( 'getUserInstance', [ &$user ], null );
2410 $this->mLocked = $authUser && $authUser->isLocked();
2411 Hooks::run( 'UserIsLocked', [ $this, &$this->mLocked ] );
2412 return $this->mLocked;
2413 }
2414
2415 /**
2416 * Check if user account is hidden
2417 *
2418 * @return bool True if hidden, false otherwise
2419 */
2420 public function isHidden() {
2421 if ( $this->mHideName !== null ) {
2422 return (bool)$this->mHideName;
2423 }
2424 $this->getBlockedStatus();
2425 if ( !$this->mHideName ) {
2426 // Avoid PHP 7.1 warning of passing $this by reference
2427 $user = $this;
2428 $authUser = AuthManager::callLegacyAuthPlugin( 'getUserInstance', [ &$user ], null );
2429 $this->mHideName = $authUser && $authUser->isHidden();
2430 Hooks::run( 'UserIsHidden', [ $this, &$this->mHideName ] );
2431 }
2432 return (bool)$this->mHideName;
2433 }
2434
2435 /**
2436 * Get the user's ID.
2437 * @return int The user's ID; 0 if the user is anonymous or nonexistent
2438 */
2439 public function getId() {
2440 if ( $this->mId === null && $this->mName !== null && self::isIP( $this->mName ) ) {
2441 // Special case, we know the user is anonymous
2442 return 0;
2443 } elseif ( !$this->isItemLoaded( 'id' ) ) {
2444 // Don't load if this was initialized from an ID
2445 $this->load();
2446 }
2447
2448 return (int)$this->mId;
2449 }
2450
2451 /**
2452 * Set the user and reload all fields according to a given ID
2453 * @param int $v User ID to reload
2454 */
2455 public function setId( $v ) {
2456 $this->mId = $v;
2457 $this->clearInstanceCache( 'id' );
2458 }
2459
2460 /**
2461 * Get the user name, or the IP of an anonymous user
2462 * @return string User's name or IP address
2463 */
2464 public function getName() {
2465 if ( $this->isItemLoaded( 'name', 'only' ) ) {
2466 // Special case optimisation
2467 return $this->mName;
2468 } else {
2469 $this->load();
2470 if ( $this->mName === false ) {
2471 // Clean up IPs
2472 $this->mName = IP::sanitizeIP( $this->getRequest()->getIP() );
2473 }
2474 return $this->mName;
2475 }
2476 }
2477
2478 /**
2479 * Set the user name.
2480 *
2481 * This does not reload fields from the database according to the given
2482 * name. Rather, it is used to create a temporary "nonexistent user" for
2483 * later addition to the database. It can also be used to set the IP
2484 * address for an anonymous user to something other than the current
2485 * remote IP.
2486 *
2487 * @note User::newFromName() has roughly the same function, when the named user
2488 * does not exist.
2489 * @param string $str New user name to set
2490 */
2491 public function setName( $str ) {
2492 $this->load();
2493 $this->mName = $str;
2494 }
2495
2496 /**
2497 * Get the user's actor ID.
2498 * @since 1.31
2499 * @param IDatabase|null $dbw Assign a new actor ID, using this DB handle, if none exists
2500 * @return int The actor's ID, or 0 if no actor ID exists and $dbw was null
2501 */
2502 public function getActorId( IDatabase $dbw = null ) {
2503 global $wgActorTableSchemaMigrationStage;
2504
2505 // Technically we should always return 0 without SCHEMA_COMPAT_READ_NEW,
2506 // but it does little harm and might be needed for write callers loading a User.
2507 if ( !( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_WRITE_NEW ) ) {
2508 return 0;
2509 }
2510
2511 if ( !$this->isItemLoaded( 'actor' ) ) {
2512 $this->load();
2513 }
2514
2515 // Currently $this->mActorId might be null if $this was loaded from a
2516 // cache entry that was written when $wgActorTableSchemaMigrationStage
2517 // was SCHEMA_COMPAT_OLD. Once that is no longer a possibility (i.e. when
2518 // User::VERSION is incremented after $wgActorTableSchemaMigrationStage
2519 // has been removed), that condition may be removed.
2520 if ( $this->mActorId === null || !$this->mActorId && $dbw ) {
2521 $q = [
2522 'actor_user' => $this->getId() ?: null,
2523 'actor_name' => (string)$this->getName(),
2524 ];
2525 if ( $dbw ) {
2526 if ( $q['actor_user'] === null && self::isUsableName( $q['actor_name'] ) ) {
2527 throw new CannotCreateActorException(
2528 'Cannot create an actor for a usable name that is not an existing user'
2529 );
2530 }
2531 if ( $q['actor_name'] === '' ) {
2532 throw new CannotCreateActorException( 'Cannot create an actor for a user with no name' );
2533 }
2534 $dbw->insert( 'actor', $q, __METHOD__, [ 'IGNORE' ] );
2535 if ( $dbw->affectedRows() ) {
2536 $this->mActorId = (int)$dbw->insertId();
2537 } else {
2538 // Outdated cache?
2539 list( , $options ) = DBAccessObjectUtils::getDBOptions( $this->queryFlagsUsed );
2540 $this->mActorId = (int)$dbw->selectField( 'actor', 'actor_id', $q, __METHOD__, $options );
2541 if ( !$this->mActorId ) {
2542 throw new CannotCreateActorException(
2543 "Cannot create actor ID for user_id={$this->getId()} user_name={$this->getName()}"
2544 );
2545 }
2546 }
2547 $this->invalidateCache();
2548 } else {
2549 list( $index, $options ) = DBAccessObjectUtils::getDBOptions( $this->queryFlagsUsed );
2550 $db = wfGetDB( $index );
2551 $this->mActorId = (int)$db->selectField( 'actor', 'actor_id', $q, __METHOD__, $options );
2552 }
2553 $this->setItemLoaded( 'actor' );
2554 }
2555
2556 return (int)$this->mActorId;
2557 }
2558
2559 /**
2560 * Get the user's name escaped by underscores.
2561 * @return string Username escaped by underscores.
2562 */
2563 public function getTitleKey() {
2564 return str_replace( ' ', '_', $this->getName() );
2565 }
2566
2567 /**
2568 * Check if the user has new messages.
2569 * @return bool True if the user has new messages
2570 */
2571 public function getNewtalk() {
2572 $this->load();
2573
2574 // Load the newtalk status if it is unloaded (mNewtalk=-1)
2575 if ( $this->mNewtalk === -1 ) {
2576 $this->mNewtalk = false; # reset talk page status
2577
2578 // Check memcached separately for anons, who have no
2579 // entire User object stored in there.
2580 if ( !$this->mId ) {
2581 global $wgDisableAnonTalk;
2582 if ( $wgDisableAnonTalk ) {
2583 // Anon newtalk disabled by configuration.
2584 $this->mNewtalk = false;
2585 } else {
2586 $this->mNewtalk = $this->checkNewtalk( 'user_ip', $this->getName() );
2587 }
2588 } else {
2589 $this->mNewtalk = $this->checkNewtalk( 'user_id', $this->mId );
2590 }
2591 }
2592
2593 return (bool)$this->mNewtalk;
2594 }
2595
2596 /**
2597 * Return the data needed to construct links for new talk page message
2598 * alerts. If there are new messages, this will return an associative array
2599 * with the following data:
2600 * wiki: The database name of the wiki
2601 * link: Root-relative link to the user's talk page
2602 * rev: The last talk page revision that the user has seen or null. This
2603 * is useful for building diff links.
2604 * If there are no new messages, it returns an empty array.
2605 * @note This function was designed to accomodate multiple talk pages, but
2606 * currently only returns a single link and revision.
2607 * @return array
2608 */
2609 public function getNewMessageLinks() {
2610 // Avoid PHP 7.1 warning of passing $this by reference
2611 $user = $this;
2612 $talks = [];
2613 if ( !Hooks::run( 'UserRetrieveNewTalks', [ &$user, &$talks ] ) ) {
2614 return $talks;
2615 } elseif ( !$this->getNewtalk() ) {
2616 return [];
2617 }
2618 $utp = $this->getTalkPage();
2619 $dbr = wfGetDB( DB_REPLICA );
2620 // Get the "last viewed rev" timestamp from the oldest message notification
2621 $timestamp = $dbr->selectField( 'user_newtalk',
2622 'MIN(user_last_timestamp)',
2623 $this->isAnon() ? [ 'user_ip' => $this->getName() ] : [ 'user_id' => $this->getId() ],
2624 __METHOD__ );
2625 $rev = $timestamp ? Revision::loadFromTimestamp( $dbr, $utp, $timestamp ) : null;
2626 return [ [ 'wiki' => wfWikiID(), 'link' => $utp->getLocalURL(), 'rev' => $rev ] ];
2627 }
2628
2629 /**
2630 * Get the revision ID for the last talk page revision viewed by the talk
2631 * page owner.
2632 * @return int|null Revision ID or null
2633 */
2634 public function getNewMessageRevisionId() {
2635 $newMessageRevisionId = null;
2636 $newMessageLinks = $this->getNewMessageLinks();
2637 if ( $newMessageLinks ) {
2638 // Note: getNewMessageLinks() never returns more than a single link
2639 // and it is always for the same wiki, but we double-check here in
2640 // case that changes some time in the future.
2641 if ( count( $newMessageLinks ) === 1
2642 && $newMessageLinks[0]['wiki'] === wfWikiID()
2643 && $newMessageLinks[0]['rev']
2644 ) {
2645 /** @var Revision $newMessageRevision */
2646 $newMessageRevision = $newMessageLinks[0]['rev'];
2647 $newMessageRevisionId = $newMessageRevision->getId();
2648 }
2649 }
2650 return $newMessageRevisionId;
2651 }
2652
2653 /**
2654 * Internal uncached check for new messages
2655 *
2656 * @see getNewtalk()
2657 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2658 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2659 * @return bool True if the user has new messages
2660 */
2661 protected function checkNewtalk( $field, $id ) {
2662 $dbr = wfGetDB( DB_REPLICA );
2663
2664 $ok = $dbr->selectField( 'user_newtalk', $field, [ $field => $id ], __METHOD__ );
2665
2666 return $ok !== false;
2667 }
2668
2669 /**
2670 * Add or update the new messages flag
2671 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2672 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2673 * @param Revision|null $curRev New, as yet unseen revision of the user talk page. Ignored if null.
2674 * @return bool True if successful, false otherwise
2675 */
2676 protected function updateNewtalk( $field, $id, $curRev = null ) {
2677 // Get timestamp of the talk page revision prior to the current one
2678 $prevRev = $curRev ? $curRev->getPrevious() : false;
2679 $ts = $prevRev ? $prevRev->getTimestamp() : null;
2680 // Mark the user as having new messages since this revision
2681 $dbw = wfGetDB( DB_MASTER );
2682 $dbw->insert( 'user_newtalk',
2683 [ $field => $id, 'user_last_timestamp' => $dbw->timestampOrNull( $ts ) ],
2684 __METHOD__,
2685 'IGNORE' );
2686 if ( $dbw->affectedRows() ) {
2687 wfDebug( __METHOD__ . ": set on ($field, $id)\n" );
2688 return true;
2689 } else {
2690 wfDebug( __METHOD__ . " already set ($field, $id)\n" );
2691 return false;
2692 }
2693 }
2694
2695 /**
2696 * Clear the new messages flag for the given user
2697 * @param string $field 'user_ip' for anonymous users, 'user_id' otherwise
2698 * @param string|int $id User's IP address for anonymous users, User ID otherwise
2699 * @return bool True if successful, false otherwise
2700 */
2701 protected function deleteNewtalk( $field, $id ) {
2702 $dbw = wfGetDB( DB_MASTER );
2703 $dbw->delete( 'user_newtalk',
2704 [ $field => $id ],
2705 __METHOD__ );
2706 if ( $dbw->affectedRows() ) {
2707 wfDebug( __METHOD__ . ": killed on ($field, $id)\n" );
2708 return true;
2709 } else {
2710 wfDebug( __METHOD__ . ": already gone ($field, $id)\n" );
2711 return false;
2712 }
2713 }
2714
2715 /**
2716 * Update the 'You have new messages!' status.
2717 * @param bool $val Whether the user has new messages
2718 * @param Revision|null $curRev New, as yet unseen revision of the user talk
2719 * page. Ignored if null or !$val.
2720 */
2721 public function setNewtalk( $val, $curRev = null ) {
2722 if ( wfReadOnly() ) {
2723 return;
2724 }
2725
2726 $this->load();
2727 $this->mNewtalk = $val;
2728
2729 if ( $this->isAnon() ) {
2730 $field = 'user_ip';
2731 $id = $this->getName();
2732 } else {
2733 $field = 'user_id';
2734 $id = $this->getId();
2735 }
2736
2737 if ( $val ) {
2738 $changed = $this->updateNewtalk( $field, $id, $curRev );
2739 } else {
2740 $changed = $this->deleteNewtalk( $field, $id );
2741 }
2742
2743 if ( $changed ) {
2744 $this->invalidateCache();
2745 }
2746 }
2747
2748 /**
2749 * Generate a current or new-future timestamp to be stored in the
2750 * user_touched field when we update things.
2751 * @return string Timestamp in TS_MW format
2752 */
2753 private function newTouchedTimestamp() {
2754 global $wgClockSkewFudge;
2755
2756 $time = wfTimestamp( TS_MW, time() + $wgClockSkewFudge );
2757 if ( $this->mTouched && $time <= $this->mTouched ) {
2758 $time = wfTimestamp( TS_MW, wfTimestamp( TS_UNIX, $this->mTouched ) + 1 );
2759 }
2760
2761 return $time;
2762 }
2763
2764 /**
2765 * Clear user data from memcached
2766 *
2767 * Use after applying updates to the database; caller's
2768 * responsibility to update user_touched if appropriate.
2769 *
2770 * Called implicitly from invalidateCache() and saveSettings().
2771 *
2772 * @param string $mode Use 'refresh' to clear now; otherwise before DB commit
2773 */
2774 public function clearSharedCache( $mode = 'changed' ) {
2775 if ( !$this->getId() ) {
2776 return;
2777 }
2778
2779 $cache = ObjectCache::getMainWANInstance();
2780 $key = $this->getCacheKey( $cache );
2781 if ( $mode === 'refresh' ) {
2782 $cache->delete( $key, 1 );
2783 } else {
2784 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
2785 if ( $lb->hasOrMadeRecentMasterChanges() ) {
2786 $lb->getConnection( DB_MASTER )->onTransactionPreCommitOrIdle(
2787 function () use ( $cache, $key ) {
2788 $cache->delete( $key );
2789 },
2790 __METHOD__
2791 );
2792 } else {
2793 $cache->delete( $key );
2794 }
2795 }
2796 }
2797
2798 /**
2799 * Immediately touch the user data cache for this account
2800 *
2801 * Calls touch() and removes account data from memcached
2802 */
2803 public function invalidateCache() {
2804 $this->touch();
2805 $this->clearSharedCache();
2806 }
2807
2808 /**
2809 * Update the "touched" timestamp for the user
2810 *
2811 * This is useful on various login/logout events when making sure that
2812 * a browser or proxy that has multiple tenants does not suffer cache
2813 * pollution where the new user sees the old users content. The value
2814 * of getTouched() is checked when determining 304 vs 200 responses.
2815 * Unlike invalidateCache(), this preserves the User object cache and
2816 * avoids database writes.
2817 *
2818 * @since 1.25
2819 */
2820 public function touch() {
2821 $id = $this->getId();
2822 if ( $id ) {
2823 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
2824 $key = $cache->makeKey( 'user-quicktouched', 'id', $id );
2825 $cache->touchCheckKey( $key );
2826 $this->mQuickTouched = null;
2827 }
2828 }
2829
2830 /**
2831 * Validate the cache for this account.
2832 * @param string $timestamp A timestamp in TS_MW format
2833 * @return bool
2834 */
2835 public function validateCache( $timestamp ) {
2836 return ( $timestamp >= $this->getTouched() );
2837 }
2838
2839 /**
2840 * Get the user touched timestamp
2841 *
2842 * Use this value only to validate caches via inequalities
2843 * such as in the case of HTTP If-Modified-Since response logic
2844 *
2845 * @return string TS_MW Timestamp
2846 */
2847 public function getTouched() {
2848 $this->load();
2849
2850 if ( $this->mId ) {
2851 if ( $this->mQuickTouched === null ) {
2852 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
2853 $key = $cache->makeKey( 'user-quicktouched', 'id', $this->mId );
2854
2855 $this->mQuickTouched = wfTimestamp( TS_MW, $cache->getCheckKeyTime( $key ) );
2856 }
2857
2858 return max( $this->mTouched, $this->mQuickTouched );
2859 }
2860
2861 return $this->mTouched;
2862 }
2863
2864 /**
2865 * Get the user_touched timestamp field (time of last DB updates)
2866 * @return string TS_MW Timestamp
2867 * @since 1.26
2868 */
2869 public function getDBTouched() {
2870 $this->load();
2871
2872 return $this->mTouched;
2873 }
2874
2875 /**
2876 * Set the password and reset the random token.
2877 * Calls through to authentication plugin if necessary;
2878 * will have no effect if the auth plugin refuses to
2879 * pass the change through or if the legal password
2880 * checks fail.
2881 *
2882 * As a special case, setting the password to null
2883 * wipes it, so the account cannot be logged in until
2884 * a new password is set, for instance via e-mail.
2885 *
2886 * @deprecated since 1.27, use AuthManager instead
2887 * @param string $str New password to set
2888 * @throws PasswordError On failure
2889 * @return bool
2890 */
2891 public function setPassword( $str ) {
2892 wfDeprecated( __METHOD__, '1.27' );
2893 return $this->setPasswordInternal( $str );
2894 }
2895
2896 /**
2897 * Set the password and reset the random token unconditionally.
2898 *
2899 * @deprecated since 1.27, use AuthManager instead
2900 * @param string|null $str New password to set or null to set an invalid
2901 * password hash meaning that the user will not be able to log in
2902 * through the web interface.
2903 */
2904 public function setInternalPassword( $str ) {
2905 wfDeprecated( __METHOD__, '1.27' );
2906 $this->setPasswordInternal( $str );
2907 }
2908
2909 /**
2910 * Actually set the password and such
2911 * @since 1.27 cannot set a password for a user not in the database
2912 * @param string|null $str New password to set or null to set an invalid
2913 * password hash meaning that the user will not be able to log in
2914 * through the web interface.
2915 * @return bool Success
2916 */
2917 private function setPasswordInternal( $str ) {
2918 $manager = AuthManager::singleton();
2919
2920 // If the user doesn't exist yet, fail
2921 if ( !$manager->userExists( $this->getName() ) ) {
2922 throw new LogicException( 'Cannot set a password for a user that is not in the database.' );
2923 }
2924
2925 $status = $this->changeAuthenticationData( [
2926 'username' => $this->getName(),
2927 'password' => $str,
2928 'retype' => $str,
2929 ] );
2930 if ( !$status->isGood() ) {
2931 \MediaWiki\Logger\LoggerFactory::getInstance( 'authentication' )
2932 ->info( __METHOD__ . ': Password change rejected: '
2933 . $status->getWikiText( null, null, 'en' ) );
2934 return false;
2935 }
2936
2937 $this->setOption( 'watchlisttoken', false );
2938 SessionManager::singleton()->invalidateSessionsForUser( $this );
2939
2940 return true;
2941 }
2942
2943 /**
2944 * Changes credentials of the user.
2945 *
2946 * This is a convenience wrapper around AuthManager::changeAuthenticationData.
2947 * Note that this can return a status that isOK() but not isGood() on certain types of failures,
2948 * e.g. when no provider handled the change.
2949 *
2950 * @param array $data A set of authentication data in fieldname => value format. This is the
2951 * same data you would pass the changeauthenticationdata API - 'username', 'password' etc.
2952 * @return Status
2953 * @since 1.27
2954 */
2955 public function changeAuthenticationData( array $data ) {
2956 $manager = AuthManager::singleton();
2957 $reqs = $manager->getAuthenticationRequests( AuthManager::ACTION_CHANGE, $this );
2958 $reqs = AuthenticationRequest::loadRequestsFromSubmission( $reqs, $data );
2959
2960 $status = Status::newGood( 'ignored' );
2961 foreach ( $reqs as $req ) {
2962 $status->merge( $manager->allowsAuthenticationDataChange( $req ), true );
2963 }
2964 if ( $status->getValue() === 'ignored' ) {
2965 $status->warning( 'authenticationdatachange-ignored' );
2966 }
2967
2968 if ( $status->isGood() ) {
2969 foreach ( $reqs as $req ) {
2970 $manager->changeAuthenticationData( $req );
2971 }
2972 }
2973 return $status;
2974 }
2975
2976 /**
2977 * Get the user's current token.
2978 * @param bool $forceCreation Force the generation of a new token if the
2979 * user doesn't have one (default=true for backwards compatibility).
2980 * @return string|null Token
2981 */
2982 public function getToken( $forceCreation = true ) {
2983 global $wgAuthenticationTokenVersion;
2984
2985 $this->load();
2986 if ( !$this->mToken && $forceCreation ) {
2987 $this->setToken();
2988 }
2989
2990 if ( !$this->mToken ) {
2991 // The user doesn't have a token, return null to indicate that.
2992 return null;
2993 } elseif ( $this->mToken === self::INVALID_TOKEN ) {
2994 // We return a random value here so existing token checks are very
2995 // likely to fail.
2996 return MWCryptRand::generateHex( self::TOKEN_LENGTH );
2997 } elseif ( $wgAuthenticationTokenVersion === null ) {
2998 // $wgAuthenticationTokenVersion not in use, so return the raw secret
2999 return $this->mToken;
3000 } else {
3001 // $wgAuthenticationTokenVersion in use, so hmac it.
3002 $ret = MWCryptHash::hmac( $wgAuthenticationTokenVersion, $this->mToken, false );
3003
3004 // The raw hash can be overly long. Shorten it up.
3005 $len = max( 32, self::TOKEN_LENGTH );
3006 if ( strlen( $ret ) < $len ) {
3007 // Should never happen, even md5 is 128 bits
3008 throw new \UnexpectedValueException( 'Hmac returned less than 128 bits' );
3009 }
3010 return substr( $ret, -$len );
3011 }
3012 }
3013
3014 /**
3015 * Set the random token (used for persistent authentication)
3016 * Called from loadDefaults() among other places.
3017 *
3018 * @param string|bool $token If specified, set the token to this value
3019 */
3020 public function setToken( $token = false ) {
3021 $this->load();
3022 if ( $this->mToken === self::INVALID_TOKEN ) {
3023 \MediaWiki\Logger\LoggerFactory::getInstance( 'session' )
3024 ->debug( __METHOD__ . ": Ignoring attempt to set token for system user \"$this\"" );
3025 } elseif ( !$token ) {
3026 $this->mToken = MWCryptRand::generateHex( self::TOKEN_LENGTH );
3027 } else {
3028 $this->mToken = $token;
3029 }
3030 }
3031
3032 /**
3033 * Set the password for a password reminder or new account email
3034 *
3035 * @deprecated Removed in 1.27. Use PasswordReset instead.
3036 * @param string $str New password to set or null to set an invalid
3037 * password hash meaning that the user will not be able to use it
3038 * @param bool $throttle If true, reset the throttle timestamp to the present
3039 */
3040 public function setNewpassword( $str, $throttle = true ) {
3041 throw new BadMethodCallException( __METHOD__ . ' has been removed in 1.27' );
3042 }
3043
3044 /**
3045 * Get the user's e-mail address
3046 * @return string User's email address
3047 */
3048 public function getEmail() {
3049 $this->load();
3050 Hooks::run( 'UserGetEmail', [ $this, &$this->mEmail ] );
3051 return $this->mEmail;
3052 }
3053
3054 /**
3055 * Get the timestamp of the user's e-mail authentication
3056 * @return string TS_MW timestamp
3057 */
3058 public function getEmailAuthenticationTimestamp() {
3059 $this->load();
3060 Hooks::run( 'UserGetEmailAuthenticationTimestamp', [ $this, &$this->mEmailAuthenticated ] );
3061 return $this->mEmailAuthenticated;
3062 }
3063
3064 /**
3065 * Set the user's e-mail address
3066 * @param string $str New e-mail address
3067 */
3068 public function setEmail( $str ) {
3069 $this->load();
3070 if ( $str == $this->mEmail ) {
3071 return;
3072 }
3073 $this->invalidateEmail();
3074 $this->mEmail = $str;
3075 Hooks::run( 'UserSetEmail', [ $this, &$this->mEmail ] );
3076 }
3077
3078 /**
3079 * Set the user's e-mail address and a confirmation mail if needed.
3080 *
3081 * @since 1.20
3082 * @param string $str New e-mail address
3083 * @return Status
3084 */
3085 public function setEmailWithConfirmation( $str ) {
3086 global $wgEnableEmail, $wgEmailAuthentication;
3087
3088 if ( !$wgEnableEmail ) {
3089 return Status::newFatal( 'emaildisabled' );
3090 }
3091
3092 $oldaddr = $this->getEmail();
3093 if ( $str === $oldaddr ) {
3094 return Status::newGood( true );
3095 }
3096
3097 $type = $oldaddr != '' ? 'changed' : 'set';
3098 $notificationResult = null;
3099
3100 if ( $wgEmailAuthentication ) {
3101 // Send the user an email notifying the user of the change in registered
3102 // email address on their previous email address
3103 if ( $type == 'changed' ) {
3104 $change = $str != '' ? 'changed' : 'removed';
3105 $notificationResult = $this->sendMail(
3106 wfMessage( 'notificationemail_subject_' . $change )->text(),
3107 wfMessage( 'notificationemail_body_' . $change,
3108 $this->getRequest()->getIP(),
3109 $this->getName(),
3110 $str )->text()
3111 );
3112 }
3113 }
3114
3115 $this->setEmail( $str );
3116
3117 if ( $str !== '' && $wgEmailAuthentication ) {
3118 // Send a confirmation request to the new address if needed
3119 $result = $this->sendConfirmationMail( $type );
3120
3121 if ( $notificationResult !== null ) {
3122 $result->merge( $notificationResult );
3123 }
3124
3125 if ( $result->isGood() ) {
3126 // Say to the caller that a confirmation and notification mail has been sent
3127 $result->value = 'eauth';
3128 }
3129 } else {
3130 $result = Status::newGood( true );
3131 }
3132
3133 return $result;
3134 }
3135
3136 /**
3137 * Get the user's real name
3138 * @return string User's real name
3139 */
3140 public function getRealName() {
3141 if ( !$this->isItemLoaded( 'realname' ) ) {
3142 $this->load();
3143 }
3144
3145 return $this->mRealName;
3146 }
3147
3148 /**
3149 * Set the user's real name
3150 * @param string $str New real name
3151 */
3152 public function setRealName( $str ) {
3153 $this->load();
3154 $this->mRealName = $str;
3155 }
3156
3157 /**
3158 * Get the user's current setting for a given option.
3159 *
3160 * @param string $oname The option to check
3161 * @param string|array|null $defaultOverride A default value returned if the option does not exist
3162 * @param bool $ignoreHidden Whether to ignore the effects of $wgHiddenPrefs
3163 * @return string|array|int|null User's current value for the option
3164 * @see getBoolOption()
3165 * @see getIntOption()
3166 */
3167 public function getOption( $oname, $defaultOverride = null, $ignoreHidden = false ) {
3168 global $wgHiddenPrefs;
3169 $this->loadOptions();
3170
3171 # We want 'disabled' preferences to always behave as the default value for
3172 # users, even if they have set the option explicitly in their settings (ie they
3173 # set it, and then it was disabled removing their ability to change it). But
3174 # we don't want to erase the preferences in the database in case the preference
3175 # is re-enabled again. So don't touch $mOptions, just override the returned value
3176 if ( !$ignoreHidden && in_array( $oname, $wgHiddenPrefs ) ) {
3177 return self::getDefaultOption( $oname );
3178 }
3179
3180 if ( array_key_exists( $oname, $this->mOptions ) ) {
3181 return $this->mOptions[$oname];
3182 } else {
3183 return $defaultOverride;
3184 }
3185 }
3186
3187 /**
3188 * Get all user's options
3189 *
3190 * @param int $flags Bitwise combination of:
3191 * User::GETOPTIONS_EXCLUDE_DEFAULTS Exclude user options that are set
3192 * to the default value. (Since 1.25)
3193 * @return array
3194 */
3195 public function getOptions( $flags = 0 ) {
3196 global $wgHiddenPrefs;
3197 $this->loadOptions();
3198 $options = $this->mOptions;
3199
3200 # We want 'disabled' preferences to always behave as the default value for
3201 # users, even if they have set the option explicitly in their settings (ie they
3202 # set it, and then it was disabled removing their ability to change it). But
3203 # we don't want to erase the preferences in the database in case the preference
3204 # is re-enabled again. So don't touch $mOptions, just override the returned value
3205 foreach ( $wgHiddenPrefs as $pref ) {
3206 $default = self::getDefaultOption( $pref );
3207 if ( $default !== null ) {
3208 $options[$pref] = $default;
3209 }
3210 }
3211
3212 if ( $flags & self::GETOPTIONS_EXCLUDE_DEFAULTS ) {
3213 $options = array_diff_assoc( $options, self::getDefaultOptions() );
3214 }
3215
3216 return $options;
3217 }
3218
3219 /**
3220 * Get the user's current setting for a given option, as a boolean value.
3221 *
3222 * @param string $oname The option to check
3223 * @return bool User's current value for the option
3224 * @see getOption()
3225 */
3226 public function getBoolOption( $oname ) {
3227 return (bool)$this->getOption( $oname );
3228 }
3229
3230 /**
3231 * Get the user's current setting for a given option, as an integer value.
3232 *
3233 * @param string $oname The option to check
3234 * @param int $defaultOverride A default value returned if the option does not exist
3235 * @return int User's current value for the option
3236 * @see getOption()
3237 */
3238 public function getIntOption( $oname, $defaultOverride = 0 ) {
3239 $val = $this->getOption( $oname );
3240 if ( $val == '' ) {
3241 $val = $defaultOverride;
3242 }
3243 return intval( $val );
3244 }
3245
3246 /**
3247 * Set the given option for a user.
3248 *
3249 * You need to call saveSettings() to actually write to the database.
3250 *
3251 * @param string $oname The option to set
3252 * @param mixed $val New value to set
3253 */
3254 public function setOption( $oname, $val ) {
3255 $this->loadOptions();
3256
3257 // Explicitly NULL values should refer to defaults
3258 if ( is_null( $val ) ) {
3259 $val = self::getDefaultOption( $oname );
3260 }
3261
3262 $this->mOptions[$oname] = $val;
3263 }
3264
3265 /**
3266 * Get a token stored in the preferences (like the watchlist one),
3267 * resetting it if it's empty (and saving changes).
3268 *
3269 * @param string $oname The option name to retrieve the token from
3270 * @return string|bool User's current value for the option, or false if this option is disabled.
3271 * @see resetTokenFromOption()
3272 * @see getOption()
3273 * @deprecated since 1.26 Applications should use the OAuth extension
3274 */
3275 public function getTokenFromOption( $oname ) {
3276 global $wgHiddenPrefs;
3277
3278 $id = $this->getId();
3279 if ( !$id || in_array( $oname, $wgHiddenPrefs ) ) {
3280 return false;
3281 }
3282
3283 $token = $this->getOption( $oname );
3284 if ( !$token ) {
3285 // Default to a value based on the user token to avoid space
3286 // wasted on storing tokens for all users. When this option
3287 // is set manually by the user, only then is it stored.
3288 $token = hash_hmac( 'sha1', "$oname:$id", $this->getToken() );
3289 }
3290
3291 return $token;
3292 }
3293
3294 /**
3295 * Reset a token stored in the preferences (like the watchlist one).
3296 * *Does not* save user's preferences (similarly to setOption()).
3297 *
3298 * @param string $oname The option name to reset the token in
3299 * @return string|bool New token value, or false if this option is disabled.
3300 * @see getTokenFromOption()
3301 * @see setOption()
3302 */
3303 public function resetTokenFromOption( $oname ) {
3304 global $wgHiddenPrefs;
3305 if ( in_array( $oname, $wgHiddenPrefs ) ) {
3306 return false;
3307 }
3308
3309 $token = MWCryptRand::generateHex( 40 );
3310 $this->setOption( $oname, $token );
3311 return $token;
3312 }
3313
3314 /**
3315 * Return a list of the types of user options currently returned by
3316 * User::getOptionKinds().
3317 *
3318 * Currently, the option kinds are:
3319 * - 'registered' - preferences which are registered in core MediaWiki or
3320 * by extensions using the UserGetDefaultOptions hook.
3321 * - 'registered-multiselect' - as above, using the 'multiselect' type.
3322 * - 'registered-checkmatrix' - as above, using the 'checkmatrix' type.
3323 * - 'userjs' - preferences with names starting with 'userjs-', intended to
3324 * be used by user scripts.
3325 * - 'special' - "preferences" that are not accessible via User::getOptions
3326 * or User::setOptions.
3327 * - 'unused' - preferences about which MediaWiki doesn't know anything.
3328 * These are usually legacy options, removed in newer versions.
3329 *
3330 * The API (and possibly others) use this function to determine the possible
3331 * option types for validation purposes, so make sure to update this when a
3332 * new option kind is added.
3333 *
3334 * @see User::getOptionKinds
3335 * @return array Option kinds
3336 */
3337 public static function listOptionKinds() {
3338 return [
3339 'registered',
3340 'registered-multiselect',
3341 'registered-checkmatrix',
3342 'userjs',
3343 'special',
3344 'unused'
3345 ];
3346 }
3347
3348 /**
3349 * Return an associative array mapping preferences keys to the kind of a preference they're
3350 * used for. Different kinds are handled differently when setting or reading preferences.
3351 *
3352 * See User::listOptionKinds for the list of valid option types that can be provided.
3353 *
3354 * @see User::listOptionKinds
3355 * @param IContextSource $context
3356 * @param array|null $options Assoc. array with options keys to check as keys.
3357 * Defaults to $this->mOptions.
3358 * @return array The key => kind mapping data
3359 */
3360 public function getOptionKinds( IContextSource $context, $options = null ) {
3361 $this->loadOptions();
3362 if ( $options === null ) {
3363 $options = $this->mOptions;
3364 }
3365
3366 $preferencesFactory = MediaWikiServices::getInstance()->getPreferencesFactory();
3367 $prefs = $preferencesFactory->getFormDescriptor( $this, $context );
3368 $mapping = [];
3369
3370 // Pull out the "special" options, so they don't get converted as
3371 // multiselect or checkmatrix.
3372 $specialOptions = array_fill_keys( $preferencesFactory->getSaveBlacklist(), true );
3373 foreach ( $specialOptions as $name => $value ) {
3374 unset( $prefs[$name] );
3375 }
3376
3377 // Multiselect and checkmatrix options are stored in the database with
3378 // one key per option, each having a boolean value. Extract those keys.
3379 $multiselectOptions = [];
3380 foreach ( $prefs as $name => $info ) {
3381 if ( ( isset( $info['type'] ) && $info['type'] == 'multiselect' ) ||
3382 ( isset( $info['class'] ) && $info['class'] == HTMLMultiSelectField::class ) ) {
3383 $opts = HTMLFormField::flattenOptions( $info['options'] );
3384 $prefix = $info['prefix'] ?? $name;
3385
3386 foreach ( $opts as $value ) {
3387 $multiselectOptions["$prefix$value"] = true;
3388 }
3389
3390 unset( $prefs[$name] );
3391 }
3392 }
3393 $checkmatrixOptions = [];
3394 foreach ( $prefs as $name => $info ) {
3395 if ( ( isset( $info['type'] ) && $info['type'] == 'checkmatrix' ) ||
3396 ( isset( $info['class'] ) && $info['class'] == HTMLCheckMatrix::class ) ) {
3397 $columns = HTMLFormField::flattenOptions( $info['columns'] );
3398 $rows = HTMLFormField::flattenOptions( $info['rows'] );
3399 $prefix = $info['prefix'] ?? $name;
3400
3401 foreach ( $columns as $column ) {
3402 foreach ( $rows as $row ) {
3403 $checkmatrixOptions["$prefix$column-$row"] = true;
3404 }
3405 }
3406
3407 unset( $prefs[$name] );
3408 }
3409 }
3410
3411 // $value is ignored
3412 foreach ( $options as $key => $value ) {
3413 if ( isset( $prefs[$key] ) ) {
3414 $mapping[$key] = 'registered';
3415 } elseif ( isset( $multiselectOptions[$key] ) ) {
3416 $mapping[$key] = 'registered-multiselect';
3417 } elseif ( isset( $checkmatrixOptions[$key] ) ) {
3418 $mapping[$key] = 'registered-checkmatrix';
3419 } elseif ( isset( $specialOptions[$key] ) ) {
3420 $mapping[$key] = 'special';
3421 } elseif ( substr( $key, 0, 7 ) === 'userjs-' ) {
3422 $mapping[$key] = 'userjs';
3423 } else {
3424 $mapping[$key] = 'unused';
3425 }
3426 }
3427
3428 return $mapping;
3429 }
3430
3431 /**
3432 * Reset certain (or all) options to the site defaults
3433 *
3434 * The optional parameter determines which kinds of preferences will be reset.
3435 * Supported values are everything that can be reported by getOptionKinds()
3436 * and 'all', which forces a reset of *all* preferences and overrides everything else.
3437 *
3438 * @param array|string $resetKinds Which kinds of preferences to reset. Defaults to
3439 * array( 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' )
3440 * for backwards-compatibility.
3441 * @param IContextSource|null $context Context source used when $resetKinds
3442 * does not contain 'all', passed to getOptionKinds().
3443 * Defaults to RequestContext::getMain() when null.
3444 */
3445 public function resetOptions(
3446 $resetKinds = [ 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' ],
3447 IContextSource $context = null
3448 ) {
3449 $this->load();
3450 $defaultOptions = self::getDefaultOptions();
3451
3452 if ( !is_array( $resetKinds ) ) {
3453 $resetKinds = [ $resetKinds ];
3454 }
3455
3456 if ( in_array( 'all', $resetKinds ) ) {
3457 $newOptions = $defaultOptions;
3458 } else {
3459 if ( $context === null ) {
3460 $context = RequestContext::getMain();
3461 }
3462
3463 $optionKinds = $this->getOptionKinds( $context );
3464 $resetKinds = array_intersect( $resetKinds, self::listOptionKinds() );
3465 $newOptions = [];
3466
3467 // Use default values for the options that should be deleted, and
3468 // copy old values for the ones that shouldn't.
3469 foreach ( $this->mOptions as $key => $value ) {
3470 if ( in_array( $optionKinds[$key], $resetKinds ) ) {
3471 if ( array_key_exists( $key, $defaultOptions ) ) {
3472 $newOptions[$key] = $defaultOptions[$key];
3473 }
3474 } else {
3475 $newOptions[$key] = $value;
3476 }
3477 }
3478 }
3479
3480 Hooks::run( 'UserResetAllOptions', [ $this, &$newOptions, $this->mOptions, $resetKinds ] );
3481
3482 $this->mOptions = $newOptions;
3483 $this->mOptionsLoaded = true;
3484 }
3485
3486 /**
3487 * Get the user's preferred date format.
3488 * @return string User's preferred date format
3489 */
3490 public function getDatePreference() {
3491 // Important migration for old data rows
3492 if ( is_null( $this->mDatePreference ) ) {
3493 global $wgLang;
3494 $value = $this->getOption( 'date' );
3495 $map = $wgLang->getDatePreferenceMigrationMap();
3496 if ( isset( $map[$value] ) ) {
3497 $value = $map[$value];
3498 }
3499 $this->mDatePreference = $value;
3500 }
3501 return $this->mDatePreference;
3502 }
3503
3504 /**
3505 * Determine based on the wiki configuration and the user's options,
3506 * whether this user must be over HTTPS no matter what.
3507 *
3508 * @return bool
3509 */
3510 public function requiresHTTPS() {
3511 global $wgSecureLogin;
3512 if ( !$wgSecureLogin ) {
3513 return false;
3514 } else {
3515 $https = $this->getBoolOption( 'prefershttps' );
3516 Hooks::run( 'UserRequiresHTTPS', [ $this, &$https ] );
3517 if ( $https ) {
3518 $https = wfCanIPUseHTTPS( $this->getRequest()->getIP() );
3519 }
3520 return $https;
3521 }
3522 }
3523
3524 /**
3525 * Get the user preferred stub threshold
3526 *
3527 * @return int
3528 */
3529 public function getStubThreshold() {
3530 global $wgMaxArticleSize; # Maximum article size, in Kb
3531 $threshold = $this->getIntOption( 'stubthreshold' );
3532 if ( $threshold > $wgMaxArticleSize * 1024 ) {
3533 // If they have set an impossible value, disable the preference
3534 // so we can use the parser cache again.
3535 $threshold = 0;
3536 }
3537 return $threshold;
3538 }
3539
3540 /**
3541 * Get the permissions this user has.
3542 * @return string[] permission names
3543 */
3544 public function getRights() {
3545 if ( is_null( $this->mRights ) ) {
3546 $this->mRights = self::getGroupPermissions( $this->getEffectiveGroups() );
3547 Hooks::run( 'UserGetRights', [ $this, &$this->mRights ] );
3548
3549 // Deny any rights denied by the user's session, unless this
3550 // endpoint has no sessions.
3551 if ( !defined( 'MW_NO_SESSION' ) ) {
3552 $allowedRights = $this->getRequest()->getSession()->getAllowedUserRights();
3553 if ( $allowedRights !== null ) {
3554 $this->mRights = array_intersect( $this->mRights, $allowedRights );
3555 }
3556 }
3557
3558 Hooks::run( 'UserGetRightsRemove', [ $this, &$this->mRights ] );
3559 // Force reindexation of rights when a hook has unset one of them
3560 $this->mRights = array_values( array_unique( $this->mRights ) );
3561
3562 // If block disables login, we should also remove any
3563 // extra rights blocked users might have, in case the
3564 // blocked user has a pre-existing session (T129738).
3565 // This is checked here for cases where people only call
3566 // $user->isAllowed(). It is also checked in Title::checkUserBlock()
3567 // to give a better error message in the common case.
3568 $config = RequestContext::getMain()->getConfig();
3569 if (
3570 $this->isLoggedIn() &&
3571 $config->get( 'BlockDisablesLogin' ) &&
3572 $this->isBlocked()
3573 ) {
3574 $anon = new User;
3575 $this->mRights = array_intersect( $this->mRights, $anon->getRights() );
3576 }
3577 }
3578 return $this->mRights;
3579 }
3580
3581 /**
3582 * Get the list of explicit group memberships this user has.
3583 * The implicit * and user groups are not included.
3584 * @return array Array of String internal group names
3585 */
3586 public function getGroups() {
3587 $this->load();
3588 $this->loadGroups();
3589 return array_keys( $this->mGroupMemberships );
3590 }
3591
3592 /**
3593 * Get the list of explicit group memberships this user has, stored as
3594 * UserGroupMembership objects. Implicit groups are not included.
3595 *
3596 * @return UserGroupMembership[] Associative array of (group name => UserGroupMembership object)
3597 * @since 1.29
3598 */
3599 public function getGroupMemberships() {
3600 $this->load();
3601 $this->loadGroups();
3602 return $this->mGroupMemberships;
3603 }
3604
3605 /**
3606 * Get the list of implicit group memberships this user has.
3607 * This includes all explicit groups, plus 'user' if logged in,
3608 * '*' for all accounts, and autopromoted groups
3609 * @param bool $recache Whether to avoid the cache
3610 * @return array Array of String internal group names
3611 */
3612 public function getEffectiveGroups( $recache = false ) {
3613 if ( $recache || is_null( $this->mEffectiveGroups ) ) {
3614 $this->mEffectiveGroups = array_unique( array_merge(
3615 $this->getGroups(), // explicit groups
3616 $this->getAutomaticGroups( $recache ) // implicit groups
3617 ) );
3618 // Avoid PHP 7.1 warning of passing $this by reference
3619 $user = $this;
3620 // Hook for additional groups
3621 Hooks::run( 'UserEffectiveGroups', [ &$user, &$this->mEffectiveGroups ] );
3622 // Force reindexation of groups when a hook has unset one of them
3623 $this->mEffectiveGroups = array_values( array_unique( $this->mEffectiveGroups ) );
3624 }
3625 return $this->mEffectiveGroups;
3626 }
3627
3628 /**
3629 * Get the list of implicit group memberships this user has.
3630 * This includes 'user' if logged in, '*' for all accounts,
3631 * and autopromoted groups
3632 * @param bool $recache Whether to avoid the cache
3633 * @return array Array of String internal group names
3634 */
3635 public function getAutomaticGroups( $recache = false ) {
3636 if ( $recache || is_null( $this->mImplicitGroups ) ) {
3637 $this->mImplicitGroups = [ '*' ];
3638 if ( $this->getId() ) {
3639 $this->mImplicitGroups[] = 'user';
3640
3641 $this->mImplicitGroups = array_unique( array_merge(
3642 $this->mImplicitGroups,
3643 Autopromote::getAutopromoteGroups( $this )
3644 ) );
3645 }
3646 if ( $recache ) {
3647 // Assure data consistency with rights/groups,
3648 // as getEffectiveGroups() depends on this function
3649 $this->mEffectiveGroups = null;
3650 }
3651 }
3652 return $this->mImplicitGroups;
3653 }
3654
3655 /**
3656 * Returns the groups the user has belonged to.
3657 *
3658 * The user may still belong to the returned groups. Compare with getGroups().
3659 *
3660 * The function will not return groups the user had belonged to before MW 1.17
3661 *
3662 * @return array Names of the groups the user has belonged to.
3663 */
3664 public function getFormerGroups() {
3665 $this->load();
3666
3667 if ( is_null( $this->mFormerGroups ) ) {
3668 $db = ( $this->queryFlagsUsed & self::READ_LATEST )
3669 ? wfGetDB( DB_MASTER )
3670 : wfGetDB( DB_REPLICA );
3671 $res = $db->select( 'user_former_groups',
3672 [ 'ufg_group' ],
3673 [ 'ufg_user' => $this->mId ],
3674 __METHOD__ );
3675 $this->mFormerGroups = [];
3676 foreach ( $res as $row ) {
3677 $this->mFormerGroups[] = $row->ufg_group;
3678 }
3679 }
3680
3681 return $this->mFormerGroups;
3682 }
3683
3684 /**
3685 * Get the user's edit count.
3686 * @return int|null Null for anonymous users
3687 */
3688 public function getEditCount() {
3689 if ( !$this->getId() ) {
3690 return null;
3691 }
3692
3693 if ( $this->mEditCount === null ) {
3694 /* Populate the count, if it has not been populated yet */
3695 $dbr = wfGetDB( DB_REPLICA );
3696 // check if the user_editcount field has been initialized
3697 $count = $dbr->selectField(
3698 'user', 'user_editcount',
3699 [ 'user_id' => $this->mId ],
3700 __METHOD__
3701 );
3702
3703 if ( $count === null ) {
3704 // it has not been initialized. do so.
3705 $count = $this->initEditCount();
3706 }
3707 $this->mEditCount = $count;
3708 }
3709 return (int)$this->mEditCount;
3710 }
3711
3712 /**
3713 * Add the user to the given group. This takes immediate effect.
3714 * If the user is already in the group, the expiry time will be updated to the new
3715 * expiry time. (If $expiry is omitted or null, the membership will be altered to
3716 * never expire.)
3717 *
3718 * @param string $group Name of the group to add
3719 * @param string|null $expiry Optional expiry timestamp in any format acceptable to
3720 * wfTimestamp(), or null if the group assignment should not expire
3721 * @return bool
3722 */
3723 public function addGroup( $group, $expiry = null ) {
3724 $this->load();
3725 $this->loadGroups();
3726
3727 if ( $expiry ) {
3728 $expiry = wfTimestamp( TS_MW, $expiry );
3729 }
3730
3731 if ( !Hooks::run( 'UserAddGroup', [ $this, &$group, &$expiry ] ) ) {
3732 return false;
3733 }
3734
3735 // create the new UserGroupMembership and put it in the DB
3736 $ugm = new UserGroupMembership( $this->mId, $group, $expiry );
3737 if ( !$ugm->insert( true ) ) {
3738 return false;
3739 }
3740
3741 $this->mGroupMemberships[$group] = $ugm;
3742
3743 // Refresh the groups caches, and clear the rights cache so it will be
3744 // refreshed on the next call to $this->getRights().
3745 $this->getEffectiveGroups( true );
3746 $this->mRights = null;
3747
3748 $this->invalidateCache();
3749
3750 return true;
3751 }
3752
3753 /**
3754 * Remove the user from the given group.
3755 * This takes immediate effect.
3756 * @param string $group Name of the group to remove
3757 * @return bool
3758 */
3759 public function removeGroup( $group ) {
3760 $this->load();
3761
3762 if ( !Hooks::run( 'UserRemoveGroup', [ $this, &$group ] ) ) {
3763 return false;
3764 }
3765
3766 $ugm = UserGroupMembership::getMembership( $this->mId, $group );
3767 // delete the membership entry
3768 if ( !$ugm || !$ugm->delete() ) {
3769 return false;
3770 }
3771
3772 $this->loadGroups();
3773 unset( $this->mGroupMemberships[$group] );
3774
3775 // Refresh the groups caches, and clear the rights cache so it will be
3776 // refreshed on the next call to $this->getRights().
3777 $this->getEffectiveGroups( true );
3778 $this->mRights = null;
3779
3780 $this->invalidateCache();
3781
3782 return true;
3783 }
3784
3785 /**
3786 * Get whether the user is logged in
3787 * @return bool
3788 */
3789 public function isLoggedIn() {
3790 return $this->getId() != 0;
3791 }
3792
3793 /**
3794 * Get whether the user is anonymous
3795 * @return bool
3796 */
3797 public function isAnon() {
3798 return !$this->isLoggedIn();
3799 }
3800
3801 /**
3802 * @return bool Whether this user is flagged as being a bot role account
3803 * @since 1.28
3804 */
3805 public function isBot() {
3806 if ( in_array( 'bot', $this->getGroups() ) && $this->isAllowed( 'bot' ) ) {
3807 return true;
3808 }
3809
3810 $isBot = false;
3811 Hooks::run( "UserIsBot", [ $this, &$isBot ] );
3812
3813 return $isBot;
3814 }
3815
3816 /**
3817 * Check if user is allowed to access a feature / make an action
3818 *
3819 * @param string $permissions,... Permissions to test
3820 * @return bool True if user is allowed to perform *any* of the given actions
3821 */
3822 public function isAllowedAny() {
3823 $permissions = func_get_args();
3824 foreach ( $permissions as $permission ) {
3825 if ( $this->isAllowed( $permission ) ) {
3826 return true;
3827 }
3828 }
3829 return false;
3830 }
3831
3832 /**
3833 *
3834 * @param string $permissions,... Permissions to test
3835 * @return bool True if the user is allowed to perform *all* of the given actions
3836 */
3837 public function isAllowedAll() {
3838 $permissions = func_get_args();
3839 foreach ( $permissions as $permission ) {
3840 if ( !$this->isAllowed( $permission ) ) {
3841 return false;
3842 }
3843 }
3844 return true;
3845 }
3846
3847 /**
3848 * Internal mechanics of testing a permission
3849 * @param string $action
3850 * @return bool
3851 */
3852 public function isAllowed( $action = '' ) {
3853 if ( $action === '' ) {
3854 return true; // In the spirit of DWIM
3855 }
3856 // Use strict parameter to avoid matching numeric 0 accidentally inserted
3857 // by misconfiguration: 0 == 'foo'
3858 return in_array( $action, $this->getRights(), true );
3859 }
3860
3861 /**
3862 * Check whether to enable recent changes patrol features for this user
3863 * @return bool True or false
3864 */
3865 public function useRCPatrol() {
3866 global $wgUseRCPatrol;
3867 return $wgUseRCPatrol && $this->isAllowedAny( 'patrol', 'patrolmarks' );
3868 }
3869
3870 /**
3871 * Check whether to enable new pages patrol features for this user
3872 * @return bool True or false
3873 */
3874 public function useNPPatrol() {
3875 global $wgUseRCPatrol, $wgUseNPPatrol;
3876 return (
3877 ( $wgUseRCPatrol || $wgUseNPPatrol )
3878 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3879 );
3880 }
3881
3882 /**
3883 * Check whether to enable new files patrol features for this user
3884 * @return bool True or false
3885 */
3886 public function useFilePatrol() {
3887 global $wgUseRCPatrol, $wgUseFilePatrol;
3888 return (
3889 ( $wgUseRCPatrol || $wgUseFilePatrol )
3890 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3891 );
3892 }
3893
3894 /**
3895 * Get the WebRequest object to use with this object
3896 *
3897 * @return WebRequest
3898 */
3899 public function getRequest() {
3900 if ( $this->mRequest ) {
3901 return $this->mRequest;
3902 } else {
3903 global $wgRequest;
3904 return $wgRequest;
3905 }
3906 }
3907
3908 /**
3909 * Check the watched status of an article.
3910 * @since 1.22 $checkRights parameter added
3911 * @param Title $title Title of the article to look at
3912 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3913 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3914 * @return bool
3915 */
3916 public function isWatched( $title, $checkRights = self::CHECK_USER_RIGHTS ) {
3917 if ( $title->isWatchable() && ( !$checkRights || $this->isAllowed( 'viewmywatchlist' ) ) ) {
3918 return MediaWikiServices::getInstance()->getWatchedItemStore()->isWatched( $this, $title );
3919 }
3920 return false;
3921 }
3922
3923 /**
3924 * Watch an article.
3925 * @since 1.22 $checkRights parameter added
3926 * @param Title $title Title of the article to look at
3927 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3928 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3929 */
3930 public function addWatch( $title, $checkRights = self::CHECK_USER_RIGHTS ) {
3931 if ( !$checkRights || $this->isAllowed( 'editmywatchlist' ) ) {
3932 MediaWikiServices::getInstance()->getWatchedItemStore()->addWatchBatchForUser(
3933 $this,
3934 [ $title->getSubjectPage(), $title->getTalkPage() ]
3935 );
3936 }
3937 $this->invalidateCache();
3938 }
3939
3940 /**
3941 * Stop watching an article.
3942 * @since 1.22 $checkRights parameter added
3943 * @param Title $title Title of the article to look at
3944 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3945 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3946 */
3947 public function removeWatch( $title, $checkRights = self::CHECK_USER_RIGHTS ) {
3948 if ( !$checkRights || $this->isAllowed( 'editmywatchlist' ) ) {
3949 $store = MediaWikiServices::getInstance()->getWatchedItemStore();
3950 $store->removeWatch( $this, $title->getSubjectPage() );
3951 $store->removeWatch( $this, $title->getTalkPage() );
3952 }
3953 $this->invalidateCache();
3954 }
3955
3956 /**
3957 * Clear the user's notification timestamp for the given title.
3958 * If e-notif e-mails are on, they will receive notification mails on
3959 * the next change of the page if it's watched etc.
3960 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3961 * @param Title &$title Title of the article to look at
3962 * @param int $oldid The revision id being viewed. If not given or 0, latest revision is assumed.
3963 */
3964 public function clearNotification( &$title, $oldid = 0 ) {
3965 global $wgUseEnotif, $wgShowUpdatedMarker;
3966
3967 // Do nothing if the database is locked to writes
3968 if ( wfReadOnly() ) {
3969 return;
3970 }
3971
3972 // Do nothing if not allowed to edit the watchlist
3973 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
3974 return;
3975 }
3976
3977 // If we're working on user's talk page, we should update the talk page message indicator
3978 if ( $title->getNamespace() == NS_USER_TALK && $title->getText() == $this->getName() ) {
3979 // Avoid PHP 7.1 warning of passing $this by reference
3980 $user = $this;
3981 if ( !Hooks::run( 'UserClearNewTalkNotification', [ &$user, $oldid ] ) ) {
3982 return;
3983 }
3984
3985 // Try to update the DB post-send and only if needed...
3986 DeferredUpdates::addCallableUpdate( function () use ( $title, $oldid ) {
3987 if ( !$this->getNewtalk() ) {
3988 return; // no notifications to clear
3989 }
3990
3991 // Delete the last notifications (they stack up)
3992 $this->setNewtalk( false );
3993
3994 // If there is a new, unseen, revision, use its timestamp
3995 $nextid = $oldid
3996 ? $title->getNextRevisionID( $oldid, Title::GAID_FOR_UPDATE )
3997 : null;
3998 if ( $nextid ) {
3999 $this->setNewtalk( true, Revision::newFromId( $nextid ) );
4000 }
4001 } );
4002 }
4003
4004 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
4005 return;
4006 }
4007
4008 if ( $this->isAnon() ) {
4009 // Nothing else to do...
4010 return;
4011 }
4012
4013 // Only update the timestamp if the page is being watched.
4014 // The query to find out if it is watched is cached both in memcached and per-invocation,
4015 // and when it does have to be executed, it can be on a replica DB
4016 // If this is the user's newtalk page, we always update the timestamp
4017 $force = '';
4018 if ( $title->getNamespace() == NS_USER_TALK && $title->getText() == $this->getName() ) {
4019 $force = 'force';
4020 }
4021
4022 MediaWikiServices::getInstance()->getWatchedItemStore()
4023 ->resetNotificationTimestamp( $this, $title, $force, $oldid );
4024 }
4025
4026 /**
4027 * Resets all of the given user's page-change notification timestamps.
4028 * If e-notif e-mails are on, they will receive notification mails on
4029 * the next change of any watched page.
4030 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
4031 */
4032 public function clearAllNotifications() {
4033 global $wgUseEnotif, $wgShowUpdatedMarker;
4034 // Do nothing if not allowed to edit the watchlist
4035 if ( wfReadOnly() || !$this->isAllowed( 'editmywatchlist' ) ) {
4036 return;
4037 }
4038
4039 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
4040 $this->setNewtalk( false );
4041 return;
4042 }
4043
4044 $id = $this->getId();
4045 if ( !$id ) {
4046 return;
4047 }
4048
4049 $watchedItemStore = MediaWikiServices::getInstance()->getWatchedItemStore();
4050 $watchedItemStore->resetAllNotificationTimestampsForUser( $this );
4051
4052 // We also need to clear here the "you have new message" notification for the own
4053 // user_talk page; it's cleared one page view later in WikiPage::doViewUpdates().
4054 }
4055
4056 /**
4057 * Compute experienced level based on edit count and registration date.
4058 *
4059 * @return string 'newcomer', 'learner', or 'experienced'
4060 */
4061 public function getExperienceLevel() {
4062 global $wgLearnerEdits,
4063 $wgExperiencedUserEdits,
4064 $wgLearnerMemberSince,
4065 $wgExperiencedUserMemberSince;
4066
4067 if ( $this->isAnon() ) {
4068 return false;
4069 }
4070
4071 $editCount = $this->getEditCount();
4072 $registration = $this->getRegistration();
4073 $now = time();
4074 $learnerRegistration = wfTimestamp( TS_MW, $now - $wgLearnerMemberSince * 86400 );
4075 $experiencedRegistration = wfTimestamp( TS_MW, $now - $wgExperiencedUserMemberSince * 86400 );
4076
4077 if (
4078 $editCount < $wgLearnerEdits ||
4079 $registration > $learnerRegistration
4080 ) {
4081 return 'newcomer';
4082 } elseif (
4083 $editCount > $wgExperiencedUserEdits &&
4084 $registration <= $experiencedRegistration
4085 ) {
4086 return 'experienced';
4087 } else {
4088 return 'learner';
4089 }
4090 }
4091
4092 /**
4093 * Persist this user's session (e.g. set cookies)
4094 *
4095 * @param WebRequest|null $request WebRequest object to use; $wgRequest will be used if null
4096 * is passed.
4097 * @param bool|null $secure Whether to force secure/insecure cookies or use default
4098 * @param bool $rememberMe Whether to add a Token cookie for elongated sessions
4099 */
4100 public function setCookies( $request = null, $secure = null, $rememberMe = false ) {
4101 $this->load();
4102 if ( 0 == $this->mId ) {
4103 return;
4104 }
4105
4106 $session = $this->getRequest()->getSession();
4107 if ( $request && $session->getRequest() !== $request ) {
4108 $session = $session->sessionWithRequest( $request );
4109 }
4110 $delay = $session->delaySave();
4111
4112 if ( !$session->getUser()->equals( $this ) ) {
4113 if ( !$session->canSetUser() ) {
4114 \MediaWiki\Logger\LoggerFactory::getInstance( 'session' )
4115 ->warning( __METHOD__ .
4116 ": Cannot save user \"$this\" to a user \"{$session->getUser()}\"'s immutable session"
4117 );
4118 return;
4119 }
4120 $session->setUser( $this );
4121 }
4122
4123 $session->setRememberUser( $rememberMe );
4124 if ( $secure !== null ) {
4125 $session->setForceHTTPS( $secure );
4126 }
4127
4128 $session->persist();
4129
4130 ScopedCallback::consume( $delay );
4131 }
4132
4133 /**
4134 * Log this user out.
4135 */
4136 public function logout() {
4137 // Avoid PHP 7.1 warning of passing $this by reference
4138 $user = $this;
4139 if ( Hooks::run( 'UserLogout', [ &$user ] ) ) {
4140 $this->doLogout();
4141 }
4142 }
4143
4144 /**
4145 * Clear the user's session, and reset the instance cache.
4146 * @see logout()
4147 */
4148 public function doLogout() {
4149 $session = $this->getRequest()->getSession();
4150 if ( !$session->canSetUser() ) {
4151 \MediaWiki\Logger\LoggerFactory::getInstance( 'session' )
4152 ->warning( __METHOD__ . ": Cannot log out of an immutable session" );
4153 $error = 'immutable';
4154 } elseif ( !$session->getUser()->equals( $this ) ) {
4155 \MediaWiki\Logger\LoggerFactory::getInstance( 'session' )
4156 ->warning( __METHOD__ .
4157 ": Cannot log user \"$this\" out of a user \"{$session->getUser()}\"'s session"
4158 );
4159 // But we still may as well make this user object anon
4160 $this->clearInstanceCache( 'defaults' );
4161 $error = 'wronguser';
4162 } else {
4163 $this->clearInstanceCache( 'defaults' );
4164 $delay = $session->delaySave();
4165 $session->unpersist(); // Clear cookies (T127436)
4166 $session->setLoggedOutTimestamp( time() );
4167 $session->setUser( new User );
4168 $session->set( 'wsUserID', 0 ); // Other code expects this
4169 $session->resetAllTokens();
4170 ScopedCallback::consume( $delay );
4171 $error = false;
4172 }
4173 \MediaWiki\Logger\LoggerFactory::getInstance( 'authevents' )->info( 'Logout', [
4174 'event' => 'logout',
4175 'successful' => $error === false,
4176 'status' => $error ?: 'success',
4177 ] );
4178 }
4179
4180 /**
4181 * Save this user's settings into the database.
4182 * @todo Only rarely do all these fields need to be set!
4183 */
4184 public function saveSettings() {
4185 if ( wfReadOnly() ) {
4186 // @TODO: caller should deal with this instead!
4187 // This should really just be an exception.
4188 MWExceptionHandler::logException( new DBExpectedError(
4189 null,
4190 "Could not update user with ID '{$this->mId}'; DB is read-only."
4191 ) );
4192 return;
4193 }
4194
4195 $this->load();
4196 if ( 0 == $this->mId ) {
4197 return; // anon
4198 }
4199
4200 // Get a new user_touched that is higher than the old one.
4201 // This will be used for a CAS check as a last-resort safety
4202 // check against race conditions and replica DB lag.
4203 $newTouched = $this->newTouchedTimestamp();
4204
4205 $dbw = wfGetDB( DB_MASTER );
4206 $dbw->doAtomicSection( __METHOD__, function ( $dbw, $fname ) use ( $newTouched ) {
4207 global $wgActorTableSchemaMigrationStage;
4208
4209 $dbw->update( 'user',
4210 [ /* SET */
4211 'user_name' => $this->mName,
4212 'user_real_name' => $this->mRealName,
4213 'user_email' => $this->mEmail,
4214 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
4215 'user_touched' => $dbw->timestamp( $newTouched ),
4216 'user_token' => strval( $this->mToken ),
4217 'user_email_token' => $this->mEmailToken,
4218 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires ),
4219 ], $this->makeUpdateConditions( $dbw, [ /* WHERE */
4220 'user_id' => $this->mId,
4221 ] ), $fname
4222 );
4223
4224 if ( !$dbw->affectedRows() ) {
4225 // Maybe the problem was a missed cache update; clear it to be safe
4226 $this->clearSharedCache( 'refresh' );
4227 // User was changed in the meantime or loaded with stale data
4228 $from = ( $this->queryFlagsUsed & self::READ_LATEST ) ? 'master' : 'replica';
4229 LoggerFactory::getInstance( 'preferences' )->warning(
4230 "CAS update failed on user_touched for user ID '{user_id}' ({db_flag} read)",
4231 [ 'user_id' => $this->mId, 'db_flag' => $from ]
4232 );
4233 throw new MWException( "CAS update failed on user_touched. " .
4234 "The version of the user to be saved is older than the current version."
4235 );
4236 }
4237
4238 if ( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_WRITE_NEW ) {
4239 $dbw->update(
4240 'actor',
4241 [ 'actor_name' => $this->mName ],
4242 [ 'actor_user' => $this->mId ],
4243 $fname
4244 );
4245 }
4246 } );
4247
4248 $this->mTouched = $newTouched;
4249 $this->saveOptions();
4250
4251 Hooks::run( 'UserSaveSettings', [ $this ] );
4252 $this->clearSharedCache();
4253 $this->getUserPage()->invalidateCache();
4254 }
4255
4256 /**
4257 * If only this user's username is known, and it exists, return the user ID.
4258 *
4259 * @param int $flags Bitfield of User:READ_* constants; useful for existence checks
4260 * @return int
4261 */
4262 public function idForName( $flags = 0 ) {
4263 $s = trim( $this->getName() );
4264 if ( $s === '' ) {
4265 return 0;
4266 }
4267
4268 $db = ( ( $flags & self::READ_LATEST ) == self::READ_LATEST )
4269 ? wfGetDB( DB_MASTER )
4270 : wfGetDB( DB_REPLICA );
4271
4272 $options = ( ( $flags & self::READ_LOCKING ) == self::READ_LOCKING )
4273 ? [ 'LOCK IN SHARE MODE' ]
4274 : [];
4275
4276 $id = $db->selectField( 'user',
4277 'user_id', [ 'user_name' => $s ], __METHOD__, $options );
4278
4279 return (int)$id;
4280 }
4281
4282 /**
4283 * Add a user to the database, return the user object
4284 *
4285 * @param string $name Username to add
4286 * @param array $params Array of Strings Non-default parameters to save to
4287 * the database as user_* fields:
4288 * - email: The user's email address.
4289 * - email_authenticated: The email authentication timestamp.
4290 * - real_name: The user's real name.
4291 * - options: An associative array of non-default options.
4292 * - token: Random authentication token. Do not set.
4293 * - registration: Registration timestamp. Do not set.
4294 *
4295 * @return User|null User object, or null if the username already exists.
4296 */
4297 public static function createNew( $name, $params = [] ) {
4298 foreach ( [ 'password', 'newpassword', 'newpass_time', 'password_expires' ] as $field ) {
4299 if ( isset( $params[$field] ) ) {
4300 wfDeprecated( __METHOD__ . " with param '$field'", '1.27' );
4301 unset( $params[$field] );
4302 }
4303 }
4304
4305 $user = new User;
4306 $user->load();
4307 $user->setToken(); // init token
4308 if ( isset( $params['options'] ) ) {
4309 $user->mOptions = $params['options'] + (array)$user->mOptions;
4310 unset( $params['options'] );
4311 }
4312 $dbw = wfGetDB( DB_MASTER );
4313
4314 $noPass = PasswordFactory::newInvalidPassword()->toString();
4315
4316 $fields = [
4317 'user_name' => $name,
4318 'user_password' => $noPass,
4319 'user_newpassword' => $noPass,
4320 'user_email' => $user->mEmail,
4321 'user_email_authenticated' => $dbw->timestampOrNull( $user->mEmailAuthenticated ),
4322 'user_real_name' => $user->mRealName,
4323 'user_token' => strval( $user->mToken ),
4324 'user_registration' => $dbw->timestamp( $user->mRegistration ),
4325 'user_editcount' => 0,
4326 'user_touched' => $dbw->timestamp( $user->newTouchedTimestamp() ),
4327 ];
4328 foreach ( $params as $name => $value ) {
4329 $fields["user_$name"] = $value;
4330 }
4331
4332 return $dbw->doAtomicSection( __METHOD__, function ( $dbw, $fname ) use ( $fields ) {
4333 $dbw->insert( 'user', $fields, $fname, [ 'IGNORE' ] );
4334 if ( $dbw->affectedRows() ) {
4335 $newUser = self::newFromId( $dbw->insertId() );
4336 $newUser->mName = $fields['user_name'];
4337 $newUser->updateActorId( $dbw );
4338 // Load the user from master to avoid replica lag
4339 $newUser->load( self::READ_LATEST );
4340 } else {
4341 $newUser = null;
4342 }
4343 return $newUser;
4344 } );
4345 }
4346
4347 /**
4348 * Add this existing user object to the database. If the user already
4349 * exists, a fatal status object is returned, and the user object is
4350 * initialised with the data from the database.
4351 *
4352 * Previously, this function generated a DB error due to a key conflict
4353 * if the user already existed. Many extension callers use this function
4354 * in code along the lines of:
4355 *
4356 * $user = User::newFromName( $name );
4357 * if ( !$user->isLoggedIn() ) {
4358 * $user->addToDatabase();
4359 * }
4360 * // do something with $user...
4361 *
4362 * However, this was vulnerable to a race condition (T18020). By
4363 * initialising the user object if the user exists, we aim to support this
4364 * calling sequence as far as possible.
4365 *
4366 * Note that if the user exists, this function will acquire a write lock,
4367 * so it is still advisable to make the call conditional on isLoggedIn(),
4368 * and to commit the transaction after calling.
4369 *
4370 * @throws MWException
4371 * @return Status
4372 */
4373 public function addToDatabase() {
4374 $this->load();
4375 if ( !$this->mToken ) {
4376 $this->setToken(); // init token
4377 }
4378
4379 if ( !is_string( $this->mName ) ) {
4380 throw new RuntimeException( "User name field is not set." );
4381 }
4382
4383 $this->mTouched = $this->newTouchedTimestamp();
4384
4385 $dbw = wfGetDB( DB_MASTER );
4386 $status = $dbw->doAtomicSection( __METHOD__, function ( $dbw, $fname ) {
4387 $noPass = PasswordFactory::newInvalidPassword()->toString();
4388 $dbw->insert( 'user',
4389 [
4390 'user_name' => $this->mName,
4391 'user_password' => $noPass,
4392 'user_newpassword' => $noPass,
4393 'user_email' => $this->mEmail,
4394 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
4395 'user_real_name' => $this->mRealName,
4396 'user_token' => strval( $this->mToken ),
4397 'user_registration' => $dbw->timestamp( $this->mRegistration ),
4398 'user_editcount' => 0,
4399 'user_touched' => $dbw->timestamp( $this->mTouched ),
4400 ], $fname,
4401 [ 'IGNORE' ]
4402 );
4403 if ( !$dbw->affectedRows() ) {
4404 // Use locking reads to bypass any REPEATABLE-READ snapshot.
4405 $this->mId = $dbw->selectField(
4406 'user',
4407 'user_id',
4408 [ 'user_name' => $this->mName ],
4409 $fname,
4410 [ 'LOCK IN SHARE MODE' ]
4411 );
4412 $loaded = false;
4413 if ( $this->mId ) {
4414 if ( $this->loadFromDatabase( self::READ_LOCKING ) ) {
4415 $loaded = true;
4416 }
4417 }
4418 if ( !$loaded ) {
4419 throw new MWException( $fname . ": hit a key conflict attempting " .
4420 "to insert user '{$this->mName}' row, but it was not present in select!" );
4421 }
4422 return Status::newFatal( 'userexists' );
4423 }
4424 $this->mId = $dbw->insertId();
4425 self::$idCacheByName[$this->mName] = $this->mId;
4426 $this->updateActorId( $dbw );
4427
4428 return Status::newGood();
4429 } );
4430 if ( !$status->isGood() ) {
4431 return $status;
4432 }
4433
4434 // Clear instance cache other than user table data and actor, which is already accurate
4435 $this->clearInstanceCache();
4436
4437 $this->saveOptions();
4438 return Status::newGood();
4439 }
4440
4441 /**
4442 * Update the actor ID after an insert
4443 * @param IDatabase $dbw Writable database handle
4444 */
4445 private function updateActorId( IDatabase $dbw ) {
4446 global $wgActorTableSchemaMigrationStage;
4447
4448 if ( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_WRITE_NEW ) {
4449 $dbw->insert(
4450 'actor',
4451 [ 'actor_user' => $this->mId, 'actor_name' => $this->mName ],
4452 __METHOD__
4453 );
4454 $this->mActorId = (int)$dbw->insertId();
4455 }
4456 }
4457
4458 /**
4459 * If this user is logged-in and blocked,
4460 * block any IP address they've successfully logged in from.
4461 * @return bool A block was spread
4462 */
4463 public function spreadAnyEditBlock() {
4464 if ( $this->isLoggedIn() && $this->isBlocked() ) {
4465 return $this->spreadBlock();
4466 }
4467
4468 return false;
4469 }
4470
4471 /**
4472 * If this (non-anonymous) user is blocked,
4473 * block the IP address they've successfully logged in from.
4474 * @return bool A block was spread
4475 */
4476 protected function spreadBlock() {
4477 wfDebug( __METHOD__ . "()\n" );
4478 $this->load();
4479 if ( $this->mId == 0 ) {
4480 return false;
4481 }
4482
4483 $userblock = Block::newFromTarget( $this->getName() );
4484 if ( !$userblock ) {
4485 return false;
4486 }
4487
4488 return (bool)$userblock->doAutoblock( $this->getRequest()->getIP() );
4489 }
4490
4491 /**
4492 * Get whether the user is explicitly blocked from account creation.
4493 * @return bool|Block
4494 */
4495 public function isBlockedFromCreateAccount() {
4496 $this->getBlockedStatus();
4497 if ( $this->mBlock && $this->mBlock->prevents( 'createaccount' ) ) {
4498 return $this->mBlock;
4499 }
4500
4501 # T15611: if the IP address the user is trying to create an account from is
4502 # blocked with createaccount disabled, prevent new account creation there even
4503 # when the user is logged in
4504 if ( $this->mBlockedFromCreateAccount === false && !$this->isAllowed( 'ipblock-exempt' ) ) {
4505 $this->mBlockedFromCreateAccount = Block::newFromTarget( null, $this->getRequest()->getIP() );
4506 }
4507 return $this->mBlockedFromCreateAccount instanceof Block
4508 && $this->mBlockedFromCreateAccount->prevents( 'createaccount' )
4509 ? $this->mBlockedFromCreateAccount
4510 : false;
4511 }
4512
4513 /**
4514 * Get whether the user is blocked from using Special:Emailuser.
4515 * @return bool
4516 */
4517 public function isBlockedFromEmailuser() {
4518 $this->getBlockedStatus();
4519 return $this->mBlock && $this->mBlock->prevents( 'sendemail' );
4520 }
4521
4522 /**
4523 * Get whether the user is blocked from using Special:Upload
4524 *
4525 * @return bool
4526 */
4527 public function isBlockedFromUpload() {
4528 $this->getBlockedStatus();
4529 return $this->mBlock && $this->mBlock->prevents( 'upload' );
4530 }
4531
4532 /**
4533 * Get whether the user is allowed to create an account.
4534 * @return bool
4535 */
4536 public function isAllowedToCreateAccount() {
4537 return $this->isAllowed( 'createaccount' ) && !$this->isBlockedFromCreateAccount();
4538 }
4539
4540 /**
4541 * Get this user's personal page title.
4542 *
4543 * @return Title User's personal page title
4544 */
4545 public function getUserPage() {
4546 return Title::makeTitle( NS_USER, $this->getName() );
4547 }
4548
4549 /**
4550 * Get this user's talk page title.
4551 *
4552 * @return Title User's talk page title
4553 */
4554 public function getTalkPage() {
4555 $title = $this->getUserPage();
4556 return $title->getTalkPage();
4557 }
4558
4559 /**
4560 * Determine whether the user is a newbie. Newbies are either
4561 * anonymous IPs, or the most recently created accounts.
4562 * @return bool
4563 */
4564 public function isNewbie() {
4565 return !$this->isAllowed( 'autoconfirmed' );
4566 }
4567
4568 /**
4569 * Check to see if the given clear-text password is one of the accepted passwords
4570 * @deprecated since 1.27, use AuthManager instead
4571 * @param string $password User password
4572 * @return bool True if the given password is correct, otherwise False
4573 */
4574 public function checkPassword( $password ) {
4575 wfDeprecated( __METHOD__, '1.27' );
4576
4577 $manager = AuthManager::singleton();
4578 $reqs = AuthenticationRequest::loadRequestsFromSubmission(
4579 $manager->getAuthenticationRequests( AuthManager::ACTION_LOGIN ),
4580 [
4581 'username' => $this->getName(),
4582 'password' => $password,
4583 ]
4584 );
4585 $res = AuthManager::singleton()->beginAuthentication( $reqs, 'null:' );
4586 switch ( $res->status ) {
4587 case AuthenticationResponse::PASS:
4588 return true;
4589 case AuthenticationResponse::FAIL:
4590 // Hope it's not a PreAuthenticationProvider that failed...
4591 \MediaWiki\Logger\LoggerFactory::getInstance( 'authentication' )
4592 ->info( __METHOD__ . ': Authentication failed: ' . $res->message->plain() );
4593 return false;
4594 default:
4595 throw new BadMethodCallException(
4596 'AuthManager returned a response unsupported by ' . __METHOD__
4597 );
4598 }
4599 }
4600
4601 /**
4602 * Check if the given clear-text password matches the temporary password
4603 * sent by e-mail for password reset operations.
4604 *
4605 * @deprecated since 1.27, use AuthManager instead
4606 * @param string $plaintext
4607 * @return bool True if matches, false otherwise
4608 */
4609 public function checkTemporaryPassword( $plaintext ) {
4610 wfDeprecated( __METHOD__, '1.27' );
4611 // Can't check the temporary password individually.
4612 return $this->checkPassword( $plaintext );
4613 }
4614
4615 /**
4616 * Initialize (if necessary) and return a session token value
4617 * which can be used in edit forms to show that the user's
4618 * login credentials aren't being hijacked with a foreign form
4619 * submission.
4620 *
4621 * @since 1.27
4622 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4623 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4624 * @return MediaWiki\Session\Token The new edit token
4625 */
4626 public function getEditTokenObject( $salt = '', $request = null ) {
4627 if ( $this->isAnon() ) {
4628 return new LoggedOutEditToken();
4629 }
4630
4631 if ( !$request ) {
4632 $request = $this->getRequest();
4633 }
4634 return $request->getSession()->getToken( $salt );
4635 }
4636
4637 /**
4638 * Initialize (if necessary) and return a session token value
4639 * which can be used in edit forms to show that the user's
4640 * login credentials aren't being hijacked with a foreign form
4641 * submission.
4642 *
4643 * The $salt for 'edit' and 'csrf' tokens is the default (empty string).
4644 *
4645 * @since 1.19
4646 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4647 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4648 * @return string The new edit token
4649 */
4650 public function getEditToken( $salt = '', $request = null ) {
4651 return $this->getEditTokenObject( $salt, $request )->toString();
4652 }
4653
4654 /**
4655 * Check given value against the token value stored in the session.
4656 * A match should confirm that the form was submitted from the
4657 * user's own login session, not a form submission from a third-party
4658 * site.
4659 *
4660 * @param string $val Input value to compare
4661 * @param string|array $salt Optional function-specific data for hashing
4662 * @param WebRequest|null $request Object to use or null to use $wgRequest
4663 * @param int|null $maxage Fail tokens older than this, in seconds
4664 * @return bool Whether the token matches
4665 */
4666 public function matchEditToken( $val, $salt = '', $request = null, $maxage = null ) {
4667 return $this->getEditTokenObject( $salt, $request )->match( $val, $maxage );
4668 }
4669
4670 /**
4671 * Check given value against the token value stored in the session,
4672 * ignoring the suffix.
4673 *
4674 * @param string $val Input value to compare
4675 * @param string|array $salt Optional function-specific data for hashing
4676 * @param WebRequest|null $request Object to use or null to use $wgRequest
4677 * @param int|null $maxage Fail tokens older than this, in seconds
4678 * @return bool Whether the token matches
4679 */
4680 public function matchEditTokenNoSuffix( $val, $salt = '', $request = null, $maxage = null ) {
4681 $val = substr( $val, 0, strspn( $val, '0123456789abcdef' ) ) . Token::SUFFIX;
4682 return $this->matchEditToken( $val, $salt, $request, $maxage );
4683 }
4684
4685 /**
4686 * Generate a new e-mail confirmation token and send a confirmation/invalidation
4687 * mail to the user's given address.
4688 *
4689 * @param string $type Message to send, either "created", "changed" or "set"
4690 * @return Status
4691 */
4692 public function sendConfirmationMail( $type = 'created' ) {
4693 global $wgLang;
4694 $expiration = null; // gets passed-by-ref and defined in next line.
4695 $token = $this->confirmationToken( $expiration );
4696 $url = $this->confirmationTokenUrl( $token );
4697 $invalidateURL = $this->invalidationTokenUrl( $token );
4698 $this->saveSettings();
4699
4700 if ( $type == 'created' || $type === false ) {
4701 $message = 'confirmemail_body';
4702 } elseif ( $type === true ) {
4703 $message = 'confirmemail_body_changed';
4704 } else {
4705 // Messages: confirmemail_body_changed, confirmemail_body_set
4706 $message = 'confirmemail_body_' . $type;
4707 }
4708
4709 return $this->sendMail( wfMessage( 'confirmemail_subject' )->text(),
4710 wfMessage( $message,
4711 $this->getRequest()->getIP(),
4712 $this->getName(),
4713 $url,
4714 $wgLang->userTimeAndDate( $expiration, $this ),
4715 $invalidateURL,
4716 $wgLang->userDate( $expiration, $this ),
4717 $wgLang->userTime( $expiration, $this ) )->text() );
4718 }
4719
4720 /**
4721 * Send an e-mail to this user's account. Does not check for
4722 * confirmed status or validity.
4723 *
4724 * @param string $subject Message subject
4725 * @param string $body Message body
4726 * @param User|null $from Optional sending user; if unspecified, default
4727 * $wgPasswordSender will be used.
4728 * @param string|null $replyto Reply-To address
4729 * @return Status
4730 */
4731 public function sendMail( $subject, $body, $from = null, $replyto = null ) {
4732 global $wgPasswordSender;
4733
4734 if ( $from instanceof User ) {
4735 $sender = MailAddress::newFromUser( $from );
4736 } else {
4737 $sender = new MailAddress( $wgPasswordSender,
4738 wfMessage( 'emailsender' )->inContentLanguage()->text() );
4739 }
4740 $to = MailAddress::newFromUser( $this );
4741
4742 return UserMailer::send( $to, $sender, $subject, $body, [
4743 'replyTo' => $replyto,
4744 ] );
4745 }
4746
4747 /**
4748 * Generate, store, and return a new e-mail confirmation code.
4749 * A hash (unsalted, since it's used as a key) is stored.
4750 *
4751 * @note Call saveSettings() after calling this function to commit
4752 * this change to the database.
4753 *
4754 * @param string &$expiration Accepts the expiration time
4755 * @return string New token
4756 */
4757 protected function confirmationToken( &$expiration ) {
4758 global $wgUserEmailConfirmationTokenExpiry;
4759 $now = time();
4760 $expires = $now + $wgUserEmailConfirmationTokenExpiry;
4761 $expiration = wfTimestamp( TS_MW, $expires );
4762 $this->load();
4763 $token = MWCryptRand::generateHex( 32 );
4764 $hash = md5( $token );
4765 $this->mEmailToken = $hash;
4766 $this->mEmailTokenExpires = $expiration;
4767 return $token;
4768 }
4769
4770 /**
4771 * Return a URL the user can use to confirm their email address.
4772 * @param string $token Accepts the email confirmation token
4773 * @return string New token URL
4774 */
4775 protected function confirmationTokenUrl( $token ) {
4776 return $this->getTokenUrl( 'ConfirmEmail', $token );
4777 }
4778
4779 /**
4780 * Return a URL the user can use to invalidate their email address.
4781 * @param string $token Accepts the email confirmation token
4782 * @return string New token URL
4783 */
4784 protected function invalidationTokenUrl( $token ) {
4785 return $this->getTokenUrl( 'InvalidateEmail', $token );
4786 }
4787
4788 /**
4789 * Internal function to format the e-mail validation/invalidation URLs.
4790 * This uses a quickie hack to use the
4791 * hardcoded English names of the Special: pages, for ASCII safety.
4792 *
4793 * @note Since these URLs get dropped directly into emails, using the
4794 * short English names avoids insanely long URL-encoded links, which
4795 * also sometimes can get corrupted in some browsers/mailers
4796 * (T8957 with Gmail and Internet Explorer).
4797 *
4798 * @param string $page Special page
4799 * @param string $token
4800 * @return string Formatted URL
4801 */
4802 protected function getTokenUrl( $page, $token ) {
4803 // Hack to bypass localization of 'Special:'
4804 $title = Title::makeTitle( NS_MAIN, "Special:$page/$token" );
4805 return $title->getCanonicalURL();
4806 }
4807
4808 /**
4809 * Mark the e-mail address confirmed.
4810 *
4811 * @note Call saveSettings() after calling this function to commit the change.
4812 *
4813 * @return bool
4814 */
4815 public function confirmEmail() {
4816 // Check if it's already confirmed, so we don't touch the database
4817 // and fire the ConfirmEmailComplete hook on redundant confirmations.
4818 if ( !$this->isEmailConfirmed() ) {
4819 $this->setEmailAuthenticationTimestamp( wfTimestampNow() );
4820 Hooks::run( 'ConfirmEmailComplete', [ $this ] );
4821 }
4822 return true;
4823 }
4824
4825 /**
4826 * Invalidate the user's e-mail confirmation, and unauthenticate the e-mail
4827 * address if it was already confirmed.
4828 *
4829 * @note Call saveSettings() after calling this function to commit the change.
4830 * @return bool Returns true
4831 */
4832 public function invalidateEmail() {
4833 $this->load();
4834 $this->mEmailToken = null;
4835 $this->mEmailTokenExpires = null;
4836 $this->setEmailAuthenticationTimestamp( null );
4837 $this->mEmail = '';
4838 Hooks::run( 'InvalidateEmailComplete', [ $this ] );
4839 return true;
4840 }
4841
4842 /**
4843 * Set the e-mail authentication timestamp.
4844 * @param string $timestamp TS_MW timestamp
4845 */
4846 public function setEmailAuthenticationTimestamp( $timestamp ) {
4847 $this->load();
4848 $this->mEmailAuthenticated = $timestamp;
4849 Hooks::run( 'UserSetEmailAuthenticationTimestamp', [ $this, &$this->mEmailAuthenticated ] );
4850 }
4851
4852 /**
4853 * Is this user allowed to send e-mails within limits of current
4854 * site configuration?
4855 * @return bool
4856 */
4857 public function canSendEmail() {
4858 global $wgEnableEmail, $wgEnableUserEmail;
4859 if ( !$wgEnableEmail || !$wgEnableUserEmail || !$this->isAllowed( 'sendemail' ) ) {
4860 return false;
4861 }
4862 $canSend = $this->isEmailConfirmed();
4863 // Avoid PHP 7.1 warning of passing $this by reference
4864 $user = $this;
4865 Hooks::run( 'UserCanSendEmail', [ &$user, &$canSend ] );
4866 return $canSend;
4867 }
4868
4869 /**
4870 * Is this user allowed to receive e-mails within limits of current
4871 * site configuration?
4872 * @return bool
4873 */
4874 public function canReceiveEmail() {
4875 return $this->isEmailConfirmed() && !$this->getOption( 'disablemail' );
4876 }
4877
4878 /**
4879 * Is this user's e-mail address valid-looking and confirmed within
4880 * limits of the current site configuration?
4881 *
4882 * @note If $wgEmailAuthentication is on, this may require the user to have
4883 * confirmed their address by returning a code or using a password
4884 * sent to the address from the wiki.
4885 *
4886 * @return bool
4887 */
4888 public function isEmailConfirmed() {
4889 global $wgEmailAuthentication;
4890 $this->load();
4891 // Avoid PHP 7.1 warning of passing $this by reference
4892 $user = $this;
4893 $confirmed = true;
4894 if ( Hooks::run( 'EmailConfirmed', [ &$user, &$confirmed ] ) ) {
4895 if ( $this->isAnon() ) {
4896 return false;
4897 }
4898 if ( !Sanitizer::validateEmail( $this->mEmail ) ) {
4899 return false;
4900 }
4901 if ( $wgEmailAuthentication && !$this->getEmailAuthenticationTimestamp() ) {
4902 return false;
4903 }
4904 return true;
4905 } else {
4906 return $confirmed;
4907 }
4908 }
4909
4910 /**
4911 * Check whether there is an outstanding request for e-mail confirmation.
4912 * @return bool
4913 */
4914 public function isEmailConfirmationPending() {
4915 global $wgEmailAuthentication;
4916 return $wgEmailAuthentication &&
4917 !$this->isEmailConfirmed() &&
4918 $this->mEmailToken &&
4919 $this->mEmailTokenExpires > wfTimestamp();
4920 }
4921
4922 /**
4923 * Get the timestamp of account creation.
4924 *
4925 * @return string|bool|null Timestamp of account creation, false for
4926 * non-existent/anonymous user accounts, or null if existing account
4927 * but information is not in database.
4928 */
4929 public function getRegistration() {
4930 if ( $this->isAnon() ) {
4931 return false;
4932 }
4933 $this->load();
4934 return $this->mRegistration;
4935 }
4936
4937 /**
4938 * Get the timestamp of the first edit
4939 *
4940 * @return string|bool Timestamp of first edit, or false for
4941 * non-existent/anonymous user accounts.
4942 */
4943 public function getFirstEditTimestamp() {
4944 if ( $this->getId() == 0 ) {
4945 return false; // anons
4946 }
4947 $dbr = wfGetDB( DB_REPLICA );
4948 $actorWhere = ActorMigration::newMigration()->getWhere( $dbr, 'rev_user', $this );
4949 $time = $dbr->selectField(
4950 [ 'revision' ] + $actorWhere['tables'],
4951 'rev_timestamp',
4952 [ $actorWhere['conds'] ],
4953 __METHOD__,
4954 [ 'ORDER BY' => 'rev_timestamp ASC' ],
4955 $actorWhere['joins']
4956 );
4957 if ( !$time ) {
4958 return false; // no edits
4959 }
4960 return wfTimestamp( TS_MW, $time );
4961 }
4962
4963 /**
4964 * Get the permissions associated with a given list of groups
4965 *
4966 * @param array $groups Array of Strings List of internal group names
4967 * @return array Array of Strings List of permission key names for given groups combined
4968 */
4969 public static function getGroupPermissions( $groups ) {
4970 global $wgGroupPermissions, $wgRevokePermissions;
4971 $rights = [];
4972 // grant every granted permission first
4973 foreach ( $groups as $group ) {
4974 if ( isset( $wgGroupPermissions[$group] ) ) {
4975 $rights = array_merge( $rights,
4976 // array_filter removes empty items
4977 array_keys( array_filter( $wgGroupPermissions[$group] ) ) );
4978 }
4979 }
4980 // now revoke the revoked permissions
4981 foreach ( $groups as $group ) {
4982 if ( isset( $wgRevokePermissions[$group] ) ) {
4983 $rights = array_diff( $rights,
4984 array_keys( array_filter( $wgRevokePermissions[$group] ) ) );
4985 }
4986 }
4987 return array_unique( $rights );
4988 }
4989
4990 /**
4991 * Get all the groups who have a given permission
4992 *
4993 * @param string $role Role to check
4994 * @return array Array of Strings List of internal group names with the given permission
4995 */
4996 public static function getGroupsWithPermission( $role ) {
4997 global $wgGroupPermissions;
4998 $allowedGroups = [];
4999 foreach ( array_keys( $wgGroupPermissions ) as $group ) {
5000 if ( self::groupHasPermission( $group, $role ) ) {
5001 $allowedGroups[] = $group;
5002 }
5003 }
5004 return $allowedGroups;
5005 }
5006
5007 /**
5008 * Check, if the given group has the given permission
5009 *
5010 * If you're wanting to check whether all users have a permission, use
5011 * User::isEveryoneAllowed() instead. That properly checks if it's revoked
5012 * from anyone.
5013 *
5014 * @since 1.21
5015 * @param string $group Group to check
5016 * @param string $role Role to check
5017 * @return bool
5018 */
5019 public static function groupHasPermission( $group, $role ) {
5020 global $wgGroupPermissions, $wgRevokePermissions;
5021 return isset( $wgGroupPermissions[$group][$role] ) && $wgGroupPermissions[$group][$role]
5022 && !( isset( $wgRevokePermissions[$group][$role] ) && $wgRevokePermissions[$group][$role] );
5023 }
5024
5025 /**
5026 * Check if all users may be assumed to have the given permission
5027 *
5028 * We generally assume so if the right is granted to '*' and isn't revoked
5029 * on any group. It doesn't attempt to take grants or other extension
5030 * limitations on rights into account in the general case, though, as that
5031 * would require it to always return false and defeat the purpose.
5032 * Specifically, session-based rights restrictions (such as OAuth or bot
5033 * passwords) are applied based on the current session.
5034 *
5035 * @since 1.22
5036 * @param string $right Right to check
5037 * @return bool
5038 */
5039 public static function isEveryoneAllowed( $right ) {
5040 global $wgGroupPermissions, $wgRevokePermissions;
5041 static $cache = [];
5042
5043 // Use the cached results, except in unit tests which rely on
5044 // being able change the permission mid-request
5045 if ( isset( $cache[$right] ) && !defined( 'MW_PHPUNIT_TEST' ) ) {
5046 return $cache[$right];
5047 }
5048
5049 if ( !isset( $wgGroupPermissions['*'][$right] ) || !$wgGroupPermissions['*'][$right] ) {
5050 $cache[$right] = false;
5051 return false;
5052 }
5053
5054 // If it's revoked anywhere, then everyone doesn't have it
5055 foreach ( $wgRevokePermissions as $rights ) {
5056 if ( isset( $rights[$right] ) && $rights[$right] ) {
5057 $cache[$right] = false;
5058 return false;
5059 }
5060 }
5061
5062 // Remove any rights that aren't allowed to the global-session user,
5063 // unless there are no sessions for this endpoint.
5064 if ( !defined( 'MW_NO_SESSION' ) ) {
5065 $allowedRights = SessionManager::getGlobalSession()->getAllowedUserRights();
5066 if ( $allowedRights !== null && !in_array( $right, $allowedRights, true ) ) {
5067 $cache[$right] = false;
5068 return false;
5069 }
5070 }
5071
5072 // Allow extensions to say false
5073 if ( !Hooks::run( 'UserIsEveryoneAllowed', [ $right ] ) ) {
5074 $cache[$right] = false;
5075 return false;
5076 }
5077
5078 $cache[$right] = true;
5079 return true;
5080 }
5081
5082 /**
5083 * Get the localized descriptive name for a group, if it exists
5084 * @deprecated since 1.29 Use UserGroupMembership::getGroupName instead
5085 *
5086 * @param string $group Internal group name
5087 * @return string Localized descriptive group name
5088 */
5089 public static function getGroupName( $group ) {
5090 wfDeprecated( __METHOD__, '1.29' );
5091 return UserGroupMembership::getGroupName( $group );
5092 }
5093
5094 /**
5095 * Get the localized descriptive name for a member of a group, if it exists
5096 * @deprecated since 1.29 Use UserGroupMembership::getGroupMemberName instead
5097 *
5098 * @param string $group Internal group name
5099 * @param string $username Username for gender (since 1.19)
5100 * @return string Localized name for group member
5101 */
5102 public static function getGroupMember( $group, $username = '#' ) {
5103 wfDeprecated( __METHOD__, '1.29' );
5104 return UserGroupMembership::getGroupMemberName( $group, $username );
5105 }
5106
5107 /**
5108 * Return the set of defined explicit groups.
5109 * The implicit groups (by default *, 'user' and 'autoconfirmed')
5110 * are not included, as they are defined automatically, not in the database.
5111 * @return array Array of internal group names
5112 */
5113 public static function getAllGroups() {
5114 global $wgGroupPermissions, $wgRevokePermissions;
5115 return array_values( array_diff(
5116 array_merge( array_keys( $wgGroupPermissions ), array_keys( $wgRevokePermissions ) ),
5117 self::getImplicitGroups()
5118 ) );
5119 }
5120
5121 /**
5122 * Get a list of all available permissions.
5123 * @return string[] Array of permission names
5124 */
5125 public static function getAllRights() {
5126 if ( self::$mAllRights === false ) {
5127 global $wgAvailableRights;
5128 if ( count( $wgAvailableRights ) ) {
5129 self::$mAllRights = array_unique( array_merge( self::$mCoreRights, $wgAvailableRights ) );
5130 } else {
5131 self::$mAllRights = self::$mCoreRights;
5132 }
5133 Hooks::run( 'UserGetAllRights', [ &self::$mAllRights ] );
5134 }
5135 return self::$mAllRights;
5136 }
5137
5138 /**
5139 * Get a list of implicit groups
5140 * TODO: Should we deprecate this? It's trivial, but we don't want to encourage use of globals.
5141 *
5142 * @return array Array of Strings Array of internal group names
5143 */
5144 public static function getImplicitGroups() {
5145 global $wgImplicitGroups;
5146 return $wgImplicitGroups;
5147 }
5148
5149 /**
5150 * Get the title of a page describing a particular group
5151 * @deprecated since 1.29 Use UserGroupMembership::getGroupPage instead
5152 *
5153 * @param string $group Internal group name
5154 * @return Title|bool Title of the page if it exists, false otherwise
5155 */
5156 public static function getGroupPage( $group ) {
5157 wfDeprecated( __METHOD__, '1.29' );
5158 return UserGroupMembership::getGroupPage( $group );
5159 }
5160
5161 /**
5162 * Create a link to the group in HTML, if available;
5163 * else return the group name.
5164 * @deprecated since 1.29 Use UserGroupMembership::getLink instead, or
5165 * make the link yourself if you need custom text
5166 *
5167 * @param string $group Internal name of the group
5168 * @param string $text The text of the link
5169 * @return string HTML link to the group
5170 */
5171 public static function makeGroupLinkHTML( $group, $text = '' ) {
5172 wfDeprecated( __METHOD__, '1.29' );
5173
5174 if ( $text == '' ) {
5175 $text = UserGroupMembership::getGroupName( $group );
5176 }
5177 $title = UserGroupMembership::getGroupPage( $group );
5178 if ( $title ) {
5179 return MediaWikiServices::getInstance()
5180 ->getLinkRenderer()->makeLink( $title, $text );
5181 } else {
5182 return htmlspecialchars( $text );
5183 }
5184 }
5185
5186 /**
5187 * Create a link to the group in Wikitext, if available;
5188 * else return the group name.
5189 * @deprecated since 1.29 Use UserGroupMembership::getLink instead, or
5190 * make the link yourself if you need custom text
5191 *
5192 * @param string $group Internal name of the group
5193 * @param string $text The text of the link
5194 * @return string Wikilink to the group
5195 */
5196 public static function makeGroupLinkWiki( $group, $text = '' ) {
5197 wfDeprecated( __METHOD__, '1.29' );
5198
5199 if ( $text == '' ) {
5200 $text = UserGroupMembership::getGroupName( $group );
5201 }
5202 $title = UserGroupMembership::getGroupPage( $group );
5203 if ( $title ) {
5204 $page = $title->getFullText();
5205 return "[[$page|$text]]";
5206 } else {
5207 return $text;
5208 }
5209 }
5210
5211 /**
5212 * Returns an array of the groups that a particular group can add/remove.
5213 *
5214 * @param string $group The group to check for whether it can add/remove
5215 * @return array Array( 'add' => array( addablegroups ),
5216 * 'remove' => array( removablegroups ),
5217 * 'add-self' => array( addablegroups to self),
5218 * 'remove-self' => array( removable groups from self) )
5219 */
5220 public static function changeableByGroup( $group ) {
5221 global $wgAddGroups, $wgRemoveGroups, $wgGroupsAddToSelf, $wgGroupsRemoveFromSelf;
5222
5223 $groups = [
5224 'add' => [],
5225 'remove' => [],
5226 'add-self' => [],
5227 'remove-self' => []
5228 ];
5229
5230 if ( empty( $wgAddGroups[$group] ) ) {
5231 // Don't add anything to $groups
5232 } elseif ( $wgAddGroups[$group] === true ) {
5233 // You get everything
5234 $groups['add'] = self::getAllGroups();
5235 } elseif ( is_array( $wgAddGroups[$group] ) ) {
5236 $groups['add'] = $wgAddGroups[$group];
5237 }
5238
5239 // Same thing for remove
5240 if ( empty( $wgRemoveGroups[$group] ) ) {
5241 // Do nothing
5242 } elseif ( $wgRemoveGroups[$group] === true ) {
5243 $groups['remove'] = self::getAllGroups();
5244 } elseif ( is_array( $wgRemoveGroups[$group] ) ) {
5245 $groups['remove'] = $wgRemoveGroups[$group];
5246 }
5247
5248 // Re-map numeric keys of AddToSelf/RemoveFromSelf to the 'user' key for backwards compatibility
5249 if ( empty( $wgGroupsAddToSelf['user'] ) || $wgGroupsAddToSelf['user'] !== true ) {
5250 foreach ( $wgGroupsAddToSelf as $key => $value ) {
5251 if ( is_int( $key ) ) {
5252 $wgGroupsAddToSelf['user'][] = $value;
5253 }
5254 }
5255 }
5256
5257 if ( empty( $wgGroupsRemoveFromSelf['user'] ) || $wgGroupsRemoveFromSelf['user'] !== true ) {
5258 foreach ( $wgGroupsRemoveFromSelf as $key => $value ) {
5259 if ( is_int( $key ) ) {
5260 $wgGroupsRemoveFromSelf['user'][] = $value;
5261 }
5262 }
5263 }
5264
5265 // Now figure out what groups the user can add to him/herself
5266 if ( empty( $wgGroupsAddToSelf[$group] ) ) {
5267 // Do nothing
5268 } elseif ( $wgGroupsAddToSelf[$group] === true ) {
5269 // No idea WHY this would be used, but it's there
5270 $groups['add-self'] = self::getAllGroups();
5271 } elseif ( is_array( $wgGroupsAddToSelf[$group] ) ) {
5272 $groups['add-self'] = $wgGroupsAddToSelf[$group];
5273 }
5274
5275 if ( empty( $wgGroupsRemoveFromSelf[$group] ) ) {
5276 // Do nothing
5277 } elseif ( $wgGroupsRemoveFromSelf[$group] === true ) {
5278 $groups['remove-self'] = self::getAllGroups();
5279 } elseif ( is_array( $wgGroupsRemoveFromSelf[$group] ) ) {
5280 $groups['remove-self'] = $wgGroupsRemoveFromSelf[$group];
5281 }
5282
5283 return $groups;
5284 }
5285
5286 /**
5287 * Returns an array of groups that this user can add and remove
5288 * @return array Array( 'add' => array( addablegroups ),
5289 * 'remove' => array( removablegroups ),
5290 * 'add-self' => array( addablegroups to self),
5291 * 'remove-self' => array( removable groups from self) )
5292 */
5293 public function changeableGroups() {
5294 if ( $this->isAllowed( 'userrights' ) ) {
5295 // This group gives the right to modify everything (reverse-
5296 // compatibility with old "userrights lets you change
5297 // everything")
5298 // Using array_merge to make the groups reindexed
5299 $all = array_merge( self::getAllGroups() );
5300 return [
5301 'add' => $all,
5302 'remove' => $all,
5303 'add-self' => [],
5304 'remove-self' => []
5305 ];
5306 }
5307
5308 // Okay, it's not so simple, we will have to go through the arrays
5309 $groups = [
5310 'add' => [],
5311 'remove' => [],
5312 'add-self' => [],
5313 'remove-self' => []
5314 ];
5315 $addergroups = $this->getEffectiveGroups();
5316
5317 foreach ( $addergroups as $addergroup ) {
5318 $groups = array_merge_recursive(
5319 $groups, $this->changeableByGroup( $addergroup )
5320 );
5321 $groups['add'] = array_unique( $groups['add'] );
5322 $groups['remove'] = array_unique( $groups['remove'] );
5323 $groups['add-self'] = array_unique( $groups['add-self'] );
5324 $groups['remove-self'] = array_unique( $groups['remove-self'] );
5325 }
5326 return $groups;
5327 }
5328
5329 /**
5330 * Deferred version of incEditCountImmediate()
5331 *
5332 * This function, rather than incEditCountImmediate(), should be used for
5333 * most cases as it avoids potential deadlocks caused by concurrent editing.
5334 */
5335 public function incEditCount() {
5336 wfGetDB( DB_MASTER )->onTransactionPreCommitOrIdle(
5337 function () {
5338 $this->incEditCountImmediate();
5339 },
5340 __METHOD__
5341 );
5342 }
5343
5344 /**
5345 * Increment the user's edit-count field.
5346 * Will have no effect for anonymous users.
5347 * @since 1.26
5348 */
5349 public function incEditCountImmediate() {
5350 if ( $this->isAnon() ) {
5351 return;
5352 }
5353
5354 $dbw = wfGetDB( DB_MASTER );
5355 // No rows will be "affected" if user_editcount is NULL
5356 $dbw->update(
5357 'user',
5358 [ 'user_editcount=user_editcount+1' ],
5359 [ 'user_id' => $this->getId(), 'user_editcount IS NOT NULL' ],
5360 __METHOD__
5361 );
5362 // Lazy initialization check...
5363 if ( $dbw->affectedRows() == 0 ) {
5364 // Now here's a goddamn hack...
5365 $dbr = wfGetDB( DB_REPLICA );
5366 if ( $dbr !== $dbw ) {
5367 // If we actually have a replica DB server, the count is
5368 // at least one behind because the current transaction
5369 // has not been committed and replicated.
5370 $this->mEditCount = $this->initEditCount( 1 );
5371 } else {
5372 // But if DB_REPLICA is selecting the master, then the
5373 // count we just read includes the revision that was
5374 // just added in the working transaction.
5375 $this->mEditCount = $this->initEditCount();
5376 }
5377 } else {
5378 if ( $this->mEditCount === null ) {
5379 $this->getEditCount();
5380 $dbr = wfGetDB( DB_REPLICA );
5381 $this->mEditCount += ( $dbr !== $dbw ) ? 1 : 0;
5382 } else {
5383 $this->mEditCount++;
5384 }
5385 }
5386 // Edit count in user cache too
5387 $this->invalidateCache();
5388 }
5389
5390 /**
5391 * Initialize user_editcount from data out of the revision table
5392 *
5393 * @param int $add Edits to add to the count from the revision table
5394 * @return int Number of edits
5395 */
5396 protected function initEditCount( $add = 0 ) {
5397 // Pull from a replica DB to be less cruel to servers
5398 // Accuracy isn't the point anyway here
5399 $dbr = wfGetDB( DB_REPLICA );
5400 $actorWhere = ActorMigration::newMigration()->getWhere( $dbr, 'rev_user', $this );
5401 $count = (int)$dbr->selectField(
5402 [ 'revision' ] + $actorWhere['tables'],
5403 'COUNT(*)',
5404 [ $actorWhere['conds'] ],
5405 __METHOD__,
5406 [],
5407 $actorWhere['joins']
5408 );
5409 $count = $count + $add;
5410
5411 $dbw = wfGetDB( DB_MASTER );
5412 $dbw->update(
5413 'user',
5414 [ 'user_editcount' => $count ],
5415 [ 'user_id' => $this->getId() ],
5416 __METHOD__
5417 );
5418
5419 return $count;
5420 }
5421
5422 /**
5423 * Get the description of a given right
5424 *
5425 * @since 1.29
5426 * @param string $right Right to query
5427 * @return string Localized description of the right
5428 */
5429 public static function getRightDescription( $right ) {
5430 $key = "right-$right";
5431 $msg = wfMessage( $key );
5432 return $msg->isDisabled() ? $right : $msg->text();
5433 }
5434
5435 /**
5436 * Get the name of a given grant
5437 *
5438 * @since 1.29
5439 * @param string $grant Grant to query
5440 * @return string Localized name of the grant
5441 */
5442 public static function getGrantName( $grant ) {
5443 $key = "grant-$grant";
5444 $msg = wfMessage( $key );
5445 return $msg->isDisabled() ? $grant : $msg->text();
5446 }
5447
5448 /**
5449 * Add a newuser log entry for this user.
5450 * Before 1.19 the return value was always true.
5451 *
5452 * @deprecated since 1.27, AuthManager handles logging
5453 * @param string|bool $action Account creation type.
5454 * - String, one of the following values:
5455 * - 'create' for an anonymous user creating an account for himself.
5456 * This will force the action's performer to be the created user itself,
5457 * no matter the value of $wgUser
5458 * - 'create2' for a logged in user creating an account for someone else
5459 * - 'byemail' when the created user will receive its password by e-mail
5460 * - 'autocreate' when the user is automatically created (such as by CentralAuth).
5461 * - Boolean means whether the account was created by e-mail (deprecated):
5462 * - true will be converted to 'byemail'
5463 * - false will be converted to 'create' if this object is the same as
5464 * $wgUser and to 'create2' otherwise
5465 * @param string $reason User supplied reason
5466 * @return bool true
5467 */
5468 public function addNewUserLogEntry( $action = false, $reason = '' ) {
5469 return true; // disabled
5470 }
5471
5472 /**
5473 * Add an autocreate newuser log entry for this user
5474 * Used by things like CentralAuth and perhaps other authplugins.
5475 * Consider calling addNewUserLogEntry() directly instead.
5476 *
5477 * @deprecated since 1.27, AuthManager handles logging
5478 * @return bool
5479 */
5480 public function addNewUserLogEntryAutoCreate() {
5481 $this->addNewUserLogEntry( 'autocreate' );
5482
5483 return true;
5484 }
5485
5486 /**
5487 * Load the user options either from cache, the database or an array
5488 *
5489 * @param array|null $data Rows for the current user out of the user_properties table
5490 */
5491 protected function loadOptions( $data = null ) {
5492 $this->load();
5493
5494 if ( $this->mOptionsLoaded ) {
5495 return;
5496 }
5497
5498 $this->mOptions = self::getDefaultOptions();
5499
5500 if ( !$this->getId() ) {
5501 // For unlogged-in users, load language/variant options from request.
5502 // There's no need to do it for logged-in users: they can set preferences,
5503 // and handling of page content is done by $pageLang->getPreferredVariant() and such,
5504 // so don't override user's choice (especially when the user chooses site default).
5505 $variant = MediaWikiServices::getInstance()->getContentLanguage()->getDefaultVariant();
5506 $this->mOptions['variant'] = $variant;
5507 $this->mOptions['language'] = $variant;
5508 $this->mOptionsLoaded = true;
5509 return;
5510 }
5511
5512 // Maybe load from the object
5513 if ( !is_null( $this->mOptionOverrides ) ) {
5514 wfDebug( "User: loading options for user " . $this->getId() . " from override cache.\n" );
5515 foreach ( $this->mOptionOverrides as $key => $value ) {
5516 $this->mOptions[$key] = $value;
5517 }
5518 } else {
5519 if ( !is_array( $data ) ) {
5520 wfDebug( "User: loading options for user " . $this->getId() . " from database.\n" );
5521 // Load from database
5522 $dbr = ( $this->queryFlagsUsed & self::READ_LATEST )
5523 ? wfGetDB( DB_MASTER )
5524 : wfGetDB( DB_REPLICA );
5525
5526 $res = $dbr->select(
5527 'user_properties',
5528 [ 'up_property', 'up_value' ],
5529 [ 'up_user' => $this->getId() ],
5530 __METHOD__
5531 );
5532
5533 $this->mOptionOverrides = [];
5534 $data = [];
5535 foreach ( $res as $row ) {
5536 // Convert '0' to 0. PHP's boolean conversion considers them both
5537 // false, but e.g. JavaScript considers the former as true.
5538 // @todo: T54542 Somehow determine the desired type (string/int/bool)
5539 // and convert all values here.
5540 if ( $row->up_value === '0' ) {
5541 $row->up_value = 0;
5542 }
5543 $data[$row->up_property] = $row->up_value;
5544 }
5545 }
5546
5547 foreach ( $data as $property => $value ) {
5548 $this->mOptionOverrides[$property] = $value;
5549 $this->mOptions[$property] = $value;
5550 }
5551 }
5552
5553 // Replace deprecated language codes
5554 $this->mOptions['language'] = LanguageCode::replaceDeprecatedCodes(
5555 $this->mOptions['language']
5556 );
5557
5558 $this->mOptionsLoaded = true;
5559
5560 Hooks::run( 'UserLoadOptions', [ $this, &$this->mOptions ] );
5561 }
5562
5563 /**
5564 * Saves the non-default options for this user, as previously set e.g. via
5565 * setOption(), in the database's "user_properties" (preferences) table.
5566 * Usually used via saveSettings().
5567 */
5568 protected function saveOptions() {
5569 $this->loadOptions();
5570
5571 // Not using getOptions(), to keep hidden preferences in database
5572 $saveOptions = $this->mOptions;
5573
5574 // Allow hooks to abort, for instance to save to a global profile.
5575 // Reset options to default state before saving.
5576 if ( !Hooks::run( 'UserSaveOptions', [ $this, &$saveOptions ] ) ) {
5577 return;
5578 }
5579
5580 $userId = $this->getId();
5581
5582 $insert_rows = []; // all the new preference rows
5583 foreach ( $saveOptions as $key => $value ) {
5584 // Don't bother storing default values
5585 $defaultOption = self::getDefaultOption( $key );
5586 if ( ( $defaultOption === null && $value !== false && $value !== null )
5587 || $value != $defaultOption
5588 ) {
5589 $insert_rows[] = [
5590 'up_user' => $userId,
5591 'up_property' => $key,
5592 'up_value' => $value,
5593 ];
5594 }
5595 }
5596
5597 $dbw = wfGetDB( DB_MASTER );
5598
5599 $res = $dbw->select( 'user_properties',
5600 [ 'up_property', 'up_value' ], [ 'up_user' => $userId ], __METHOD__ );
5601
5602 // Find prior rows that need to be removed or updated. These rows will
5603 // all be deleted (the latter so that INSERT IGNORE applies the new values).
5604 $keysDelete = [];
5605 foreach ( $res as $row ) {
5606 if ( !isset( $saveOptions[$row->up_property] )
5607 || strcmp( $saveOptions[$row->up_property], $row->up_value ) != 0
5608 ) {
5609 $keysDelete[] = $row->up_property;
5610 }
5611 }
5612
5613 if ( count( $keysDelete ) ) {
5614 // Do the DELETE by PRIMARY KEY for prior rows.
5615 // In the past a very large portion of calls to this function are for setting
5616 // 'rememberpassword' for new accounts (a preference that has since been removed).
5617 // Doing a blanket per-user DELETE for new accounts with no rows in the table
5618 // caused gap locks on [max user ID,+infinity) which caused high contention since
5619 // updates would pile up on each other as they are for higher (newer) user IDs.
5620 // It might not be necessary these days, but it shouldn't hurt either.
5621 $dbw->delete( 'user_properties',
5622 [ 'up_user' => $userId, 'up_property' => $keysDelete ], __METHOD__ );
5623 }
5624 // Insert the new preference rows
5625 $dbw->insert( 'user_properties', $insert_rows, __METHOD__, [ 'IGNORE' ] );
5626 }
5627
5628 /**
5629 * Return the list of user fields that should be selected to create
5630 * a new user object.
5631 * @deprecated since 1.31, use self::getQueryInfo() instead.
5632 * @return array
5633 */
5634 public static function selectFields() {
5635 wfDeprecated( __METHOD__, '1.31' );
5636 return [
5637 'user_id',
5638 'user_name',
5639 'user_real_name',
5640 'user_email',
5641 'user_touched',
5642 'user_token',
5643 'user_email_authenticated',
5644 'user_email_token',
5645 'user_email_token_expires',
5646 'user_registration',
5647 'user_editcount',
5648 ];
5649 }
5650
5651 /**
5652 * Return the tables, fields, and join conditions to be selected to create
5653 * a new user object.
5654 * @since 1.31
5655 * @return array With three keys:
5656 * - tables: (string[]) to include in the `$table` to `IDatabase->select()`
5657 * - fields: (string[]) to include in the `$vars` to `IDatabase->select()`
5658 * - joins: (array) to include in the `$join_conds` to `IDatabase->select()`
5659 */
5660 public static function getQueryInfo() {
5661 global $wgActorTableSchemaMigrationStage;
5662
5663 $ret = [
5664 'tables' => [ 'user' ],
5665 'fields' => [
5666 'user_id',
5667 'user_name',
5668 'user_real_name',
5669 'user_email',
5670 'user_touched',
5671 'user_token',
5672 'user_email_authenticated',
5673 'user_email_token',
5674 'user_email_token_expires',
5675 'user_registration',
5676 'user_editcount',
5677 ],
5678 'joins' => [],
5679 ];
5680
5681 // Technically we shouldn't allow this without SCHEMA_COMPAT_READ_NEW,
5682 // but it does little harm and might be needed for write callers loading a User.
5683 if ( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_NEW ) {
5684 $ret['tables']['user_actor'] = 'actor';
5685 $ret['fields'][] = 'user_actor.actor_id';
5686 $ret['joins']['user_actor'] = [
5687 ( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_READ_NEW ) ? 'JOIN' : 'LEFT JOIN',
5688 [ 'user_actor.actor_user = user_id' ]
5689 ];
5690 }
5691
5692 return $ret;
5693 }
5694
5695 /**
5696 * Factory function for fatal permission-denied errors
5697 *
5698 * @since 1.22
5699 * @param string $permission User right required
5700 * @return Status
5701 */
5702 static function newFatalPermissionDeniedStatus( $permission ) {
5703 global $wgLang;
5704
5705 $groups = [];
5706 foreach ( self::getGroupsWithPermission( $permission ) as $group ) {
5707 $groups[] = UserGroupMembership::getLink( $group, RequestContext::getMain(), 'wiki' );
5708 }
5709
5710 if ( $groups ) {
5711 return Status::newFatal( 'badaccess-groups', $wgLang->commaList( $groups ), count( $groups ) );
5712 } else {
5713 return Status::newFatal( 'badaccess-group0' );
5714 }
5715 }
5716
5717 /**
5718 * Get a new instance of this user that was loaded from the master via a locking read
5719 *
5720 * Use this instead of the main context User when updating that user. This avoids races
5721 * where that user was loaded from a replica DB or even the master but without proper locks.
5722 *
5723 * @return User|null Returns null if the user was not found in the DB
5724 * @since 1.27
5725 */
5726 public function getInstanceForUpdate() {
5727 if ( !$this->getId() ) {
5728 return null; // anon
5729 }
5730
5731 $user = self::newFromId( $this->getId() );
5732 if ( !$user->loadFromId( self::READ_EXCLUSIVE ) ) {
5733 return null;
5734 }
5735
5736 return $user;
5737 }
5738
5739 /**
5740 * Checks if two user objects point to the same user.
5741 *
5742 * @since 1.25 ; takes a UserIdentity instead of a User since 1.32
5743 * @param UserIdentity $user
5744 * @return bool
5745 */
5746 public function equals( UserIdentity $user ) {
5747 // XXX it's not clear whether central ID providers are supposed to obey this
5748 return $this->getName() === $user->getName();
5749 }
5750 }