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