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