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