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