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