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