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