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