fc96fe1952b5917b55b9e3d78cf4528e2e543650
[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 * Get the user's e-mail address
2799 * @return string User's email address
2800 */
2801 public function getEmail() {
2802 $this->load();
2803 Hooks::run( 'UserGetEmail', [ $this, &$this->mEmail ] );
2804 return $this->mEmail;
2805 }
2806
2807 /**
2808 * Get the timestamp of the user's e-mail authentication
2809 * @return string TS_MW timestamp
2810 */
2811 public function getEmailAuthenticationTimestamp() {
2812 $this->load();
2813 Hooks::run( 'UserGetEmailAuthenticationTimestamp', [ $this, &$this->mEmailAuthenticated ] );
2814 return $this->mEmailAuthenticated;
2815 }
2816
2817 /**
2818 * Set the user's e-mail address
2819 * @param string $str New e-mail address
2820 */
2821 public function setEmail( $str ) {
2822 $this->load();
2823 if ( $str == $this->mEmail ) {
2824 return;
2825 }
2826 $this->invalidateEmail();
2827 $this->mEmail = $str;
2828 Hooks::run( 'UserSetEmail', [ $this, &$this->mEmail ] );
2829 }
2830
2831 /**
2832 * Set the user's e-mail address and a confirmation mail if needed.
2833 *
2834 * @since 1.20
2835 * @param string $str New e-mail address
2836 * @return Status
2837 */
2838 public function setEmailWithConfirmation( $str ) {
2839 global $wgEnableEmail, $wgEmailAuthentication;
2840
2841 if ( !$wgEnableEmail ) {
2842 return Status::newFatal( 'emaildisabled' );
2843 }
2844
2845 $oldaddr = $this->getEmail();
2846 if ( $str === $oldaddr ) {
2847 return Status::newGood( true );
2848 }
2849
2850 $type = $oldaddr != '' ? 'changed' : 'set';
2851 $notificationResult = null;
2852
2853 if ( $wgEmailAuthentication && $type === 'changed' ) {
2854 // Send the user an email notifying the user of the change in registered
2855 // email address on their previous email address
2856 $change = $str != '' ? 'changed' : 'removed';
2857 $notificationResult = $this->sendMail(
2858 wfMessage( 'notificationemail_subject_' . $change )->text(),
2859 wfMessage( 'notificationemail_body_' . $change,
2860 $this->getRequest()->getIP(),
2861 $this->getName(),
2862 $str )->text()
2863 );
2864 }
2865
2866 $this->setEmail( $str );
2867
2868 if ( $str !== '' && $wgEmailAuthentication ) {
2869 // Send a confirmation request to the new address if needed
2870 $result = $this->sendConfirmationMail( $type );
2871
2872 if ( $notificationResult !== null ) {
2873 $result->merge( $notificationResult );
2874 }
2875
2876 if ( $result->isGood() ) {
2877 // Say to the caller that a confirmation and notification mail has been sent
2878 $result->value = 'eauth';
2879 }
2880 } else {
2881 $result = Status::newGood( true );
2882 }
2883
2884 return $result;
2885 }
2886
2887 /**
2888 * Get the user's real name
2889 * @return string User's real name
2890 */
2891 public function getRealName() {
2892 if ( !$this->isItemLoaded( 'realname' ) ) {
2893 $this->load();
2894 }
2895
2896 return $this->mRealName;
2897 }
2898
2899 /**
2900 * Set the user's real name
2901 * @param string $str New real name
2902 */
2903 public function setRealName( $str ) {
2904 $this->load();
2905 $this->mRealName = $str;
2906 }
2907
2908 /**
2909 * Get the user's current setting for a given option.
2910 *
2911 * @param string $oname The option to check
2912 * @param string|array|null $defaultOverride A default value returned if the option does not exist
2913 * @param bool $ignoreHidden Whether to ignore the effects of $wgHiddenPrefs
2914 * @return string|array|int|null User's current value for the option
2915 * @see getBoolOption()
2916 * @see getIntOption()
2917 */
2918 public function getOption( $oname, $defaultOverride = null, $ignoreHidden = false ) {
2919 global $wgHiddenPrefs;
2920 $this->loadOptions();
2921
2922 # We want 'disabled' preferences to always behave as the default value for
2923 # users, even if they have set the option explicitly in their settings (ie they
2924 # set it, and then it was disabled removing their ability to change it). But
2925 # we don't want to erase the preferences in the database in case the preference
2926 # is re-enabled again. So don't touch $mOptions, just override the returned value
2927 if ( !$ignoreHidden && in_array( $oname, $wgHiddenPrefs ) ) {
2928 return self::getDefaultOption( $oname );
2929 }
2930
2931 if ( array_key_exists( $oname, $this->mOptions ) ) {
2932 return $this->mOptions[$oname];
2933 }
2934
2935 return $defaultOverride;
2936 }
2937
2938 /**
2939 * Get all user's options
2940 *
2941 * @param int $flags Bitwise combination of:
2942 * User::GETOPTIONS_EXCLUDE_DEFAULTS Exclude user options that are set
2943 * to the default value. (Since 1.25)
2944 * @return array
2945 */
2946 public function getOptions( $flags = 0 ) {
2947 global $wgHiddenPrefs;
2948 $this->loadOptions();
2949 $options = $this->mOptions;
2950
2951 # We want 'disabled' preferences to always behave as the default value for
2952 # users, even if they have set the option explicitly in their settings (ie they
2953 # set it, and then it was disabled removing their ability to change it). But
2954 # we don't want to erase the preferences in the database in case the preference
2955 # is re-enabled again. So don't touch $mOptions, just override the returned value
2956 foreach ( $wgHiddenPrefs as $pref ) {
2957 $default = self::getDefaultOption( $pref );
2958 if ( $default !== null ) {
2959 $options[$pref] = $default;
2960 }
2961 }
2962
2963 if ( $flags & self::GETOPTIONS_EXCLUDE_DEFAULTS ) {
2964 $options = array_diff_assoc( $options, self::getDefaultOptions() );
2965 }
2966
2967 return $options;
2968 }
2969
2970 /**
2971 * Get the user's current setting for a given option, as a boolean value.
2972 *
2973 * @param string $oname The option to check
2974 * @return bool User's current value for the option
2975 * @see getOption()
2976 */
2977 public function getBoolOption( $oname ) {
2978 return (bool)$this->getOption( $oname );
2979 }
2980
2981 /**
2982 * Get the user's current setting for a given option, as an integer value.
2983 *
2984 * @param string $oname The option to check
2985 * @param int $defaultOverride A default value returned if the option does not exist
2986 * @return int User's current value for the option
2987 * @see getOption()
2988 */
2989 public function getIntOption( $oname, $defaultOverride = 0 ) {
2990 $val = $this->getOption( $oname );
2991 if ( $val == '' ) {
2992 $val = $defaultOverride;
2993 }
2994 return intval( $val );
2995 }
2996
2997 /**
2998 * Set the given option for a user.
2999 *
3000 * You need to call saveSettings() to actually write to the database.
3001 *
3002 * @param string $oname The option to set
3003 * @param mixed $val New value to set
3004 */
3005 public function setOption( $oname, $val ) {
3006 $this->loadOptions();
3007
3008 // Explicitly NULL values should refer to defaults
3009 if ( is_null( $val ) ) {
3010 $val = self::getDefaultOption( $oname );
3011 }
3012
3013 $this->mOptions[$oname] = $val;
3014 }
3015
3016 /**
3017 * Get a token stored in the preferences (like the watchlist one),
3018 * resetting it if it's empty (and saving changes).
3019 *
3020 * @param string $oname The option name to retrieve the token from
3021 * @return string|bool User's current value for the option, or false if this option is disabled.
3022 * @see resetTokenFromOption()
3023 * @see getOption()
3024 * @deprecated since 1.26 Applications should use the OAuth extension
3025 */
3026 public function getTokenFromOption( $oname ) {
3027 global $wgHiddenPrefs;
3028
3029 $id = $this->getId();
3030 if ( !$id || in_array( $oname, $wgHiddenPrefs ) ) {
3031 return false;
3032 }
3033
3034 $token = $this->getOption( $oname );
3035 if ( !$token ) {
3036 // Default to a value based on the user token to avoid space
3037 // wasted on storing tokens for all users. When this option
3038 // is set manually by the user, only then is it stored.
3039 $token = hash_hmac( 'sha1', "$oname:$id", $this->getToken() );
3040 }
3041
3042 return $token;
3043 }
3044
3045 /**
3046 * Reset a token stored in the preferences (like the watchlist one).
3047 * *Does not* save user's preferences (similarly to setOption()).
3048 *
3049 * @param string $oname The option name to reset the token in
3050 * @return string|bool New token value, or false if this option is disabled.
3051 * @see getTokenFromOption()
3052 * @see setOption()
3053 */
3054 public function resetTokenFromOption( $oname ) {
3055 global $wgHiddenPrefs;
3056 if ( in_array( $oname, $wgHiddenPrefs ) ) {
3057 return false;
3058 }
3059
3060 $token = MWCryptRand::generateHex( 40 );
3061 $this->setOption( $oname, $token );
3062 return $token;
3063 }
3064
3065 /**
3066 * Return a list of the types of user options currently returned by
3067 * User::getOptionKinds().
3068 *
3069 * Currently, the option kinds are:
3070 * - 'registered' - preferences which are registered in core MediaWiki or
3071 * by extensions using the UserGetDefaultOptions hook.
3072 * - 'registered-multiselect' - as above, using the 'multiselect' type.
3073 * - 'registered-checkmatrix' - as above, using the 'checkmatrix' type.
3074 * - 'userjs' - preferences with names starting with 'userjs-', intended to
3075 * be used by user scripts.
3076 * - 'special' - "preferences" that are not accessible via User::getOptions
3077 * or User::setOptions.
3078 * - 'unused' - preferences about which MediaWiki doesn't know anything.
3079 * These are usually legacy options, removed in newer versions.
3080 *
3081 * The API (and possibly others) use this function to determine the possible
3082 * option types for validation purposes, so make sure to update this when a
3083 * new option kind is added.
3084 *
3085 * @see User::getOptionKinds
3086 * @return array Option kinds
3087 */
3088 public static function listOptionKinds() {
3089 return [
3090 'registered',
3091 'registered-multiselect',
3092 'registered-checkmatrix',
3093 'userjs',
3094 'special',
3095 'unused'
3096 ];
3097 }
3098
3099 /**
3100 * Return an associative array mapping preferences keys to the kind of a preference they're
3101 * used for. Different kinds are handled differently when setting or reading preferences.
3102 *
3103 * See User::listOptionKinds for the list of valid option types that can be provided.
3104 *
3105 * @see User::listOptionKinds
3106 * @param IContextSource $context
3107 * @param array|null $options Assoc. array with options keys to check as keys.
3108 * Defaults to $this->mOptions.
3109 * @return array The key => kind mapping data
3110 */
3111 public function getOptionKinds( IContextSource $context, $options = null ) {
3112 $this->loadOptions();
3113 if ( $options === null ) {
3114 $options = $this->mOptions;
3115 }
3116
3117 $preferencesFactory = MediaWikiServices::getInstance()->getPreferencesFactory();
3118 $prefs = $preferencesFactory->getFormDescriptor( $this, $context );
3119 $mapping = [];
3120
3121 // Pull out the "special" options, so they don't get converted as
3122 // multiselect or checkmatrix.
3123 $specialOptions = array_fill_keys( $preferencesFactory->getSaveBlacklist(), true );
3124 foreach ( $specialOptions as $name => $value ) {
3125 unset( $prefs[$name] );
3126 }
3127
3128 // Multiselect and checkmatrix options are stored in the database with
3129 // one key per option, each having a boolean value. Extract those keys.
3130 $multiselectOptions = [];
3131 foreach ( $prefs as $name => $info ) {
3132 if ( ( isset( $info['type'] ) && $info['type'] == 'multiselect' ) ||
3133 ( isset( $info['class'] ) && $info['class'] == HTMLMultiSelectField::class ) ) {
3134 $opts = HTMLFormField::flattenOptions( $info['options'] );
3135 $prefix = $info['prefix'] ?? $name;
3136
3137 foreach ( $opts as $value ) {
3138 $multiselectOptions["$prefix$value"] = true;
3139 }
3140
3141 unset( $prefs[$name] );
3142 }
3143 }
3144 $checkmatrixOptions = [];
3145 foreach ( $prefs as $name => $info ) {
3146 if ( ( isset( $info['type'] ) && $info['type'] == 'checkmatrix' ) ||
3147 ( isset( $info['class'] ) && $info['class'] == HTMLCheckMatrix::class ) ) {
3148 $columns = HTMLFormField::flattenOptions( $info['columns'] );
3149 $rows = HTMLFormField::flattenOptions( $info['rows'] );
3150 $prefix = $info['prefix'] ?? $name;
3151
3152 foreach ( $columns as $column ) {
3153 foreach ( $rows as $row ) {
3154 $checkmatrixOptions["$prefix$column-$row"] = true;
3155 }
3156 }
3157
3158 unset( $prefs[$name] );
3159 }
3160 }
3161
3162 // $value is ignored
3163 foreach ( $options as $key => $value ) {
3164 if ( isset( $prefs[$key] ) ) {
3165 $mapping[$key] = 'registered';
3166 } elseif ( isset( $multiselectOptions[$key] ) ) {
3167 $mapping[$key] = 'registered-multiselect';
3168 } elseif ( isset( $checkmatrixOptions[$key] ) ) {
3169 $mapping[$key] = 'registered-checkmatrix';
3170 } elseif ( isset( $specialOptions[$key] ) ) {
3171 $mapping[$key] = 'special';
3172 } elseif ( substr( $key, 0, 7 ) === 'userjs-' ) {
3173 $mapping[$key] = 'userjs';
3174 } else {
3175 $mapping[$key] = 'unused';
3176 }
3177 }
3178
3179 return $mapping;
3180 }
3181
3182 /**
3183 * Reset certain (or all) options to the site defaults
3184 *
3185 * The optional parameter determines which kinds of preferences will be reset.
3186 * Supported values are everything that can be reported by getOptionKinds()
3187 * and 'all', which forces a reset of *all* preferences and overrides everything else.
3188 *
3189 * @param array|string $resetKinds Which kinds of preferences to reset. Defaults to
3190 * [ 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' ]
3191 * for backwards-compatibility.
3192 * @param IContextSource|null $context Context source used when $resetKinds
3193 * does not contain 'all', passed to getOptionKinds().
3194 * Defaults to RequestContext::getMain() when null.
3195 */
3196 public function resetOptions(
3197 $resetKinds = [ 'registered', 'registered-multiselect', 'registered-checkmatrix', 'unused' ],
3198 IContextSource $context = null
3199 ) {
3200 $this->load();
3201 $defaultOptions = self::getDefaultOptions();
3202
3203 if ( !is_array( $resetKinds ) ) {
3204 $resetKinds = [ $resetKinds ];
3205 }
3206
3207 if ( in_array( 'all', $resetKinds ) ) {
3208 $newOptions = $defaultOptions;
3209 } else {
3210 if ( $context === null ) {
3211 $context = RequestContext::getMain();
3212 }
3213
3214 $optionKinds = $this->getOptionKinds( $context );
3215 $resetKinds = array_intersect( $resetKinds, self::listOptionKinds() );
3216 $newOptions = [];
3217
3218 // Use default values for the options that should be deleted, and
3219 // copy old values for the ones that shouldn't.
3220 foreach ( $this->mOptions as $key => $value ) {
3221 if ( in_array( $optionKinds[$key], $resetKinds ) ) {
3222 if ( array_key_exists( $key, $defaultOptions ) ) {
3223 $newOptions[$key] = $defaultOptions[$key];
3224 }
3225 } else {
3226 $newOptions[$key] = $value;
3227 }
3228 }
3229 }
3230
3231 Hooks::run( 'UserResetAllOptions', [ $this, &$newOptions, $this->mOptions, $resetKinds ] );
3232
3233 $this->mOptions = $newOptions;
3234 $this->mOptionsLoaded = true;
3235 }
3236
3237 /**
3238 * Get the user's preferred date format.
3239 * @return string User's preferred date format
3240 */
3241 public function getDatePreference() {
3242 // Important migration for old data rows
3243 if ( is_null( $this->mDatePreference ) ) {
3244 global $wgLang;
3245 $value = $this->getOption( 'date' );
3246 $map = $wgLang->getDatePreferenceMigrationMap();
3247 if ( isset( $map[$value] ) ) {
3248 $value = $map[$value];
3249 }
3250 $this->mDatePreference = $value;
3251 }
3252 return $this->mDatePreference;
3253 }
3254
3255 /**
3256 * Determine based on the wiki configuration and the user's options,
3257 * whether this user must be over HTTPS no matter what.
3258 *
3259 * @return bool
3260 */
3261 public function requiresHTTPS() {
3262 global $wgSecureLogin;
3263 if ( !$wgSecureLogin ) {
3264 return false;
3265 }
3266
3267 $https = $this->getBoolOption( 'prefershttps' );
3268 Hooks::run( 'UserRequiresHTTPS', [ $this, &$https ] );
3269 if ( $https ) {
3270 $https = wfCanIPUseHTTPS( $this->getRequest()->getIP() );
3271 }
3272
3273 return $https;
3274 }
3275
3276 /**
3277 * Get the user preferred stub threshold
3278 *
3279 * @return int
3280 */
3281 public function getStubThreshold() {
3282 global $wgMaxArticleSize; # Maximum article size, in Kb
3283 $threshold = $this->getIntOption( 'stubthreshold' );
3284 if ( $threshold > $wgMaxArticleSize * 1024 ) {
3285 // If they have set an impossible value, disable the preference
3286 // so we can use the parser cache again.
3287 $threshold = 0;
3288 }
3289 return $threshold;
3290 }
3291
3292 /**
3293 * Get the permissions this user has.
3294 * @return string[] permission names
3295 *
3296 * @deprecated since 1.34, use MediaWikiServices::getInstance()->getPermissionManager()
3297 * ->getUserPermissions(..) instead
3298 *
3299 */
3300 public function getRights() {
3301 return MediaWikiServices::getInstance()->getPermissionManager()->getUserPermissions( $this );
3302 }
3303
3304 /**
3305 * Get the list of explicit group memberships this user has.
3306 * The implicit * and user groups are not included.
3307 *
3308 * @return string[] Array of internal group names (sorted since 1.33)
3309 */
3310 public function getGroups() {
3311 $this->load();
3312 $this->loadGroups();
3313 return array_keys( $this->mGroupMemberships );
3314 }
3315
3316 /**
3317 * Get the list of explicit group memberships this user has, stored as
3318 * UserGroupMembership objects. Implicit groups are not included.
3319 *
3320 * @return UserGroupMembership[] Associative array of (group name => UserGroupMembership object)
3321 * @since 1.29
3322 */
3323 public function getGroupMemberships() {
3324 $this->load();
3325 $this->loadGroups();
3326 return $this->mGroupMemberships;
3327 }
3328
3329 /**
3330 * Get the list of implicit group memberships this user has.
3331 * This includes all explicit groups, plus 'user' if logged in,
3332 * '*' for all accounts, and autopromoted groups
3333 * @param bool $recache Whether to avoid the cache
3334 * @return array Array of String internal group names
3335 */
3336 public function getEffectiveGroups( $recache = false ) {
3337 if ( $recache || is_null( $this->mEffectiveGroups ) ) {
3338 $this->mEffectiveGroups = array_unique( array_merge(
3339 $this->getGroups(), // explicit groups
3340 $this->getAutomaticGroups( $recache ) // implicit groups
3341 ) );
3342 // Avoid PHP 7.1 warning of passing $this by reference
3343 $user = $this;
3344 // Hook for additional groups
3345 Hooks::run( 'UserEffectiveGroups', [ &$user, &$this->mEffectiveGroups ] );
3346 // Force reindexation of groups when a hook has unset one of them
3347 $this->mEffectiveGroups = array_values( array_unique( $this->mEffectiveGroups ) );
3348 }
3349 return $this->mEffectiveGroups;
3350 }
3351
3352 /**
3353 * Get the list of implicit group memberships this user has.
3354 * This includes 'user' if logged in, '*' for all accounts,
3355 * and autopromoted groups
3356 * @param bool $recache Whether to avoid the cache
3357 * @return array Array of String internal group names
3358 */
3359 public function getAutomaticGroups( $recache = false ) {
3360 if ( $recache || is_null( $this->mImplicitGroups ) ) {
3361 $this->mImplicitGroups = [ '*' ];
3362 if ( $this->getId() ) {
3363 $this->mImplicitGroups[] = 'user';
3364
3365 $this->mImplicitGroups = array_unique( array_merge(
3366 $this->mImplicitGroups,
3367 Autopromote::getAutopromoteGroups( $this )
3368 ) );
3369 }
3370 if ( $recache ) {
3371 // Assure data consistency with rights/groups,
3372 // as getEffectiveGroups() depends on this function
3373 $this->mEffectiveGroups = null;
3374 }
3375 }
3376 return $this->mImplicitGroups;
3377 }
3378
3379 /**
3380 * Returns the groups the user has belonged to.
3381 *
3382 * The user may still belong to the returned groups. Compare with getGroups().
3383 *
3384 * The function will not return groups the user had belonged to before MW 1.17
3385 *
3386 * @return array Names of the groups the user has belonged to.
3387 */
3388 public function getFormerGroups() {
3389 $this->load();
3390
3391 if ( is_null( $this->mFormerGroups ) ) {
3392 $db = ( $this->queryFlagsUsed & self::READ_LATEST )
3393 ? wfGetDB( DB_MASTER )
3394 : wfGetDB( DB_REPLICA );
3395 $res = $db->select( 'user_former_groups',
3396 [ 'ufg_group' ],
3397 [ 'ufg_user' => $this->mId ],
3398 __METHOD__ );
3399 $this->mFormerGroups = [];
3400 foreach ( $res as $row ) {
3401 $this->mFormerGroups[] = $row->ufg_group;
3402 }
3403 }
3404
3405 return $this->mFormerGroups;
3406 }
3407
3408 /**
3409 * Get the user's edit count.
3410 * @return int|null Null for anonymous users
3411 */
3412 public function getEditCount() {
3413 if ( !$this->getId() ) {
3414 return null;
3415 }
3416
3417 if ( $this->mEditCount === null ) {
3418 /* Populate the count, if it has not been populated yet */
3419 $dbr = wfGetDB( DB_REPLICA );
3420 // check if the user_editcount field has been initialized
3421 $count = $dbr->selectField(
3422 'user', 'user_editcount',
3423 [ 'user_id' => $this->mId ],
3424 __METHOD__
3425 );
3426
3427 if ( $count === null ) {
3428 // it has not been initialized. do so.
3429 $count = $this->initEditCountInternal( $dbr );
3430 }
3431 $this->mEditCount = $count;
3432 }
3433 return (int)$this->mEditCount;
3434 }
3435
3436 /**
3437 * Add the user to the given group. This takes immediate effect.
3438 * If the user is already in the group, the expiry time will be updated to the new
3439 * expiry time. (If $expiry is omitted or null, the membership will be altered to
3440 * never expire.)
3441 *
3442 * @param string $group Name of the group to add
3443 * @param string|null $expiry Optional expiry timestamp in any format acceptable to
3444 * wfTimestamp(), or null if the group assignment should not expire
3445 * @return bool
3446 */
3447 public function addGroup( $group, $expiry = null ) {
3448 $this->load();
3449 $this->loadGroups();
3450
3451 if ( $expiry ) {
3452 $expiry = wfTimestamp( TS_MW, $expiry );
3453 }
3454
3455 if ( !Hooks::run( 'UserAddGroup', [ $this, &$group, &$expiry ] ) ) {
3456 return false;
3457 }
3458
3459 // create the new UserGroupMembership and put it in the DB
3460 $ugm = new UserGroupMembership( $this->mId, $group, $expiry );
3461 if ( !$ugm->insert( true ) ) {
3462 return false;
3463 }
3464
3465 $this->mGroupMemberships[$group] = $ugm;
3466
3467 // Refresh the groups caches, and clear the rights cache so it will be
3468 // refreshed on the next call to $this->getRights().
3469 $this->getEffectiveGroups( true );
3470 MediaWikiServices::getInstance()->getPermissionManager()->invalidateUsersRightsCache( $this );
3471 $this->invalidateCache();
3472
3473 return true;
3474 }
3475
3476 /**
3477 * Remove the user from the given group.
3478 * This takes immediate effect.
3479 * @param string $group Name of the group to remove
3480 * @return bool
3481 */
3482 public function removeGroup( $group ) {
3483 $this->load();
3484
3485 if ( !Hooks::run( 'UserRemoveGroup', [ $this, &$group ] ) ) {
3486 return false;
3487 }
3488
3489 $ugm = UserGroupMembership::getMembership( $this->mId, $group );
3490 // delete the membership entry
3491 if ( !$ugm || !$ugm->delete() ) {
3492 return false;
3493 }
3494
3495 $this->loadGroups();
3496 unset( $this->mGroupMemberships[$group] );
3497
3498 // Refresh the groups caches, and clear the rights cache so it will be
3499 // refreshed on the next call to $this->getRights().
3500 $this->getEffectiveGroups( true );
3501 MediaWikiServices::getInstance()->getPermissionManager()->invalidateUsersRightsCache( $this );
3502 $this->invalidateCache();
3503
3504 return true;
3505 }
3506
3507 /**
3508 * Alias of isLoggedIn() with a name that describes its actual functionality. UserIdentity has
3509 * only this new name and not the old isLoggedIn() variant.
3510 *
3511 * @return bool True if user is registered on this wiki, i.e., has a user ID. False if user is
3512 * anonymous or has no local account (which can happen when importing). This is equivalent to
3513 * getId() != 0 and is provided for code readability.
3514 * @since 1.34
3515 */
3516 public function isRegistered() {
3517 return $this->getId() != 0;
3518 }
3519
3520 /**
3521 * Get whether the user is logged in
3522 * @return bool
3523 */
3524 public function isLoggedIn() {
3525 return $this->isRegistered();
3526 }
3527
3528 /**
3529 * Get whether the user is anonymous
3530 * @return bool
3531 */
3532 public function isAnon() {
3533 return !$this->isRegistered();
3534 }
3535
3536 /**
3537 * @return bool Whether this user is flagged as being a bot role account
3538 * @since 1.28
3539 */
3540 public function isBot() {
3541 if ( in_array( 'bot', $this->getGroups() ) && $this->isAllowed( 'bot' ) ) {
3542 return true;
3543 }
3544
3545 $isBot = false;
3546 Hooks::run( "UserIsBot", [ $this, &$isBot ] );
3547
3548 return $isBot;
3549 }
3550
3551 /**
3552 * Check if user is allowed to access a feature / make an action
3553 *
3554 * @deprecated since 1.34, use MediaWikiServices::getInstance()
3555 * ->getPermissionManager()->userHasAnyRights(...) instead
3556 *
3557 * @param string $permissions,... Permissions to test
3558 * @return bool True if user is allowed to perform *any* of the given actions
3559 * @suppress PhanCommentParamOnEmptyParamList Cannot make variadic due to HHVM bug, T191668#5263929
3560 */
3561 public function isAllowedAny() {
3562 return MediaWikiServices::getInstance()
3563 ->getPermissionManager()
3564 ->userHasAnyRight( $this, ...func_get_args() );
3565 }
3566
3567 /**
3568 * @deprecated since 1.34, use MediaWikiServices::getInstance()
3569 * ->getPermissionManager()->userHasAllRights(...) instead
3570 * @param string $permissions,... Permissions to test
3571 * @return bool True if the user is allowed to perform *all* of the given actions
3572 * @suppress PhanCommentParamOnEmptyParamList Cannot make variadic due to HHVM bug, T191668#5263929
3573 */
3574 public function isAllowedAll() {
3575 return MediaWikiServices::getInstance()
3576 ->getPermissionManager()
3577 ->userHasAllRights( $this, ...func_get_args() );
3578 }
3579
3580 /**
3581 * Internal mechanics of testing a permission
3582 *
3583 * @deprecated since 1.34, use MediaWikiServices::getInstance()
3584 * ->getPermissionManager()->userHasRight(...) instead
3585 *
3586 * @param string $action
3587 *
3588 * @return bool
3589 */
3590 public function isAllowed( $action = '' ) {
3591 return MediaWikiServices::getInstance()->getPermissionManager()
3592 ->userHasRight( $this, $action );
3593 }
3594
3595 /**
3596 * Check whether to enable recent changes patrol features for this user
3597 * @return bool True or false
3598 */
3599 public function useRCPatrol() {
3600 global $wgUseRCPatrol;
3601 return $wgUseRCPatrol && $this->isAllowedAny( 'patrol', 'patrolmarks' );
3602 }
3603
3604 /**
3605 * Check whether to enable new pages patrol features for this user
3606 * @return bool True or false
3607 */
3608 public function useNPPatrol() {
3609 global $wgUseRCPatrol, $wgUseNPPatrol;
3610 return (
3611 ( $wgUseRCPatrol || $wgUseNPPatrol )
3612 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3613 );
3614 }
3615
3616 /**
3617 * Check whether to enable new files patrol features for this user
3618 * @return bool True or false
3619 */
3620 public function useFilePatrol() {
3621 global $wgUseRCPatrol, $wgUseFilePatrol;
3622 return (
3623 ( $wgUseRCPatrol || $wgUseFilePatrol )
3624 && ( $this->isAllowedAny( 'patrol', 'patrolmarks' ) )
3625 );
3626 }
3627
3628 /**
3629 * Get the WebRequest object to use with this object
3630 *
3631 * @return WebRequest
3632 */
3633 public function getRequest() {
3634 if ( $this->mRequest ) {
3635 return $this->mRequest;
3636 }
3637
3638 global $wgRequest;
3639 return $wgRequest;
3640 }
3641
3642 /**
3643 * Check the watched status of an article.
3644 * @since 1.22 $checkRights parameter added
3645 * @param Title $title Title of the article to look at
3646 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3647 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3648 * @return bool
3649 */
3650 public function isWatched( $title, $checkRights = self::CHECK_USER_RIGHTS ) {
3651 if ( $title->isWatchable() && ( !$checkRights || $this->isAllowed( 'viewmywatchlist' ) ) ) {
3652 return MediaWikiServices::getInstance()->getWatchedItemStore()->isWatched( $this, $title );
3653 }
3654 return false;
3655 }
3656
3657 /**
3658 * Watch an article.
3659 * @since 1.22 $checkRights parameter added
3660 * @param Title $title Title of the article to look at
3661 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3662 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3663 */
3664 public function addWatch( $title, $checkRights = self::CHECK_USER_RIGHTS ) {
3665 if ( !$checkRights || $this->isAllowed( 'editmywatchlist' ) ) {
3666 MediaWikiServices::getInstance()->getWatchedItemStore()->addWatchBatchForUser(
3667 $this,
3668 [ $title->getSubjectPage(), $title->getTalkPage() ]
3669 );
3670 }
3671 $this->invalidateCache();
3672 }
3673
3674 /**
3675 * Stop watching an article.
3676 * @since 1.22 $checkRights parameter added
3677 * @param Title $title Title of the article to look at
3678 * @param bool $checkRights Whether to check 'viewmywatchlist'/'editmywatchlist' rights.
3679 * Pass User::CHECK_USER_RIGHTS or User::IGNORE_USER_RIGHTS.
3680 */
3681 public function removeWatch( $title, $checkRights = self::CHECK_USER_RIGHTS ) {
3682 if ( !$checkRights || $this->isAllowed( 'editmywatchlist' ) ) {
3683 $store = MediaWikiServices::getInstance()->getWatchedItemStore();
3684 $store->removeWatch( $this, $title->getSubjectPage() );
3685 $store->removeWatch( $this, $title->getTalkPage() );
3686 }
3687 $this->invalidateCache();
3688 }
3689
3690 /**
3691 * Clear the user's notification timestamp for the given title.
3692 * If e-notif e-mails are on, they will receive notification mails on
3693 * the next change of the page if it's watched etc.
3694 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3695 * @param Title &$title Title of the article to look at
3696 * @param int $oldid The revision id being viewed. If not given or 0, latest revision is assumed.
3697 */
3698 public function clearNotification( &$title, $oldid = 0 ) {
3699 global $wgUseEnotif, $wgShowUpdatedMarker;
3700
3701 // Do nothing if the database is locked to writes
3702 if ( wfReadOnly() ) {
3703 return;
3704 }
3705
3706 // Do nothing if not allowed to edit the watchlist
3707 if ( !$this->isAllowed( 'editmywatchlist' ) ) {
3708 return;
3709 }
3710
3711 // If we're working on user's talk page, we should update the talk page message indicator
3712 if ( $title->getNamespace() == NS_USER_TALK && $title->getText() == $this->getName() ) {
3713 // Avoid PHP 7.1 warning of passing $this by reference
3714 $user = $this;
3715 if ( !Hooks::run( 'UserClearNewTalkNotification', [ &$user, $oldid ] ) ) {
3716 return;
3717 }
3718
3719 // Try to update the DB post-send and only if needed...
3720 DeferredUpdates::addCallableUpdate( function () use ( $title, $oldid ) {
3721 if ( !$this->getNewtalk() ) {
3722 return; // no notifications to clear
3723 }
3724
3725 // Delete the last notifications (they stack up)
3726 $this->setNewtalk( false );
3727
3728 // If there is a new, unseen, revision, use its timestamp
3729 if ( $oldid ) {
3730 $rl = MediaWikiServices::getInstance()->getRevisionLookup();
3731 $oldRev = $rl->getRevisionById( $oldid, Title::READ_LATEST );
3732 if ( $oldRev ) {
3733 $newRev = $rl->getNextRevision( $oldRev );
3734 if ( $newRev ) {
3735 // TODO: actually no need to wrap in a revision,
3736 // setNewtalk really only needs a RevRecord
3737 $this->setNewtalk( true, new Revision( $newRev ) );
3738 }
3739 }
3740 }
3741 } );
3742 }
3743
3744 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3745 return;
3746 }
3747
3748 if ( $this->isAnon() ) {
3749 // Nothing else to do...
3750 return;
3751 }
3752
3753 // Only update the timestamp if the page is being watched.
3754 // The query to find out if it is watched is cached both in memcached and per-invocation,
3755 // and when it does have to be executed, it can be on a replica DB
3756 // If this is the user's newtalk page, we always update the timestamp
3757 $force = '';
3758 if ( $title->getNamespace() == NS_USER_TALK && $title->getText() == $this->getName() ) {
3759 $force = 'force';
3760 }
3761
3762 MediaWikiServices::getInstance()->getWatchedItemStore()
3763 ->resetNotificationTimestamp( $this, $title, $force, $oldid );
3764 }
3765
3766 /**
3767 * Resets all of the given user's page-change notification timestamps.
3768 * If e-notif e-mails are on, they will receive notification mails on
3769 * the next change of any watched page.
3770 * @note If the user doesn't have 'editmywatchlist', this will do nothing.
3771 */
3772 public function clearAllNotifications() {
3773 global $wgUseEnotif, $wgShowUpdatedMarker;
3774 // Do nothing if not allowed to edit the watchlist
3775 if ( wfReadOnly() || !$this->isAllowed( 'editmywatchlist' ) ) {
3776 return;
3777 }
3778
3779 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
3780 $this->setNewtalk( false );
3781 return;
3782 }
3783
3784 $id = $this->getId();
3785 if ( !$id ) {
3786 return;
3787 }
3788
3789 $watchedItemStore = MediaWikiServices::getInstance()->getWatchedItemStore();
3790 $watchedItemStore->resetAllNotificationTimestampsForUser( $this );
3791
3792 // We also need to clear here the "you have new message" notification for the own
3793 // user_talk page; it's cleared one page view later in WikiPage::doViewUpdates().
3794 }
3795
3796 /**
3797 * Compute experienced level based on edit count and registration date.
3798 *
3799 * @return string 'newcomer', 'learner', or 'experienced'
3800 */
3801 public function getExperienceLevel() {
3802 global $wgLearnerEdits,
3803 $wgExperiencedUserEdits,
3804 $wgLearnerMemberSince,
3805 $wgExperiencedUserMemberSince;
3806
3807 if ( $this->isAnon() ) {
3808 return false;
3809 }
3810
3811 $editCount = $this->getEditCount();
3812 $registration = $this->getRegistration();
3813 $now = time();
3814 $learnerRegistration = wfTimestamp( TS_MW, $now - $wgLearnerMemberSince * 86400 );
3815 $experiencedRegistration = wfTimestamp( TS_MW, $now - $wgExperiencedUserMemberSince * 86400 );
3816
3817 if ( $editCount < $wgLearnerEdits ||
3818 $registration > $learnerRegistration ) {
3819 return 'newcomer';
3820 }
3821
3822 if ( $editCount > $wgExperiencedUserEdits &&
3823 $registration <= $experiencedRegistration
3824 ) {
3825 return 'experienced';
3826 }
3827
3828 return 'learner';
3829 }
3830
3831 /**
3832 * Persist this user's session (e.g. set cookies)
3833 *
3834 * @param WebRequest|null $request WebRequest object to use; $wgRequest will be used if null
3835 * is passed.
3836 * @param bool|null $secure Whether to force secure/insecure cookies or use default
3837 * @param bool $rememberMe Whether to add a Token cookie for elongated sessions
3838 */
3839 public function setCookies( $request = null, $secure = null, $rememberMe = false ) {
3840 $this->load();
3841 if ( $this->mId == 0 ) {
3842 return;
3843 }
3844
3845 $session = $this->getRequest()->getSession();
3846 if ( $request && $session->getRequest() !== $request ) {
3847 $session = $session->sessionWithRequest( $request );
3848 }
3849 $delay = $session->delaySave();
3850
3851 if ( !$session->getUser()->equals( $this ) ) {
3852 if ( !$session->canSetUser() ) {
3853 \MediaWiki\Logger\LoggerFactory::getInstance( 'session' )
3854 ->warning( __METHOD__ .
3855 ": Cannot save user \"$this\" to a user \"{$session->getUser()}\"'s immutable session"
3856 );
3857 return;
3858 }
3859 $session->setUser( $this );
3860 }
3861
3862 $session->setRememberUser( $rememberMe );
3863 if ( $secure !== null ) {
3864 $session->setForceHTTPS( $secure );
3865 }
3866
3867 $session->persist();
3868
3869 ScopedCallback::consume( $delay );
3870 }
3871
3872 /**
3873 * Log this user out.
3874 */
3875 public function logout() {
3876 // Avoid PHP 7.1 warning of passing $this by reference
3877 $user = $this;
3878 if ( Hooks::run( 'UserLogout', [ &$user ] ) ) {
3879 $this->doLogout();
3880 }
3881 }
3882
3883 /**
3884 * Clear the user's session, and reset the instance cache.
3885 * @see logout()
3886 */
3887 public function doLogout() {
3888 $session = $this->getRequest()->getSession();
3889 if ( !$session->canSetUser() ) {
3890 \MediaWiki\Logger\LoggerFactory::getInstance( 'session' )
3891 ->warning( __METHOD__ . ": Cannot log out of an immutable session" );
3892 $error = 'immutable';
3893 } elseif ( !$session->getUser()->equals( $this ) ) {
3894 \MediaWiki\Logger\LoggerFactory::getInstance( 'session' )
3895 ->warning( __METHOD__ .
3896 ": Cannot log user \"$this\" out of a user \"{$session->getUser()}\"'s session"
3897 );
3898 // But we still may as well make this user object anon
3899 $this->clearInstanceCache( 'defaults' );
3900 $error = 'wronguser';
3901 } else {
3902 $this->clearInstanceCache( 'defaults' );
3903 $delay = $session->delaySave();
3904 $session->unpersist(); // Clear cookies (T127436)
3905 $session->setLoggedOutTimestamp( time() );
3906 $session->setUser( new User );
3907 $session->set( 'wsUserID', 0 ); // Other code expects this
3908 $session->resetAllTokens();
3909 ScopedCallback::consume( $delay );
3910 $error = false;
3911 }
3912 \MediaWiki\Logger\LoggerFactory::getInstance( 'authevents' )->info( 'Logout', [
3913 'event' => 'logout',
3914 'successful' => $error === false,
3915 'status' => $error ?: 'success',
3916 ] );
3917 }
3918
3919 /**
3920 * Save this user's settings into the database.
3921 * @todo Only rarely do all these fields need to be set!
3922 */
3923 public function saveSettings() {
3924 if ( wfReadOnly() ) {
3925 // @TODO: caller should deal with this instead!
3926 // This should really just be an exception.
3927 MWExceptionHandler::logException( new DBExpectedError(
3928 null,
3929 "Could not update user with ID '{$this->mId}'; DB is read-only."
3930 ) );
3931 return;
3932 }
3933
3934 $this->load();
3935 if ( $this->mId == 0 ) {
3936 return; // anon
3937 }
3938
3939 // Get a new user_touched that is higher than the old one.
3940 // This will be used for a CAS check as a last-resort safety
3941 // check against race conditions and replica DB lag.
3942 $newTouched = $this->newTouchedTimestamp();
3943
3944 $dbw = wfGetDB( DB_MASTER );
3945 $dbw->doAtomicSection( __METHOD__, function ( IDatabase $dbw, $fname ) use ( $newTouched ) {
3946 $dbw->update( 'user',
3947 [ /* SET */
3948 'user_name' => $this->mName,
3949 'user_real_name' => $this->mRealName,
3950 'user_email' => $this->mEmail,
3951 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
3952 'user_touched' => $dbw->timestamp( $newTouched ),
3953 'user_token' => strval( $this->mToken ),
3954 'user_email_token' => $this->mEmailToken,
3955 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires ),
3956 ], $this->makeUpdateConditions( $dbw, [ /* WHERE */
3957 'user_id' => $this->mId,
3958 ] ), $fname
3959 );
3960
3961 if ( !$dbw->affectedRows() ) {
3962 // Maybe the problem was a missed cache update; clear it to be safe
3963 $this->clearSharedCache( 'refresh' );
3964 // User was changed in the meantime or loaded with stale data
3965 $from = ( $this->queryFlagsUsed & self::READ_LATEST ) ? 'master' : 'replica';
3966 LoggerFactory::getInstance( 'preferences' )->warning(
3967 "CAS update failed on user_touched for user ID '{user_id}' ({db_flag} read)",
3968 [ 'user_id' => $this->mId, 'db_flag' => $from ]
3969 );
3970 throw new MWException( "CAS update failed on user_touched. " .
3971 "The version of the user to be saved is older than the current version."
3972 );
3973 }
3974
3975 $dbw->update(
3976 'actor',
3977 [ 'actor_name' => $this->mName ],
3978 [ 'actor_user' => $this->mId ],
3979 $fname
3980 );
3981 } );
3982
3983 $this->mTouched = $newTouched;
3984 $this->saveOptions();
3985
3986 Hooks::run( 'UserSaveSettings', [ $this ] );
3987 $this->clearSharedCache( 'changed' );
3988 $this->getUserPage()->purgeSquid();
3989 }
3990
3991 /**
3992 * If only this user's username is known, and it exists, return the user ID.
3993 *
3994 * @param int $flags Bitfield of User:READ_* constants; useful for existence checks
3995 * @return int
3996 */
3997 public function idForName( $flags = 0 ) {
3998 $s = trim( $this->getName() );
3999 if ( $s === '' ) {
4000 return 0;
4001 }
4002
4003 $db = ( ( $flags & self::READ_LATEST ) == self::READ_LATEST )
4004 ? wfGetDB( DB_MASTER )
4005 : wfGetDB( DB_REPLICA );
4006
4007 $options = ( ( $flags & self::READ_LOCKING ) == self::READ_LOCKING )
4008 ? [ 'LOCK IN SHARE MODE' ]
4009 : [];
4010
4011 $id = $db->selectField( 'user',
4012 'user_id', [ 'user_name' => $s ], __METHOD__, $options );
4013
4014 return (int)$id;
4015 }
4016
4017 /**
4018 * Add a user to the database, return the user object
4019 *
4020 * @param string $name Username to add
4021 * @param array $params Array of Strings Non-default parameters to save to
4022 * the database as user_* fields:
4023 * - email: The user's email address.
4024 * - email_authenticated: The email authentication timestamp.
4025 * - real_name: The user's real name.
4026 * - options: An associative array of non-default options.
4027 * - token: Random authentication token. Do not set.
4028 * - registration: Registration timestamp. Do not set.
4029 *
4030 * @return User|null User object, or null if the username already exists.
4031 */
4032 public static function createNew( $name, $params = [] ) {
4033 foreach ( [ 'password', 'newpassword', 'newpass_time', 'password_expires' ] as $field ) {
4034 if ( isset( $params[$field] ) ) {
4035 wfDeprecated( __METHOD__ . " with param '$field'", '1.27' );
4036 unset( $params[$field] );
4037 }
4038 }
4039
4040 $user = new User;
4041 $user->load();
4042 $user->setToken(); // init token
4043 if ( isset( $params['options'] ) ) {
4044 $user->mOptions = $params['options'] + (array)$user->mOptions;
4045 unset( $params['options'] );
4046 }
4047 $dbw = wfGetDB( DB_MASTER );
4048
4049 $noPass = PasswordFactory::newInvalidPassword()->toString();
4050
4051 $fields = [
4052 'user_name' => $name,
4053 'user_password' => $noPass,
4054 'user_newpassword' => $noPass,
4055 'user_email' => $user->mEmail,
4056 'user_email_authenticated' => $dbw->timestampOrNull( $user->mEmailAuthenticated ),
4057 'user_real_name' => $user->mRealName,
4058 'user_token' => strval( $user->mToken ),
4059 'user_registration' => $dbw->timestamp( $user->mRegistration ),
4060 'user_editcount' => 0,
4061 'user_touched' => $dbw->timestamp( $user->newTouchedTimestamp() ),
4062 ];
4063 foreach ( $params as $name => $value ) {
4064 $fields["user_$name"] = $value;
4065 }
4066
4067 return $dbw->doAtomicSection( __METHOD__, function ( IDatabase $dbw, $fname ) use ( $fields ) {
4068 $dbw->insert( 'user', $fields, $fname, [ 'IGNORE' ] );
4069 if ( $dbw->affectedRows() ) {
4070 $newUser = self::newFromId( $dbw->insertId() );
4071 $newUser->mName = $fields['user_name'];
4072 $newUser->updateActorId( $dbw );
4073 // Load the user from master to avoid replica lag
4074 $newUser->load( self::READ_LATEST );
4075 } else {
4076 $newUser = null;
4077 }
4078 return $newUser;
4079 } );
4080 }
4081
4082 /**
4083 * Add this existing user object to the database. If the user already
4084 * exists, a fatal status object is returned, and the user object is
4085 * initialised with the data from the database.
4086 *
4087 * Previously, this function generated a DB error due to a key conflict
4088 * if the user already existed. Many extension callers use this function
4089 * in code along the lines of:
4090 *
4091 * $user = User::newFromName( $name );
4092 * if ( !$user->isLoggedIn() ) {
4093 * $user->addToDatabase();
4094 * }
4095 * // do something with $user...
4096 *
4097 * However, this was vulnerable to a race condition (T18020). By
4098 * initialising the user object if the user exists, we aim to support this
4099 * calling sequence as far as possible.
4100 *
4101 * Note that if the user exists, this function will acquire a write lock,
4102 * so it is still advisable to make the call conditional on isLoggedIn(),
4103 * and to commit the transaction after calling.
4104 *
4105 * @throws MWException
4106 * @return Status
4107 */
4108 public function addToDatabase() {
4109 $this->load();
4110 if ( !$this->mToken ) {
4111 $this->setToken(); // init token
4112 }
4113
4114 if ( !is_string( $this->mName ) ) {
4115 throw new RuntimeException( "User name field is not set." );
4116 }
4117
4118 $this->mTouched = $this->newTouchedTimestamp();
4119
4120 $dbw = wfGetDB( DB_MASTER );
4121 $status = $dbw->doAtomicSection( __METHOD__, function ( IDatabase $dbw, $fname ) {
4122 $noPass = PasswordFactory::newInvalidPassword()->toString();
4123 $dbw->insert( 'user',
4124 [
4125 'user_name' => $this->mName,
4126 'user_password' => $noPass,
4127 'user_newpassword' => $noPass,
4128 'user_email' => $this->mEmail,
4129 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
4130 'user_real_name' => $this->mRealName,
4131 'user_token' => strval( $this->mToken ),
4132 'user_registration' => $dbw->timestamp( $this->mRegistration ),
4133 'user_editcount' => 0,
4134 'user_touched' => $dbw->timestamp( $this->mTouched ),
4135 ], $fname,
4136 [ 'IGNORE' ]
4137 );
4138 if ( !$dbw->affectedRows() ) {
4139 // Use locking reads to bypass any REPEATABLE-READ snapshot.
4140 $this->mId = $dbw->selectField(
4141 'user',
4142 'user_id',
4143 [ 'user_name' => $this->mName ],
4144 $fname,
4145 [ 'LOCK IN SHARE MODE' ]
4146 );
4147 $loaded = false;
4148 if ( $this->mId && $this->loadFromDatabase( self::READ_LOCKING ) ) {
4149 $loaded = true;
4150 }
4151 if ( !$loaded ) {
4152 throw new MWException( $fname . ": hit a key conflict attempting " .
4153 "to insert user '{$this->mName}' row, but it was not present in select!" );
4154 }
4155 return Status::newFatal( 'userexists' );
4156 }
4157 $this->mId = $dbw->insertId();
4158 self::$idCacheByName[$this->mName] = $this->mId;
4159 $this->updateActorId( $dbw );
4160
4161 return Status::newGood();
4162 } );
4163 if ( !$status->isGood() ) {
4164 return $status;
4165 }
4166
4167 // Clear instance cache other than user table data and actor, which is already accurate
4168 $this->clearInstanceCache();
4169
4170 $this->saveOptions();
4171 return Status::newGood();
4172 }
4173
4174 /**
4175 * Update the actor ID after an insert
4176 * @param IDatabase $dbw Writable database handle
4177 */
4178 private function updateActorId( IDatabase $dbw ) {
4179 $dbw->insert(
4180 'actor',
4181 [ 'actor_user' => $this->mId, 'actor_name' => $this->mName ],
4182 __METHOD__
4183 );
4184 $this->mActorId = (int)$dbw->insertId();
4185 }
4186
4187 /**
4188 * If this user is logged-in and blocked,
4189 * block any IP address they've successfully logged in from.
4190 * @return bool A block was spread
4191 */
4192 public function spreadAnyEditBlock() {
4193 if ( $this->isLoggedIn() && $this->getBlock() ) {
4194 return $this->spreadBlock();
4195 }
4196
4197 return false;
4198 }
4199
4200 /**
4201 * If this (non-anonymous) user is blocked,
4202 * block the IP address they've successfully logged in from.
4203 * @return bool A block was spread
4204 */
4205 protected function spreadBlock() {
4206 wfDebug( __METHOD__ . "()\n" );
4207 $this->load();
4208 if ( $this->mId == 0 ) {
4209 return false;
4210 }
4211
4212 $userblock = DatabaseBlock::newFromTarget( $this->getName() );
4213 if ( !$userblock ) {
4214 return false;
4215 }
4216
4217 return (bool)$userblock->doAutoblock( $this->getRequest()->getIP() );
4218 }
4219
4220 /**
4221 * Get whether the user is explicitly blocked from account creation.
4222 * @return bool|AbstractBlock
4223 */
4224 public function isBlockedFromCreateAccount() {
4225 $this->getBlockedStatus();
4226 if ( $this->mBlock && $this->mBlock->appliesToRight( 'createaccount' ) ) {
4227 return $this->mBlock;
4228 }
4229
4230 # T15611: if the IP address the user is trying to create an account from is
4231 # blocked with createaccount disabled, prevent new account creation there even
4232 # when the user is logged in
4233 if ( $this->mBlockedFromCreateAccount === false && !$this->isAllowed( 'ipblock-exempt' ) ) {
4234 $this->mBlockedFromCreateAccount = DatabaseBlock::newFromTarget(
4235 null, $this->getRequest()->getIP()
4236 );
4237 }
4238 return $this->mBlockedFromCreateAccount instanceof AbstractBlock
4239 && $this->mBlockedFromCreateAccount->appliesToRight( 'createaccount' )
4240 ? $this->mBlockedFromCreateAccount
4241 : false;
4242 }
4243
4244 /**
4245 * Get whether the user is blocked from using Special:Emailuser.
4246 * @return bool
4247 */
4248 public function isBlockedFromEmailuser() {
4249 $this->getBlockedStatus();
4250 return $this->mBlock && $this->mBlock->appliesToRight( 'sendemail' );
4251 }
4252
4253 /**
4254 * Get whether the user is blocked from using Special:Upload
4255 *
4256 * @since 1.33
4257 * @return bool
4258 */
4259 public function isBlockedFromUpload() {
4260 $this->getBlockedStatus();
4261 return $this->mBlock && $this->mBlock->appliesToRight( 'upload' );
4262 }
4263
4264 /**
4265 * Get whether the user is allowed to create an account.
4266 * @return bool
4267 */
4268 public function isAllowedToCreateAccount() {
4269 return $this->isAllowed( 'createaccount' ) && !$this->isBlockedFromCreateAccount();
4270 }
4271
4272 /**
4273 * Get this user's personal page title.
4274 *
4275 * @return Title User's personal page title
4276 */
4277 public function getUserPage() {
4278 return Title::makeTitle( NS_USER, $this->getName() );
4279 }
4280
4281 /**
4282 * Get this user's talk page title.
4283 *
4284 * @return Title User's talk page title
4285 */
4286 public function getTalkPage() {
4287 $title = $this->getUserPage();
4288 return $title->getTalkPage();
4289 }
4290
4291 /**
4292 * Determine whether the user is a newbie. Newbies are either
4293 * anonymous IPs, or the most recently created accounts.
4294 * @return bool
4295 */
4296 public function isNewbie() {
4297 return !$this->isAllowed( 'autoconfirmed' );
4298 }
4299
4300 /**
4301 * Check to see if the given clear-text password is one of the accepted passwords
4302 * @deprecated since 1.27, use AuthManager instead
4303 * @param string $password User password
4304 * @return bool True if the given password is correct, otherwise False
4305 */
4306 public function checkPassword( $password ) {
4307 wfDeprecated( __METHOD__, '1.27' );
4308
4309 $manager = AuthManager::singleton();
4310 $reqs = AuthenticationRequest::loadRequestsFromSubmission(
4311 $manager->getAuthenticationRequests( AuthManager::ACTION_LOGIN ),
4312 [
4313 'username' => $this->getName(),
4314 'password' => $password,
4315 ]
4316 );
4317 $res = $manager->beginAuthentication( $reqs, 'null:' );
4318 switch ( $res->status ) {
4319 case AuthenticationResponse::PASS:
4320 return true;
4321 case AuthenticationResponse::FAIL:
4322 // Hope it's not a PreAuthenticationProvider that failed...
4323 LoggerFactory::getInstance( 'authentication' )
4324 ->info( __METHOD__ . ': Authentication failed: ' . $res->message->plain() );
4325 return false;
4326 default:
4327 throw new BadMethodCallException(
4328 'AuthManager returned a response unsupported by ' . __METHOD__
4329 );
4330 }
4331 }
4332
4333 /**
4334 * Check if the given clear-text password matches the temporary password
4335 * sent by e-mail for password reset operations.
4336 *
4337 * @deprecated since 1.27, use AuthManager instead
4338 * @param string $plaintext
4339 * @return bool True if matches, false otherwise
4340 */
4341 public function checkTemporaryPassword( $plaintext ) {
4342 wfDeprecated( __METHOD__, '1.27' );
4343 // Can't check the temporary password individually.
4344 return $this->checkPassword( $plaintext );
4345 }
4346
4347 /**
4348 * Initialize (if necessary) and return a session token value
4349 * which can be used in edit forms to show that the user's
4350 * login credentials aren't being hijacked with a foreign form
4351 * submission.
4352 *
4353 * @since 1.27
4354 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4355 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4356 * @return MediaWiki\Session\Token The new edit token
4357 */
4358 public function getEditTokenObject( $salt = '', $request = null ) {
4359 if ( $this->isAnon() ) {
4360 return new LoggedOutEditToken();
4361 }
4362
4363 if ( !$request ) {
4364 $request = $this->getRequest();
4365 }
4366 return $request->getSession()->getToken( $salt );
4367 }
4368
4369 /**
4370 * Initialize (if necessary) and return a session token value
4371 * which can be used in edit forms to show that the user's
4372 * login credentials aren't being hijacked with a foreign form
4373 * submission.
4374 *
4375 * The $salt for 'edit' and 'csrf' tokens is the default (empty string).
4376 *
4377 * @since 1.19
4378 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4379 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4380 * @return string The new edit token
4381 */
4382 public function getEditToken( $salt = '', $request = null ) {
4383 return $this->getEditTokenObject( $salt, $request )->toString();
4384 }
4385
4386 /**
4387 * Check given value against the token value stored in the session.
4388 * A match should confirm that the form was submitted from the
4389 * user's own login session, not a form submission from a third-party
4390 * site.
4391 *
4392 * @param string $val Input value to compare
4393 * @param string|array $salt Optional function-specific data for hashing
4394 * @param WebRequest|null $request Object to use or null to use $wgRequest
4395 * @param int|null $maxage Fail tokens older than this, in seconds
4396 * @return bool Whether the token matches
4397 */
4398 public function matchEditToken( $val, $salt = '', $request = null, $maxage = null ) {
4399 return $this->getEditTokenObject( $salt, $request )->match( $val, $maxage );
4400 }
4401
4402 /**
4403 * Check given value against the token value stored in the session,
4404 * ignoring the suffix.
4405 *
4406 * @param string $val Input value to compare
4407 * @param string|array $salt Optional function-specific data for hashing
4408 * @param WebRequest|null $request Object to use or null to use $wgRequest
4409 * @param int|null $maxage Fail tokens older than this, in seconds
4410 * @return bool Whether the token matches
4411 */
4412 public function matchEditTokenNoSuffix( $val, $salt = '', $request = null, $maxage = null ) {
4413 $val = substr( $val, 0, strspn( $val, '0123456789abcdef' ) ) . Token::SUFFIX;
4414 return $this->matchEditToken( $val, $salt, $request, $maxage );
4415 }
4416
4417 /**
4418 * Generate a new e-mail confirmation token and send a confirmation/invalidation
4419 * mail to the user's given address.
4420 *
4421 * @param string $type Message to send, either "created", "changed" or "set"
4422 * @return Status
4423 */
4424 public function sendConfirmationMail( $type = 'created' ) {
4425 global $wgLang;
4426 $expiration = null; // gets passed-by-ref and defined in next line.
4427 $token = $this->confirmationToken( $expiration );
4428 $url = $this->confirmationTokenUrl( $token );
4429 $invalidateURL = $this->invalidationTokenUrl( $token );
4430 $this->saveSettings();
4431
4432 if ( $type == 'created' || $type === false ) {
4433 $message = 'confirmemail_body';
4434 $type = 'created';
4435 } elseif ( $type === true ) {
4436 $message = 'confirmemail_body_changed';
4437 $type = 'changed';
4438 } else {
4439 // Messages: confirmemail_body_changed, confirmemail_body_set
4440 $message = 'confirmemail_body_' . $type;
4441 }
4442
4443 $mail = [
4444 'subject' => wfMessage( 'confirmemail_subject' )->text(),
4445 'body' => wfMessage( $message,
4446 $this->getRequest()->getIP(),
4447 $this->getName(),
4448 $url,
4449 $wgLang->userTimeAndDate( $expiration, $this ),
4450 $invalidateURL,
4451 $wgLang->userDate( $expiration, $this ),
4452 $wgLang->userTime( $expiration, $this ) )->text(),
4453 'from' => null,
4454 'replyTo' => null,
4455 ];
4456 $info = [
4457 'type' => $type,
4458 'ip' => $this->getRequest()->getIP(),
4459 'confirmURL' => $url,
4460 'invalidateURL' => $invalidateURL,
4461 'expiration' => $expiration
4462 ];
4463
4464 Hooks::run( 'UserSendConfirmationMail', [ $this, &$mail, $info ] );
4465 return $this->sendMail( $mail['subject'], $mail['body'], $mail['from'], $mail['replyTo'] );
4466 }
4467
4468 /**
4469 * Send an e-mail to this user's account. Does not check for
4470 * confirmed status or validity.
4471 *
4472 * @param string $subject Message subject
4473 * @param string $body Message body
4474 * @param User|null $from Optional sending user; if unspecified, default
4475 * $wgPasswordSender will be used.
4476 * @param MailAddress|null $replyto Reply-To address
4477 * @return Status
4478 */
4479 public function sendMail( $subject, $body, $from = null, $replyto = null ) {
4480 global $wgPasswordSender;
4481
4482 if ( $from instanceof User ) {
4483 $sender = MailAddress::newFromUser( $from );
4484 } else {
4485 $sender = new MailAddress( $wgPasswordSender,
4486 wfMessage( 'emailsender' )->inContentLanguage()->text() );
4487 }
4488 $to = MailAddress::newFromUser( $this );
4489
4490 return UserMailer::send( $to, $sender, $subject, $body, [
4491 'replyTo' => $replyto,
4492 ] );
4493 }
4494
4495 /**
4496 * Generate, store, and return a new e-mail confirmation code.
4497 * A hash (unsalted, since it's used as a key) is stored.
4498 *
4499 * @note Call saveSettings() after calling this function to commit
4500 * this change to the database.
4501 *
4502 * @param string &$expiration Accepts the expiration time
4503 * @return string New token
4504 */
4505 protected function confirmationToken( &$expiration ) {
4506 global $wgUserEmailConfirmationTokenExpiry;
4507 $now = time();
4508 $expires = $now + $wgUserEmailConfirmationTokenExpiry;
4509 $expiration = wfTimestamp( TS_MW, $expires );
4510 $this->load();
4511 $token = MWCryptRand::generateHex( 32 );
4512 $hash = md5( $token );
4513 $this->mEmailToken = $hash;
4514 $this->mEmailTokenExpires = $expiration;
4515 return $token;
4516 }
4517
4518 /**
4519 * Return a URL the user can use to confirm their email address.
4520 * @param string $token Accepts the email confirmation token
4521 * @return string New token URL
4522 */
4523 protected function confirmationTokenUrl( $token ) {
4524 return $this->getTokenUrl( 'ConfirmEmail', $token );
4525 }
4526
4527 /**
4528 * Return a URL the user can use to invalidate their email address.
4529 * @param string $token Accepts the email confirmation token
4530 * @return string New token URL
4531 */
4532 protected function invalidationTokenUrl( $token ) {
4533 return $this->getTokenUrl( 'InvalidateEmail', $token );
4534 }
4535
4536 /**
4537 * Internal function to format the e-mail validation/invalidation URLs.
4538 * This uses a quickie hack to use the
4539 * hardcoded English names of the Special: pages, for ASCII safety.
4540 *
4541 * @note Since these URLs get dropped directly into emails, using the
4542 * short English names avoids insanely long URL-encoded links, which
4543 * also sometimes can get corrupted in some browsers/mailers
4544 * (T8957 with Gmail and Internet Explorer).
4545 *
4546 * @param string $page Special page
4547 * @param string $token
4548 * @return string Formatted URL
4549 */
4550 protected function getTokenUrl( $page, $token ) {
4551 // Hack to bypass localization of 'Special:'
4552 $title = Title::makeTitle( NS_MAIN, "Special:$page/$token" );
4553 return $title->getCanonicalURL();
4554 }
4555
4556 /**
4557 * Mark the e-mail address confirmed.
4558 *
4559 * @note Call saveSettings() after calling this function to commit the change.
4560 *
4561 * @return bool
4562 */
4563 public function confirmEmail() {
4564 // Check if it's already confirmed, so we don't touch the database
4565 // and fire the ConfirmEmailComplete hook on redundant confirmations.
4566 if ( !$this->isEmailConfirmed() ) {
4567 $this->setEmailAuthenticationTimestamp( wfTimestampNow() );
4568 Hooks::run( 'ConfirmEmailComplete', [ $this ] );
4569 }
4570 return true;
4571 }
4572
4573 /**
4574 * Invalidate the user's e-mail confirmation, and unauthenticate the e-mail
4575 * address if it was already confirmed.
4576 *
4577 * @note Call saveSettings() after calling this function to commit the change.
4578 * @return bool Returns true
4579 */
4580 public function invalidateEmail() {
4581 $this->load();
4582 $this->mEmailToken = null;
4583 $this->mEmailTokenExpires = null;
4584 $this->setEmailAuthenticationTimestamp( null );
4585 $this->mEmail = '';
4586 Hooks::run( 'InvalidateEmailComplete', [ $this ] );
4587 return true;
4588 }
4589
4590 /**
4591 * Set the e-mail authentication timestamp.
4592 * @param string $timestamp TS_MW timestamp
4593 */
4594 public function setEmailAuthenticationTimestamp( $timestamp ) {
4595 $this->load();
4596 $this->mEmailAuthenticated = $timestamp;
4597 Hooks::run( 'UserSetEmailAuthenticationTimestamp', [ $this, &$this->mEmailAuthenticated ] );
4598 }
4599
4600 /**
4601 * Is this user allowed to send e-mails within limits of current
4602 * site configuration?
4603 * @return bool
4604 */
4605 public function canSendEmail() {
4606 global $wgEnableEmail, $wgEnableUserEmail;
4607 if ( !$wgEnableEmail || !$wgEnableUserEmail || !$this->isAllowed( 'sendemail' ) ) {
4608 return false;
4609 }
4610 $canSend = $this->isEmailConfirmed();
4611 // Avoid PHP 7.1 warning of passing $this by reference
4612 $user = $this;
4613 Hooks::run( 'UserCanSendEmail', [ &$user, &$canSend ] );
4614 return $canSend;
4615 }
4616
4617 /**
4618 * Is this user allowed to receive e-mails within limits of current
4619 * site configuration?
4620 * @return bool
4621 */
4622 public function canReceiveEmail() {
4623 return $this->isEmailConfirmed() && !$this->getOption( 'disablemail' );
4624 }
4625
4626 /**
4627 * Is this user's e-mail address valid-looking and confirmed within
4628 * limits of the current site configuration?
4629 *
4630 * @note If $wgEmailAuthentication is on, this may require the user to have
4631 * confirmed their address by returning a code or using a password
4632 * sent to the address from the wiki.
4633 *
4634 * @return bool
4635 */
4636 public function isEmailConfirmed() {
4637 global $wgEmailAuthentication;
4638 $this->load();
4639 // Avoid PHP 7.1 warning of passing $this by reference
4640 $user = $this;
4641 $confirmed = true;
4642 if ( Hooks::run( 'EmailConfirmed', [ &$user, &$confirmed ] ) ) {
4643 if ( $this->isAnon() ) {
4644 return false;
4645 }
4646 if ( !Sanitizer::validateEmail( $this->mEmail ) ) {
4647 return false;
4648 }
4649 if ( $wgEmailAuthentication && !$this->getEmailAuthenticationTimestamp() ) {
4650 return false;
4651 }
4652 return true;
4653 }
4654
4655 return $confirmed;
4656 }
4657
4658 /**
4659 * Check whether there is an outstanding request for e-mail confirmation.
4660 * @return bool
4661 */
4662 public function isEmailConfirmationPending() {
4663 global $wgEmailAuthentication;
4664 return $wgEmailAuthentication &&
4665 !$this->isEmailConfirmed() &&
4666 $this->mEmailToken &&
4667 $this->mEmailTokenExpires > wfTimestamp();
4668 }
4669
4670 /**
4671 * Get the timestamp of account creation.
4672 *
4673 * @return string|bool|null Timestamp of account creation, false for
4674 * non-existent/anonymous user accounts, or null if existing account
4675 * but information is not in database.
4676 */
4677 public function getRegistration() {
4678 if ( $this->isAnon() ) {
4679 return false;
4680 }
4681 $this->load();
4682 return $this->mRegistration;
4683 }
4684
4685 /**
4686 * Get the timestamp of the first edit
4687 *
4688 * @return string|bool Timestamp of first edit, or false for
4689 * non-existent/anonymous user accounts.
4690 */
4691 public function getFirstEditTimestamp() {
4692 return $this->getEditTimestamp( true );
4693 }
4694
4695 /**
4696 * Get the timestamp of the latest edit
4697 *
4698 * @since 1.33
4699 * @return string|bool Timestamp of first edit, or false for
4700 * non-existent/anonymous user accounts.
4701 */
4702 public function getLatestEditTimestamp() {
4703 return $this->getEditTimestamp( false );
4704 }
4705
4706 /**
4707 * Get the timestamp of the first or latest edit
4708 *
4709 * @param bool $first True for the first edit, false for the latest one
4710 * @return string|bool Timestamp of first or latest edit, or false for
4711 * non-existent/anonymous user accounts.
4712 */
4713 private function getEditTimestamp( $first ) {
4714 if ( $this->getId() == 0 ) {
4715 return false; // anons
4716 }
4717 $dbr = wfGetDB( DB_REPLICA );
4718 $actorWhere = ActorMigration::newMigration()->getWhere( $dbr, 'rev_user', $this );
4719 $tsField = isset( $actorWhere['tables']['temp_rev_user'] )
4720 ? 'revactor_timestamp' : 'rev_timestamp';
4721 $sortOrder = $first ? 'ASC' : 'DESC';
4722 $time = $dbr->selectField(
4723 [ 'revision' ] + $actorWhere['tables'],
4724 $tsField,
4725 [ $actorWhere['conds'] ],
4726 __METHOD__,
4727 [ 'ORDER BY' => "$tsField $sortOrder" ],
4728 $actorWhere['joins']
4729 );
4730 if ( !$time ) {
4731 return false; // no edits
4732 }
4733 return wfTimestamp( TS_MW, $time );
4734 }
4735
4736 /**
4737 * Get the permissions associated with a given list of groups
4738 *
4739 * @deprecated since 1.34, use MediaWikiServices::getInstance()->getPermissionManager()
4740 * ->getGroupPermissions() instead
4741 *
4742 * @param array $groups Array of Strings List of internal group names
4743 * @return array Array of Strings List of permission key names for given groups combined
4744 */
4745 public static function getGroupPermissions( $groups ) {
4746 return MediaWikiServices::getInstance()->getPermissionManager()->getGroupPermissions( $groups );
4747 }
4748
4749 /**
4750 * Get all the groups who have a given permission
4751 *
4752 * @deprecated since 1.34, use MediaWikiServices::getInstance()->getPermissionManager()
4753 * ->getGroupsWithPermission() instead
4754 *
4755 * @param string $role Role to check
4756 * @return array Array of Strings List of internal group names with the given permission
4757 */
4758 public static function getGroupsWithPermission( $role ) {
4759 return MediaWikiServices::getInstance()->getPermissionManager()->getGroupsWithPermission( $role );
4760 }
4761
4762 /**
4763 * Check, if the given group has the given permission
4764 *
4765 * If you're wanting to check whether all users have a permission, use
4766 * User::isEveryoneAllowed() instead. That properly checks if it's revoked
4767 * from anyone.
4768 *
4769 * @deprecated since 1.34, use MediaWikiServices::getInstance()->getPermissionManager()
4770 * ->groupHasPermission(..) instead
4771 *
4772 * @since 1.21
4773 * @param string $group Group to check
4774 * @param string $role Role to check
4775 * @return bool
4776 */
4777 public static function groupHasPermission( $group, $role ) {
4778 return MediaWikiServices::getInstance()->getPermissionManager()
4779 ->groupHasPermission( $group, $role );
4780 }
4781
4782 /**
4783 * Check if all users may be assumed to have the given permission
4784 *
4785 * We generally assume so if the right is granted to '*' and isn't revoked
4786 * on any group. It doesn't attempt to take grants or other extension
4787 * limitations on rights into account in the general case, though, as that
4788 * would require it to always return false and defeat the purpose.
4789 * Specifically, session-based rights restrictions (such as OAuth or bot
4790 * passwords) are applied based on the current session.
4791 *
4792 * @deprecated since 1.34, use MediaWikiServices::getInstance()->getPermissionManager()
4793 * ->isEveryoneAllowed() instead
4794 *
4795 * @param string $right Right to check
4796 *
4797 * @return bool
4798 * @since 1.22
4799 */
4800 public static function isEveryoneAllowed( $right ) {
4801 return MediaWikiServices::getInstance()->getPermissionManager()->isEveryoneAllowed( $right );
4802 }
4803
4804 /**
4805 * Return the set of defined explicit groups.
4806 * The implicit groups (by default *, 'user' and 'autoconfirmed')
4807 * are not included, as they are defined automatically, not in the database.
4808 * @return array Array of internal group names
4809 */
4810 public static function getAllGroups() {
4811 global $wgGroupPermissions, $wgRevokePermissions;
4812 return array_values( array_diff(
4813 array_merge( array_keys( $wgGroupPermissions ), array_keys( $wgRevokePermissions ) ),
4814 self::getImplicitGroups()
4815 ) );
4816 }
4817
4818 /**
4819 * Get a list of all available permissions.
4820 *
4821 * @deprecated since 1.34, use PermissionManager::getAllPermissions() instead
4822 *
4823 * @return string[] Array of permission names
4824 */
4825 public static function getAllRights() {
4826 return MediaWikiServices::getInstance()->getPermissionManager()->getAllPermissions();
4827 }
4828
4829 /**
4830 * Get a list of implicit groups
4831 * TODO: Should we deprecate this? It's trivial, but we don't want to encourage use of globals.
4832 *
4833 * @return array Array of Strings Array of internal group names
4834 */
4835 public static function getImplicitGroups() {
4836 global $wgImplicitGroups;
4837 return $wgImplicitGroups;
4838 }
4839
4840 /**
4841 * Returns an array of the groups that a particular group can add/remove.
4842 *
4843 * @param string $group The group to check for whether it can add/remove
4844 * @return array [ 'add' => [ addablegroups ],
4845 * 'remove' => [ removablegroups ],
4846 * 'add-self' => [ addablegroups to self ],
4847 * 'remove-self' => [ removable groups from self ] ]
4848 */
4849 public static function changeableByGroup( $group ) {
4850 global $wgAddGroups, $wgRemoveGroups, $wgGroupsAddToSelf, $wgGroupsRemoveFromSelf;
4851
4852 $groups = [
4853 'add' => [],
4854 'remove' => [],
4855 'add-self' => [],
4856 'remove-self' => []
4857 ];
4858
4859 if ( empty( $wgAddGroups[$group] ) ) {
4860 // Don't add anything to $groups
4861 } elseif ( $wgAddGroups[$group] === true ) {
4862 // You get everything
4863 $groups['add'] = self::getAllGroups();
4864 } elseif ( is_array( $wgAddGroups[$group] ) ) {
4865 $groups['add'] = $wgAddGroups[$group];
4866 }
4867
4868 // Same thing for remove
4869 if ( empty( $wgRemoveGroups[$group] ) ) {
4870 // Do nothing
4871 } elseif ( $wgRemoveGroups[$group] === true ) {
4872 $groups['remove'] = self::getAllGroups();
4873 } elseif ( is_array( $wgRemoveGroups[$group] ) ) {
4874 $groups['remove'] = $wgRemoveGroups[$group];
4875 }
4876
4877 // Re-map numeric keys of AddToSelf/RemoveFromSelf to the 'user' key for backwards compatibility
4878 if ( empty( $wgGroupsAddToSelf['user'] ) || $wgGroupsAddToSelf['user'] !== true ) {
4879 foreach ( $wgGroupsAddToSelf as $key => $value ) {
4880 if ( is_int( $key ) ) {
4881 $wgGroupsAddToSelf['user'][] = $value;
4882 }
4883 }
4884 }
4885
4886 if ( empty( $wgGroupsRemoveFromSelf['user'] ) || $wgGroupsRemoveFromSelf['user'] !== true ) {
4887 foreach ( $wgGroupsRemoveFromSelf as $key => $value ) {
4888 if ( is_int( $key ) ) {
4889 $wgGroupsRemoveFromSelf['user'][] = $value;
4890 }
4891 }
4892 }
4893
4894 // Now figure out what groups the user can add to him/herself
4895 if ( empty( $wgGroupsAddToSelf[$group] ) ) {
4896 // Do nothing
4897 } elseif ( $wgGroupsAddToSelf[$group] === true ) {
4898 // No idea WHY this would be used, but it's there
4899 $groups['add-self'] = self::getAllGroups();
4900 } elseif ( is_array( $wgGroupsAddToSelf[$group] ) ) {
4901 $groups['add-self'] = $wgGroupsAddToSelf[$group];
4902 }
4903
4904 if ( empty( $wgGroupsRemoveFromSelf[$group] ) ) {
4905 // Do nothing
4906 } elseif ( $wgGroupsRemoveFromSelf[$group] === true ) {
4907 $groups['remove-self'] = self::getAllGroups();
4908 } elseif ( is_array( $wgGroupsRemoveFromSelf[$group] ) ) {
4909 $groups['remove-self'] = $wgGroupsRemoveFromSelf[$group];
4910 }
4911
4912 return $groups;
4913 }
4914
4915 /**
4916 * Returns an array of groups that this user can add and remove
4917 * @return array [ 'add' => [ addablegroups ],
4918 * 'remove' => [ removablegroups ],
4919 * 'add-self' => [ addablegroups to self ],
4920 * 'remove-self' => [ removable groups from self ] ]
4921 */
4922 public function changeableGroups() {
4923 if ( $this->isAllowed( 'userrights' ) ) {
4924 // This group gives the right to modify everything (reverse-
4925 // compatibility with old "userrights lets you change
4926 // everything")
4927 // Using array_merge to make the groups reindexed
4928 $all = array_merge( self::getAllGroups() );
4929 return [
4930 'add' => $all,
4931 'remove' => $all,
4932 'add-self' => [],
4933 'remove-self' => []
4934 ];
4935 }
4936
4937 // Okay, it's not so simple, we will have to go through the arrays
4938 $groups = [
4939 'add' => [],
4940 'remove' => [],
4941 'add-self' => [],
4942 'remove-self' => []
4943 ];
4944 $addergroups = $this->getEffectiveGroups();
4945
4946 foreach ( $addergroups as $addergroup ) {
4947 $groups = array_merge_recursive(
4948 $groups, $this->changeableByGroup( $addergroup )
4949 );
4950 $groups['add'] = array_unique( $groups['add'] );
4951 $groups['remove'] = array_unique( $groups['remove'] );
4952 $groups['add-self'] = array_unique( $groups['add-self'] );
4953 $groups['remove-self'] = array_unique( $groups['remove-self'] );
4954 }
4955 return $groups;
4956 }
4957
4958 /**
4959 * Schedule a deferred update to update the user's edit count
4960 */
4961 public function incEditCount() {
4962 if ( $this->isAnon() ) {
4963 return; // sanity
4964 }
4965
4966 DeferredUpdates::addUpdate(
4967 new UserEditCountUpdate( $this, 1 ),
4968 DeferredUpdates::POSTSEND
4969 );
4970 }
4971
4972 /**
4973 * This method should not be called outside User/UserEditCountUpdate
4974 *
4975 * @param int $count
4976 */
4977 public function setEditCountInternal( $count ) {
4978 $this->mEditCount = $count;
4979 }
4980
4981 /**
4982 * Initialize user_editcount from data out of the revision table
4983 *
4984 * @internal This method should not be called outside User/UserEditCountUpdate
4985 * @param IDatabase $dbr Replica database
4986 * @return int Number of edits
4987 */
4988 public function initEditCountInternal( IDatabase $dbr ) {
4989 // Pull from a replica DB to be less cruel to servers
4990 // Accuracy isn't the point anyway here
4991 $actorWhere = ActorMigration::newMigration()->getWhere( $dbr, 'rev_user', $this );
4992 $count = (int)$dbr->selectField(
4993 [ 'revision' ] + $actorWhere['tables'],
4994 'COUNT(*)',
4995 [ $actorWhere['conds'] ],
4996 __METHOD__,
4997 [],
4998 $actorWhere['joins']
4999 );
5000
5001 $dbw = wfGetDB( DB_MASTER );
5002 $dbw->update(
5003 'user',
5004 [ 'user_editcount' => $count ],
5005 [
5006 'user_id' => $this->getId(),
5007 'user_editcount IS NULL OR user_editcount < ' . (int)$count
5008 ],
5009 __METHOD__
5010 );
5011
5012 return $count;
5013 }
5014
5015 /**
5016 * Get the description of a given right
5017 *
5018 * @since 1.29
5019 * @param string $right Right to query
5020 * @return string Localized description of the right
5021 */
5022 public static function getRightDescription( $right ) {
5023 $key = "right-$right";
5024 $msg = wfMessage( $key );
5025 return $msg->isDisabled() ? $right : $msg->text();
5026 }
5027
5028 /**
5029 * Get the name of a given grant
5030 *
5031 * @since 1.29
5032 * @param string $grant Grant to query
5033 * @return string Localized name of the grant
5034 */
5035 public static function getGrantName( $grant ) {
5036 $key = "grant-$grant";
5037 $msg = wfMessage( $key );
5038 return $msg->isDisabled() ? $grant : $msg->text();
5039 }
5040
5041 /**
5042 * Add a newuser log entry for this user.
5043 * Before 1.19 the return value was always true.
5044 *
5045 * @deprecated since 1.27, AuthManager handles logging
5046 * @param string|bool $action Account creation type.
5047 * - String, one of the following values:
5048 * - 'create' for an anonymous user creating an account for himself.
5049 * This will force the action's performer to be the created user itself,
5050 * no matter the value of $wgUser
5051 * - 'create2' for a logged in user creating an account for someone else
5052 * - 'byemail' when the created user will receive its password by e-mail
5053 * - 'autocreate' when the user is automatically created (such as by CentralAuth).
5054 * - Boolean means whether the account was created by e-mail (deprecated):
5055 * - true will be converted to 'byemail'
5056 * - false will be converted to 'create' if this object is the same as
5057 * $wgUser and to 'create2' otherwise
5058 * @param string $reason User supplied reason
5059 * @return bool true
5060 */
5061 public function addNewUserLogEntry( $action = false, $reason = '' ) {
5062 return true; // disabled
5063 }
5064
5065 /**
5066 * Add an autocreate newuser log entry for this user
5067 * Used by things like CentralAuth and perhaps other authplugins.
5068 * Consider calling addNewUserLogEntry() directly instead.
5069 *
5070 * @deprecated since 1.27, AuthManager handles logging
5071 * @return bool
5072 */
5073 public function addNewUserLogEntryAutoCreate() {
5074 wfDeprecated( __METHOD__, '1.27' );
5075 $this->addNewUserLogEntry( 'autocreate' );
5076
5077 return true;
5078 }
5079
5080 /**
5081 * Load the user options either from cache, the database or an array
5082 *
5083 * @param array|null $data Rows for the current user out of the user_properties table
5084 */
5085 protected function loadOptions( $data = null ) {
5086 $this->load();
5087
5088 if ( $this->mOptionsLoaded ) {
5089 return;
5090 }
5091
5092 $this->mOptions = self::getDefaultOptions();
5093
5094 if ( !$this->getId() ) {
5095 // For unlogged-in users, load language/variant options from request.
5096 // There's no need to do it for logged-in users: they can set preferences,
5097 // and handling of page content is done by $pageLang->getPreferredVariant() and such,
5098 // so don't override user's choice (especially when the user chooses site default).
5099 $variant = MediaWikiServices::getInstance()->getContentLanguage()->getDefaultVariant();
5100 $this->mOptions['variant'] = $variant;
5101 $this->mOptions['language'] = $variant;
5102 $this->mOptionsLoaded = true;
5103 return;
5104 }
5105
5106 // Maybe load from the object
5107 if ( !is_null( $this->mOptionOverrides ) ) {
5108 wfDebug( "User: loading options for user " . $this->getId() . " from override cache.\n" );
5109 foreach ( $this->mOptionOverrides as $key => $value ) {
5110 $this->mOptions[$key] = $value;
5111 }
5112 } else {
5113 if ( !is_array( $data ) ) {
5114 wfDebug( "User: loading options for user " . $this->getId() . " from database.\n" );
5115 // Load from database
5116 $dbr = ( $this->queryFlagsUsed & self::READ_LATEST )
5117 ? wfGetDB( DB_MASTER )
5118 : wfGetDB( DB_REPLICA );
5119
5120 $res = $dbr->select(
5121 'user_properties',
5122 [ 'up_property', 'up_value' ],
5123 [ 'up_user' => $this->getId() ],
5124 __METHOD__
5125 );
5126
5127 $this->mOptionOverrides = [];
5128 $data = [];
5129 foreach ( $res as $row ) {
5130 // Convert '0' to 0. PHP's boolean conversion considers them both
5131 // false, but e.g. JavaScript considers the former as true.
5132 // @todo: T54542 Somehow determine the desired type (string/int/bool)
5133 // and convert all values here.
5134 if ( $row->up_value === '0' ) {
5135 $row->up_value = 0;
5136 }
5137 $data[$row->up_property] = $row->up_value;
5138 }
5139 }
5140
5141 foreach ( $data as $property => $value ) {
5142 $this->mOptionOverrides[$property] = $value;
5143 $this->mOptions[$property] = $value;
5144 }
5145 }
5146
5147 // Replace deprecated language codes
5148 $this->mOptions['language'] = LanguageCode::replaceDeprecatedCodes(
5149 $this->mOptions['language']
5150 );
5151
5152 $this->mOptionsLoaded = true;
5153
5154 Hooks::run( 'UserLoadOptions', [ $this, &$this->mOptions ] );
5155 }
5156
5157 /**
5158 * Saves the non-default options for this user, as previously set e.g. via
5159 * setOption(), in the database's "user_properties" (preferences) table.
5160 * Usually used via saveSettings().
5161 */
5162 protected function saveOptions() {
5163 $this->loadOptions();
5164
5165 // Not using getOptions(), to keep hidden preferences in database
5166 $saveOptions = $this->mOptions;
5167
5168 // Allow hooks to abort, for instance to save to a global profile.
5169 // Reset options to default state before saving.
5170 if ( !Hooks::run( 'UserSaveOptions', [ $this, &$saveOptions ] ) ) {
5171 return;
5172 }
5173
5174 $userId = $this->getId();
5175
5176 $insert_rows = []; // all the new preference rows
5177 foreach ( $saveOptions as $key => $value ) {
5178 // Don't bother storing default values
5179 $defaultOption = self::getDefaultOption( $key );
5180 if ( ( $defaultOption === null && $value !== false && $value !== null )
5181 || $value != $defaultOption
5182 ) {
5183 $insert_rows[] = [
5184 'up_user' => $userId,
5185 'up_property' => $key,
5186 'up_value' => $value,
5187 ];
5188 }
5189 }
5190
5191 $dbw = wfGetDB( DB_MASTER );
5192
5193 $res = $dbw->select( 'user_properties',
5194 [ 'up_property', 'up_value' ], [ 'up_user' => $userId ], __METHOD__ );
5195
5196 // Find prior rows that need to be removed or updated. These rows will
5197 // all be deleted (the latter so that INSERT IGNORE applies the new values).
5198 $keysDelete = [];
5199 foreach ( $res as $row ) {
5200 if ( !isset( $saveOptions[$row->up_property] )
5201 || strcmp( $saveOptions[$row->up_property], $row->up_value ) != 0
5202 ) {
5203 $keysDelete[] = $row->up_property;
5204 }
5205 }
5206
5207 if ( count( $keysDelete ) ) {
5208 // Do the DELETE by PRIMARY KEY for prior rows.
5209 // In the past a very large portion of calls to this function are for setting
5210 // 'rememberpassword' for new accounts (a preference that has since been removed).
5211 // Doing a blanket per-user DELETE for new accounts with no rows in the table
5212 // caused gap locks on [max user ID,+infinity) which caused high contention since
5213 // updates would pile up on each other as they are for higher (newer) user IDs.
5214 // It might not be necessary these days, but it shouldn't hurt either.
5215 $dbw->delete( 'user_properties',
5216 [ 'up_user' => $userId, 'up_property' => $keysDelete ], __METHOD__ );
5217 }
5218 // Insert the new preference rows
5219 $dbw->insert( 'user_properties', $insert_rows, __METHOD__, [ 'IGNORE' ] );
5220 }
5221
5222 /**
5223 * Return the list of user fields that should be selected to create
5224 * a new user object.
5225 * @deprecated since 1.31, use self::getQueryInfo() instead.
5226 * @return array
5227 */
5228 public static function selectFields() {
5229 wfDeprecated( __METHOD__, '1.31' );
5230 return [
5231 'user_id',
5232 'user_name',
5233 'user_real_name',
5234 'user_email',
5235 'user_touched',
5236 'user_token',
5237 'user_email_authenticated',
5238 'user_email_token',
5239 'user_email_token_expires',
5240 'user_registration',
5241 'user_editcount',
5242 ];
5243 }
5244
5245 /**
5246 * Return the tables, fields, and join conditions to be selected to create
5247 * a new user object.
5248 * @since 1.31
5249 * @return array With three keys:
5250 * - tables: (string[]) to include in the `$table` to `IDatabase->select()`
5251 * - fields: (string[]) to include in the `$vars` to `IDatabase->select()`
5252 * - joins: (array) to include in the `$join_conds` to `IDatabase->select()`
5253 */
5254 public static function getQueryInfo() {
5255 $ret = [
5256 'tables' => [ 'user', 'user_actor' => 'actor' ],
5257 'fields' => [
5258 'user_id',
5259 'user_name',
5260 'user_real_name',
5261 'user_email',
5262 'user_touched',
5263 'user_token',
5264 'user_email_authenticated',
5265 'user_email_token',
5266 'user_email_token_expires',
5267 'user_registration',
5268 'user_editcount',
5269 'user_actor.actor_id',
5270 ],
5271 'joins' => [
5272 'user_actor' => [ 'JOIN', 'user_actor.actor_user = user_id' ],
5273 ],
5274 ];
5275
5276 return $ret;
5277 }
5278
5279 /**
5280 * Factory function for fatal permission-denied errors
5281 *
5282 * @since 1.22
5283 * @param string $permission User right required
5284 * @return Status
5285 */
5286 static function newFatalPermissionDeniedStatus( $permission ) {
5287 global $wgLang;
5288
5289 $groups = [];
5290 foreach ( MediaWikiServices::getInstance()
5291 ->getPermissionManager()
5292 ->getGroupsWithPermission( $permission ) as $group ) {
5293 $groups[] = UserGroupMembership::getLink( $group, RequestContext::getMain(), 'wiki' );
5294 }
5295
5296 if ( $groups ) {
5297 return Status::newFatal( 'badaccess-groups', $wgLang->commaList( $groups ), count( $groups ) );
5298 }
5299
5300 return Status::newFatal( 'badaccess-group0' );
5301 }
5302
5303 /**
5304 * Get a new instance of this user that was loaded from the master via a locking read
5305 *
5306 * Use this instead of the main context User when updating that user. This avoids races
5307 * where that user was loaded from a replica DB or even the master but without proper locks.
5308 *
5309 * @return User|null Returns null if the user was not found in the DB
5310 * @since 1.27
5311 */
5312 public function getInstanceForUpdate() {
5313 if ( !$this->getId() ) {
5314 return null; // anon
5315 }
5316
5317 $user = self::newFromId( $this->getId() );
5318 if ( !$user->loadFromId( self::READ_EXCLUSIVE ) ) {
5319 return null;
5320 }
5321
5322 return $user;
5323 }
5324
5325 /**
5326 * Checks if two user objects point to the same user.
5327 *
5328 * @since 1.25 ; takes a UserIdentity instead of a User since 1.32
5329 * @param UserIdentity $user
5330 * @return bool
5331 */
5332 public function equals( UserIdentity $user ) {
5333 // XXX it's not clear whether central ID providers are supposed to obey this
5334 return $this->getName() === $user->getName();
5335 }
5336
5337 /**
5338 * Checks if usertalk is allowed
5339 *
5340 * @return bool
5341 */
5342 public function isAllowUsertalk() {
5343 return $this->mAllowUsertalk;
5344 }
5345
5346 }