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