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