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