Merge "Move most User::clearAllNotifications() logic to WatchedItemStore"
[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 $watchedItemStore = MediaWikiServices::getInstance()->getWatchedItemStore();
3973 $watchedItemStore->resetAllNotificationTimestampsForUser( $this );
3974
3975 // We also need to clear here the "you have new message" notification for the own
3976 // user_talk page; it's cleared one page view later in WikiPage::doViewUpdates().
3977 }
3978
3979 /**
3980 * Compute experienced level based on edit count and registration date.
3981 *
3982 * @return string 'newcomer', 'learner', or 'experienced'
3983 */
3984 public function getExperienceLevel() {
3985 global $wgLearnerEdits,
3986 $wgExperiencedUserEdits,
3987 $wgLearnerMemberSince,
3988 $wgExperiencedUserMemberSince;
3989
3990 if ( $this->isAnon() ) {
3991 return false;
3992 }
3993
3994 $editCount = $this->getEditCount();
3995 $registration = $this->getRegistration();
3996 $now = time();
3997 $learnerRegistration = wfTimestamp( TS_MW, $now - $wgLearnerMemberSince * 86400 );
3998 $experiencedRegistration = wfTimestamp( TS_MW, $now - $wgExperiencedUserMemberSince * 86400 );
3999
4000 if (
4001 $editCount < $wgLearnerEdits ||
4002 $registration > $learnerRegistration
4003 ) {
4004 return 'newcomer';
4005 } elseif (
4006 $editCount > $wgExperiencedUserEdits &&
4007 $registration <= $experiencedRegistration
4008 ) {
4009 return 'experienced';
4010 } else {
4011 return 'learner';
4012 }
4013 }
4014
4015 /**
4016 * Persist this user's session (e.g. set cookies)
4017 *
4018 * @param WebRequest|null $request WebRequest object to use; $wgRequest will be used if null
4019 * is passed.
4020 * @param bool $secure Whether to force secure/insecure cookies or use default
4021 * @param bool $rememberMe Whether to add a Token cookie for elongated sessions
4022 */
4023 public function setCookies( $request = null, $secure = null, $rememberMe = false ) {
4024 $this->load();
4025 if ( 0 == $this->mId ) {
4026 return;
4027 }
4028
4029 $session = $this->getRequest()->getSession();
4030 if ( $request && $session->getRequest() !== $request ) {
4031 $session = $session->sessionWithRequest( $request );
4032 }
4033 $delay = $session->delaySave();
4034
4035 if ( !$session->getUser()->equals( $this ) ) {
4036 if ( !$session->canSetUser() ) {
4037 \MediaWiki\Logger\LoggerFactory::getInstance( 'session' )
4038 ->warning( __METHOD__ .
4039 ": Cannot save user \"$this\" to a user \"{$session->getUser()}\"'s immutable session"
4040 );
4041 return;
4042 }
4043 $session->setUser( $this );
4044 }
4045
4046 $session->setRememberUser( $rememberMe );
4047 if ( $secure !== null ) {
4048 $session->setForceHTTPS( $secure );
4049 }
4050
4051 $session->persist();
4052
4053 ScopedCallback::consume( $delay );
4054 }
4055
4056 /**
4057 * Log this user out.
4058 */
4059 public function logout() {
4060 // Avoid PHP 7.1 warning of passing $this by reference
4061 $user = $this;
4062 if ( Hooks::run( 'UserLogout', [ &$user ] ) ) {
4063 $this->doLogout();
4064 }
4065 }
4066
4067 /**
4068 * Clear the user's session, and reset the instance cache.
4069 * @see logout()
4070 */
4071 public function doLogout() {
4072 $session = $this->getRequest()->getSession();
4073 if ( !$session->canSetUser() ) {
4074 \MediaWiki\Logger\LoggerFactory::getInstance( 'session' )
4075 ->warning( __METHOD__ . ": Cannot log out of an immutable session" );
4076 $error = 'immutable';
4077 } elseif ( !$session->getUser()->equals( $this ) ) {
4078 \MediaWiki\Logger\LoggerFactory::getInstance( 'session' )
4079 ->warning( __METHOD__ .
4080 ": Cannot log user \"$this\" out of a user \"{$session->getUser()}\"'s session"
4081 );
4082 // But we still may as well make this user object anon
4083 $this->clearInstanceCache( 'defaults' );
4084 $error = 'wronguser';
4085 } else {
4086 $this->clearInstanceCache( 'defaults' );
4087 $delay = $session->delaySave();
4088 $session->unpersist(); // Clear cookies (T127436)
4089 $session->setLoggedOutTimestamp( time() );
4090 $session->setUser( new User );
4091 $session->set( 'wsUserID', 0 ); // Other code expects this
4092 $session->resetAllTokens();
4093 ScopedCallback::consume( $delay );
4094 $error = false;
4095 }
4096 \MediaWiki\Logger\LoggerFactory::getInstance( 'authevents' )->info( 'Logout', [
4097 'event' => 'logout',
4098 'successful' => $error === false,
4099 'status' => $error ?: 'success',
4100 ] );
4101 }
4102
4103 /**
4104 * Save this user's settings into the database.
4105 * @todo Only rarely do all these fields need to be set!
4106 */
4107 public function saveSettings() {
4108 if ( wfReadOnly() ) {
4109 // @TODO: caller should deal with this instead!
4110 // This should really just be an exception.
4111 MWExceptionHandler::logException( new DBExpectedError(
4112 null,
4113 "Could not update user with ID '{$this->mId}'; DB is read-only."
4114 ) );
4115 return;
4116 }
4117
4118 $this->load();
4119 if ( 0 == $this->mId ) {
4120 return; // anon
4121 }
4122
4123 // Get a new user_touched that is higher than the old one.
4124 // This will be used for a CAS check as a last-resort safety
4125 // check against race conditions and replica DB lag.
4126 $newTouched = $this->newTouchedTimestamp();
4127
4128 $dbw = wfGetDB( DB_MASTER );
4129 $dbw->doAtomicSection( __METHOD__, function ( $dbw, $fname ) use ( $newTouched ) {
4130 global $wgActorTableSchemaMigrationStage;
4131
4132 $dbw->update( 'user',
4133 [ /* SET */
4134 'user_name' => $this->mName,
4135 'user_real_name' => $this->mRealName,
4136 'user_email' => $this->mEmail,
4137 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
4138 'user_touched' => $dbw->timestamp( $newTouched ),
4139 'user_token' => strval( $this->mToken ),
4140 'user_email_token' => $this->mEmailToken,
4141 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires ),
4142 ], $this->makeUpdateConditions( $dbw, [ /* WHERE */
4143 'user_id' => $this->mId,
4144 ] ), $fname
4145 );
4146
4147 if ( !$dbw->affectedRows() ) {
4148 // Maybe the problem was a missed cache update; clear it to be safe
4149 $this->clearSharedCache( 'refresh' );
4150 // User was changed in the meantime or loaded with stale data
4151 $from = ( $this->queryFlagsUsed & self::READ_LATEST ) ? 'master' : 'replica';
4152 throw new MWException(
4153 "CAS update failed on user_touched for user ID '{$this->mId}' (read from $from);" .
4154 " the version of the user to be saved is older than the current version."
4155 );
4156 }
4157
4158 if ( $wgActorTableSchemaMigrationStage > MIGRATION_OLD ) {
4159 $dbw->update(
4160 'actor',
4161 [ 'actor_name' => $this->mName ],
4162 [ 'actor_user' => $this->mId ],
4163 $fname
4164 );
4165 }
4166 } );
4167
4168 $this->mTouched = $newTouched;
4169 $this->saveOptions();
4170
4171 Hooks::run( 'UserSaveSettings', [ $this ] );
4172 $this->clearSharedCache();
4173 $this->getUserPage()->invalidateCache();
4174 }
4175
4176 /**
4177 * If only this user's username is known, and it exists, return the user ID.
4178 *
4179 * @param int $flags Bitfield of User:READ_* constants; useful for existence checks
4180 * @return int
4181 */
4182 public function idForName( $flags = 0 ) {
4183 $s = trim( $this->getName() );
4184 if ( $s === '' ) {
4185 return 0;
4186 }
4187
4188 $db = ( ( $flags & self::READ_LATEST ) == self::READ_LATEST )
4189 ? wfGetDB( DB_MASTER )
4190 : wfGetDB( DB_REPLICA );
4191
4192 $options = ( ( $flags & self::READ_LOCKING ) == self::READ_LOCKING )
4193 ? [ 'LOCK IN SHARE MODE' ]
4194 : [];
4195
4196 $id = $db->selectField( 'user',
4197 'user_id', [ 'user_name' => $s ], __METHOD__, $options );
4198
4199 return (int)$id;
4200 }
4201
4202 /**
4203 * Add a user to the database, return the user object
4204 *
4205 * @param string $name Username to add
4206 * @param array $params Array of Strings Non-default parameters to save to
4207 * the database as user_* fields:
4208 * - email: The user's email address.
4209 * - email_authenticated: The email authentication timestamp.
4210 * - real_name: The user's real name.
4211 * - options: An associative array of non-default options.
4212 * - token: Random authentication token. Do not set.
4213 * - registration: Registration timestamp. Do not set.
4214 *
4215 * @return User|null User object, or null if the username already exists.
4216 */
4217 public static function createNew( $name, $params = [] ) {
4218 foreach ( [ 'password', 'newpassword', 'newpass_time', 'password_expires' ] as $field ) {
4219 if ( isset( $params[$field] ) ) {
4220 wfDeprecated( __METHOD__ . " with param '$field'", '1.27' );
4221 unset( $params[$field] );
4222 }
4223 }
4224
4225 $user = new User;
4226 $user->load();
4227 $user->setToken(); // init token
4228 if ( isset( $params['options'] ) ) {
4229 $user->mOptions = $params['options'] + (array)$user->mOptions;
4230 unset( $params['options'] );
4231 }
4232 $dbw = wfGetDB( DB_MASTER );
4233
4234 $noPass = PasswordFactory::newInvalidPassword()->toString();
4235
4236 $fields = [
4237 'user_name' => $name,
4238 'user_password' => $noPass,
4239 'user_newpassword' => $noPass,
4240 'user_email' => $user->mEmail,
4241 'user_email_authenticated' => $dbw->timestampOrNull( $user->mEmailAuthenticated ),
4242 'user_real_name' => $user->mRealName,
4243 'user_token' => strval( $user->mToken ),
4244 'user_registration' => $dbw->timestamp( $user->mRegistration ),
4245 'user_editcount' => 0,
4246 'user_touched' => $dbw->timestamp( $user->newTouchedTimestamp() ),
4247 ];
4248 foreach ( $params as $name => $value ) {
4249 $fields["user_$name"] = $value;
4250 }
4251
4252 return $dbw->doAtomicSection( __METHOD__, function ( $dbw, $fname ) use ( $fields ) {
4253 $dbw->insert( 'user', $fields, $fname, [ 'IGNORE' ] );
4254 if ( $dbw->affectedRows() ) {
4255 $newUser = self::newFromId( $dbw->insertId() );
4256 // Load the user from master to avoid replica lag
4257 $newUser->load( self::READ_LATEST );
4258 $newUser->updateActorId( $dbw );
4259 } else {
4260 $newUser = null;
4261 }
4262 return $newUser;
4263 } );
4264 }
4265
4266 /**
4267 * Add this existing user object to the database. If the user already
4268 * exists, a fatal status object is returned, and the user object is
4269 * initialised with the data from the database.
4270 *
4271 * Previously, this function generated a DB error due to a key conflict
4272 * if the user already existed. Many extension callers use this function
4273 * in code along the lines of:
4274 *
4275 * $user = User::newFromName( $name );
4276 * if ( !$user->isLoggedIn() ) {
4277 * $user->addToDatabase();
4278 * }
4279 * // do something with $user...
4280 *
4281 * However, this was vulnerable to a race condition (T18020). By
4282 * initialising the user object if the user exists, we aim to support this
4283 * calling sequence as far as possible.
4284 *
4285 * Note that if the user exists, this function will acquire a write lock,
4286 * so it is still advisable to make the call conditional on isLoggedIn(),
4287 * and to commit the transaction after calling.
4288 *
4289 * @throws MWException
4290 * @return Status
4291 */
4292 public function addToDatabase() {
4293 $this->load();
4294 if ( !$this->mToken ) {
4295 $this->setToken(); // init token
4296 }
4297
4298 if ( !is_string( $this->mName ) ) {
4299 throw new RuntimeException( "User name field is not set." );
4300 }
4301
4302 $this->mTouched = $this->newTouchedTimestamp();
4303
4304 $dbw = wfGetDB( DB_MASTER );
4305 $status = $dbw->doAtomicSection( __METHOD__, function ( $dbw, $fname ) {
4306 $noPass = PasswordFactory::newInvalidPassword()->toString();
4307 $dbw->insert( 'user',
4308 [
4309 'user_name' => $this->mName,
4310 'user_password' => $noPass,
4311 'user_newpassword' => $noPass,
4312 'user_email' => $this->mEmail,
4313 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
4314 'user_real_name' => $this->mRealName,
4315 'user_token' => strval( $this->mToken ),
4316 'user_registration' => $dbw->timestamp( $this->mRegistration ),
4317 'user_editcount' => 0,
4318 'user_touched' => $dbw->timestamp( $this->mTouched ),
4319 ], $fname,
4320 [ 'IGNORE' ]
4321 );
4322 if ( !$dbw->affectedRows() ) {
4323 // Use locking reads to bypass any REPEATABLE-READ snapshot.
4324 $this->mId = $dbw->selectField(
4325 'user',
4326 'user_id',
4327 [ 'user_name' => $this->mName ],
4328 __METHOD__,
4329 [ 'LOCK IN SHARE MODE' ]
4330 );
4331 $loaded = false;
4332 if ( $this->mId ) {
4333 if ( $this->loadFromDatabase( self::READ_LOCKING ) ) {
4334 $loaded = true;
4335 }
4336 }
4337 if ( !$loaded ) {
4338 throw new MWException( __METHOD__ . ": hit a key conflict attempting " .
4339 "to insert user '{$this->mName}' row, but it was not present in select!" );
4340 }
4341 return Status::newFatal( 'userexists' );
4342 }
4343 $this->mId = $dbw->insertId();
4344 self::$idCacheByName[$this->mName] = $this->mId;
4345 $this->updateActorId( $dbw );
4346
4347 return Status::newGood();
4348 } );
4349 if ( !$status->isGood() ) {
4350 return $status;
4351 }
4352
4353 // Clear instance cache other than user table data and actor, which is already accurate
4354 $this->clearInstanceCache();
4355
4356 $this->saveOptions();
4357 return Status::newGood();
4358 }
4359
4360 /**
4361 * Update the actor ID after an insert
4362 * @param IDatabase $dbw Writable database handle
4363 */
4364 private function updateActorId( IDatabase $dbw ) {
4365 global $wgActorTableSchemaMigrationStage;
4366
4367 if ( $wgActorTableSchemaMigrationStage > MIGRATION_OLD ) {
4368 $dbw->insert(
4369 'actor',
4370 [ 'actor_user' => $this->mId, 'actor_name' => $this->mName ],
4371 __METHOD__
4372 );
4373 $this->mActorId = (int)$dbw->insertId();
4374 }
4375 }
4376
4377 /**
4378 * If this user is logged-in and blocked,
4379 * block any IP address they've successfully logged in from.
4380 * @return bool A block was spread
4381 */
4382 public function spreadAnyEditBlock() {
4383 if ( $this->isLoggedIn() && $this->isBlocked() ) {
4384 return $this->spreadBlock();
4385 }
4386
4387 return false;
4388 }
4389
4390 /**
4391 * If this (non-anonymous) user is blocked,
4392 * block the IP address they've successfully logged in from.
4393 * @return bool A block was spread
4394 */
4395 protected function spreadBlock() {
4396 wfDebug( __METHOD__ . "()\n" );
4397 $this->load();
4398 if ( $this->mId == 0 ) {
4399 return false;
4400 }
4401
4402 $userblock = Block::newFromTarget( $this->getName() );
4403 if ( !$userblock ) {
4404 return false;
4405 }
4406
4407 return (bool)$userblock->doAutoblock( $this->getRequest()->getIP() );
4408 }
4409
4410 /**
4411 * Get whether the user is explicitly blocked from account creation.
4412 * @return bool|Block
4413 */
4414 public function isBlockedFromCreateAccount() {
4415 $this->getBlockedStatus();
4416 if ( $this->mBlock && $this->mBlock->prevents( 'createaccount' ) ) {
4417 return $this->mBlock;
4418 }
4419
4420 # T15611: if the IP address the user is trying to create an account from is
4421 # blocked with createaccount disabled, prevent new account creation there even
4422 # when the user is logged in
4423 if ( $this->mBlockedFromCreateAccount === false && !$this->isAllowed( 'ipblock-exempt' ) ) {
4424 $this->mBlockedFromCreateAccount = Block::newFromTarget( null, $this->getRequest()->getIP() );
4425 }
4426 return $this->mBlockedFromCreateAccount instanceof Block
4427 && $this->mBlockedFromCreateAccount->prevents( 'createaccount' )
4428 ? $this->mBlockedFromCreateAccount
4429 : false;
4430 }
4431
4432 /**
4433 * Get whether the user is blocked from using Special:Emailuser.
4434 * @return bool
4435 */
4436 public function isBlockedFromEmailuser() {
4437 $this->getBlockedStatus();
4438 return $this->mBlock && $this->mBlock->prevents( 'sendemail' );
4439 }
4440
4441 /**
4442 * Get whether the user is allowed to create an account.
4443 * @return bool
4444 */
4445 public function isAllowedToCreateAccount() {
4446 return $this->isAllowed( 'createaccount' ) && !$this->isBlockedFromCreateAccount();
4447 }
4448
4449 /**
4450 * Get this user's personal page title.
4451 *
4452 * @return Title User's personal page title
4453 */
4454 public function getUserPage() {
4455 return Title::makeTitle( NS_USER, $this->getName() );
4456 }
4457
4458 /**
4459 * Get this user's talk page title.
4460 *
4461 * @return Title User's talk page title
4462 */
4463 public function getTalkPage() {
4464 $title = $this->getUserPage();
4465 return $title->getTalkPage();
4466 }
4467
4468 /**
4469 * Determine whether the user is a newbie. Newbies are either
4470 * anonymous IPs, or the most recently created accounts.
4471 * @return bool
4472 */
4473 public function isNewbie() {
4474 return !$this->isAllowed( 'autoconfirmed' );
4475 }
4476
4477 /**
4478 * Check to see if the given clear-text password is one of the accepted passwords
4479 * @deprecated since 1.27, use AuthManager instead
4480 * @param string $password User password
4481 * @return bool True if the given password is correct, otherwise False
4482 */
4483 public function checkPassword( $password ) {
4484 $manager = AuthManager::singleton();
4485 $reqs = AuthenticationRequest::loadRequestsFromSubmission(
4486 $manager->getAuthenticationRequests( AuthManager::ACTION_LOGIN ),
4487 [
4488 'username' => $this->getName(),
4489 'password' => $password,
4490 ]
4491 );
4492 $res = AuthManager::singleton()->beginAuthentication( $reqs, 'null:' );
4493 switch ( $res->status ) {
4494 case AuthenticationResponse::PASS:
4495 return true;
4496 case AuthenticationResponse::FAIL:
4497 // Hope it's not a PreAuthenticationProvider that failed...
4498 \MediaWiki\Logger\LoggerFactory::getInstance( 'authentication' )
4499 ->info( __METHOD__ . ': Authentication failed: ' . $res->message->plain() );
4500 return false;
4501 default:
4502 throw new BadMethodCallException(
4503 'AuthManager returned a response unsupported by ' . __METHOD__
4504 );
4505 }
4506 }
4507
4508 /**
4509 * Check if the given clear-text password matches the temporary password
4510 * sent by e-mail for password reset operations.
4511 *
4512 * @deprecated since 1.27, use AuthManager instead
4513 * @param string $plaintext
4514 * @return bool True if matches, false otherwise
4515 */
4516 public function checkTemporaryPassword( $plaintext ) {
4517 // Can't check the temporary password individually.
4518 return $this->checkPassword( $plaintext );
4519 }
4520
4521 /**
4522 * Initialize (if necessary) and return a session token value
4523 * which can be used in edit forms to show that the user's
4524 * login credentials aren't being hijacked with a foreign form
4525 * submission.
4526 *
4527 * @since 1.27
4528 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4529 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4530 * @return MediaWiki\Session\Token The new edit token
4531 */
4532 public function getEditTokenObject( $salt = '', $request = null ) {
4533 if ( $this->isAnon() ) {
4534 return new LoggedOutEditToken();
4535 }
4536
4537 if ( !$request ) {
4538 $request = $this->getRequest();
4539 }
4540 return $request->getSession()->getToken( $salt );
4541 }
4542
4543 /**
4544 * Initialize (if necessary) and return a session token value
4545 * which can be used in edit forms to show that the user's
4546 * login credentials aren't being hijacked with a foreign form
4547 * submission.
4548 *
4549 * The $salt for 'edit' and 'csrf' tokens is the default (empty string).
4550 *
4551 * @since 1.19
4552 * @param string|array $salt Array of Strings Optional function-specific data for hashing
4553 * @param WebRequest|null $request WebRequest object to use or null to use $wgRequest
4554 * @return string The new edit token
4555 */
4556 public function getEditToken( $salt = '', $request = null ) {
4557 return $this->getEditTokenObject( $salt, $request )->toString();
4558 }
4559
4560 /**
4561 * Get the embedded timestamp from a token.
4562 * @deprecated since 1.27, use \MediaWiki\Session\Token::getTimestamp instead.
4563 * @param string $val Input token
4564 * @return int|null
4565 */
4566 public static function getEditTokenTimestamp( $val ) {
4567 wfDeprecated( __METHOD__, '1.27' );
4568 return MediaWiki\Session\Token::getTimestamp( $val );
4569 }
4570
4571 /**
4572 * Check given value against the token value stored in the session.
4573 * A match should confirm that the form was submitted from the
4574 * user's own login session, not a form submission from a third-party
4575 * site.
4576 *
4577 * @param string $val Input value to compare
4578 * @param string $salt Optional function-specific data for hashing
4579 * @param WebRequest|null $request Object to use or null to use $wgRequest
4580 * @param int $maxage Fail tokens older than this, in seconds
4581 * @return bool Whether the token matches
4582 */
4583 public function matchEditToken( $val, $salt = '', $request = null, $maxage = null ) {
4584 return $this->getEditTokenObject( $salt, $request )->match( $val, $maxage );
4585 }
4586
4587 /**
4588 * Check given value against the token value stored in the session,
4589 * ignoring the suffix.
4590 *
4591 * @param string $val Input value to compare
4592 * @param string $salt Optional function-specific data for hashing
4593 * @param WebRequest|null $request Object to use or null to use $wgRequest
4594 * @param int $maxage Fail tokens older than this, in seconds
4595 * @return bool Whether the token matches
4596 */
4597 public function matchEditTokenNoSuffix( $val, $salt = '', $request = null, $maxage = null ) {
4598 $val = substr( $val, 0, strspn( $val, '0123456789abcdef' ) ) . Token::SUFFIX;
4599 return $this->matchEditToken( $val, $salt, $request, $maxage );
4600 }
4601
4602 /**
4603 * Generate a new e-mail confirmation token and send a confirmation/invalidation
4604 * mail to the user's given address.
4605 *
4606 * @param string $type Message to send, either "created", "changed" or "set"
4607 * @return Status
4608 */
4609 public function sendConfirmationMail( $type = 'created' ) {
4610 global $wgLang;
4611 $expiration = null; // gets passed-by-ref and defined in next line.
4612 $token = $this->confirmationToken( $expiration );
4613 $url = $this->confirmationTokenUrl( $token );
4614 $invalidateURL = $this->invalidationTokenUrl( $token );
4615 $this->saveSettings();
4616
4617 if ( $type == 'created' || $type === false ) {
4618 $message = 'confirmemail_body';
4619 } elseif ( $type === true ) {
4620 $message = 'confirmemail_body_changed';
4621 } else {
4622 // Messages: confirmemail_body_changed, confirmemail_body_set
4623 $message = 'confirmemail_body_' . $type;
4624 }
4625
4626 return $this->sendMail( wfMessage( 'confirmemail_subject' )->text(),
4627 wfMessage( $message,
4628 $this->getRequest()->getIP(),
4629 $this->getName(),
4630 $url,
4631 $wgLang->userTimeAndDate( $expiration, $this ),
4632 $invalidateURL,
4633 $wgLang->userDate( $expiration, $this ),
4634 $wgLang->userTime( $expiration, $this ) )->text() );
4635 }
4636
4637 /**
4638 * Send an e-mail to this user's account. Does not check for
4639 * confirmed status or validity.
4640 *
4641 * @param string $subject Message subject
4642 * @param string $body Message body
4643 * @param User|null $from Optional sending user; if unspecified, default
4644 * $wgPasswordSender will be used.
4645 * @param string $replyto Reply-To address
4646 * @return Status
4647 */
4648 public function sendMail( $subject, $body, $from = null, $replyto = null ) {
4649 global $wgPasswordSender;
4650
4651 if ( $from instanceof User ) {
4652 $sender = MailAddress::newFromUser( $from );
4653 } else {
4654 $sender = new MailAddress( $wgPasswordSender,
4655 wfMessage( 'emailsender' )->inContentLanguage()->text() );
4656 }
4657 $to = MailAddress::newFromUser( $this );
4658
4659 return UserMailer::send( $to, $sender, $subject, $body, [
4660 'replyTo' => $replyto,
4661 ] );
4662 }
4663
4664 /**
4665 * Generate, store, and return a new e-mail confirmation code.
4666 * A hash (unsalted, since it's used as a key) is stored.
4667 *
4668 * @note Call saveSettings() after calling this function to commit
4669 * this change to the database.
4670 *
4671 * @param string &$expiration Accepts the expiration time
4672 * @return string New token
4673 */
4674 protected function confirmationToken( &$expiration ) {
4675 global $wgUserEmailConfirmationTokenExpiry;
4676 $now = time();
4677 $expires = $now + $wgUserEmailConfirmationTokenExpiry;
4678 $expiration = wfTimestamp( TS_MW, $expires );
4679 $this->load();
4680 $token = MWCryptRand::generateHex( 32 );
4681 $hash = md5( $token );
4682 $this->mEmailToken = $hash;
4683 $this->mEmailTokenExpires = $expiration;
4684 return $token;
4685 }
4686
4687 /**
4688 * Return a URL the user can use to confirm their email address.
4689 * @param string $token Accepts the email confirmation token
4690 * @return string New token URL
4691 */
4692 protected function confirmationTokenUrl( $token ) {
4693 return $this->getTokenUrl( 'ConfirmEmail', $token );
4694 }
4695
4696 /**
4697 * Return a URL the user can use to invalidate their email address.
4698 * @param string $token Accepts the email confirmation token
4699 * @return string New token URL
4700 */
4701 protected function invalidationTokenUrl( $token ) {
4702 return $this->getTokenUrl( 'InvalidateEmail', $token );
4703 }
4704
4705 /**
4706 * Internal function to format the e-mail validation/invalidation URLs.
4707 * This uses a quickie hack to use the
4708 * hardcoded English names of the Special: pages, for ASCII safety.
4709 *
4710 * @note Since these URLs get dropped directly into emails, using the
4711 * short English names avoids insanely long URL-encoded links, which
4712 * also sometimes can get corrupted in some browsers/mailers
4713 * (T8957 with Gmail and Internet Explorer).
4714 *
4715 * @param string $page Special page
4716 * @param string $token
4717 * @return string Formatted URL
4718 */
4719 protected function getTokenUrl( $page, $token ) {
4720 // Hack to bypass localization of 'Special:'
4721 $title = Title::makeTitle( NS_MAIN, "Special:$page/$token" );
4722 return $title->getCanonicalURL();
4723 }
4724
4725 /**
4726 * Mark the e-mail address confirmed.
4727 *
4728 * @note Call saveSettings() after calling this function to commit the change.
4729 *
4730 * @return bool
4731 */
4732 public function confirmEmail() {
4733 // Check if it's already confirmed, so we don't touch the database
4734 // and fire the ConfirmEmailComplete hook on redundant confirmations.
4735 if ( !$this->isEmailConfirmed() ) {
4736 $this->setEmailAuthenticationTimestamp( wfTimestampNow() );
4737 Hooks::run( 'ConfirmEmailComplete', [ $this ] );
4738 }
4739 return true;
4740 }
4741
4742 /**
4743 * Invalidate the user's e-mail confirmation, and unauthenticate the e-mail
4744 * address if it was already confirmed.
4745 *
4746 * @note Call saveSettings() after calling this function to commit the change.
4747 * @return bool Returns true
4748 */
4749 public function invalidateEmail() {
4750 $this->load();
4751 $this->mEmailToken = null;
4752 $this->mEmailTokenExpires = null;
4753 $this->setEmailAuthenticationTimestamp( null );
4754 $this->mEmail = '';
4755 Hooks::run( 'InvalidateEmailComplete', [ $this ] );
4756 return true;
4757 }
4758
4759 /**
4760 * Set the e-mail authentication timestamp.
4761 * @param string $timestamp TS_MW timestamp
4762 */
4763 public function setEmailAuthenticationTimestamp( $timestamp ) {
4764 $this->load();
4765 $this->mEmailAuthenticated = $timestamp;
4766 Hooks::run( 'UserSetEmailAuthenticationTimestamp', [ $this, &$this->mEmailAuthenticated ] );
4767 }
4768
4769 /**
4770 * Is this user allowed to send e-mails within limits of current
4771 * site configuration?
4772 * @return bool
4773 */
4774 public function canSendEmail() {
4775 global $wgEnableEmail, $wgEnableUserEmail;
4776 if ( !$wgEnableEmail || !$wgEnableUserEmail || !$this->isAllowed( 'sendemail' ) ) {
4777 return false;
4778 }
4779 $canSend = $this->isEmailConfirmed();
4780 // Avoid PHP 7.1 warning of passing $this by reference
4781 $user = $this;
4782 Hooks::run( 'UserCanSendEmail', [ &$user, &$canSend ] );
4783 return $canSend;
4784 }
4785
4786 /**
4787 * Is this user allowed to receive e-mails within limits of current
4788 * site configuration?
4789 * @return bool
4790 */
4791 public function canReceiveEmail() {
4792 return $this->isEmailConfirmed() && !$this->getOption( 'disablemail' );
4793 }
4794
4795 /**
4796 * Is this user's e-mail address valid-looking and confirmed within
4797 * limits of the current site configuration?
4798 *
4799 * @note If $wgEmailAuthentication is on, this may require the user to have
4800 * confirmed their address by returning a code or using a password
4801 * sent to the address from the wiki.
4802 *
4803 * @return bool
4804 */
4805 public function isEmailConfirmed() {
4806 global $wgEmailAuthentication;
4807 $this->load();
4808 // Avoid PHP 7.1 warning of passing $this by reference
4809 $user = $this;
4810 $confirmed = true;
4811 if ( Hooks::run( 'EmailConfirmed', [ &$user, &$confirmed ] ) ) {
4812 if ( $this->isAnon() ) {
4813 return false;
4814 }
4815 if ( !Sanitizer::validateEmail( $this->mEmail ) ) {
4816 return false;
4817 }
4818 if ( $wgEmailAuthentication && !$this->getEmailAuthenticationTimestamp() ) {
4819 return false;
4820 }
4821 return true;
4822 } else {
4823 return $confirmed;
4824 }
4825 }
4826
4827 /**
4828 * Check whether there is an outstanding request for e-mail confirmation.
4829 * @return bool
4830 */
4831 public function isEmailConfirmationPending() {
4832 global $wgEmailAuthentication;
4833 return $wgEmailAuthentication &&
4834 !$this->isEmailConfirmed() &&
4835 $this->mEmailToken &&
4836 $this->mEmailTokenExpires > wfTimestamp();
4837 }
4838
4839 /**
4840 * Get the timestamp of account creation.
4841 *
4842 * @return string|bool|null Timestamp of account creation, false for
4843 * non-existent/anonymous user accounts, or null if existing account
4844 * but information is not in database.
4845 */
4846 public function getRegistration() {
4847 if ( $this->isAnon() ) {
4848 return false;
4849 }
4850 $this->load();
4851 return $this->mRegistration;
4852 }
4853
4854 /**
4855 * Get the timestamp of the first edit
4856 *
4857 * @return string|bool Timestamp of first edit, or false for
4858 * non-existent/anonymous user accounts.
4859 */
4860 public function getFirstEditTimestamp() {
4861 if ( $this->getId() == 0 ) {
4862 return false; // anons
4863 }
4864 $dbr = wfGetDB( DB_REPLICA );
4865 $actorWhere = ActorMigration::newMigration()->getWhere( $dbr, 'rev_user', $this );
4866 $time = $dbr->selectField(
4867 [ 'revision' ] + $actorWhere['tables'],
4868 'rev_timestamp',
4869 [ $actorWhere['conds'] ],
4870 __METHOD__,
4871 [ 'ORDER BY' => 'rev_timestamp ASC' ],
4872 $actorWhere['joins']
4873 );
4874 if ( !$time ) {
4875 return false; // no edits
4876 }
4877 return wfTimestamp( TS_MW, $time );
4878 }
4879
4880 /**
4881 * Get the permissions associated with a given list of groups
4882 *
4883 * @param array $groups Array of Strings List of internal group names
4884 * @return array Array of Strings List of permission key names for given groups combined
4885 */
4886 public static function getGroupPermissions( $groups ) {
4887 global $wgGroupPermissions, $wgRevokePermissions;
4888 $rights = [];
4889 // grant every granted permission first
4890 foreach ( $groups as $group ) {
4891 if ( isset( $wgGroupPermissions[$group] ) ) {
4892 $rights = array_merge( $rights,
4893 // array_filter removes empty items
4894 array_keys( array_filter( $wgGroupPermissions[$group] ) ) );
4895 }
4896 }
4897 // now revoke the revoked permissions
4898 foreach ( $groups as $group ) {
4899 if ( isset( $wgRevokePermissions[$group] ) ) {
4900 $rights = array_diff( $rights,
4901 array_keys( array_filter( $wgRevokePermissions[$group] ) ) );
4902 }
4903 }
4904 return array_unique( $rights );
4905 }
4906
4907 /**
4908 * Get all the groups who have a given permission
4909 *
4910 * @param string $role Role to check
4911 * @return array Array of Strings List of internal group names with the given permission
4912 */
4913 public static function getGroupsWithPermission( $role ) {
4914 global $wgGroupPermissions;
4915 $allowedGroups = [];
4916 foreach ( array_keys( $wgGroupPermissions ) as $group ) {
4917 if ( self::groupHasPermission( $group, $role ) ) {
4918 $allowedGroups[] = $group;
4919 }
4920 }
4921 return $allowedGroups;
4922 }
4923
4924 /**
4925 * Check, if the given group has the given permission
4926 *
4927 * If you're wanting to check whether all users have a permission, use
4928 * User::isEveryoneAllowed() instead. That properly checks if it's revoked
4929 * from anyone.
4930 *
4931 * @since 1.21
4932 * @param string $group Group to check
4933 * @param string $role Role to check
4934 * @return bool
4935 */
4936 public static function groupHasPermission( $group, $role ) {
4937 global $wgGroupPermissions, $wgRevokePermissions;
4938 return isset( $wgGroupPermissions[$group][$role] ) && $wgGroupPermissions[$group][$role]
4939 && !( isset( $wgRevokePermissions[$group][$role] ) && $wgRevokePermissions[$group][$role] );
4940 }
4941
4942 /**
4943 * Check if all users may be assumed to have the given permission
4944 *
4945 * We generally assume so if the right is granted to '*' and isn't revoked
4946 * on any group. It doesn't attempt to take grants or other extension
4947 * limitations on rights into account in the general case, though, as that
4948 * would require it to always return false and defeat the purpose.
4949 * Specifically, session-based rights restrictions (such as OAuth or bot
4950 * passwords) are applied based on the current session.
4951 *
4952 * @since 1.22
4953 * @param string $right Right to check
4954 * @return bool
4955 */
4956 public static function isEveryoneAllowed( $right ) {
4957 global $wgGroupPermissions, $wgRevokePermissions;
4958 static $cache = [];
4959
4960 // Use the cached results, except in unit tests which rely on
4961 // being able change the permission mid-request
4962 if ( isset( $cache[$right] ) && !defined( 'MW_PHPUNIT_TEST' ) ) {
4963 return $cache[$right];
4964 }
4965
4966 if ( !isset( $wgGroupPermissions['*'][$right] ) || !$wgGroupPermissions['*'][$right] ) {
4967 $cache[$right] = false;
4968 return false;
4969 }
4970
4971 // If it's revoked anywhere, then everyone doesn't have it
4972 foreach ( $wgRevokePermissions as $rights ) {
4973 if ( isset( $rights[$right] ) && $rights[$right] ) {
4974 $cache[$right] = false;
4975 return false;
4976 }
4977 }
4978
4979 // Remove any rights that aren't allowed to the global-session user,
4980 // unless there are no sessions for this endpoint.
4981 if ( !defined( 'MW_NO_SESSION' ) ) {
4982 $allowedRights = SessionManager::getGlobalSession()->getAllowedUserRights();
4983 if ( $allowedRights !== null && !in_array( $right, $allowedRights, true ) ) {
4984 $cache[$right] = false;
4985 return false;
4986 }
4987 }
4988
4989 // Allow extensions to say false
4990 if ( !Hooks::run( 'UserIsEveryoneAllowed', [ $right ] ) ) {
4991 $cache[$right] = false;
4992 return false;
4993 }
4994
4995 $cache[$right] = true;
4996 return true;
4997 }
4998
4999 /**
5000 * Get the localized descriptive name for a group, if it exists
5001 * @deprecated since 1.29 Use UserGroupMembership::getGroupName instead
5002 *
5003 * @param string $group Internal group name
5004 * @return string Localized descriptive group name
5005 */
5006 public static function getGroupName( $group ) {
5007 wfDeprecated( __METHOD__, '1.29' );
5008 return UserGroupMembership::getGroupName( $group );
5009 }
5010
5011 /**
5012 * Get the localized descriptive name for a member of a group, if it exists
5013 * @deprecated since 1.29 Use UserGroupMembership::getGroupMemberName instead
5014 *
5015 * @param string $group Internal group name
5016 * @param string $username Username for gender (since 1.19)
5017 * @return string Localized name for group member
5018 */
5019 public static function getGroupMember( $group, $username = '#' ) {
5020 wfDeprecated( __METHOD__, '1.29' );
5021 return UserGroupMembership::getGroupMemberName( $group, $username );
5022 }
5023
5024 /**
5025 * Return the set of defined explicit groups.
5026 * The implicit groups (by default *, 'user' and 'autoconfirmed')
5027 * are not included, as they are defined automatically, not in the database.
5028 * @return array Array of internal group names
5029 */
5030 public static function getAllGroups() {
5031 global $wgGroupPermissions, $wgRevokePermissions;
5032 return array_diff(
5033 array_merge( array_keys( $wgGroupPermissions ), array_keys( $wgRevokePermissions ) ),
5034 self::getImplicitGroups()
5035 );
5036 }
5037
5038 /**
5039 * Get a list of all available permissions.
5040 * @return string[] Array of permission names
5041 */
5042 public static function getAllRights() {
5043 if ( self::$mAllRights === false ) {
5044 global $wgAvailableRights;
5045 if ( count( $wgAvailableRights ) ) {
5046 self::$mAllRights = array_unique( array_merge( self::$mCoreRights, $wgAvailableRights ) );
5047 } else {
5048 self::$mAllRights = self::$mCoreRights;
5049 }
5050 Hooks::run( 'UserGetAllRights', [ &self::$mAllRights ] );
5051 }
5052 return self::$mAllRights;
5053 }
5054
5055 /**
5056 * Get a list of implicit groups
5057 * @return array Array of Strings Array of internal group names
5058 */
5059 public static function getImplicitGroups() {
5060 global $wgImplicitGroups;
5061
5062 $groups = $wgImplicitGroups;
5063 # Deprecated, use $wgImplicitGroups instead
5064 Hooks::run( 'UserGetImplicitGroups', [ &$groups ], '1.25' );
5065
5066 return $groups;
5067 }
5068
5069 /**
5070 * Get the title of a page describing a particular group
5071 * @deprecated since 1.29 Use UserGroupMembership::getGroupPage instead
5072 *
5073 * @param string $group Internal group name
5074 * @return Title|bool Title of the page if it exists, false otherwise
5075 */
5076 public static function getGroupPage( $group ) {
5077 wfDeprecated( __METHOD__, '1.29' );
5078 return UserGroupMembership::getGroupPage( $group );
5079 }
5080
5081 /**
5082 * Create a link to the group in HTML, if available;
5083 * else return the group name.
5084 * @deprecated since 1.29 Use UserGroupMembership::getLink instead, or
5085 * make the link yourself if you need custom text
5086 *
5087 * @param string $group Internal name of the group
5088 * @param string $text The text of the link
5089 * @return string HTML link to the group
5090 */
5091 public static function makeGroupLinkHTML( $group, $text = '' ) {
5092 wfDeprecated( __METHOD__, '1.29' );
5093
5094 if ( $text == '' ) {
5095 $text = UserGroupMembership::getGroupName( $group );
5096 }
5097 $title = UserGroupMembership::getGroupPage( $group );
5098 if ( $title ) {
5099 return MediaWikiServices::getInstance()
5100 ->getLinkRenderer()->makeLink( $title, $text );
5101 } else {
5102 return htmlspecialchars( $text );
5103 }
5104 }
5105
5106 /**
5107 * Create a link to the group in Wikitext, if available;
5108 * else return the group name.
5109 * @deprecated since 1.29 Use UserGroupMembership::getLink instead, or
5110 * make the link yourself if you need custom text
5111 *
5112 * @param string $group Internal name of the group
5113 * @param string $text The text of the link
5114 * @return string Wikilink to the group
5115 */
5116 public static function makeGroupLinkWiki( $group, $text = '' ) {
5117 wfDeprecated( __METHOD__, '1.29' );
5118
5119 if ( $text == '' ) {
5120 $text = UserGroupMembership::getGroupName( $group );
5121 }
5122 $title = UserGroupMembership::getGroupPage( $group );
5123 if ( $title ) {
5124 $page = $title->getFullText();
5125 return "[[$page|$text]]";
5126 } else {
5127 return $text;
5128 }
5129 }
5130
5131 /**
5132 * Returns an array of the groups that a particular group can add/remove.
5133 *
5134 * @param string $group The group to check for whether it can add/remove
5135 * @return array Array( 'add' => array( addablegroups ),
5136 * 'remove' => array( removablegroups ),
5137 * 'add-self' => array( addablegroups to self),
5138 * 'remove-self' => array( removable groups from self) )
5139 */
5140 public static function changeableByGroup( $group ) {
5141 global $wgAddGroups, $wgRemoveGroups, $wgGroupsAddToSelf, $wgGroupsRemoveFromSelf;
5142
5143 $groups = [
5144 'add' => [],
5145 'remove' => [],
5146 'add-self' => [],
5147 'remove-self' => []
5148 ];
5149
5150 if ( empty( $wgAddGroups[$group] ) ) {
5151 // Don't add anything to $groups
5152 } elseif ( $wgAddGroups[$group] === true ) {
5153 // You get everything
5154 $groups['add'] = self::getAllGroups();
5155 } elseif ( is_array( $wgAddGroups[$group] ) ) {
5156 $groups['add'] = $wgAddGroups[$group];
5157 }
5158
5159 // Same thing for remove
5160 if ( empty( $wgRemoveGroups[$group] ) ) {
5161 // Do nothing
5162 } elseif ( $wgRemoveGroups[$group] === true ) {
5163 $groups['remove'] = self::getAllGroups();
5164 } elseif ( is_array( $wgRemoveGroups[$group] ) ) {
5165 $groups['remove'] = $wgRemoveGroups[$group];
5166 }
5167
5168 // Re-map numeric keys of AddToSelf/RemoveFromSelf to the 'user' key for backwards compatibility
5169 if ( empty( $wgGroupsAddToSelf['user'] ) || $wgGroupsAddToSelf['user'] !== true ) {
5170 foreach ( $wgGroupsAddToSelf as $key => $value ) {
5171 if ( is_int( $key ) ) {
5172 $wgGroupsAddToSelf['user'][] = $value;
5173 }
5174 }
5175 }
5176
5177 if ( empty( $wgGroupsRemoveFromSelf['user'] ) || $wgGroupsRemoveFromSelf['user'] !== true ) {
5178 foreach ( $wgGroupsRemoveFromSelf as $key => $value ) {
5179 if ( is_int( $key ) ) {
5180 $wgGroupsRemoveFromSelf['user'][] = $value;
5181 }
5182 }
5183 }
5184
5185 // Now figure out what groups the user can add to him/herself
5186 if ( empty( $wgGroupsAddToSelf[$group] ) ) {
5187 // Do nothing
5188 } elseif ( $wgGroupsAddToSelf[$group] === true ) {
5189 // No idea WHY this would be used, but it's there
5190 $groups['add-self'] = self::getAllGroups();
5191 } elseif ( is_array( $wgGroupsAddToSelf[$group] ) ) {
5192 $groups['add-self'] = $wgGroupsAddToSelf[$group];
5193 }
5194
5195 if ( empty( $wgGroupsRemoveFromSelf[$group] ) ) {
5196 // Do nothing
5197 } elseif ( $wgGroupsRemoveFromSelf[$group] === true ) {
5198 $groups['remove-self'] = self::getAllGroups();
5199 } elseif ( is_array( $wgGroupsRemoveFromSelf[$group] ) ) {
5200 $groups['remove-self'] = $wgGroupsRemoveFromSelf[$group];
5201 }
5202
5203 return $groups;
5204 }
5205
5206 /**
5207 * Returns an array of groups that this user can add and remove
5208 * @return array Array( 'add' => array( addablegroups ),
5209 * 'remove' => array( removablegroups ),
5210 * 'add-self' => array( addablegroups to self),
5211 * 'remove-self' => array( removable groups from self) )
5212 */
5213 public function changeableGroups() {
5214 if ( $this->isAllowed( 'userrights' ) ) {
5215 // This group gives the right to modify everything (reverse-
5216 // compatibility with old "userrights lets you change
5217 // everything")
5218 // Using array_merge to make the groups reindexed
5219 $all = array_merge( self::getAllGroups() );
5220 return [
5221 'add' => $all,
5222 'remove' => $all,
5223 'add-self' => [],
5224 'remove-self' => []
5225 ];
5226 }
5227
5228 // Okay, it's not so simple, we will have to go through the arrays
5229 $groups = [
5230 'add' => [],
5231 'remove' => [],
5232 'add-self' => [],
5233 'remove-self' => []
5234 ];
5235 $addergroups = $this->getEffectiveGroups();
5236
5237 foreach ( $addergroups as $addergroup ) {
5238 $groups = array_merge_recursive(
5239 $groups, $this->changeableByGroup( $addergroup )
5240 );
5241 $groups['add'] = array_unique( $groups['add'] );
5242 $groups['remove'] = array_unique( $groups['remove'] );
5243 $groups['add-self'] = array_unique( $groups['add-self'] );
5244 $groups['remove-self'] = array_unique( $groups['remove-self'] );
5245 }
5246 return $groups;
5247 }
5248
5249 /**
5250 * Deferred version of incEditCountImmediate()
5251 *
5252 * This function, rather than incEditCountImmediate(), should be used for
5253 * most cases as it avoids potential deadlocks caused by concurrent editing.
5254 */
5255 public function incEditCount() {
5256 wfGetDB( DB_MASTER )->onTransactionPreCommitOrIdle(
5257 function () {
5258 $this->incEditCountImmediate();
5259 },
5260 __METHOD__
5261 );
5262 }
5263
5264 /**
5265 * Increment the user's edit-count field.
5266 * Will have no effect for anonymous users.
5267 * @since 1.26
5268 */
5269 public function incEditCountImmediate() {
5270 if ( $this->isAnon() ) {
5271 return;
5272 }
5273
5274 $dbw = wfGetDB( DB_MASTER );
5275 // No rows will be "affected" if user_editcount is NULL
5276 $dbw->update(
5277 'user',
5278 [ 'user_editcount=user_editcount+1' ],
5279 [ 'user_id' => $this->getId(), 'user_editcount IS NOT NULL' ],
5280 __METHOD__
5281 );
5282 // Lazy initialization check...
5283 if ( $dbw->affectedRows() == 0 ) {
5284 // Now here's a goddamn hack...
5285 $dbr = wfGetDB( DB_REPLICA );
5286 if ( $dbr !== $dbw ) {
5287 // If we actually have a replica DB server, the count is
5288 // at least one behind because the current transaction
5289 // has not been committed and replicated.
5290 $this->mEditCount = $this->initEditCount( 1 );
5291 } else {
5292 // But if DB_REPLICA is selecting the master, then the
5293 // count we just read includes the revision that was
5294 // just added in the working transaction.
5295 $this->mEditCount = $this->initEditCount();
5296 }
5297 } else {
5298 if ( $this->mEditCount === null ) {
5299 $this->getEditCount();
5300 $dbr = wfGetDB( DB_REPLICA );
5301 $this->mEditCount += ( $dbr !== $dbw ) ? 1 : 0;
5302 } else {
5303 $this->mEditCount++;
5304 }
5305 }
5306 // Edit count in user cache too
5307 $this->invalidateCache();
5308 }
5309
5310 /**
5311 * Initialize user_editcount from data out of the revision table
5312 *
5313 * @param int $add Edits to add to the count from the revision table
5314 * @return int Number of edits
5315 */
5316 protected function initEditCount( $add = 0 ) {
5317 // Pull from a replica DB to be less cruel to servers
5318 // Accuracy isn't the point anyway here
5319 $dbr = wfGetDB( DB_REPLICA );
5320 $actorWhere = ActorMigration::newMigration()->getWhere( $dbr, 'rev_user', $this );
5321 $count = (int)$dbr->selectField(
5322 [ 'revision' ] + $actorWhere['tables'],
5323 'COUNT(*)',
5324 [ $actorWhere['conds'] ],
5325 __METHOD__,
5326 [],
5327 $actorWhere['joins']
5328 );
5329 $count = $count + $add;
5330
5331 $dbw = wfGetDB( DB_MASTER );
5332 $dbw->update(
5333 'user',
5334 [ 'user_editcount' => $count ],
5335 [ 'user_id' => $this->getId() ],
5336 __METHOD__
5337 );
5338
5339 return $count;
5340 }
5341
5342 /**
5343 * Get the description of a given right
5344 *
5345 * @since 1.29
5346 * @param string $right Right to query
5347 * @return string Localized description of the right
5348 */
5349 public static function getRightDescription( $right ) {
5350 $key = "right-$right";
5351 $msg = wfMessage( $key );
5352 return $msg->isDisabled() ? $right : $msg->text();
5353 }
5354
5355 /**
5356 * Get the name of a given grant
5357 *
5358 * @since 1.29
5359 * @param string $grant Grant to query
5360 * @return string Localized name of the grant
5361 */
5362 public static function getGrantName( $grant ) {
5363 $key = "grant-$grant";
5364 $msg = wfMessage( $key );
5365 return $msg->isDisabled() ? $grant : $msg->text();
5366 }
5367
5368 /**
5369 * Add a newuser log entry for this user.
5370 * Before 1.19 the return value was always true.
5371 *
5372 * @deprecated since 1.27, AuthManager handles logging
5373 * @param string|bool $action Account creation type.
5374 * - String, one of the following values:
5375 * - 'create' for an anonymous user creating an account for himself.
5376 * This will force the action's performer to be the created user itself,
5377 * no matter the value of $wgUser
5378 * - 'create2' for a logged in user creating an account for someone else
5379 * - 'byemail' when the created user will receive its password by e-mail
5380 * - 'autocreate' when the user is automatically created (such as by CentralAuth).
5381 * - Boolean means whether the account was created by e-mail (deprecated):
5382 * - true will be converted to 'byemail'
5383 * - false will be converted to 'create' if this object is the same as
5384 * $wgUser and to 'create2' otherwise
5385 * @param string $reason User supplied reason
5386 * @return bool true
5387 */
5388 public function addNewUserLogEntry( $action = false, $reason = '' ) {
5389 return true; // disabled
5390 }
5391
5392 /**
5393 * Add an autocreate newuser log entry for this user
5394 * Used by things like CentralAuth and perhaps other authplugins.
5395 * Consider calling addNewUserLogEntry() directly instead.
5396 *
5397 * @deprecated since 1.27, AuthManager handles logging
5398 * @return bool
5399 */
5400 public function addNewUserLogEntryAutoCreate() {
5401 $this->addNewUserLogEntry( 'autocreate' );
5402
5403 return true;
5404 }
5405
5406 /**
5407 * Load the user options either from cache, the database or an array
5408 *
5409 * @param array $data Rows for the current user out of the user_properties table
5410 */
5411 protected function loadOptions( $data = null ) {
5412 global $wgContLang;
5413
5414 $this->load();
5415
5416 if ( $this->mOptionsLoaded ) {
5417 return;
5418 }
5419
5420 $this->mOptions = self::getDefaultOptions();
5421
5422 if ( !$this->getId() ) {
5423 // For unlogged-in users, load language/variant options from request.
5424 // There's no need to do it for logged-in users: they can set preferences,
5425 // and handling of page content is done by $pageLang->getPreferredVariant() and such,
5426 // so don't override user's choice (especially when the user chooses site default).
5427 $variant = $wgContLang->getDefaultVariant();
5428 $this->mOptions['variant'] = $variant;
5429 $this->mOptions['language'] = $variant;
5430 $this->mOptionsLoaded = true;
5431 return;
5432 }
5433
5434 // Maybe load from the object
5435 if ( !is_null( $this->mOptionOverrides ) ) {
5436 wfDebug( "User: loading options for user " . $this->getId() . " from override cache.\n" );
5437 foreach ( $this->mOptionOverrides as $key => $value ) {
5438 $this->mOptions[$key] = $value;
5439 }
5440 } else {
5441 if ( !is_array( $data ) ) {
5442 wfDebug( "User: loading options for user " . $this->getId() . " from database.\n" );
5443 // Load from database
5444 $dbr = ( $this->queryFlagsUsed & self::READ_LATEST )
5445 ? wfGetDB( DB_MASTER )
5446 : wfGetDB( DB_REPLICA );
5447
5448 $res = $dbr->select(
5449 'user_properties',
5450 [ 'up_property', 'up_value' ],
5451 [ 'up_user' => $this->getId() ],
5452 __METHOD__
5453 );
5454
5455 $this->mOptionOverrides = [];
5456 $data = [];
5457 foreach ( $res as $row ) {
5458 // Convert '0' to 0. PHP's boolean conversion considers them both
5459 // false, but e.g. JavaScript considers the former as true.
5460 // @todo: T54542 Somehow determine the desired type (string/int/bool)
5461 // and convert all values here.
5462 if ( $row->up_value === '0' ) {
5463 $row->up_value = 0;
5464 }
5465 $data[$row->up_property] = $row->up_value;
5466 }
5467 }
5468
5469 // Convert the email blacklist from a new line delimited string
5470 // to an array of ids.
5471 if ( isset( $data['email-blacklist'] ) && $data['email-blacklist'] ) {
5472 $data['email-blacklist'] = array_map( 'intval', explode( "\n", $data['email-blacklist'] ) );
5473 }
5474
5475 foreach ( $data as $property => $value ) {
5476 $this->mOptionOverrides[$property] = $value;
5477 $this->mOptions[$property] = $value;
5478 }
5479 }
5480
5481 $this->mOptionsLoaded = true;
5482
5483 Hooks::run( 'UserLoadOptions', [ $this, &$this->mOptions ] );
5484 }
5485
5486 /**
5487 * Saves the non-default options for this user, as previously set e.g. via
5488 * setOption(), in the database's "user_properties" (preferences) table.
5489 * Usually used via saveSettings().
5490 */
5491 protected function saveOptions() {
5492 $this->loadOptions();
5493
5494 // Not using getOptions(), to keep hidden preferences in database
5495 $saveOptions = $this->mOptions;
5496
5497 // Convert usernames to ids.
5498 if ( isset( $this->mOptions['email-blacklist'] ) ) {
5499 if ( $this->mOptions['email-blacklist'] ) {
5500 $value = $this->mOptions['email-blacklist'];
5501 // Email Blacklist may be an array of ids or a string of new line
5502 // delimnated user names.
5503 if ( is_array( $value ) ) {
5504 $ids = array_filter( $value, 'is_numeric' );
5505 } else {
5506 $lookup = CentralIdLookup::factory();
5507 $ids = $lookup->centralIdsFromNames( explode( "\n", $value ), $this );
5508 }
5509 $this->mOptions['email-blacklist'] = $ids;
5510 $saveOptions['email-blacklist'] = implode( "\n", $this->mOptions['email-blacklist'] );
5511 } else {
5512 // If the blacklist is empty, set it to null rather than an empty string.
5513 $this->mOptions['email-blacklist'] = null;
5514 }
5515 }
5516
5517 // Allow hooks to abort, for instance to save to a global profile.
5518 // Reset options to default state before saving.
5519 if ( !Hooks::run( 'UserSaveOptions', [ $this, &$saveOptions ] ) ) {
5520 return;
5521 }
5522
5523 $userId = $this->getId();
5524
5525 $insert_rows = []; // all the new preference rows
5526 foreach ( $saveOptions as $key => $value ) {
5527 // Don't bother storing default values
5528 $defaultOption = self::getDefaultOption( $key );
5529 if ( ( $defaultOption === null && $value !== false && $value !== null )
5530 || $value != $defaultOption
5531 ) {
5532 $insert_rows[] = [
5533 'up_user' => $userId,
5534 'up_property' => $key,
5535 'up_value' => $value,
5536 ];
5537 }
5538 }
5539
5540 $dbw = wfGetDB( DB_MASTER );
5541
5542 $res = $dbw->select( 'user_properties',
5543 [ 'up_property', 'up_value' ], [ 'up_user' => $userId ], __METHOD__ );
5544
5545 // Find prior rows that need to be removed or updated. These rows will
5546 // all be deleted (the latter so that INSERT IGNORE applies the new values).
5547 $keysDelete = [];
5548 foreach ( $res as $row ) {
5549 if ( !isset( $saveOptions[$row->up_property] )
5550 || strcmp( $saveOptions[$row->up_property], $row->up_value ) != 0
5551 ) {
5552 $keysDelete[] = $row->up_property;
5553 }
5554 }
5555
5556 if ( count( $keysDelete ) ) {
5557 // Do the DELETE by PRIMARY KEY for prior rows.
5558 // In the past a very large portion of calls to this function are for setting
5559 // 'rememberpassword' for new accounts (a preference that has since been removed).
5560 // Doing a blanket per-user DELETE for new accounts with no rows in the table
5561 // caused gap locks on [max user ID,+infinity) which caused high contention since
5562 // updates would pile up on each other as they are for higher (newer) user IDs.
5563 // It might not be necessary these days, but it shouldn't hurt either.
5564 $dbw->delete( 'user_properties',
5565 [ 'up_user' => $userId, 'up_property' => $keysDelete ], __METHOD__ );
5566 }
5567 // Insert the new preference rows
5568 $dbw->insert( 'user_properties', $insert_rows, __METHOD__, [ 'IGNORE' ] );
5569 }
5570
5571 /**
5572 * Lazily instantiate and return a factory object for making passwords
5573 *
5574 * @deprecated since 1.27, create a PasswordFactory directly instead
5575 * @return PasswordFactory
5576 */
5577 public static function getPasswordFactory() {
5578 wfDeprecated( __METHOD__, '1.27' );
5579 $ret = new PasswordFactory();
5580 $ret->init( RequestContext::getMain()->getConfig() );
5581 return $ret;
5582 }
5583
5584 /**
5585 * Provide an array of HTML5 attributes to put on an input element
5586 * intended for the user to enter a new password. This may include
5587 * required, title, and/or pattern, depending on $wgMinimalPasswordLength.
5588 *
5589 * Do *not* use this when asking the user to enter his current password!
5590 * Regardless of configuration, users may have invalid passwords for whatever
5591 * reason (e.g., they were set before requirements were tightened up).
5592 * Only use it when asking for a new password, like on account creation or
5593 * ResetPass.
5594 *
5595 * Obviously, you still need to do server-side checking.
5596 *
5597 * NOTE: A combination of bugs in various browsers means that this function
5598 * actually just returns array() unconditionally at the moment. May as
5599 * well keep it around for when the browser bugs get fixed, though.
5600 *
5601 * @todo FIXME: This does not belong here; put it in Html or Linker or somewhere
5602 *
5603 * @deprecated since 1.27
5604 * @return array Array of HTML attributes suitable for feeding to
5605 * Html::element(), directly or indirectly. (Don't feed to Xml::*()!
5606 * That will get confused by the boolean attribute syntax used.)
5607 */
5608 public static function passwordChangeInputAttribs() {
5609 global $wgMinimalPasswordLength;
5610
5611 if ( $wgMinimalPasswordLength == 0 ) {
5612 return [];
5613 }
5614
5615 # Note that the pattern requirement will always be satisfied if the
5616 # input is empty, so we need required in all cases.
5617
5618 # @todo FIXME: T25769: This needs to not claim the password is required
5619 # if e-mail confirmation is being used. Since HTML5 input validation
5620 # is b0rked anyway in some browsers, just return nothing. When it's
5621 # re-enabled, fix this code to not output required for e-mail
5622 # registration.
5623 # $ret = array( 'required' );
5624 $ret = [];
5625
5626 # We can't actually do this right now, because Opera 9.6 will print out
5627 # the entered password visibly in its error message! When other
5628 # browsers add support for this attribute, or Opera fixes its support,
5629 # we can add support with a version check to avoid doing this on Opera
5630 # versions where it will be a problem. Reported to Opera as
5631 # DSK-262266, but they don't have a public bug tracker for us to follow.
5632 /*
5633 if ( $wgMinimalPasswordLength > 1 ) {
5634 $ret['pattern'] = '.{' . intval( $wgMinimalPasswordLength ) . ',}';
5635 $ret['title'] = wfMessage( 'passwordtooshort' )
5636 ->numParams( $wgMinimalPasswordLength )->text();
5637 }
5638 */
5639
5640 return $ret;
5641 }
5642
5643 /**
5644 * Return the list of user fields that should be selected to create
5645 * a new user object.
5646 * @deprecated since 1.31, use self::getQueryInfo() instead.
5647 * @return array
5648 */
5649 public static function selectFields() {
5650 wfDeprecated( __METHOD__, '1.31' );
5651 return [
5652 'user_id',
5653 'user_name',
5654 'user_real_name',
5655 'user_email',
5656 'user_touched',
5657 'user_token',
5658 'user_email_authenticated',
5659 'user_email_token',
5660 'user_email_token_expires',
5661 'user_registration',
5662 'user_editcount',
5663 ];
5664 }
5665
5666 /**
5667 * Return the tables, fields, and join conditions to be selected to create
5668 * a new user object.
5669 * @since 1.31
5670 * @return array With three keys:
5671 * - tables: (string[]) to include in the `$table` to `IDatabase->select()`
5672 * - fields: (string[]) to include in the `$vars` to `IDatabase->select()`
5673 * - joins: (array) to include in the `$join_conds` to `IDatabase->select()`
5674 */
5675 public static function getQueryInfo() {
5676 global $wgActorTableSchemaMigrationStage;
5677
5678 $ret = [
5679 'tables' => [ 'user' ],
5680 'fields' => [
5681 'user_id',
5682 'user_name',
5683 'user_real_name',
5684 'user_email',
5685 'user_touched',
5686 'user_token',
5687 'user_email_authenticated',
5688 'user_email_token',
5689 'user_email_token_expires',
5690 'user_registration',
5691 'user_editcount',
5692 ],
5693 'joins' => [],
5694 ];
5695 if ( $wgActorTableSchemaMigrationStage > MIGRATION_OLD ) {
5696 $ret['tables']['user_actor'] = 'actor';
5697 $ret['fields'][] = 'user_actor.actor_id';
5698 $ret['joins']['user_actor'] = [
5699 $wgActorTableSchemaMigrationStage === MIGRATION_NEW ? 'JOIN' : 'LEFT JOIN',
5700 [ 'user_actor.actor_user = user_id' ]
5701 ];
5702 }
5703 return $ret;
5704 }
5705
5706 /**
5707 * Factory function for fatal permission-denied errors
5708 *
5709 * @since 1.22
5710 * @param string $permission User right required
5711 * @return Status
5712 */
5713 static function newFatalPermissionDeniedStatus( $permission ) {
5714 global $wgLang;
5715
5716 $groups = [];
5717 foreach ( self::getGroupsWithPermission( $permission ) as $group ) {
5718 $groups[] = UserGroupMembership::getLink( $group, RequestContext::getMain(), 'wiki' );
5719 }
5720
5721 if ( $groups ) {
5722 return Status::newFatal( 'badaccess-groups', $wgLang->commaList( $groups ), count( $groups ) );
5723 } else {
5724 return Status::newFatal( 'badaccess-group0' );
5725 }
5726 }
5727
5728 /**
5729 * Get a new instance of this user that was loaded from the master via a locking read
5730 *
5731 * Use this instead of the main context User when updating that user. This avoids races
5732 * where that user was loaded from a replica DB or even the master but without proper locks.
5733 *
5734 * @return User|null Returns null if the user was not found in the DB
5735 * @since 1.27
5736 */
5737 public function getInstanceForUpdate() {
5738 if ( !$this->getId() ) {
5739 return null; // anon
5740 }
5741
5742 $user = self::newFromId( $this->getId() );
5743 if ( !$user->loadFromId( self::READ_EXCLUSIVE ) ) {
5744 return null;
5745 }
5746
5747 return $user;
5748 }
5749
5750 /**
5751 * Checks if two user objects point to the same user.
5752 *
5753 * @since 1.25
5754 * @param User $user
5755 * @return bool
5756 */
5757 public function equals( User $user ) {
5758 return $this->getName() === $user->getName();
5759 }
5760 }