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