Merge "Exclude redirects from Special:Fewestrevisions"
[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 * @param string $permissions,... Permissions to test
3605 * @return bool True if user is allowed to perform *any* of the given actions
3606 */
3607 public function isAllowedAny() {
3608 $permissions = func_get_args();
3609 foreach ( $permissions as $permission ) {
3610 if ( $this->isAllowed( $permission ) ) {
3611 return true;
3612 }
3613 }
3614 return false;
3615 }
3616
3617 /**
3618 *
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 $permissions = func_get_args();
3624 foreach ( $permissions as $permission ) {
3625 if ( !$this->isAllowed( $permission ) ) {
3626 return false;
3627 }
3628 }
3629 return true;
3630 }
3631
3632 /**
3633 * Internal mechanics of testing a permission
3634 *
3635 * @deprecated since 1.34, use MediaWikiServices::getInstance()
3636 * ->getPermissionManager()->userHasRight(...) instead
3637 *
3638 * @param string $action
3639 *
3640 * @return bool
3641 */
3642 public function isAllowed( $action = '' ) {
3643 return MediaWikiServices::getInstance()->getPermissionManager()
3644 ->userHasRight( $this, $action );
3645 }
3646
3647 /**
3648 * Check whether to enable recent changes patrol features for this user
3649 * @return bool True or false
3650 */
3651 public function useRCPatrol() {
3652 global $wgUseRCPatrol;
3653 return $wgUseRCPatrol && $this->isAllowedAny( 'patrol', 'patrolmarks' );
3654 }
3655
3656 /**
3657 * Check whether to enable new pages patrol features for this user
3658 * @return bool True or false
3659 */
3660 public function useNPPatrol() {
3661 global $wgUseRCPatrol, $wgUseNPPatrol;
3662 return (
3663 ( $wgUseRCPatrol || $wgUseNPPatrol )
3664 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3665 );
3666 }
3667
3668 /**
3669 * Check whether to enable new files patrol features for this user
3670 * @return bool True or false
3671 */
3672 public function useFilePatrol() {
3673 global $wgUseRCPatrol, $wgUseFilePatrol;
3674 return (
3675 ( $wgUseRCPatrol || $wgUseFilePatrol )
3676 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3677 );
3678 }
3679
3680 /**
3681 * Get the WebRequest object to use with this object
3682 *
3683 * @return WebRequest
3684 */
3685 public function getRequest() {
3686 if ( $this->mRequest ) {
3687 return $this->mRequest;
3688 }
3689
3690 global $wgRequest;
3691 return $wgRequest;
3692 }
3693
3694 /**
3695 * Check the watched status of an article.
3696 * @since 1.22 $checkRights parameter added
3697 * @param Title $title Title of the article to look at
3698 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3699 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3700 * @return bool
3701 */
3702 public function isWatched( $title, $checkRights = self::CHECK_USER_RIGHTS ) {
3703 if ( $title->isWatchable() && ( !$checkRights || $this->isAllowed( 'viewmywatchlist' ) ) ) {
3704 return MediaWikiServices::getInstance()->getWatchedItemStore()->isWatched( $this, $title );
3705 }
3706 return false;
3707 }
3708
3709 /**
3710 * Watch an article.
3711 * @since 1.22 $checkRights parameter added
3712 * @param Title $title Title of the article to look at
3713 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3714 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3715 */
3716 public function addWatch( $title, $checkRights = self::CHECK_USER_RIGHTS ) {
3717 if ( !$checkRights || $this->isAllowed( 'editmywatchlist' ) ) {
3718 MediaWikiServices::getInstance()->getWatchedItemStore()->addWatchBatchForUser(
3719 $this,
3720 [ $title->getSubjectPage(), $title->getTalkPage() ]
3721 );
3722 }
3723 $this->invalidateCache();
3724 }
3725
3726 /**
3727 * Stop watching an article.
3728 * @since 1.22 $checkRights parameter added
3729 * @param Title $title Title of the article to look at
3730 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3731 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3732 */
3733 public function removeWatch( $title, $checkRights = self::CHECK_USER_RIGHTS ) {
3734 if ( !$checkRights || $this->isAllowed( 'editmywatchlist' ) ) {
3735 $store = MediaWikiServices::getInstance()->getWatchedItemStore();
3736 $store->removeWatch( $this, $title->getSubjectPage() );
3737 $store->removeWatch( $this, $title->getTalkPage() );
3738 }
3739 $this->invalidateCache();
3740 }
3741
3742 /**
3743 * Clear the user's notification timestamp for the given title.
3744 * If e-notif e-mails are on, they will receive notification mails on
3745 * the next change of the page if it's watched etc.
3746 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3747 * @param Title &$title Title of the article to look at
3748 * @param int $oldid The revision id being viewed. If not given or 0, latest revision is assumed.
3749 */
3750 public function clearNotification( &$title, $oldid = 0 ) {
3751 global $wgUseEnotif, $wgShowUpdatedMarker;
3752
3753 // Do nothing if the database is locked to writes
3754 if ( wfReadOnly() ) {
3755 return;
3756 }
3757
3758 // Do nothing if not allowed to edit the watchlist
3759 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
3760 return;
3761 }
3762
3763 // If we're working on user's talk page, we should update the talk page message indicator
3764 if ( $title->getNamespace() == NS_USER_TALK && $title->getText() == $this->getName() ) {
3765 // Avoid PHP 7.1 warning of passing $this by reference
3766 $user = $this;
3767 if ( !Hooks::run( 'UserClearNewTalkNotification', [ &$user, $oldid ] ) ) {
3768 return;
3769 }
3770
3771 // Try to update the DB post-send and only if needed...
3772 DeferredUpdates::addCallableUpdate( function () use ( $title, $oldid ) {
3773 if ( !$this->getNewtalk() ) {
3774 return; // no notifications to clear
3775 }
3776
3777 // Delete the last notifications (they stack up)
3778 $this->setNewtalk( false );
3779
3780 // If there is a new, unseen, revision, use its timestamp
3781 $nextid = $oldid
3782 ? $title->getNextRevisionID( $oldid, Title::GAID_FOR_UPDATE )
3783 : null;
3784 if ( $nextid ) {
3785 $this->setNewtalk( true, Revision::newFromId( $nextid ) );
3786 }
3787 } );
3788 }
3789
3790 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3791 return;
3792 }
3793
3794 if ( $this->isAnon() ) {
3795 // Nothing else to do...
3796 return;
3797 }
3798
3799 // Only update the timestamp if the page is being watched.
3800 // The query to find out if it is watched is cached both in memcached and per-invocation,
3801 // and when it does have to be executed, it can be on a replica DB
3802 // If this is the user's newtalk page, we always update the timestamp
3803 $force = '';
3804 if ( $title->getNamespace() == NS_USER_TALK && $title->getText() == $this->getName() ) {
3805 $force = 'force';
3806 }
3807
3808 MediaWikiServices::getInstance()->getWatchedItemStore()
3809 ->resetNotificationTimestamp( $this, $title, $force, $oldid );
3810 }
3811
3812 /**
3813 * Resets all of the given user's page-change notification timestamps.
3814 * If e-notif e-mails are on, they will receive notification mails on
3815 * the next change of any watched page.
3816 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3817 */
3818 public function clearAllNotifications() {
3819 global $wgUseEnotif, $wgShowUpdatedMarker;
3820 // Do nothing if not allowed to edit the watchlist
3821 if ( wfReadOnly() || !$this->isAllowed( 'editmywatchlist' ) ) {
3822 return;
3823 }
3824
3825 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3826 $this->setNewtalk( false );
3827 return;
3828 }
3829
3830 $id = $this->getId();
3831 if ( !$id ) {
3832 return;
3833 }
3834
3835 $watchedItemStore = MediaWikiServices::getInstance()->getWatchedItemStore();
3836 $watchedItemStore->resetAllNotificationTimestampsForUser( $this );
3837
3838 // We also need to clear here the "you have new message" notification for the own
3839 // user_talk page; it's cleared one page view later in WikiPage::doViewUpdates().
3840 }
3841
3842 /**
3843 * Compute experienced level based on edit count and registration date.
3844 *
3845 * @return string 'newcomer', 'learner', or 'experienced'
3846 */
3847 public function getExperienceLevel() {
3848 global $wgLearnerEdits,
3849 $wgExperiencedUserEdits,
3850 $wgLearnerMemberSince,
3851 $wgExperiencedUserMemberSince;
3852
3853 if ( $this->isAnon() ) {
3854 return false;
3855 }
3856
3857 $editCount = $this->getEditCount();
3858 $registration = $this->getRegistration();
3859 $now = time();
3860 $learnerRegistration = wfTimestamp( TS_MW, $now - $wgLearnerMemberSince * 86400 );
3861 $experiencedRegistration = wfTimestamp( TS_MW, $now - $wgExperiencedUserMemberSince * 86400 );
3862
3863 if ( $editCount < $wgLearnerEdits ||
3864 $registration > $learnerRegistration ) {
3865 return 'newcomer';
3866 }
3867
3868 if ( $editCount > $wgExperiencedUserEdits &&
3869 $registration <= $experiencedRegistration
3870 ) {
3871 return 'experienced';
3872 }
3873
3874 return 'learner';
3875 }
3876
3877 /**
3878 * Persist this user's session (e.g. set cookies)
3879 *
3880 * @param WebRequest|null $request WebRequest object to use; $wgRequest will be used if null
3881 * is passed.
3882 * @param bool|null $secure Whether to force secure/insecure cookies or use default
3883 * @param bool $rememberMe Whether to add a Token cookie for elongated sessions
3884 */
3885 public function setCookies( $request = null, $secure = null, $rememberMe = false ) {
3886 $this->load();
3887 if ( $this->mId == 0 ) {
3888 return;
3889 }
3890
3891 $session = $this->getRequest()->getSession();
3892 if ( $request && $session->getRequest() !== $request ) {
3893 $session = $session->sessionWithRequest( $request );
3894 }
3895 $delay = $session->delaySave();
3896
3897 if ( !$session->getUser()->equals( $this ) ) {
3898 if ( !$session->canSetUser() ) {
3899 \MediaWiki\Logger\LoggerFactory::getInstance( 'session' )
3900 ->warning( __METHOD__ .
3901 ": Cannot save user \"$this\" to a user \"{$session->getUser()}\"'s immutable session"
3902 );
3903 return;
3904 }
3905 $session->setUser( $this );
3906 }
3907
3908 $session->setRememberUser( $rememberMe );
3909 if ( $secure !== null ) {
3910 $session->setForceHTTPS( $secure );
3911 }
3912
3913 $session->persist();
3914
3915 ScopedCallback::consume( $delay );
3916 }
3917
3918 /**
3919 * Log this user out.
3920 */
3921 public function logout() {
3922 // Avoid PHP 7.1 warning of passing $this by reference
3923 $user = $this;
3924 if ( Hooks::run( 'UserLogout', [ &$user ] ) ) {
3925 $this->doLogout();
3926 }
3927 }
3928
3929 /**
3930 * Clear the user's session, and reset the instance cache.
3931 * @see logout()
3932 */
3933 public function doLogout() {
3934 $session = $this->getRequest()->getSession();
3935 if ( !$session->canSetUser() ) {
3936 \MediaWiki\Logger\LoggerFactory::getInstance( 'session' )
3937 ->warning( __METHOD__ . ": Cannot log out of an immutable session" );
3938 $error = 'immutable';
3939 } elseif ( !$session->getUser()->equals( $this ) ) {
3940 \MediaWiki\Logger\LoggerFactory::getInstance( 'session' )
3941 ->warning( __METHOD__ .
3942 ": Cannot log user \"$this\" out of a user \"{$session->getUser()}\"'s session"
3943 );
3944 // But we still may as well make this user object anon
3945 $this->clearInstanceCache( 'defaults' );
3946 $error = 'wronguser';
3947 } else {
3948 $this->clearInstanceCache( 'defaults' );
3949 $delay = $session->delaySave();
3950 $session->unpersist(); // Clear cookies (T127436)
3951 $session->setLoggedOutTimestamp( time() );
3952 $session->setUser( new User );
3953 $session->set( 'wsUserID', 0 ); // Other code expects this
3954 $session->resetAllTokens();
3955 ScopedCallback::consume( $delay );
3956 $error = false;
3957 }
3958 \MediaWiki\Logger\LoggerFactory::getInstance( 'authevents' )->info( 'Logout', [
3959 'event' => 'logout',
3960 'successful' => $error === false,
3961 'status' => $error ?: 'success',
3962 ] );
3963 }
3964
3965 /**
3966 * Save this user's settings into the database.
3967 * @todo Only rarely do all these fields need to be set!
3968 */
3969 public function saveSettings() {
3970 if ( wfReadOnly() ) {
3971 // @TODO: caller should deal with this instead!
3972 // This should really just be an exception.
3973 MWExceptionHandler::logException( new DBExpectedError(
3974 null,
3975 "Could not update user with ID '{$this->mId}'; DB is read-only."
3976 ) );
3977 return;
3978 }
3979
3980 $this->load();
3981 if ( $this->mId == 0 ) {
3982 return; // anon
3983 }
3984
3985 // Get a new user_touched that is higher than the old one.
3986 // This will be used for a CAS check as a last-resort safety
3987 // check against race conditions and replica DB lag.
3988 $newTouched = $this->newTouchedTimestamp();
3989
3990 $dbw = wfGetDB( DB_MASTER );
3991 $dbw->doAtomicSection( __METHOD__, function ( IDatabase $dbw, $fname ) use ( $newTouched ) {
3992 global $wgActorTableSchemaMigrationStage;
3993
3994 $dbw->update( 'user',
3995 [ /* SET */
3996 'user_name' => $this->mName,
3997 'user_real_name' => $this->mRealName,
3998 'user_email' => $this->mEmail,
3999 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
4000 'user_touched' => $dbw->timestamp( $newTouched ),
4001 'user_token' => strval( $this->mToken ),
4002 'user_email_token' => $this->mEmailToken,
4003 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires ),
4004 ], $this->makeUpdateConditions( $dbw, [ /* WHERE */
4005 'user_id' => $this->mId,
4006 ] ), $fname
4007 );
4008
4009 if ( !$dbw->affectedRows() ) {
4010 // Maybe the problem was a missed cache update; clear it to be safe
4011 $this->clearSharedCache( 'refresh' );
4012 // User was changed in the meantime or loaded with stale data
4013 $from = ( $this->queryFlagsUsed & self::READ_LATEST ) ? 'master' : 'replica';
4014 LoggerFactory::getInstance( 'preferences' )->warning(
4015 "CAS update failed on user_touched for user ID '{user_id}' ({db_flag} read)",
4016 [ 'user_id' => $this->mId, 'db_flag' => $from ]
4017 );
4018 throw new MWException( "CAS update failed on user_touched. " .
4019 "The version of the user to be saved is older than the current version."
4020 );
4021 }
4022
4023 if ( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_WRITE_NEW ) {
4024 $dbw->update(
4025 'actor',
4026 [ 'actor_name' => $this->mName ],
4027 [ 'actor_user' => $this->mId ],
4028 $fname
4029 );
4030 }
4031 } );
4032
4033 $this->mTouched = $newTouched;
4034 $this->saveOptions();
4035
4036 Hooks::run( 'UserSaveSettings', [ $this ] );
4037 $this->clearSharedCache( 'changed' );
4038 $this->getUserPage()->purgeSquid();
4039 }
4040
4041 /**
4042 * If only this user's username is known, and it exists, return the user ID.
4043 *
4044 * @param int $flags Bitfield of User:READ_* constants; useful for existence checks
4045 * @return int
4046 */
4047 public function idForName( $flags = 0 ) {
4048 $s = trim( $this->getName() );
4049 if ( $s === '' ) {
4050 return 0;
4051 }
4052
4053 $db = ( ( $flags & self::READ_LATEST ) == self::READ_LATEST )
4054 ? wfGetDB( DB_MASTER )
4055 : wfGetDB( DB_REPLICA );
4056
4057 $options = ( ( $flags & self::READ_LOCKING ) == self::READ_LOCKING )
4058 ? [ 'LOCK IN SHARE MODE' ]
4059 : [];
4060
4061 $id = $db->selectField( 'user',
4062 'user_id', [ 'user_name' => $s ], __METHOD__, $options );
4063
4064 return (int)$id;
4065 }
4066
4067 /**
4068 * Add a user to the database, return the user object
4069 *
4070 * @param string $name Username to add
4071 * @param array $params Array of Strings Non-default parameters to save to
4072 * the database as user_* fields:
4073 * - email: The user's email address.
4074 * - email_authenticated: The email authentication timestamp.
4075 * - real_name: The user's real name.
4076 * - options: An associative array of non-default options.
4077 * - token: Random authentication token. Do not set.
4078 * - registration: Registration timestamp. Do not set.
4079 *
4080 * @return User|null User object, or null if the username already exists.
4081 */
4082 public static function createNew( $name, $params = [] ) {
4083 foreach ( [ 'password', 'newpassword', 'newpass_time', 'password_expires' ] as $field ) {
4084 if ( isset( $params[$field] ) ) {
4085 wfDeprecated( __METHOD__ . " with param '$field'", '1.27' );
4086 unset( $params[$field] );
4087 }
4088 }
4089
4090 $user = new User;
4091 $user->load();
4092 $user->setToken(); // init token
4093 if ( isset( $params['options'] ) ) {
4094 $user->mOptions = $params['options'] + (array)$user->mOptions;
4095 unset( $params['options'] );
4096 }
4097 $dbw = wfGetDB( DB_MASTER );
4098
4099 $noPass = PasswordFactory::newInvalidPassword()->toString();
4100
4101 $fields = [
4102 'user_name' => $name,
4103 'user_password' => $noPass,
4104 'user_newpassword' => $noPass,
4105 'user_email' => $user->mEmail,
4106 'user_email_authenticated' => $dbw->timestampOrNull( $user->mEmailAuthenticated ),
4107 'user_real_name' => $user->mRealName,
4108 'user_token' => strval( $user->mToken ),
4109 'user_registration' => $dbw->timestamp( $user->mRegistration ),
4110 'user_editcount' => 0,
4111 'user_touched' => $dbw->timestamp( $user->newTouchedTimestamp() ),
4112 ];
4113 foreach ( $params as $name => $value ) {
4114 $fields["user_$name"] = $value;
4115 }
4116
4117 return $dbw->doAtomicSection( __METHOD__, function ( IDatabase $dbw, $fname ) use ( $fields ) {
4118 $dbw->insert( 'user', $fields, $fname, [ 'IGNORE' ] );
4119 if ( $dbw->affectedRows() ) {
4120 $newUser = self::newFromId( $dbw->insertId() );
4121 $newUser->mName = $fields['user_name'];
4122 $newUser->updateActorId( $dbw );
4123 // Load the user from master to avoid replica lag
4124 $newUser->load( self::READ_LATEST );
4125 } else {
4126 $newUser = null;
4127 }
4128 return $newUser;
4129 } );
4130 }
4131
4132 /**
4133 * Add this existing user object to the database. If the user already
4134 * exists, a fatal status object is returned, and the user object is
4135 * initialised with the data from the database.
4136 *
4137 * Previously, this function generated a DB error due to a key conflict
4138 * if the user already existed. Many extension callers use this function
4139 * in code along the lines of:
4140 *
4141 * $user = User::newFromName( $name );
4142 * if ( !$user->isLoggedIn() ) {
4143 * $user->addToDatabase();
4144 * }
4145 * // do something with $user...
4146 *
4147 * However, this was vulnerable to a race condition (T18020). By
4148 * initialising the user object if the user exists, we aim to support this
4149 * calling sequence as far as possible.
4150 *
4151 * Note that if the user exists, this function will acquire a write lock,
4152 * so it is still advisable to make the call conditional on isLoggedIn(),
4153 * and to commit the transaction after calling.
4154 *
4155 * @throws MWException
4156 * @return Status
4157 */
4158 public function addToDatabase() {
4159 $this->load();
4160 if ( !$this->mToken ) {
4161 $this->setToken(); // init token
4162 }
4163
4164 if ( !is_string( $this->mName ) ) {
4165 throw new RuntimeException( "User name field is not set." );
4166 }
4167
4168 $this->mTouched = $this->newTouchedTimestamp();
4169
4170 $dbw = wfGetDB( DB_MASTER );
4171 $status = $dbw->doAtomicSection( __METHOD__, function ( IDatabase $dbw, $fname ) {
4172 $noPass = PasswordFactory::newInvalidPassword()->toString();
4173 $dbw->insert( 'user',
4174 [
4175 'user_name' => $this->mName,
4176 'user_password' => $noPass,
4177 'user_newpassword' => $noPass,
4178 'user_email' => $this->mEmail,
4179 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
4180 'user_real_name' => $this->mRealName,
4181 'user_token' => strval( $this->mToken ),
4182 'user_registration' => $dbw->timestamp( $this->mRegistration ),
4183 'user_editcount' => 0,
4184 'user_touched' => $dbw->timestamp( $this->mTouched ),
4185 ], $fname,
4186 [ 'IGNORE' ]
4187 );
4188 if ( !$dbw->affectedRows() ) {
4189 // Use locking reads to bypass any REPEATABLE-READ snapshot.
4190 $this->mId = $dbw->selectField(
4191 'user',
4192 'user_id',
4193 [ 'user_name' => $this->mName ],
4194 $fname,
4195 [ 'LOCK IN SHARE MODE' ]
4196 );
4197 $loaded = false;
4198 if ( $this->mId && $this->loadFromDatabase( self::READ_LOCKING ) ) {
4199 $loaded = true;
4200 }
4201 if ( !$loaded ) {
4202 throw new MWException( $fname . ": hit a key conflict attempting " .
4203 "to insert user '{$this->mName}' row, but it was not present in select!" );
4204 }
4205 return Status::newFatal( 'userexists' );
4206 }
4207 $this->mId = $dbw->insertId();
4208 self::$idCacheByName[$this->mName] = $this->mId;
4209 $this->updateActorId( $dbw );
4210
4211 return Status::newGood();
4212 } );
4213 if ( !$status->isGood() ) {
4214 return $status;
4215 }
4216
4217 // Clear instance cache other than user table data and actor, which is already accurate
4218 $this->clearInstanceCache();
4219
4220 $this->saveOptions();
4221 return Status::newGood();
4222 }
4223
4224 /**
4225 * Update the actor ID after an insert
4226 * @param IDatabase $dbw Writable database handle
4227 */
4228 private function updateActorId( IDatabase $dbw ) {
4229 global $wgActorTableSchemaMigrationStage;
4230
4231 if ( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_WRITE_NEW ) {
4232 $dbw->insert(
4233 'actor',
4234 [ 'actor_user' => $this->mId, 'actor_name' => $this->mName ],
4235 __METHOD__
4236 );
4237 $this->mActorId = (int)$dbw->insertId();
4238 }
4239 }
4240
4241 /**
4242 * If this user is logged-in and blocked,
4243 * block any IP address they've successfully logged in from.
4244 * @return bool A block was spread
4245 */
4246 public function spreadAnyEditBlock() {
4247 if ( $this->isLoggedIn() && $this->getBlock() ) {
4248 return $this->spreadBlock();
4249 }
4250
4251 return false;
4252 }
4253
4254 /**
4255 * If this (non-anonymous) user is blocked,
4256 * block the IP address they've successfully logged in from.
4257 * @return bool A block was spread
4258 */
4259 protected function spreadBlock() {
4260 wfDebug( __METHOD__ . "()\n" );
4261 $this->load();
4262 if ( $this->mId == 0 ) {
4263 return false;
4264 }
4265
4266 $userblock = DatabaseBlock::newFromTarget( $this->getName() );
4267 if ( !$userblock ) {
4268 return false;
4269 }
4270
4271 return (bool)$userblock->doAutoblock( $this->getRequest()->getIP() );
4272 }
4273
4274 /**
4275 * Get whether the user is explicitly blocked from account creation.
4276 * @return bool|AbstractBlock
4277 */
4278 public function isBlockedFromCreateAccount() {
4279 $this->getBlockedStatus();
4280 if ( $this->mBlock && $this->mBlock->appliesToRight( 'createaccount' ) ) {
4281 return $this->mBlock;
4282 }
4283
4284 # T15611: if the IP address the user is trying to create an account from is
4285 # blocked with createaccount disabled, prevent new account creation there even
4286 # when the user is logged in
4287 if ( $this->mBlockedFromCreateAccount === false && !$this->isAllowed( 'ipblock-exempt' ) ) {
4288 $this->mBlockedFromCreateAccount = DatabaseBlock::newFromTarget(
4289 null, $this->getRequest()->getIP()
4290 );
4291 }
4292 return $this->mBlockedFromCreateAccount instanceof AbstractBlock
4293 && $this->mBlockedFromCreateAccount->appliesToRight( 'createaccount' )
4294 ? $this->mBlockedFromCreateAccount
4295 : false;
4296 }
4297
4298 /**
4299 * Get whether the user is blocked from using Special:Emailuser.
4300 * @return bool
4301 */
4302 public function isBlockedFromEmailuser() {
4303 $this->getBlockedStatus();
4304 return $this->mBlock && $this->mBlock->appliesToRight( 'sendemail' );
4305 }
4306
4307 /**
4308 * Get whether the user is blocked from using Special:Upload
4309 *
4310 * @since 1.33
4311 * @return bool
4312 */
4313 public function isBlockedFromUpload() {
4314 $this->getBlockedStatus();
4315 return $this->mBlock && $this->mBlock->appliesToRight( 'upload' );
4316 }
4317
4318 /**
4319 * Get whether the user is allowed to create an account.
4320 * @return bool
4321 */
4322 public function isAllowedToCreateAccount() {
4323 return $this->isAllowed( 'createaccount' ) && !$this->isBlockedFromCreateAccount();
4324 }
4325
4326 /**
4327 * Get this user's personal page title.
4328 *
4329 * @return Title User's personal page title
4330 */
4331 public function getUserPage() {
4332 return Title::makeTitle( NS_USER, $this->getName() );
4333 }
4334
4335 /**
4336 * Get this user's talk page title.
4337 *
4338 * @return Title User's talk page title
4339 */
4340 public function getTalkPage() {
4341 $title = $this->getUserPage();
4342 return $title->getTalkPage();
4343 }
4344
4345 /**
4346 * Determine whether the user is a newbie. Newbies are either
4347 * anonymous IPs, or the most recently created accounts.
4348 * @return bool
4349 */
4350 public function isNewbie() {
4351 return !$this->isAllowed( 'autoconfirmed' );
4352 }
4353
4354 /**
4355 * Check to see if the given clear-text password is one of the accepted passwords
4356 * @deprecated since 1.27, use AuthManager instead
4357 * @param string $password User password
4358 * @return bool True if the given password is correct, otherwise False
4359 */
4360 public function checkPassword( $password ) {
4361 wfDeprecated( __METHOD__, '1.27' );
4362
4363 $manager = AuthManager::singleton();
4364 $reqs = AuthenticationRequest::loadRequestsFromSubmission(
4365 $manager->getAuthenticationRequests( AuthManager::ACTION_LOGIN ),
4366 [
4367 'username' => $this->getName(),
4368 'password' => $password,
4369 ]
4370 );
4371 $res = AuthManager::singleton()->beginAuthentication( $reqs, 'null:' );
4372 switch ( $res->status ) {
4373 case AuthenticationResponse::PASS:
4374 return true;
4375 case AuthenticationResponse::FAIL:
4376 // Hope it's not a PreAuthenticationProvider that failed...
4377 \MediaWiki\Logger\LoggerFactory::getInstance( 'authentication' )
4378 ->info( __METHOD__ . ': Authentication failed: ' . $res->message->plain() );
4379 return false;
4380 default:
4381 throw new BadMethodCallException(
4382 'AuthManager returned a response unsupported by ' . __METHOD__
4383 );
4384 }
4385 }
4386
4387 /**
4388 * Check if the given clear-text password matches the temporary password
4389 * sent by e-mail for password reset operations.
4390 *
4391 * @deprecated since 1.27, use AuthManager instead
4392 * @param string $plaintext
4393 * @return bool True if matches, false otherwise
4394 */
4395 public function checkTemporaryPassword( $plaintext ) {
4396 wfDeprecated( __METHOD__, '1.27' );
4397 // Can't check the temporary password individually.
4398 return $this->checkPassword( $plaintext );
4399 }
4400
4401 /**
4402 * Initialize (if necessary) and return a session token value
4403 * which can be used in edit forms to show that the user's
4404 * login credentials aren't being hijacked with a foreign form
4405 * submission.
4406 *
4407 * @since 1.27
4408 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4409 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4410 * @return MediaWiki\Session\Token The new edit token
4411 */
4412 public function getEditTokenObject( $salt = '', $request = null ) {
4413 if ( $this->isAnon() ) {
4414 return new LoggedOutEditToken();
4415 }
4416
4417 if ( !$request ) {
4418 $request = $this->getRequest();
4419 }
4420 return $request->getSession()->getToken( $salt );
4421 }
4422
4423 /**
4424 * Initialize (if necessary) and return a session token value
4425 * which can be used in edit forms to show that the user's
4426 * login credentials aren't being hijacked with a foreign form
4427 * submission.
4428 *
4429 * The $salt for 'edit' and 'csrf' tokens is the default (empty string).
4430 *
4431 * @since 1.19
4432 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4433 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4434 * @return string The new edit token
4435 */
4436 public function getEditToken( $salt = '', $request = null ) {
4437 return $this->getEditTokenObject( $salt, $request )->toString();
4438 }
4439
4440 /**
4441 * Check given value against the token value stored in the session.
4442 * A match should confirm that the form was submitted from the
4443 * user's own login session, not a form submission from a third-party
4444 * site.
4445 *
4446 * @param string $val Input value to compare
4447 * @param string|array $salt Optional function-specific data for hashing
4448 * @param WebRequest|null $request Object to use or null to use $wgRequest
4449 * @param int|null $maxage Fail tokens older than this, in seconds
4450 * @return bool Whether the token matches
4451 */
4452 public function matchEditToken( $val, $salt = '', $request = null, $maxage = null ) {
4453 return $this->getEditTokenObject( $salt, $request )->match( $val, $maxage );
4454 }
4455
4456 /**
4457 * Check given value against the token value stored in the session,
4458 * ignoring the suffix.
4459 *
4460 * @param string $val Input value to compare
4461 * @param string|array $salt Optional function-specific data for hashing
4462 * @param WebRequest|null $request Object to use or null to use $wgRequest
4463 * @param int|null $maxage Fail tokens older than this, in seconds
4464 * @return bool Whether the token matches
4465 */
4466 public function matchEditTokenNoSuffix( $val, $salt = '', $request = null, $maxage = null ) {
4467 $val = substr( $val, 0, strspn( $val, '0123456789abcdef' ) ) . Token::SUFFIX;
4468 return $this->matchEditToken( $val, $salt, $request, $maxage );
4469 }
4470
4471 /**
4472 * Generate a new e-mail confirmation token and send a confirmation/invalidation
4473 * mail to the user's given address.
4474 *
4475 * @param string $type Message to send, either "created", "changed" or "set"
4476 * @return Status
4477 */
4478 public function sendConfirmationMail( $type = 'created' ) {
4479 global $wgLang;
4480 $expiration = null; // gets passed-by-ref and defined in next line.
4481 $token = $this->confirmationToken( $expiration );
4482 $url = $this->confirmationTokenUrl( $token );
4483 $invalidateURL = $this->invalidationTokenUrl( $token );
4484 $this->saveSettings();
4485
4486 if ( $type == 'created' || $type === false ) {
4487 $message = 'confirmemail_body';
4488 $type = 'created';
4489 } elseif ( $type === true ) {
4490 $message = 'confirmemail_body_changed';
4491 $type = 'changed';
4492 } else {
4493 // Messages: confirmemail_body_changed, confirmemail_body_set
4494 $message = 'confirmemail_body_' . $type;
4495 }
4496
4497 $mail = [
4498 'subject' => wfMessage( 'confirmemail_subject' )->text(),
4499 'body' => wfMessage( $message,
4500 $this->getRequest()->getIP(),
4501 $this->getName(),
4502 $url,
4503 $wgLang->userTimeAndDate( $expiration, $this ),
4504 $invalidateURL,
4505 $wgLang->userDate( $expiration, $this ),
4506 $wgLang->userTime( $expiration, $this ) )->text(),
4507 'from' => null,
4508 'replyTo' => null,
4509 ];
4510 $info = [
4511 'type' => $type,
4512 'ip' => $this->getRequest()->getIP(),
4513 'confirmURL' => $url,
4514 'invalidateURL' => $invalidateURL,
4515 'expiration' => $expiration
4516 ];
4517
4518 Hooks::run( 'UserSendConfirmationMail', [ $this, &$mail, $info ] );
4519 return $this->sendMail( $mail['subject'], $mail['body'], $mail['from'], $mail['replyTo'] );
4520 }
4521
4522 /**
4523 * Send an e-mail to this user's account. Does not check for
4524 * confirmed status or validity.
4525 *
4526 * @param string $subject Message subject
4527 * @param string $body Message body
4528 * @param User|null $from Optional sending user; if unspecified, default
4529 * $wgPasswordSender will be used.
4530 * @param MailAddress|null $replyto Reply-To address
4531 * @return Status
4532 */
4533 public function sendMail( $subject, $body, $from = null, $replyto = null ) {
4534 global $wgPasswordSender;
4535
4536 if ( $from instanceof User ) {
4537 $sender = MailAddress::newFromUser( $from );
4538 } else {
4539 $sender = new MailAddress( $wgPasswordSender,
4540 wfMessage( 'emailsender' )->inContentLanguage()->text() );
4541 }
4542 $to = MailAddress::newFromUser( $this );
4543
4544 return UserMailer::send( $to, $sender, $subject, $body, [
4545 'replyTo' => $replyto,
4546 ] );
4547 }
4548
4549 /**
4550 * Generate, store, and return a new e-mail confirmation code.
4551 * A hash (unsalted, since it's used as a key) is stored.
4552 *
4553 * @note Call saveSettings() after calling this function to commit
4554 * this change to the database.
4555 *
4556 * @param string &$expiration Accepts the expiration time
4557 * @return string New token
4558 */
4559 protected function confirmationToken( &$expiration ) {
4560 global $wgUserEmailConfirmationTokenExpiry;
4561 $now = time();
4562 $expires = $now + $wgUserEmailConfirmationTokenExpiry;
4563 $expiration = wfTimestamp( TS_MW, $expires );
4564 $this->load();
4565 $token = MWCryptRand::generateHex( 32 );
4566 $hash = md5( $token );
4567 $this->mEmailToken = $hash;
4568 $this->mEmailTokenExpires = $expiration;
4569 return $token;
4570 }
4571
4572 /**
4573 * Return a URL the user can use to confirm their email address.
4574 * @param string $token Accepts the email confirmation token
4575 * @return string New token URL
4576 */
4577 protected function confirmationTokenUrl( $token ) {
4578 return $this->getTokenUrl( 'ConfirmEmail', $token );
4579 }
4580
4581 /**
4582 * Return a URL the user can use to invalidate their email address.
4583 * @param string $token Accepts the email confirmation token
4584 * @return string New token URL
4585 */
4586 protected function invalidationTokenUrl( $token ) {
4587 return $this->getTokenUrl( 'InvalidateEmail', $token );
4588 }
4589
4590 /**
4591 * Internal function to format the e-mail validation/invalidation URLs.
4592 * This uses a quickie hack to use the
4593 * hardcoded English names of the Special: pages, for ASCII safety.
4594 *
4595 * @note Since these URLs get dropped directly into emails, using the
4596 * short English names avoids insanely long URL-encoded links, which
4597 * also sometimes can get corrupted in some browsers/mailers
4598 * (T8957 with Gmail and Internet Explorer).
4599 *
4600 * @param string $page Special page
4601 * @param string $token
4602 * @return string Formatted URL
4603 */
4604 protected function getTokenUrl( $page, $token ) {
4605 // Hack to bypass localization of 'Special:'
4606 $title = Title::makeTitle( NS_MAIN, "Special:$page/$token" );
4607 return $title->getCanonicalURL();
4608 }
4609
4610 /**
4611 * Mark the e-mail address confirmed.
4612 *
4613 * @note Call saveSettings() after calling this function to commit the change.
4614 *
4615 * @return bool
4616 */
4617 public function confirmEmail() {
4618 // Check if it's already confirmed, so we don't touch the database
4619 // and fire the ConfirmEmailComplete hook on redundant confirmations.
4620 if ( !$this->isEmailConfirmed() ) {
4621 $this->setEmailAuthenticationTimestamp( wfTimestampNow() );
4622 Hooks::run( 'ConfirmEmailComplete', [ $this ] );
4623 }
4624 return true;
4625 }
4626
4627 /**
4628 * Invalidate the user's e-mail confirmation, and unauthenticate the e-mail
4629 * address if it was already confirmed.
4630 *
4631 * @note Call saveSettings() after calling this function to commit the change.
4632 * @return bool Returns true
4633 */
4634 public function invalidateEmail() {
4635 $this->load();
4636 $this->mEmailToken = null;
4637 $this->mEmailTokenExpires = null;
4638 $this->setEmailAuthenticationTimestamp( null );
4639 $this->mEmail = '';
4640 Hooks::run( 'InvalidateEmailComplete', [ $this ] );
4641 return true;
4642 }
4643
4644 /**
4645 * Set the e-mail authentication timestamp.
4646 * @param string $timestamp TS_MW timestamp
4647 */
4648 public function setEmailAuthenticationTimestamp( $timestamp ) {
4649 $this->load();
4650 $this->mEmailAuthenticated = $timestamp;
4651 Hooks::run( 'UserSetEmailAuthenticationTimestamp', [ $this, &$this->mEmailAuthenticated ] );
4652 }
4653
4654 /**
4655 * Is this user allowed to send e-mails within limits of current
4656 * site configuration?
4657 * @return bool
4658 */
4659 public function canSendEmail() {
4660 global $wgEnableEmail, $wgEnableUserEmail;
4661 if ( !$wgEnableEmail || !$wgEnableUserEmail || !$this->isAllowed( 'sendemail' ) ) {
4662 return false;
4663 }
4664 $canSend = $this->isEmailConfirmed();
4665 // Avoid PHP 7.1 warning of passing $this by reference
4666 $user = $this;
4667 Hooks::run( 'UserCanSendEmail', [ &$user, &$canSend ] );
4668 return $canSend;
4669 }
4670
4671 /**
4672 * Is this user allowed to receive e-mails within limits of current
4673 * site configuration?
4674 * @return bool
4675 */
4676 public function canReceiveEmail() {
4677 return $this->isEmailConfirmed() && !$this->getOption( 'disablemail' );
4678 }
4679
4680 /**
4681 * Is this user's e-mail address valid-looking and confirmed within
4682 * limits of the current site configuration?
4683 *
4684 * @note If $wgEmailAuthentication is on, this may require the user to have
4685 * confirmed their address by returning a code or using a password
4686 * sent to the address from the wiki.
4687 *
4688 * @return bool
4689 */
4690 public function isEmailConfirmed() {
4691 global $wgEmailAuthentication;
4692 $this->load();
4693 // Avoid PHP 7.1 warning of passing $this by reference
4694 $user = $this;
4695 $confirmed = true;
4696 if ( Hooks::run( 'EmailConfirmed', [ &$user, &$confirmed ] ) ) {
4697 if ( $this->isAnon() ) {
4698 return false;
4699 }
4700 if ( !Sanitizer::validateEmail( $this->mEmail ) ) {
4701 return false;
4702 }
4703 if ( $wgEmailAuthentication && !$this->getEmailAuthenticationTimestamp() ) {
4704 return false;
4705 }
4706 return true;
4707 }
4708
4709 return $confirmed;
4710 }
4711
4712 /**
4713 * Check whether there is an outstanding request for e-mail confirmation.
4714 * @return bool
4715 */
4716 public function isEmailConfirmationPending() {
4717 global $wgEmailAuthentication;
4718 return $wgEmailAuthentication &&
4719 !$this->isEmailConfirmed() &&
4720 $this->mEmailToken &&
4721 $this->mEmailTokenExpires > wfTimestamp();
4722 }
4723
4724 /**
4725 * Get the timestamp of account creation.
4726 *
4727 * @return string|bool|null Timestamp of account creation, false for
4728 * non-existent/anonymous user accounts, or null if existing account
4729 * but information is not in database.
4730 */
4731 public function getRegistration() {
4732 if ( $this->isAnon() ) {
4733 return false;
4734 }
4735 $this->load();
4736 return $this->mRegistration;
4737 }
4738
4739 /**
4740 * Get the timestamp of the first edit
4741 *
4742 * @return string|bool Timestamp of first edit, or false for
4743 * non-existent/anonymous user accounts.
4744 */
4745 public function getFirstEditTimestamp() {
4746 return $this->getEditTimestamp( true );
4747 }
4748
4749 /**
4750 * Get the timestamp of the latest edit
4751 *
4752 * @since 1.33
4753 * @return string|bool Timestamp of first edit, or false for
4754 * non-existent/anonymous user accounts.
4755 */
4756 public function getLatestEditTimestamp() {
4757 return $this->getEditTimestamp( false );
4758 }
4759
4760 /**
4761 * Get the timestamp of the first or latest edit
4762 *
4763 * @param bool $first True for the first edit, false for the latest one
4764 * @return string|bool Timestamp of first or latest edit, or false for
4765 * non-existent/anonymous user accounts.
4766 */
4767 private function getEditTimestamp( $first ) {
4768 if ( $this->getId() == 0 ) {
4769 return false; // anons
4770 }
4771 $dbr = wfGetDB( DB_REPLICA );
4772 $actorWhere = ActorMigration::newMigration()->getWhere( $dbr, 'rev_user', $this );
4773 $tsField = isset( $actorWhere['tables']['temp_rev_user'] )
4774 ? 'revactor_timestamp' : 'rev_timestamp';
4775 $sortOrder = $first ? 'ASC' : 'DESC';
4776 $time = $dbr->selectField(
4777 [ 'revision' ] + $actorWhere['tables'],
4778 $tsField,
4779 [ $actorWhere['conds'] ],
4780 __METHOD__,
4781 [ 'ORDER BY' => "$tsField $sortOrder" ],
4782 $actorWhere['joins']
4783 );
4784 if ( !$time ) {
4785 return false; // no edits
4786 }
4787 return wfTimestamp( TS_MW, $time );
4788 }
4789
4790 /**
4791 * Get the permissions associated with a given list of groups
4792 *
4793 * @deprecated since 1.34, use MediaWikiServices::getInstance()->getPermissionManager()
4794 * ->getGroupPermissions() instead
4795 *
4796 * @param array $groups Array of Strings List of internal group names
4797 * @return array Array of Strings List of permission key names for given groups combined
4798 */
4799 public static function getGroupPermissions( $groups ) {
4800 return MediaWikiServices::getInstance()->getPermissionManager()->getGroupPermissions( $groups );
4801 }
4802
4803 /**
4804 * Get all the groups who have a given permission
4805 *
4806 * @deprecated since 1.34, use MediaWikiServices::getInstance()->getPermissionManager()
4807 * ->getGroupsWithPermission() instead
4808 *
4809 * @param string $role Role to check
4810 * @return array Array of Strings List of internal group names with the given permission
4811 */
4812 public static function getGroupsWithPermission( $role ) {
4813 return MediaWikiServices::getInstance()->getPermissionManager()->getGroupsWithPermission( $role );
4814 }
4815
4816 /**
4817 * Check, if the given group has the given permission
4818 *
4819 * If you're wanting to check whether all users have a permission, use
4820 * User::isEveryoneAllowed() instead. That properly checks if it's revoked
4821 * from anyone.
4822 *
4823 * @deprecated since 1.34, use MediaWikiServices::getInstance()->getPermissionManager()
4824 * ->groupHasPermission(..) instead
4825 *
4826 * @since 1.21
4827 * @param string $group Group to check
4828 * @param string $role Role to check
4829 * @return bool
4830 */
4831 public static function groupHasPermission( $group, $role ) {
4832 return MediaWikiServices::getInstance()->getPermissionManager()
4833 ->groupHasPermission( $group, $role );
4834 }
4835
4836 /**
4837 * Check if all users may be assumed to have the given permission
4838 *
4839 * We generally assume so if the right is granted to '*' and isn't revoked
4840 * on any group. It doesn't attempt to take grants or other extension
4841 * limitations on rights into account in the general case, though, as that
4842 * would require it to always return false and defeat the purpose.
4843 * Specifically, session-based rights restrictions (such as OAuth or bot
4844 * passwords) are applied based on the current session.
4845 *
4846 * @deprecated since 1.34, use MediaWikiServices::getInstance()->getPermissionManager()
4847 * ->isEveryoneAllowed() instead
4848 *
4849 * @param string $right Right to check
4850 *
4851 * @return bool
4852 * @since 1.22
4853 */
4854 public static function isEveryoneAllowed( $right ) {
4855 return MediaWikiServices::getInstance()->getPermissionManager()->isEveryoneAllowed( $right );
4856 }
4857
4858 /**
4859 * Return the set of defined explicit groups.
4860 * The implicit groups (by default *, 'user' and 'autoconfirmed')
4861 * are not included, as they are defined automatically, not in the database.
4862 * @return array Array of internal group names
4863 */
4864 public static function getAllGroups() {
4865 global $wgGroupPermissions, $wgRevokePermissions;
4866 return array_values( array_diff(
4867 array_merge( array_keys( $wgGroupPermissions ), array_keys( $wgRevokePermissions ) ),
4868 self::getImplicitGroups()
4869 ) );
4870 }
4871
4872 /**
4873 * Get a list of all available permissions.
4874 *
4875 * @deprecated since 1.34, use MediaWikiServices::getInstance()->getPermissionManager()
4876 * ->getAllPermissions() instead
4877 *
4878 * @return string[] Array of permission names
4879 */
4880 public static function getAllRights() {
4881 return MediaWikiServices::getInstance()->getPermissionManager()->getAllPermissions();
4882 }
4883
4884 /**
4885 * Get a list of implicit groups
4886 * TODO: Should we deprecate this? It's trivial, but we don't want to encourage use of globals.
4887 *
4888 * @return array Array of Strings Array of internal group names
4889 */
4890 public static function getImplicitGroups() {
4891 global $wgImplicitGroups;
4892 return $wgImplicitGroups;
4893 }
4894
4895 /**
4896 * Returns an array of the groups that a particular group can add/remove.
4897 *
4898 * @param string $group The group to check for whether it can add/remove
4899 * @return array [ 'add' => [ addablegroups ],
4900 * 'remove' => [ removablegroups ],
4901 * 'add-self' => [ addablegroups to self ],
4902 * 'remove-self' => [ removable groups from self ] ]
4903 */
4904 public static function changeableByGroup( $group ) {
4905 global $wgAddGroups, $wgRemoveGroups, $wgGroupsAddToSelf, $wgGroupsRemoveFromSelf;
4906
4907 $groups = [
4908 'add' => [],
4909 'remove' => [],
4910 'add-self' => [],
4911 'remove-self' => []
4912 ];
4913
4914 if ( empty( $wgAddGroups[$group] ) ) {
4915 // Don't add anything to $groups
4916 } elseif ( $wgAddGroups[$group] === true ) {
4917 // You get everything
4918 $groups['add'] = self::getAllGroups();
4919 } elseif ( is_array( $wgAddGroups[$group] ) ) {
4920 $groups['add'] = $wgAddGroups[$group];
4921 }
4922
4923 // Same thing for remove
4924 if ( empty( $wgRemoveGroups[$group] ) ) {
4925 // Do nothing
4926 } elseif ( $wgRemoveGroups[$group] === true ) {
4927 $groups['remove'] = self::getAllGroups();
4928 } elseif ( is_array( $wgRemoveGroups[$group] ) ) {
4929 $groups['remove'] = $wgRemoveGroups[$group];
4930 }
4931
4932 // Re-map numeric keys of AddToSelf/RemoveFromSelf to the 'user' key for backwards compatibility
4933 if ( empty( $wgGroupsAddToSelf['user'] ) || $wgGroupsAddToSelf['user'] !== true ) {
4934 foreach ( $wgGroupsAddToSelf as $key => $value ) {
4935 if ( is_int( $key ) ) {
4936 $wgGroupsAddToSelf['user'][] = $value;
4937 }
4938 }
4939 }
4940
4941 if ( empty( $wgGroupsRemoveFromSelf['user'] ) || $wgGroupsRemoveFromSelf['user'] !== true ) {
4942 foreach ( $wgGroupsRemoveFromSelf as $key => $value ) {
4943 if ( is_int( $key ) ) {
4944 $wgGroupsRemoveFromSelf['user'][] = $value;
4945 }
4946 }
4947 }
4948
4949 // Now figure out what groups the user can add to him/herself
4950 if ( empty( $wgGroupsAddToSelf[$group] ) ) {
4951 // Do nothing
4952 } elseif ( $wgGroupsAddToSelf[$group] === true ) {
4953 // No idea WHY this would be used, but it's there
4954 $groups['add-self'] = self::getAllGroups();
4955 } elseif ( is_array( $wgGroupsAddToSelf[$group] ) ) {
4956 $groups['add-self'] = $wgGroupsAddToSelf[$group];
4957 }
4958
4959 if ( empty( $wgGroupsRemoveFromSelf[$group] ) ) {
4960 // Do nothing
4961 } elseif ( $wgGroupsRemoveFromSelf[$group] === true ) {
4962 $groups['remove-self'] = self::getAllGroups();
4963 } elseif ( is_array( $wgGroupsRemoveFromSelf[$group] ) ) {
4964 $groups['remove-self'] = $wgGroupsRemoveFromSelf[$group];
4965 }
4966
4967 return $groups;
4968 }
4969
4970 /**
4971 * Returns an array of groups that this user can add and remove
4972 * @return array [ 'add' => [ addablegroups ],
4973 * 'remove' => [ removablegroups ],
4974 * 'add-self' => [ addablegroups to self ],
4975 * 'remove-self' => [ removable groups from self ] ]
4976 */
4977 public function changeableGroups() {
4978 if ( $this->isAllowed( 'userrights' ) ) {
4979 // This group gives the right to modify everything (reverse-
4980 // compatibility with old "userrights lets you change
4981 // everything")
4982 // Using array_merge to make the groups reindexed
4983 $all = array_merge( self::getAllGroups() );
4984 return [
4985 'add' => $all,
4986 'remove' => $all,
4987 'add-self' => [],
4988 'remove-self' => []
4989 ];
4990 }
4991
4992 // Okay, it's not so simple, we will have to go through the arrays
4993 $groups = [
4994 'add' => [],
4995 'remove' => [],
4996 'add-self' => [],
4997 'remove-self' => []
4998 ];
4999 $addergroups = $this->getEffectiveGroups();
5000
5001 foreach ( $addergroups as $addergroup ) {
5002 $groups = array_merge_recursive(
5003 $groups, $this->changeableByGroup( $addergroup )
5004 );
5005 $groups['add'] = array_unique( $groups['add'] );
5006 $groups['remove'] = array_unique( $groups['remove'] );
5007 $groups['add-self'] = array_unique( $groups['add-self'] );
5008 $groups['remove-self'] = array_unique( $groups['remove-self'] );
5009 }
5010 return $groups;
5011 }
5012
5013 /**
5014 * Schedule a deferred update to update the user's edit count
5015 */
5016 public function incEditCount() {
5017 if ( $this->isAnon() ) {
5018 return; // sanity
5019 }
5020
5021 DeferredUpdates::addUpdate(
5022 new UserEditCountUpdate( $this, 1 ),
5023 DeferredUpdates::POSTSEND
5024 );
5025 }
5026
5027 /**
5028 * This method should not be called outside User/UserEditCountUpdate
5029 *
5030 * @param int $count
5031 */
5032 public function setEditCountInternal( $count ) {
5033 $this->mEditCount = $count;
5034 }
5035
5036 /**
5037 * Initialize user_editcount from data out of the revision table
5038 *
5039 * @internal This method should not be called outside User/UserEditCountUpdate
5040 * @param IDatabase $dbr Replica database
5041 * @return int Number of edits
5042 */
5043 public function initEditCountInternal( IDatabase $dbr ) {
5044 // Pull from a replica DB to be less cruel to servers
5045 // Accuracy isn't the point anyway here
5046 $actorWhere = ActorMigration::newMigration()->getWhere( $dbr, 'rev_user', $this );
5047 $count = (int)$dbr->selectField(
5048 [ 'revision' ] + $actorWhere['tables'],
5049 'COUNT(*)',
5050 [ $actorWhere['conds'] ],
5051 __METHOD__,
5052 [],
5053 $actorWhere['joins']
5054 );
5055
5056 $dbw = wfGetDB( DB_MASTER );
5057 $dbw->update(
5058 'user',
5059 [ 'user_editcount' => $count ],
5060 [
5061 'user_id' => $this->getId(),
5062 'user_editcount IS NULL OR user_editcount < ' . (int)$count
5063 ],
5064 __METHOD__
5065 );
5066
5067 return $count;
5068 }
5069
5070 /**
5071 * Get the description of a given right
5072 *
5073 * @since 1.29
5074 * @param string $right Right to query
5075 * @return string Localized description of the right
5076 */
5077 public static function getRightDescription( $right ) {
5078 $key = "right-$right";
5079 $msg = wfMessage( $key );
5080 return $msg->isDisabled() ? $right : $msg->text();
5081 }
5082
5083 /**
5084 * Get the name of a given grant
5085 *
5086 * @since 1.29
5087 * @param string $grant Grant to query
5088 * @return string Localized name of the grant
5089 */
5090 public static function getGrantName( $grant ) {
5091 $key = "grant-$grant";
5092 $msg = wfMessage( $key );
5093 return $msg->isDisabled() ? $grant : $msg->text();
5094 }
5095
5096 /**
5097 * Add a newuser log entry for this user.
5098 * Before 1.19 the return value was always true.
5099 *
5100 * @deprecated since 1.27, AuthManager handles logging
5101 * @param string|bool $action Account creation type.
5102 * - String, one of the following values:
5103 * - 'create' for an anonymous user creating an account for himself.
5104 * This will force the action's performer to be the created user itself,
5105 * no matter the value of $wgUser
5106 * - 'create2' for a logged in user creating an account for someone else
5107 * - 'byemail' when the created user will receive its password by e-mail
5108 * - 'autocreate' when the user is automatically created (such as by CentralAuth).
5109 * - Boolean means whether the account was created by e-mail (deprecated):
5110 * - true will be converted to 'byemail'
5111 * - false will be converted to 'create' if this object is the same as
5112 * $wgUser and to 'create2' otherwise
5113 * @param string $reason User supplied reason
5114 * @return bool true
5115 */
5116 public function addNewUserLogEntry( $action = false, $reason = '' ) {
5117 return true; // disabled
5118 }
5119
5120 /**
5121 * Add an autocreate newuser log entry for this user
5122 * Used by things like CentralAuth and perhaps other authplugins.
5123 * Consider calling addNewUserLogEntry() directly instead.
5124 *
5125 * @deprecated since 1.27, AuthManager handles logging
5126 * @return bool
5127 */
5128 public function addNewUserLogEntryAutoCreate() {
5129 $this->addNewUserLogEntry( 'autocreate' );
5130
5131 return true;
5132 }
5133
5134 /**
5135 * Load the user options either from cache, the database or an array
5136 *
5137 * @param array|null $data Rows for the current user out of the user_properties table
5138 */
5139 protected function loadOptions( $data = null ) {
5140 $this->load();
5141
5142 if ( $this->mOptionsLoaded ) {
5143 return;
5144 }
5145
5146 $this->mOptions = self::getDefaultOptions();
5147
5148 if ( !$this->getId() ) {
5149 // For unlogged-in users, load language/variant options from request.
5150 // There's no need to do it for logged-in users: they can set preferences,
5151 // and handling of page content is done by $pageLang->getPreferredVariant() and such,
5152 // so don't override user's choice (especially when the user chooses site default).
5153 $variant = MediaWikiServices::getInstance()->getContentLanguage()->getDefaultVariant();
5154 $this->mOptions['variant'] = $variant;
5155 $this->mOptions['language'] = $variant;
5156 $this->mOptionsLoaded = true;
5157 return;
5158 }
5159
5160 // Maybe load from the object
5161 if ( !is_null( $this->mOptionOverrides ) ) {
5162 wfDebug( "User: loading options for user " . $this->getId() . " from override cache.\n" );
5163 foreach ( $this->mOptionOverrides as $key => $value ) {
5164 $this->mOptions[$key] = $value;
5165 }
5166 } else {
5167 if ( !is_array( $data ) ) {
5168 wfDebug( "User: loading options for user " . $this->getId() . " from database.\n" );
5169 // Load from database
5170 $dbr = ( $this->queryFlagsUsed & self::READ_LATEST )
5171 ? wfGetDB( DB_MASTER )
5172 : wfGetDB( DB_REPLICA );
5173
5174 $res = $dbr->select(
5175 'user_properties',
5176 [ 'up_property', 'up_value' ],
5177 [ 'up_user' => $this->getId() ],
5178 __METHOD__
5179 );
5180
5181 $this->mOptionOverrides = [];
5182 $data = [];
5183 foreach ( $res as $row ) {
5184 // Convert '0' to 0. PHP's boolean conversion considers them both
5185 // false, but e.g. JavaScript considers the former as true.
5186 // @todo: T54542 Somehow determine the desired type (string/int/bool)
5187 // and convert all values here.
5188 if ( $row->up_value === '0' ) {
5189 $row->up_value = 0;
5190 }
5191 $data[$row->up_property] = $row->up_value;
5192 }
5193 }
5194
5195 foreach ( $data as $property => $value ) {
5196 $this->mOptionOverrides[$property] = $value;
5197 $this->mOptions[$property] = $value;
5198 }
5199 }
5200
5201 // Replace deprecated language codes
5202 $this->mOptions['language'] = LanguageCode::replaceDeprecatedCodes(
5203 $this->mOptions['language']
5204 );
5205
5206 $this->mOptionsLoaded = true;
5207
5208 Hooks::run( 'UserLoadOptions', [ $this, &$this->mOptions ] );
5209 }
5210
5211 /**
5212 * Saves the non-default options for this user, as previously set e.g. via
5213 * setOption(), in the database's "user_properties" (preferences) table.
5214 * Usually used via saveSettings().
5215 */
5216 protected function saveOptions() {
5217 $this->loadOptions();
5218
5219 // Not using getOptions(), to keep hidden preferences in database
5220 $saveOptions = $this->mOptions;
5221
5222 // Allow hooks to abort, for instance to save to a global profile.
5223 // Reset options to default state before saving.
5224 if ( !Hooks::run( 'UserSaveOptions', [ $this, &$saveOptions ] ) ) {
5225 return;
5226 }
5227
5228 $userId = $this->getId();
5229
5230 $insert_rows = []; // all the new preference rows
5231 foreach ( $saveOptions as $key => $value ) {
5232 // Don't bother storing default values
5233 $defaultOption = self::getDefaultOption( $key );
5234 if ( ( $defaultOption === null && $value !== false && $value !== null )
5235 || $value != $defaultOption
5236 ) {
5237 $insert_rows[] = [
5238 'up_user' => $userId,
5239 'up_property' => $key,
5240 'up_value' => $value,
5241 ];
5242 }
5243 }
5244
5245 $dbw = wfGetDB( DB_MASTER );
5246
5247 $res = $dbw->select( 'user_properties',
5248 [ 'up_property', 'up_value' ], [ 'up_user' => $userId ], __METHOD__ );
5249
5250 // Find prior rows that need to be removed or updated. These rows will
5251 // all be deleted (the latter so that INSERT IGNORE applies the new values).
5252 $keysDelete = [];
5253 foreach ( $res as $row ) {
5254 if ( !isset( $saveOptions[$row->up_property] )
5255 || strcmp( $saveOptions[$row->up_property], $row->up_value ) != 0
5256 ) {
5257 $keysDelete[] = $row->up_property;
5258 }
5259 }
5260
5261 if ( count( $keysDelete ) ) {
5262 // Do the DELETE by PRIMARY KEY for prior rows.
5263 // In the past a very large portion of calls to this function are for setting
5264 // 'rememberpassword' for new accounts (a preference that has since been removed).
5265 // Doing a blanket per-user DELETE for new accounts with no rows in the table
5266 // caused gap locks on [max user ID,+infinity) which caused high contention since
5267 // updates would pile up on each other as they are for higher (newer) user IDs.
5268 // It might not be necessary these days, but it shouldn't hurt either.
5269 $dbw->delete( 'user_properties',
5270 [ 'up_user' => $userId, 'up_property' => $keysDelete ], __METHOD__ );
5271 }
5272 // Insert the new preference rows
5273 $dbw->insert( 'user_properties', $insert_rows, __METHOD__, [ 'IGNORE' ] );
5274 }
5275
5276 /**
5277 * Return the list of user fields that should be selected to create
5278 * a new user object.
5279 * @deprecated since 1.31, use self::getQueryInfo() instead.
5280 * @return array
5281 */
5282 public static function selectFields() {
5283 wfDeprecated( __METHOD__, '1.31' );
5284 return [
5285 'user_id',
5286 'user_name',
5287 'user_real_name',
5288 'user_email',
5289 'user_touched',
5290 'user_token',
5291 'user_email_authenticated',
5292 'user_email_token',
5293 'user_email_token_expires',
5294 'user_registration',
5295 'user_editcount',
5296 ];
5297 }
5298
5299 /**
5300 * Return the tables, fields, and join conditions to be selected to create
5301 * a new user object.
5302 * @since 1.31
5303 * @return array With three keys:
5304 * - tables: (string[]) to include in the `$table` to `IDatabase->select()`
5305 * - fields: (string[]) to include in the `$vars` to `IDatabase->select()`
5306 * - joins: (array) to include in the `$join_conds` to `IDatabase->select()`
5307 */
5308 public static function getQueryInfo() {
5309 global $wgActorTableSchemaMigrationStage;
5310
5311 $ret = [
5312 'tables' => [ 'user' ],
5313 'fields' => [
5314 'user_id',
5315 'user_name',
5316 'user_real_name',
5317 'user_email',
5318 'user_touched',
5319 'user_token',
5320 'user_email_authenticated',
5321 'user_email_token',
5322 'user_email_token_expires',
5323 'user_registration',
5324 'user_editcount',
5325 ],
5326 'joins' => [],
5327 ];
5328
5329 // Technically we shouldn't allow this without SCHEMA_COMPAT_READ_NEW,
5330 // but it does little harm and might be needed for write callers loading a User.
5331 if ( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_NEW ) {
5332 $ret['tables']['user_actor'] = 'actor';
5333 $ret['fields'][] = 'user_actor.actor_id';
5334 $ret['joins']['user_actor'] = [
5335 ( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_READ_NEW ) ? 'JOIN' : 'LEFT JOIN',
5336 [ 'user_actor.actor_user = user_id' ]
5337 ];
5338 }
5339
5340 return $ret;
5341 }
5342
5343 /**
5344 * Factory function for fatal permission-denied errors
5345 *
5346 * @since 1.22
5347 * @param string $permission User right required
5348 * @return Status
5349 */
5350 static function newFatalPermissionDeniedStatus( $permission ) {
5351 global $wgLang;
5352
5353 $groups = [];
5354 foreach ( self::getGroupsWithPermission( $permission ) as $group ) {
5355 $groups[] = UserGroupMembership::getLink( $group, RequestContext::getMain(), 'wiki' );
5356 }
5357
5358 if ( $groups ) {
5359 return Status::newFatal( 'badaccess-groups', $wgLang->commaList( $groups ), count( $groups ) );
5360 }
5361
5362 return Status::newFatal( 'badaccess-group0' );
5363 }
5364
5365 /**
5366 * Get a new instance of this user that was loaded from the master via a locking read
5367 *
5368 * Use this instead of the main context User when updating that user. This avoids races
5369 * where that user was loaded from a replica DB or even the master but without proper locks.
5370 *
5371 * @return User|null Returns null if the user was not found in the DB
5372 * @since 1.27
5373 */
5374 public function getInstanceForUpdate() {
5375 if ( !$this->getId() ) {
5376 return null; // anon
5377 }
5378
5379 $user = self::newFromId( $this->getId() );
5380 if ( !$user->loadFromId( self::READ_EXCLUSIVE ) ) {
5381 return null;
5382 }
5383
5384 return $user;
5385 }
5386
5387 /**
5388 * Checks if two user objects point to the same user.
5389 *
5390 * @since 1.25 ; takes a UserIdentity instead of a User since 1.32
5391 * @param UserIdentity $user
5392 * @return bool
5393 */
5394 public function equals( UserIdentity $user ) {
5395 // XXX it's not clear whether central ID providers are supposed to obey this
5396 return $this->getName() === $user->getName();
5397 }
5398
5399 /**
5400 * Checks if usertalk is allowed
5401 *
5402 * @return bool
5403 */
5404 public function isAllowUsertalk() {
5405 return $this->mAllowUsertalk;
5406 }
5407
5408 }