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