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