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