* adding two hooks UserCryptPassword and UserComparePasswords to allow extensions...
[lhc/web/wiklou.git] / includes / User.php
1 <?php
2 /**
3 * Implements the User class for the %MediaWiki software.
4 * @file
5 */
6
7 /**
8 * \int Number of characters in user_token field.
9 * @ingroup Constants
10 */
11 define( 'USER_TOKEN_LENGTH', 32 );
12
13 /**
14 * \int Serialized record version.
15 * @ingroup Constants
16 */
17 define( 'MW_USER_VERSION', 6 );
18
19 /**
20 * \string Some punctuation to prevent editing from broken text-mangling proxies.
21 * @ingroup Constants
22 */
23 define( 'EDIT_TOKEN_SUFFIX', '+\\' );
24
25 /**
26 * Thrown by User::setPassword() on error.
27 * @ingroup Exception
28 */
29 class PasswordError extends MWException {
30 // NOP
31 }
32
33 /**
34 * The User object encapsulates all of the user-specific settings (user_id,
35 * name, rights, password, email address, options, last login time). Client
36 * classes use the getXXX() functions to access these fields. These functions
37 * do all the work of determining whether the user is logged in,
38 * whether the requested option can be satisfied from cookies or
39 * whether a database query is needed. Most of the settings needed
40 * for rendering normal pages are set in the cookie to minimize use
41 * of the database.
42 */
43 class User {
44
45 /**
46 * \type{\arrayof{\string}} A list of default user toggles, i.e., boolean user
47 * preferences that are displayed by Special:Preferences as checkboxes.
48 * This list can be extended via the UserToggles hook or by
49 * $wgContLang::getExtraUserToggles().
50 * @showinitializer
51 */
52 public static $mToggles = array(
53 'highlightbroken',
54 'justify',
55 'hideminor',
56 'extendwatchlist',
57 'usenewrc',
58 'numberheadings',
59 'showtoolbar',
60 'editondblclick',
61 'editsection',
62 'editsectiononrightclick',
63 'showtoc',
64 'rememberpassword',
65 'editwidth',
66 'watchcreations',
67 'watchdefault',
68 'watchmoves',
69 'watchdeletion',
70 'minordefault',
71 'previewontop',
72 'previewonfirst',
73 'nocache',
74 'enotifwatchlistpages',
75 'enotifusertalkpages',
76 'enotifminoredits',
77 'enotifrevealaddr',
78 'shownumberswatching',
79 'fancysig',
80 'externaleditor',
81 'externaldiff',
82 'showjumplinks',
83 'uselivepreview',
84 'forceeditsummary',
85 'watchlisthideminor',
86 'watchlisthidebots',
87 'watchlisthideown',
88 'watchlisthideanons',
89 'watchlisthideliu',
90 'ccmeonemails',
91 'diffonly',
92 'showhiddencats',
93 'noconvertlink',
94 'norollbackdiff',
95 );
96
97 /**
98 * \type{\arrayof{\string}} List of member variables which are saved to the
99 * shared cache (memcached). Any operation which changes the
100 * corresponding database fields must call a cache-clearing function.
101 * @showinitializer
102 */
103 static $mCacheVars = array(
104 // user table
105 'mId',
106 'mName',
107 'mRealName',
108 'mPassword',
109 'mNewpassword',
110 'mNewpassTime',
111 'mEmail',
112 'mOptions',
113 'mTouched',
114 'mToken',
115 'mEmailAuthenticated',
116 'mEmailToken',
117 'mEmailTokenExpires',
118 'mRegistration',
119 'mEditCount',
120 // user_group table
121 'mGroups',
122 );
123
124 /**
125 * \type{\arrayof{\string}} Core rights.
126 * Each of these should have a corresponding message of the form
127 * "right-$right".
128 * @showinitializer
129 */
130 static $mCoreRights = array(
131 'apihighlimits',
132 'autoconfirmed',
133 'autopatrol',
134 'bigdelete',
135 'block',
136 'blockemail',
137 'bot',
138 'browsearchive',
139 'createaccount',
140 'createpage',
141 'createtalk',
142 'delete',
143 'deletedhistory',
144 'edit',
145 'editinterface',
146 'editusercssjs',
147 'import',
148 'importupload',
149 'ipblock-exempt',
150 'markbotedits',
151 'minoredit',
152 'move',
153 'nominornewtalk',
154 'noratelimit',
155 'patrol',
156 'protect',
157 'proxyunbannable',
158 'purge',
159 'read',
160 'reupload',
161 'reupload-shared',
162 'rollback',
163 'siteadmin',
164 'suppressredirect',
165 'trackback',
166 'undelete',
167 'unwatchedpages',
168 'upload',
169 'upload_by_url',
170 'userrights',
171 );
172 /**
173 * \string Cached results of getAllRights()
174 */
175 static $mAllRights = false;
176
177 /** @name Cache variables */
178 //@{
179 var $mId, $mName, $mRealName, $mPassword, $mNewpassword, $mNewpassTime,
180 $mEmail, $mOptions, $mTouched, $mToken, $mEmailAuthenticated,
181 $mEmailToken, $mEmailTokenExpires, $mRegistration, $mGroups;
182 //@}
183
184 /**
185 * \bool Whether the cache variables have been loaded.
186 */
187 var $mDataLoaded, $mAuthLoaded;
188
189 /**
190 * \string Initialization data source if mDataLoaded==false. May be one of:
191 * - 'defaults' anonymous user initialised from class defaults
192 * - 'name' initialise from mName
193 * - 'id' initialise from mId
194 * - 'session' log in from cookies or session if possible
195 *
196 * Use the User::newFrom*() family of functions to set this.
197 */
198 var $mFrom;
199
200 /** @name Lazy-initialized variables, invalidated with clearInstanceCache */
201 //@{
202 var $mNewtalk, $mDatePreference, $mBlockedby, $mHash, $mSkin, $mRights,
203 $mBlockreason, $mBlock, $mEffectiveGroups, $mBlockedGlobally,
204 $mLocked, $mHideName;
205 //@}
206
207 /**
208 * Lightweight constructor for an anonymous user.
209 * Use the User::newFrom* factory functions for other kinds of users.
210 *
211 * @see newFromName()
212 * @see newFromId()
213 * @see newFromConfirmationCode()
214 * @see newFromSession()
215 * @see newFromRow()
216 */
217 function User() {
218 $this->clearInstanceCache( 'defaults' );
219 }
220
221 /**
222 * Load the user table data for this object from the source given by mFrom.
223 */
224 function load() {
225 if ( $this->mDataLoaded ) {
226 return;
227 }
228 wfProfileIn( __METHOD__ );
229
230 # Set it now to avoid infinite recursion in accessors
231 $this->mDataLoaded = true;
232
233 switch ( $this->mFrom ) {
234 case 'defaults':
235 $this->loadDefaults();
236 break;
237 case 'name':
238 $this->mId = self::idFromName( $this->mName );
239 if ( !$this->mId ) {
240 # Nonexistent user placeholder object
241 $this->loadDefaults( $this->mName );
242 } else {
243 $this->loadFromId();
244 }
245 break;
246 case 'id':
247 $this->loadFromId();
248 break;
249 case 'session':
250 $this->loadFromSession();
251 wfRunHooks( 'UserLoadAfterLoadFromSession', array( $this ) );
252 break;
253 default:
254 throw new MWException( "Unrecognised value for User->mFrom: \"{$this->mFrom}\"" );
255 }
256 wfProfileOut( __METHOD__ );
257 }
258
259 /**
260 * Load user table data, given mId has already been set.
261 * @return \bool false if the ID does not exist, true otherwise
262 * @private
263 */
264 function loadFromId() {
265 global $wgMemc;
266 if ( $this->mId == 0 ) {
267 $this->loadDefaults();
268 return false;
269 }
270
271 # Try cache
272 $key = wfMemcKey( 'user', 'id', $this->mId );
273 $data = $wgMemc->get( $key );
274 if ( !is_array( $data ) || $data['mVersion'] < MW_USER_VERSION ) {
275 # Object is expired, load from DB
276 $data = false;
277 }
278
279 if ( !$data ) {
280 wfDebug( "Cache miss for user {$this->mId}\n" );
281 # Load from DB
282 if ( !$this->loadFromDatabase() ) {
283 # Can't load from ID, user is anonymous
284 return false;
285 }
286 $this->saveToCache();
287 } else {
288 wfDebug( "Got user {$this->mId} from cache\n" );
289 # Restore from cache
290 foreach ( self::$mCacheVars as $name ) {
291 $this->$name = $data[$name];
292 }
293 }
294 return true;
295 }
296
297 /**
298 * Save user data to the shared cache
299 */
300 function saveToCache() {
301 $this->load();
302 $this->loadGroups();
303 if ( $this->isAnon() ) {
304 // Anonymous users are uncached
305 return;
306 }
307 $data = array();
308 foreach ( self::$mCacheVars as $name ) {
309 $data[$name] = $this->$name;
310 }
311 $data['mVersion'] = MW_USER_VERSION;
312 $key = wfMemcKey( 'user', 'id', $this->mId );
313 global $wgMemc;
314 $wgMemc->set( $key, $data );
315 }
316
317
318 /** @name newFrom*() static factory methods */
319 //@{
320
321 /**
322 * Static factory method for creation from username.
323 *
324 * This is slightly less efficient than newFromId(), so use newFromId() if
325 * you have both an ID and a name handy.
326 *
327 * @param $name \string Username, validated by Title::newFromText()
328 * @param $validate \mixed Validate username. Takes the same parameters as
329 * User::getCanonicalName(), except that true is accepted as an alias
330 * for 'valid', for BC.
331 *
332 * @return \type{User} The User object, or null if the username is invalid. If the
333 * username is not present in the database, the result will be a user object
334 * with a name, zero user ID and default settings.
335 */
336 static function newFromName( $name, $validate = 'valid' ) {
337 if ( $validate === true ) {
338 $validate = 'valid';
339 }
340 $name = self::getCanonicalName( $name, $validate );
341 if ( $name === false ) {
342 return null;
343 } else {
344 # Create unloaded user object
345 $u = new User;
346 $u->mName = $name;
347 $u->mFrom = 'name';
348 return $u;
349 }
350 }
351
352 /**
353 * Static factory method for creation from a given user ID.
354 *
355 * @param $id \int Valid user ID
356 * @return \type{User} The corresponding User object
357 */
358 static function newFromId( $id ) {
359 $u = new User;
360 $u->mId = $id;
361 $u->mFrom = 'id';
362 return $u;
363 }
364
365 /**
366 * Factory method to fetch whichever user has a given email confirmation code.
367 * This code is generated when an account is created or its e-mail address
368 * has changed.
369 *
370 * If the code is invalid or has expired, returns NULL.
371 *
372 * @param $code \string Confirmation code
373 * @return \type{User}
374 */
375 static function newFromConfirmationCode( $code ) {
376 $dbr = wfGetDB( DB_SLAVE );
377 $id = $dbr->selectField( 'user', 'user_id', array(
378 'user_email_token' => md5( $code ),
379 'user_email_token_expires > ' . $dbr->addQuotes( $dbr->timestamp() ),
380 ) );
381 if( $id !== false ) {
382 return User::newFromId( $id );
383 } else {
384 return null;
385 }
386 }
387
388 /**
389 * Create a new user object using data from session or cookies. If the
390 * login credentials are invalid, the result is an anonymous user.
391 *
392 * @return \type{User}
393 */
394 static function newFromSession() {
395 $user = new User;
396 $user->mFrom = 'session';
397 return $user;
398 }
399
400 /**
401 * Create a new user object from a user row.
402 * The row should have all fields from the user table in it.
403 * @param $row array A row from the user table
404 * @return \type{User}
405 */
406 static function newFromRow( $row ) {
407 $user = new User;
408 $user->loadFromRow( $row );
409 return $user;
410 }
411
412 //@}
413
414
415 /**
416 * Get the username corresponding to a given user ID
417 * @param $id \int User ID
418 * @return \string The corresponding username
419 */
420 static function whoIs( $id ) {
421 $dbr = wfGetDB( DB_SLAVE );
422 return $dbr->selectField( 'user', 'user_name', array( 'user_id' => $id ), 'User::whoIs' );
423 }
424
425 /**
426 * Get the real name of a user given their user ID
427 *
428 * @param $id \int User ID
429 * @return \string The corresponding user's real name
430 */
431 static function whoIsReal( $id ) {
432 $dbr = wfGetDB( DB_SLAVE );
433 return $dbr->selectField( 'user', 'user_real_name', array( 'user_id' => $id ), __METHOD__ );
434 }
435
436 /**
437 * Get database id given a user name
438 * @param $name \string Username
439 * @return \types{\int,\null} The corresponding user's ID, or null if user is nonexistent
440 */
441 static function idFromName( $name ) {
442 $nt = Title::makeTitleSafe( NS_USER, $name );
443 if( is_null( $nt ) ) {
444 # Illegal name
445 return null;
446 }
447 $dbr = wfGetDB( DB_SLAVE );
448 $s = $dbr->selectRow( 'user', array( 'user_id' ), array( 'user_name' => $nt->getText() ), __METHOD__ );
449
450 if ( $s === false ) {
451 return 0;
452 } else {
453 return $s->user_id;
454 }
455 }
456
457 /**
458 * Does the string match an anonymous IPv4 address?
459 *
460 * This function exists for username validation, in order to reject
461 * usernames which are similar in form to IP addresses. Strings such
462 * as 300.300.300.300 will return true because it looks like an IP
463 * address, despite not being strictly valid.
464 *
465 * We match \d{1,3}\.\d{1,3}\.\d{1,3}\.xxx as an anonymous IP
466 * address because the usemod software would "cloak" anonymous IP
467 * addresses like this, if we allowed accounts like this to be created
468 * new users could get the old edits of these anonymous users.
469 *
470 * @param $name \string String to match
471 * @return \bool True or false
472 */
473 static function isIP( $name ) {
474 return preg_match('/^\d{1,3}\.\d{1,3}\.\d{1,3}\.(?:xxx|\d{1,3})$/',$name) || IP::isIPv6($name);
475 }
476
477 /**
478 * Is the input a valid username?
479 *
480 * Checks if the input is a valid username, we don't want an empty string,
481 * an IP address, anything that containins slashes (would mess up subpages),
482 * is longer than the maximum allowed username size or doesn't begin with
483 * a capital letter.
484 *
485 * @param $name \string String to match
486 * @return \bool True or false
487 */
488 static function isValidUserName( $name ) {
489 global $wgContLang, $wgMaxNameChars;
490
491 if ( $name == ''
492 || User::isIP( $name )
493 || strpos( $name, '/' ) !== false
494 || strlen( $name ) > $wgMaxNameChars
495 || $name != $wgContLang->ucfirst( $name ) ) {
496 wfDebugLog( 'username', __METHOD__ .
497 ": '$name' invalid due to empty, IP, slash, length, or lowercase" );
498 return false;
499 }
500
501 // Ensure that the name can't be misresolved as a different title,
502 // such as with extra namespace keys at the start.
503 $parsed = Title::newFromText( $name );
504 if( is_null( $parsed )
505 || $parsed->getNamespace()
506 || strcmp( $name, $parsed->getPrefixedText() ) ) {
507 wfDebugLog( 'username', __METHOD__ .
508 ": '$name' invalid due to ambiguous prefixes" );
509 return false;
510 }
511
512 // Check an additional blacklist of troublemaker characters.
513 // Should these be merged into the title char list?
514 $unicodeBlacklist = '/[' .
515 '\x{0080}-\x{009f}' . # iso-8859-1 control chars
516 '\x{00a0}' . # non-breaking space
517 '\x{2000}-\x{200f}' . # various whitespace
518 '\x{2028}-\x{202f}' . # breaks and control chars
519 '\x{3000}' . # ideographic space
520 '\x{e000}-\x{f8ff}' . # private use
521 ']/u';
522 if( preg_match( $unicodeBlacklist, $name ) ) {
523 wfDebugLog( 'username', __METHOD__ .
524 ": '$name' invalid due to blacklisted characters" );
525 return false;
526 }
527
528 return true;
529 }
530
531 /**
532 * Usernames which fail to pass this function will be blocked
533 * from user login and new account registrations, but may be used
534 * internally by batch processes.
535 *
536 * If an account already exists in this form, login will be blocked
537 * by a failure to pass this function.
538 *
539 * @param $name \string String to match
540 * @return \bool True or false
541 */
542 static function isUsableName( $name ) {
543 global $wgReservedUsernames;
544 // Must be a valid username, obviously ;)
545 if ( !self::isValidUserName( $name ) ) {
546 return false;
547 }
548
549 static $reservedUsernames = false;
550 if ( !$reservedUsernames ) {
551 $reservedUsernames = $wgReservedUsernames;
552 wfRunHooks( 'UserGetReservedNames', array( &$reservedUsernames ) );
553 }
554
555 // Certain names may be reserved for batch processes.
556 foreach ( $reservedUsernames as $reserved ) {
557 if ( substr( $reserved, 0, 4 ) == 'msg:' ) {
558 $reserved = wfMsgForContent( substr( $reserved, 4 ) );
559 }
560 if ( $reserved == $name ) {
561 return false;
562 }
563 }
564 return true;
565 }
566
567 /**
568 * Usernames which fail to pass this function will be blocked
569 * from new account registrations, but may be used internally
570 * either by batch processes or by user accounts which have
571 * already been created.
572 *
573 * Additional character blacklisting may be added here
574 * rather than in isValidUserName() to avoid disrupting
575 * existing accounts.
576 *
577 * @param $name \string String to match
578 * @return \bool True or false
579 */
580 static function isCreatableName( $name ) {
581 return
582 self::isUsableName( $name ) &&
583
584 // Registration-time character blacklisting...
585 strpos( $name, '@' ) === false;
586 }
587
588 /**
589 * Is the input a valid password for this user?
590 *
591 * @param $password \string Desired password
592 * @return \bool True or false
593 */
594 function isValidPassword( $password ) {
595 global $wgMinimalPasswordLength, $wgContLang;
596
597 $result = null;
598 if( !wfRunHooks( 'isValidPassword', array( $password, &$result, $this ) ) )
599 return $result;
600 if( $result === false )
601 return false;
602
603 // Password needs to be long enough, and can't be the same as the username
604 return strlen( $password ) >= $wgMinimalPasswordLength
605 && $wgContLang->lc( $password ) !== $wgContLang->lc( $this->mName );
606 }
607
608 /**
609 * Does a string look like an e-mail address?
610 *
611 * There used to be a regular expression here, it got removed because it
612 * rejected valid addresses. Actually just check if there is '@' somewhere
613 * in the given address.
614 *
615 * @todo Check for RFC 2822 compilance (bug 959)
616 *
617 * @param $addr \string E-mail address
618 * @return \bool True or false
619 */
620 public static function isValidEmailAddr( $addr ) {
621 $result = null;
622 if( !wfRunHooks( 'isValidEmailAddr', array( $addr, &$result ) ) ) {
623 return $result;
624 }
625
626 return strpos( $addr, '@' ) !== false;
627 }
628
629 /**
630 * Given unvalidated user input, return a canonical username, or false if
631 * the username is invalid.
632 * @param $name \string User input
633 * @param $validate \types{\string,\bool} Type of validation to use:
634 * - false No validation
635 * - 'valid' Valid for batch processes
636 * - 'usable' Valid for batch processes and login
637 * - 'creatable' Valid for batch processes, login and account creation
638 */
639 static function getCanonicalName( $name, $validate = 'valid' ) {
640 # Force usernames to capital
641 global $wgContLang;
642 $name = $wgContLang->ucfirst( $name );
643
644 # Reject names containing '#'; these will be cleaned up
645 # with title normalisation, but then it's too late to
646 # check elsewhere
647 if( strpos( $name, '#' ) !== false )
648 return false;
649
650 # Clean up name according to title rules
651 $t = ($validate === 'valid') ?
652 Title::newFromText( $name ) : Title::makeTitle( NS_USER, $name );
653 # Check for invalid titles
654 if( is_null( $t ) ) {
655 return false;
656 }
657
658 # Reject various classes of invalid names
659 $name = $t->getText();
660 global $wgAuth;
661 $name = $wgAuth->getCanonicalName( $t->getText() );
662
663 switch ( $validate ) {
664 case false:
665 break;
666 case 'valid':
667 if ( !User::isValidUserName( $name ) ) {
668 $name = false;
669 }
670 break;
671 case 'usable':
672 if ( !User::isUsableName( $name ) ) {
673 $name = false;
674 }
675 break;
676 case 'creatable':
677 if ( !User::isCreatableName( $name ) ) {
678 $name = false;
679 }
680 break;
681 default:
682 throw new MWException( 'Invalid parameter value for $validate in '.__METHOD__ );
683 }
684 return $name;
685 }
686
687 /**
688 * Count the number of edits of a user
689 * @todo It should not be static and some day should be merged as proper member function / deprecated -- domas
690 *
691 * @param $uid \int User ID to check
692 * @return \int The user's edit count
693 */
694 static function edits( $uid ) {
695 wfProfileIn( __METHOD__ );
696 $dbr = wfGetDB( DB_SLAVE );
697 // check if the user_editcount field has been initialized
698 $field = $dbr->selectField(
699 'user', 'user_editcount',
700 array( 'user_id' => $uid ),
701 __METHOD__
702 );
703
704 if( $field === null ) { // it has not been initialized. do so.
705 $dbw = wfGetDB( DB_MASTER );
706 $count = $dbr->selectField(
707 'revision', 'count(*)',
708 array( 'rev_user' => $uid ),
709 __METHOD__
710 );
711 $dbw->update(
712 'user',
713 array( 'user_editcount' => $count ),
714 array( 'user_id' => $uid ),
715 __METHOD__
716 );
717 } else {
718 $count = $field;
719 }
720 wfProfileOut( __METHOD__ );
721 return $count;
722 }
723
724 /**
725 * Return a random password. Sourced from mt_rand, so it's not particularly secure.
726 * @todo hash random numbers to improve security, like generateToken()
727 *
728 * @return \string New random password
729 */
730 static function randomPassword() {
731 global $wgMinimalPasswordLength;
732 $pwchars = 'ABCDEFGHJKLMNPQRSTUVWXYZabcdefghjkmnpqrstuvwxyz';
733 $l = strlen( $pwchars ) - 1;
734
735 $pwlength = max( 7, $wgMinimalPasswordLength );
736 $digit = mt_rand(0, $pwlength - 1);
737 $np = '';
738 for ( $i = 0; $i < $pwlength; $i++ ) {
739 $np .= $i == $digit ? chr( mt_rand(48, 57) ) : $pwchars{ mt_rand(0, $l)};
740 }
741 return $np;
742 }
743
744 /**
745 * Set cached properties to default.
746 *
747 * @note This no longer clears uncached lazy-initialised properties;
748 * the constructor does that instead.
749 * @private
750 */
751 function loadDefaults( $name = false ) {
752 wfProfileIn( __METHOD__ );
753
754 global $wgCookiePrefix;
755
756 $this->mId = 0;
757 $this->mName = $name;
758 $this->mRealName = '';
759 $this->mPassword = $this->mNewpassword = '';
760 $this->mNewpassTime = null;
761 $this->mEmail = '';
762 $this->mOptions = null; # Defer init
763
764 if ( isset( $_COOKIE[$wgCookiePrefix.'LoggedOut'] ) ) {
765 $this->mTouched = wfTimestamp( TS_MW, $_COOKIE[$wgCookiePrefix.'LoggedOut'] );
766 } else {
767 $this->mTouched = '0'; # Allow any pages to be cached
768 }
769
770 $this->setToken(); # Random
771 $this->mEmailAuthenticated = null;
772 $this->mEmailToken = '';
773 $this->mEmailTokenExpires = null;
774 $this->mRegistration = wfTimestamp( TS_MW );
775 $this->mGroups = array();
776
777 wfRunHooks( 'UserLoadDefaults', array( $this, $name ) );
778
779 wfProfileOut( __METHOD__ );
780 }
781
782 /**
783 * @deprecated Use wfSetupSession().
784 */
785 function SetupSession() {
786 wfDeprecated( __METHOD__ );
787 wfSetupSession();
788 }
789
790 /**
791 * Load user data from the session or login cookie. If there are no valid
792 * credentials, initialises the user as an anonymous user.
793 * @return \bool True if the user is logged in, false otherwise.
794 */
795 private function loadFromSession() {
796 global $wgMemc, $wgCookiePrefix;
797
798 $result = null;
799 wfRunHooks( 'UserLoadFromSession', array( $this, &$result ) );
800 if ( $result !== null ) {
801 return $result;
802 }
803
804 if ( isset( $_COOKIE["{$wgCookiePrefix}UserID"] ) ) {
805 $sId = intval( $_COOKIE["{$wgCookiePrefix}UserID"] );
806 if( isset( $_SESSION['wsUserID'] ) && $sId != $_SESSION['wsUserID'] ) {
807 $this->loadDefaults(); // Possible collision!
808 wfDebugLog( 'loginSessions', "Session user ID ({$_SESSION['wsUserID']}) and
809 cookie user ID ($sId) don't match!" );
810 return false;
811 }
812 $_SESSION['wsUserID'] = $sId;
813 } else if ( isset( $_SESSION['wsUserID'] ) ) {
814 if ( $_SESSION['wsUserID'] != 0 ) {
815 $sId = $_SESSION['wsUserID'];
816 } else {
817 $this->loadDefaults();
818 return false;
819 }
820 } else {
821 $this->loadDefaults();
822 return false;
823 }
824
825 if ( isset( $_SESSION['wsUserName'] ) ) {
826 $sName = $_SESSION['wsUserName'];
827 } else if ( isset( $_COOKIE["{$wgCookiePrefix}UserName"] ) ) {
828 $sName = $_COOKIE["{$wgCookiePrefix}UserName"];
829 $_SESSION['wsUserName'] = $sName;
830 } else {
831 $this->loadDefaults();
832 return false;
833 }
834
835 $passwordCorrect = FALSE;
836 $this->mId = $sId;
837 if ( !$this->loadFromId() ) {
838 # Not a valid ID, loadFromId has switched the object to anon for us
839 return false;
840 }
841
842 if ( isset( $_SESSION['wsToken'] ) ) {
843 $passwordCorrect = $_SESSION['wsToken'] == $this->mToken;
844 $from = 'session';
845 } else if ( isset( $_COOKIE["{$wgCookiePrefix}Token"] ) ) {
846 $passwordCorrect = $this->mToken == $_COOKIE["{$wgCookiePrefix}Token"];
847 $from = 'cookie';
848 } else {
849 # No session or persistent login cookie
850 $this->loadDefaults();
851 return false;
852 }
853
854 if ( ( $sName == $this->mName ) && $passwordCorrect ) {
855 $_SESSION['wsToken'] = $this->mToken;
856 wfDebug( "Logged in from $from\n" );
857 return true;
858 } else {
859 # Invalid credentials
860 wfDebug( "Can't log in from $from, invalid credentials\n" );
861 $this->loadDefaults();
862 return false;
863 }
864 }
865
866 /**
867 * Load user and user_group data from the database.
868 * $this::mId must be set, this is how the user is identified.
869 *
870 * @return \bool True if the user exists, false if the user is anonymous
871 * @private
872 */
873 function loadFromDatabase() {
874 # Paranoia
875 $this->mId = intval( $this->mId );
876
877 /** Anonymous user */
878 if( !$this->mId ) {
879 $this->loadDefaults();
880 return false;
881 }
882
883 $dbr = wfGetDB( DB_MASTER );
884 $s = $dbr->selectRow( 'user', '*', array( 'user_id' => $this->mId ), __METHOD__ );
885
886 if ( $s !== false ) {
887 # Initialise user table data
888 $this->loadFromRow( $s );
889 $this->mGroups = null; // deferred
890 $this->getEditCount(); // revalidation for nulls
891 return true;
892 } else {
893 # Invalid user_id
894 $this->mId = 0;
895 $this->loadDefaults();
896 return false;
897 }
898 }
899
900 /**
901 * Initialize this object from a row from the user table.
902 *
903 * @param $row \type{\arrayof{\mixed}} Row from the user table to load.
904 */
905 function loadFromRow( $row ) {
906 $this->mDataLoaded = true;
907
908 if ( isset( $row->user_id ) ) {
909 $this->mId = $row->user_id;
910 }
911 $this->mName = $row->user_name;
912 $this->mRealName = $row->user_real_name;
913 $this->mPassword = $row->user_password;
914 $this->mNewpassword = $row->user_newpassword;
915 $this->mNewpassTime = wfTimestampOrNull( TS_MW, $row->user_newpass_time );
916 $this->mEmail = $row->user_email;
917 $this->decodeOptions( $row->user_options );
918 $this->mTouched = wfTimestamp(TS_MW,$row->user_touched);
919 $this->mToken = $row->user_token;
920 $this->mEmailAuthenticated = wfTimestampOrNull( TS_MW, $row->user_email_authenticated );
921 $this->mEmailToken = $row->user_email_token;
922 $this->mEmailTokenExpires = wfTimestampOrNull( TS_MW, $row->user_email_token_expires );
923 $this->mRegistration = wfTimestampOrNull( TS_MW, $row->user_registration );
924 $this->mEditCount = $row->user_editcount;
925 }
926
927 /**
928 * Load the groups from the database if they aren't already loaded.
929 * @private
930 */
931 function loadGroups() {
932 if ( is_null( $this->mGroups ) ) {
933 $dbr = wfGetDB( DB_MASTER );
934 $res = $dbr->select( 'user_groups',
935 array( 'ug_group' ),
936 array( 'ug_user' => $this->mId ),
937 __METHOD__ );
938 $this->mGroups = array();
939 while( $row = $dbr->fetchObject( $res ) ) {
940 $this->mGroups[] = $row->ug_group;
941 }
942 }
943 }
944
945 /**
946 * Clear various cached data stored in this object.
947 * @param $reloadFrom \string Reload user and user_groups table data from a
948 * given source. May be "name", "id", "defaults", "session", or false for
949 * no reload.
950 */
951 function clearInstanceCache( $reloadFrom = false ) {
952 $this->mNewtalk = -1;
953 $this->mDatePreference = null;
954 $this->mBlockedby = -1; # Unset
955 $this->mHash = false;
956 $this->mSkin = null;
957 $this->mRights = null;
958 $this->mEffectiveGroups = null;
959
960 if ( $reloadFrom ) {
961 $this->mDataLoaded = false;
962 $this->mFrom = $reloadFrom;
963 }
964 }
965
966 /**
967 * Combine the language default options with any site-specific options
968 * and add the default language variants.
969 *
970 * @return \type{\arrayof{\string}} Array of options
971 */
972 static function getDefaultOptions() {
973 global $wgNamespacesToBeSearchedDefault;
974 /**
975 * Site defaults will override the global/language defaults
976 */
977 global $wgDefaultUserOptions, $wgContLang;
978 $defOpt = $wgDefaultUserOptions + $wgContLang->getDefaultUserOptionOverrides();
979
980 /**
981 * default language setting
982 */
983 $variant = $wgContLang->getPreferredVariant( false );
984 $defOpt['variant'] = $variant;
985 $defOpt['language'] = $variant;
986
987 foreach( $wgNamespacesToBeSearchedDefault as $nsnum => $val ) {
988 $defOpt['searchNs'.$nsnum] = $val;
989 }
990 return $defOpt;
991 }
992
993 /**
994 * Get a given default option value.
995 *
996 * @param $opt \string Name of option to retrieve
997 * @return \string Default option value
998 */
999 public static function getDefaultOption( $opt ) {
1000 $defOpts = self::getDefaultOptions();
1001 if( isset( $defOpts[$opt] ) ) {
1002 return $defOpts[$opt];
1003 } else {
1004 return '';
1005 }
1006 }
1007
1008 /**
1009 * Get a list of user toggle names
1010 * @return \type{\arrayof{\string}} Array of user toggle names
1011 */
1012 static function getToggles() {
1013 global $wgContLang;
1014 $extraToggles = array();
1015 wfRunHooks( 'UserToggles', array( &$extraToggles ) );
1016 return array_merge( self::$mToggles, $extraToggles, $wgContLang->getExtraUserToggles() );
1017 }
1018
1019
1020 /**
1021 * Get blocking information
1022 * @private
1023 * @param $bFromSlave \bool Whether to check the slave database first. To
1024 * improve performance, non-critical checks are done
1025 * against slaves. Check when actually saving should be
1026 * done against master.
1027 */
1028 function getBlockedStatus( $bFromSlave = true ) {
1029 global $wgEnableSorbs, $wgProxyWhitelist;
1030
1031 if ( -1 != $this->mBlockedby ) {
1032 wfDebug( "User::getBlockedStatus: already loaded.\n" );
1033 return;
1034 }
1035
1036 wfProfileIn( __METHOD__ );
1037 wfDebug( __METHOD__.": checking...\n" );
1038
1039 // Initialize data...
1040 // Otherwise something ends up stomping on $this->mBlockedby when
1041 // things get lazy-loaded later, causing false positive block hits
1042 // due to -1 !== 0. Probably session-related... Nothing should be
1043 // overwriting mBlockedby, surely?
1044 $this->load();
1045
1046 $this->mBlockedby = 0;
1047 $this->mHideName = 0;
1048 $this->mAllowUsertalk = 0;
1049 $ip = wfGetIP();
1050
1051 if ($this->isAllowed( 'ipblock-exempt' ) ) {
1052 # Exempt from all types of IP-block
1053 $ip = '';
1054 }
1055
1056 # User/IP blocking
1057 $this->mBlock = new Block();
1058 $this->mBlock->fromMaster( !$bFromSlave );
1059 if ( $this->mBlock->load( $ip , $this->mId ) ) {
1060 wfDebug( __METHOD__.": Found block.\n" );
1061 $this->mBlockedby = $this->mBlock->mBy;
1062 $this->mBlockreason = $this->mBlock->mReason;
1063 $this->mHideName = $this->mBlock->mHideName;
1064 $this->mAllowUsertalk = $this->mBlock->mAllowUsertalk;
1065 if ( $this->isLoggedIn() ) {
1066 $this->spreadBlock();
1067 }
1068 } else {
1069 // Bug 13611: don't remove mBlock here, to allow account creation blocks to
1070 // apply to users. Note that the existence of $this->mBlock is not used to
1071 // check for edit blocks, $this->mBlockedby is instead.
1072 }
1073
1074 # Proxy blocking
1075 if ( !$this->isAllowed('proxyunbannable') && !in_array( $ip, $wgProxyWhitelist ) ) {
1076 # Local list
1077 if ( wfIsLocallyBlockedProxy( $ip ) ) {
1078 $this->mBlockedby = wfMsg( 'proxyblocker' );
1079 $this->mBlockreason = wfMsg( 'proxyblockreason' );
1080 }
1081
1082 # DNSBL
1083 if ( !$this->mBlockedby && $wgEnableSorbs && !$this->getID() ) {
1084 if ( $this->inSorbsBlacklist( $ip ) ) {
1085 $this->mBlockedby = wfMsg( 'sorbs' );
1086 $this->mBlockreason = wfMsg( 'sorbsreason' );
1087 }
1088 }
1089 }
1090
1091 # Extensions
1092 wfRunHooks( 'GetBlockedStatus', array( &$this ) );
1093
1094 wfProfileOut( __METHOD__ );
1095 }
1096
1097 /**
1098 * Whether the given IP is in the SORBS blacklist.
1099 *
1100 * @param $ip \string IP to check
1101 * @return \bool True if blacklisted.
1102 */
1103 function inSorbsBlacklist( $ip ) {
1104 global $wgEnableSorbs, $wgSorbsUrl;
1105
1106 return $wgEnableSorbs &&
1107 $this->inDnsBlacklist( $ip, $wgSorbsUrl );
1108 }
1109
1110 /**
1111 * Whether the given IP is in a given DNS blacklist.
1112 *
1113 * @param $ip \string IP to check
1114 * @param $base \string URL of the DNS blacklist
1115 * @return \bool True if blacklisted.
1116 */
1117 function inDnsBlacklist( $ip, $base ) {
1118 wfProfileIn( __METHOD__ );
1119
1120 $found = false;
1121 $host = '';
1122 // FIXME: IPv6 ??? (http://bugs.php.net/bug.php?id=33170)
1123 if( IP::isIPv4($ip) ) {
1124 # Make hostname
1125 $host = "$ip.$base";
1126
1127 # Send query
1128 $ipList = gethostbynamel( $host );
1129
1130 if( $ipList ) {
1131 wfDebug( "Hostname $host is {$ipList[0]}, it's a proxy says $base!\n" );
1132 $found = true;
1133 } else {
1134 wfDebug( "Requested $host, not found in $base.\n" );
1135 }
1136 }
1137
1138 wfProfileOut( __METHOD__ );
1139 return $found;
1140 }
1141
1142 /**
1143 * Is this user subject to rate limiting?
1144 *
1145 * @return \bool True if rate limited
1146 */
1147 public function isPingLimitable() {
1148 global $wgRateLimitsExcludedGroups;
1149 if( array_intersect( $this->getEffectiveGroups(), $wgRateLimitsExcludedGroups ) ) {
1150 // Deprecated, but kept for backwards-compatibility config
1151 return false;
1152 }
1153 return !$this->isAllowed('noratelimit');
1154 }
1155
1156 /**
1157 * Primitive rate limits: enforce maximum actions per time period
1158 * to put a brake on flooding.
1159 *
1160 * @note When using a shared cache like memcached, IP-address
1161 * last-hit counters will be shared across wikis.
1162 *
1163 * @param $action \string Action to enforce; 'edit' if unspecified
1164 * @return \bool True if a rate limiter was tripped
1165 */
1166 function pingLimiter( $action='edit' ) {
1167
1168 # Call the 'PingLimiter' hook
1169 $result = false;
1170 if( !wfRunHooks( 'PingLimiter', array( &$this, $action, $result ) ) ) {
1171 return $result;
1172 }
1173
1174 global $wgRateLimits;
1175 if( !isset( $wgRateLimits[$action] ) ) {
1176 return false;
1177 }
1178
1179 # Some groups shouldn't trigger the ping limiter, ever
1180 if( !$this->isPingLimitable() )
1181 return false;
1182
1183 global $wgMemc, $wgRateLimitLog;
1184 wfProfileIn( __METHOD__ );
1185
1186 $limits = $wgRateLimits[$action];
1187 $keys = array();
1188 $id = $this->getId();
1189 $ip = wfGetIP();
1190 $userLimit = false;
1191
1192 if( isset( $limits['anon'] ) && $id == 0 ) {
1193 $keys[wfMemcKey( 'limiter', $action, 'anon' )] = $limits['anon'];
1194 }
1195
1196 if( isset( $limits['user'] ) && $id != 0 ) {
1197 $userLimit = $limits['user'];
1198 }
1199 if( $this->isNewbie() ) {
1200 if( isset( $limits['newbie'] ) && $id != 0 ) {
1201 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $limits['newbie'];
1202 }
1203 if( isset( $limits['ip'] ) ) {
1204 $keys["mediawiki:limiter:$action:ip:$ip"] = $limits['ip'];
1205 }
1206 $matches = array();
1207 if( isset( $limits['subnet'] ) && preg_match( '/^(\d+\.\d+\.\d+)\.\d+$/', $ip, $matches ) ) {
1208 $subnet = $matches[1];
1209 $keys["mediawiki:limiter:$action:subnet:$subnet"] = $limits['subnet'];
1210 }
1211 }
1212 // Check for group-specific permissions
1213 // If more than one group applies, use the group with the highest limit
1214 foreach ( $this->getGroups() as $group ) {
1215 if ( isset( $limits[$group] ) ) {
1216 if ( $userLimit === false || $limits[$group] > $userLimit ) {
1217 $userLimit = $limits[$group];
1218 }
1219 }
1220 }
1221 // Set the user limit key
1222 if ( $userLimit !== false ) {
1223 wfDebug( __METHOD__.": effective user limit: $userLimit\n" );
1224 $keys[ wfMemcKey( 'limiter', $action, 'user', $id ) ] = $userLimit;
1225 }
1226
1227 $triggered = false;
1228 foreach( $keys as $key => $limit ) {
1229 list( $max, $period ) = $limit;
1230 $summary = "(limit $max in {$period}s)";
1231 $count = $wgMemc->get( $key );
1232 if( $count ) {
1233 if( $count > $max ) {
1234 wfDebug( __METHOD__.": tripped! $key at $count $summary\n" );
1235 if( $wgRateLimitLog ) {
1236 @error_log( wfTimestamp( TS_MW ) . ' ' . wfWikiID() . ': ' . $this->getName() . " tripped $key at $count $summary\n", 3, $wgRateLimitLog );
1237 }
1238 $triggered = true;
1239 } else {
1240 wfDebug( __METHOD__.": ok. $key at $count $summary\n" );
1241 }
1242 } else {
1243 wfDebug( __METHOD__.": adding record for $key $summary\n" );
1244 $wgMemc->add( $key, 1, intval( $period ) );
1245 }
1246 $wgMemc->incr( $key );
1247 }
1248
1249 wfProfileOut( __METHOD__ );
1250 return $triggered;
1251 }
1252
1253 /**
1254 * Check if user is blocked
1255 *
1256 * @param $bFromSlave \bool Whether to check the slave database instead of the master
1257 * @return \bool True if blocked, false otherwise
1258 */
1259 function isBlocked( $bFromSlave = true ) { // hacked from false due to horrible probs on site
1260 wfDebug( "User::isBlocked: enter\n" );
1261 $this->getBlockedStatus( $bFromSlave );
1262 return $this->mBlockedby !== 0;
1263 }
1264
1265 /**
1266 * Check if user is blocked from editing a particular article
1267 *
1268 * @param $title \string Title to check
1269 * @param $bFromSlave \bool Whether to check the slave database instead of the master
1270 * @return \bool True if blocked, false otherwise
1271 */
1272 function isBlockedFrom( $title, $bFromSlave = false ) {
1273 global $wgBlockAllowsUTEdit;
1274 wfProfileIn( __METHOD__ );
1275 wfDebug( __METHOD__.": enter\n" );
1276
1277 wfDebug( __METHOD__.": asking isBlocked()\n" );
1278 $blocked = $this->isBlocked( $bFromSlave );
1279 $allowUsertalk = ($wgBlockAllowsUTEdit ? $this->mAllowUsertalk : false);
1280 # If a user's name is suppressed, they cannot make edits anywhere
1281 if ( !$this->mHideName && $allowUsertalk && $title->getText() === $this->getName() &&
1282 $title->getNamespace() == NS_USER_TALK ) {
1283 $blocked = false;
1284 wfDebug( __METHOD__.": self-talk page, ignoring any blocks\n" );
1285 }
1286 wfProfileOut( __METHOD__ );
1287 return $blocked;
1288 }
1289
1290 /**
1291 * If user is blocked, return the name of the user who placed the block
1292 * @return \string name of blocker
1293 */
1294 function blockedBy() {
1295 $this->getBlockedStatus();
1296 return $this->mBlockedby;
1297 }
1298
1299 /**
1300 * If user is blocked, return the specified reason for the block
1301 * @return \string Blocking reason
1302 */
1303 function blockedFor() {
1304 $this->getBlockedStatus();
1305 return $this->mBlockreason;
1306 }
1307
1308 /**
1309 * Check if user is blocked on all wikis.
1310 * Do not use for actual edit permission checks!
1311 * This is intented for quick UI checks.
1312 *
1313 * @param $ip \type{\string} IP address, uses current client if none given
1314 * @return \type{\bool} True if blocked, false otherwise
1315 */
1316 function isBlockedGlobally( $ip = '' ) {
1317 if( $this->mBlockedGlobally !== null ) {
1318 return $this->mBlockedGlobally;
1319 }
1320 // User is already an IP?
1321 if( IP::isIPAddress( $this->getName() ) ) {
1322 $ip = $this->getName();
1323 } else if( !$ip ) {
1324 $ip = wfGetIP();
1325 }
1326 $blocked = false;
1327 wfRunHooks( 'UserIsBlockedGlobally', array( &$this, $ip, &$blocked ) );
1328 $this->mBlockedGlobally = (bool)$blocked;
1329 return $this->mBlockedGlobally;
1330 }
1331
1332 /**
1333 * Check if user account is locked
1334 *
1335 * @return \type{\bool} True if locked, false otherwise
1336 */
1337 function isLocked() {
1338 if( $this->mLocked !== null ) {
1339 return $this->mLocked;
1340 }
1341 global $wgAuth;
1342 $authUser = $wgAuth->getUserInstance( $this );
1343 $this->mLocked = (bool)$authUser->isLocked();
1344 return $this->mLocked;
1345 }
1346
1347 /**
1348 * Check if user account is hidden
1349 *
1350 * @return \type{\bool} True if hidden, false otherwise
1351 */
1352 function isHidden() {
1353 if( $this->mHideName !== null ) {
1354 return $this->mHideName;
1355 }
1356 $this->getBlockedStatus();
1357 if( !$this->mHideName ) {
1358 global $wgAuth;
1359 $authUser = $wgAuth->getUserInstance( $this );
1360 $this->mHideName = (bool)$authUser->isHidden();
1361 }
1362 return $this->mHideName;
1363 }
1364
1365 /**
1366 * Get the user's ID.
1367 * @return \int The user's ID; 0 if the user is anonymous or nonexistent
1368 */
1369 function getId() {
1370 if( $this->mId === null and $this->mName !== null
1371 and User::isIP( $this->mName ) ) {
1372 // Special case, we know the user is anonymous
1373 return 0;
1374 } elseif( $this->mId === null ) {
1375 // Don't load if this was initialized from an ID
1376 $this->load();
1377 }
1378 return $this->mId;
1379 }
1380
1381 /**
1382 * Set the user and reload all fields according to a given ID
1383 * @param $v \int User ID to reload
1384 */
1385 function setId( $v ) {
1386 $this->mId = $v;
1387 $this->clearInstanceCache( 'id' );
1388 }
1389
1390 /**
1391 * Get the user name, or the IP of an anonymous user
1392 * @return \string User's name or IP address
1393 */
1394 function getName() {
1395 if ( !$this->mDataLoaded && $this->mFrom == 'name' ) {
1396 # Special case optimisation
1397 return $this->mName;
1398 } else {
1399 $this->load();
1400 if ( $this->mName === false ) {
1401 # Clean up IPs
1402 $this->mName = IP::sanitizeIP( wfGetIP() );
1403 }
1404 return $this->mName;
1405 }
1406 }
1407
1408 /**
1409 * Set the user name.
1410 *
1411 * This does not reload fields from the database according to the given
1412 * name. Rather, it is used to create a temporary "nonexistent user" for
1413 * later addition to the database. It can also be used to set the IP
1414 * address for an anonymous user to something other than the current
1415 * remote IP.
1416 *
1417 * @note User::newFromName() has rougly the same function, when the named user
1418 * does not exist.
1419 * @param $str \string New user name to set
1420 */
1421 function setName( $str ) {
1422 $this->load();
1423 $this->mName = $str;
1424 }
1425
1426 /**
1427 * Get the user's name escaped by underscores.
1428 * @return \string Username escaped by underscores.
1429 */
1430 function getTitleKey() {
1431 return str_replace( ' ', '_', $this->getName() );
1432 }
1433
1434 /**
1435 * Check if the user has new messages.
1436 * @return \bool True if the user has new messages
1437 */
1438 function getNewtalk() {
1439 $this->load();
1440
1441 # Load the newtalk status if it is unloaded (mNewtalk=-1)
1442 if( $this->mNewtalk === -1 ) {
1443 $this->mNewtalk = false; # reset talk page status
1444
1445 # Check memcached separately for anons, who have no
1446 # entire User object stored in there.
1447 if( !$this->mId ) {
1448 global $wgMemc;
1449 $key = wfMemcKey( 'newtalk', 'ip', $this->getName() );
1450 $newtalk = $wgMemc->get( $key );
1451 if( strval( $newtalk ) !== '' ) {
1452 $this->mNewtalk = (bool)$newtalk;
1453 } else {
1454 // Since we are caching this, make sure it is up to date by getting it
1455 // from the master
1456 $this->mNewtalk = $this->checkNewtalk( 'user_ip', $this->getName(), true );
1457 $wgMemc->set( $key, (int)$this->mNewtalk, 1800 );
1458 }
1459 } else {
1460 $this->mNewtalk = $this->checkNewtalk( 'user_id', $this->mId );
1461 }
1462 }
1463
1464 return (bool)$this->mNewtalk;
1465 }
1466
1467 /**
1468 * Return the talk page(s) this user has new messages on.
1469 * @return \type{\arrayof{\string}} Array of page URLs
1470 */
1471 function getNewMessageLinks() {
1472 $talks = array();
1473 if (!wfRunHooks('UserRetrieveNewTalks', array(&$this, &$talks)))
1474 return $talks;
1475
1476 if (!$this->getNewtalk())
1477 return array();
1478 $up = $this->getUserPage();
1479 $utp = $up->getTalkPage();
1480 return array(array("wiki" => wfWikiID(), "link" => $utp->getLocalURL()));
1481 }
1482
1483
1484 /**
1485 * Internal uncached check for new messages
1486 *
1487 * @see getNewtalk()
1488 * @param $field \string 'user_ip' for anonymous users, 'user_id' otherwise
1489 * @param $id \types{\string,\int} User's IP address for anonymous users, User ID otherwise
1490 * @param $fromMaster \bool true to fetch from the master, false for a slave
1491 * @return \bool True if the user has new messages
1492 * @private
1493 */
1494 function checkNewtalk( $field, $id, $fromMaster = false ) {
1495 if ( $fromMaster ) {
1496 $db = wfGetDB( DB_MASTER );
1497 } else {
1498 $db = wfGetDB( DB_SLAVE );
1499 }
1500 $ok = $db->selectField( 'user_newtalk', $field,
1501 array( $field => $id ), __METHOD__ );
1502 return $ok !== false;
1503 }
1504
1505 /**
1506 * Add or update the new messages flag
1507 * @param $field \string 'user_ip' for anonymous users, 'user_id' otherwise
1508 * @param $id \types{\string,\int} User's IP address for anonymous users, User ID otherwise
1509 * @return \bool True if successful, false otherwise
1510 * @private
1511 */
1512 function updateNewtalk( $field, $id ) {
1513 $dbw = wfGetDB( DB_MASTER );
1514 $dbw->insert( 'user_newtalk',
1515 array( $field => $id ),
1516 __METHOD__,
1517 'IGNORE' );
1518 if ( $dbw->affectedRows() ) {
1519 wfDebug( __METHOD__.": set on ($field, $id)\n" );
1520 return true;
1521 } else {
1522 wfDebug( __METHOD__." already set ($field, $id)\n" );
1523 return false;
1524 }
1525 }
1526
1527 /**
1528 * Clear the new messages flag for the given user
1529 * @param $field \string 'user_ip' for anonymous users, 'user_id' otherwise
1530 * @param $id \types{\string,\int} User's IP address for anonymous users, User ID otherwise
1531 * @return \bool True if successful, false otherwise
1532 * @private
1533 */
1534 function deleteNewtalk( $field, $id ) {
1535 $dbw = wfGetDB( DB_MASTER );
1536 $dbw->delete( 'user_newtalk',
1537 array( $field => $id ),
1538 __METHOD__ );
1539 if ( $dbw->affectedRows() ) {
1540 wfDebug( __METHOD__.": killed on ($field, $id)\n" );
1541 return true;
1542 } else {
1543 wfDebug( __METHOD__.": already gone ($field, $id)\n" );
1544 return false;
1545 }
1546 }
1547
1548 /**
1549 * Update the 'You have new messages!' status.
1550 * @param $val \bool Whether the user has new messages
1551 */
1552 function setNewtalk( $val ) {
1553 if( wfReadOnly() ) {
1554 return;
1555 }
1556
1557 $this->load();
1558 $this->mNewtalk = $val;
1559
1560 if( $this->isAnon() ) {
1561 $field = 'user_ip';
1562 $id = $this->getName();
1563 } else {
1564 $field = 'user_id';
1565 $id = $this->getId();
1566 }
1567 global $wgMemc;
1568
1569 if( $val ) {
1570 $changed = $this->updateNewtalk( $field, $id );
1571 } else {
1572 $changed = $this->deleteNewtalk( $field, $id );
1573 }
1574
1575 if( $this->isAnon() ) {
1576 // Anons have a separate memcached space, since
1577 // user records aren't kept for them.
1578 $key = wfMemcKey( 'newtalk', 'ip', $id );
1579 $wgMemc->set( $key, $val ? 1 : 0, 1800 );
1580 }
1581 if ( $changed ) {
1582 $this->invalidateCache();
1583 }
1584 }
1585
1586 /**
1587 * Generate a current or new-future timestamp to be stored in the
1588 * user_touched field when we update things.
1589 * @return \string Timestamp in TS_MW format
1590 */
1591 private static function newTouchedTimestamp() {
1592 global $wgClockSkewFudge;
1593 return wfTimestamp( TS_MW, time() + $wgClockSkewFudge );
1594 }
1595
1596 /**
1597 * Clear user data from memcached.
1598 * Use after applying fun updates to the database; caller's
1599 * responsibility to update user_touched if appropriate.
1600 *
1601 * Called implicitly from invalidateCache() and saveSettings().
1602 */
1603 private function clearSharedCache() {
1604 $this->load();
1605 if( $this->mId ) {
1606 global $wgMemc;
1607 $wgMemc->delete( wfMemcKey( 'user', 'id', $this->mId ) );
1608 }
1609 }
1610
1611 /**
1612 * Immediately touch the user data cache for this account.
1613 * Updates user_touched field, and removes account data from memcached
1614 * for reload on the next hit.
1615 */
1616 function invalidateCache() {
1617 $this->load();
1618 if( $this->mId ) {
1619 $this->mTouched = self::newTouchedTimestamp();
1620
1621 $dbw = wfGetDB( DB_MASTER );
1622 $dbw->update( 'user',
1623 array( 'user_touched' => $dbw->timestamp( $this->mTouched ) ),
1624 array( 'user_id' => $this->mId ),
1625 __METHOD__ );
1626
1627 $this->clearSharedCache();
1628 }
1629 }
1630
1631 /**
1632 * Validate the cache for this account.
1633 * @param $timestamp \string A timestamp in TS_MW format
1634 */
1635 function validateCache( $timestamp ) {
1636 $this->load();
1637 return ($timestamp >= $this->mTouched);
1638 }
1639
1640 /**
1641 * Get the user touched timestamp
1642 */
1643 function getTouched() {
1644 $this->load();
1645 return $this->mTouched;
1646 }
1647
1648 /**
1649 * Set the password and reset the random token.
1650 * Calls through to authentication plugin if necessary;
1651 * will have no effect if the auth plugin refuses to
1652 * pass the change through or if the legal password
1653 * checks fail.
1654 *
1655 * As a special case, setting the password to null
1656 * wipes it, so the account cannot be logged in until
1657 * a new password is set, for instance via e-mail.
1658 *
1659 * @param $str \string New password to set
1660 * @throws PasswordError on failure
1661 */
1662 function setPassword( $str ) {
1663 global $wgAuth;
1664
1665 if( $str !== null ) {
1666 if( !$wgAuth->allowPasswordChange() ) {
1667 throw new PasswordError( wfMsg( 'password-change-forbidden' ) );
1668 }
1669
1670 if( !$this->isValidPassword( $str ) ) {
1671 global $wgMinimalPasswordLength;
1672 throw new PasswordError( wfMsgExt( 'passwordtooshort', array( 'parsemag' ),
1673 $wgMinimalPasswordLength ) );
1674 }
1675 }
1676
1677 if( !$wgAuth->setPassword( $this, $str ) ) {
1678 throw new PasswordError( wfMsg( 'externaldberror' ) );
1679 }
1680
1681 $this->setInternalPassword( $str );
1682
1683 return true;
1684 }
1685
1686 /**
1687 * Set the password and reset the random token unconditionally.
1688 *
1689 * @param $str \string New password to set
1690 */
1691 function setInternalPassword( $str ) {
1692 $this->load();
1693 $this->setToken();
1694
1695 if( $str === null ) {
1696 // Save an invalid hash...
1697 $this->mPassword = '';
1698 } else {
1699 $this->mPassword = self::crypt( $str );
1700 }
1701 $this->mNewpassword = '';
1702 $this->mNewpassTime = null;
1703 }
1704
1705 /**
1706 * Get the user's current token.
1707 * @return \string Token
1708 */
1709 function getToken() {
1710 $this->load();
1711 return $this->mToken;
1712 }
1713
1714 /**
1715 * Set the random token (used for persistent authentication)
1716 * Called from loadDefaults() among other places.
1717 *
1718 * @param $token \string If specified, set the token to this value
1719 * @private
1720 */
1721 function setToken( $token = false ) {
1722 global $wgSecretKey, $wgProxyKey;
1723 $this->load();
1724 if ( !$token ) {
1725 if ( $wgSecretKey ) {
1726 $key = $wgSecretKey;
1727 } elseif ( $wgProxyKey ) {
1728 $key = $wgProxyKey;
1729 } else {
1730 $key = microtime();
1731 }
1732 $this->mToken = md5( $key . mt_rand( 0, 0x7fffffff ) . wfWikiID() . $this->mId );
1733 } else {
1734 $this->mToken = $token;
1735 }
1736 }
1737
1738 /**
1739 * Set the cookie password
1740 *
1741 * @param $str \string New cookie password
1742 * @private
1743 */
1744 function setCookiePassword( $str ) {
1745 $this->load();
1746 $this->mCookiePassword = md5( $str );
1747 }
1748
1749 /**
1750 * Set the password for a password reminder or new account email
1751 *
1752 * @param $str \string New password to set
1753 * @param $throttle \bool If true, reset the throttle timestamp to the present
1754 */
1755 function setNewpassword( $str, $throttle = true ) {
1756 $this->load();
1757 $this->mNewpassword = self::crypt( $str );
1758 if ( $throttle ) {
1759 $this->mNewpassTime = wfTimestampNow();
1760 }
1761 }
1762
1763 /**
1764 * Has password reminder email been sent within the last
1765 * $wgPasswordReminderResendTime hours?
1766 * @return \bool True or false
1767 */
1768 function isPasswordReminderThrottled() {
1769 global $wgPasswordReminderResendTime;
1770 $this->load();
1771 if ( !$this->mNewpassTime || !$wgPasswordReminderResendTime ) {
1772 return false;
1773 }
1774 $expiry = wfTimestamp( TS_UNIX, $this->mNewpassTime ) + $wgPasswordReminderResendTime * 3600;
1775 return time() < $expiry;
1776 }
1777
1778 /**
1779 * Get the user's e-mail address
1780 * @return \string User's email address
1781 */
1782 function getEmail() {
1783 $this->load();
1784 wfRunHooks( 'UserGetEmail', array( $this, &$this->mEmail ) );
1785 return $this->mEmail;
1786 }
1787
1788 /**
1789 * Get the timestamp of the user's e-mail authentication
1790 * @return \string TS_MW timestamp
1791 */
1792 function getEmailAuthenticationTimestamp() {
1793 $this->load();
1794 wfRunHooks( 'UserGetEmailAuthenticationTimestamp', array( $this, &$this->mEmailAuthenticated ) );
1795 return $this->mEmailAuthenticated;
1796 }
1797
1798 /**
1799 * Set the user's e-mail address
1800 * @param $str \string New e-mail address
1801 */
1802 function setEmail( $str ) {
1803 $this->load();
1804 $this->mEmail = $str;
1805 wfRunHooks( 'UserSetEmail', array( $this, &$this->mEmail ) );
1806 }
1807
1808 /**
1809 * Get the user's real name
1810 * @return \string User's real name
1811 */
1812 function getRealName() {
1813 $this->load();
1814 return $this->mRealName;
1815 }
1816
1817 /**
1818 * Set the user's real name
1819 * @param $str \string New real name
1820 */
1821 function setRealName( $str ) {
1822 $this->load();
1823 $this->mRealName = $str;
1824 }
1825
1826 /**
1827 * Get the user's current setting for a given option.
1828 *
1829 * @param $oname \string The option to check
1830 * @param $defaultOverride \string A default value returned if the option does not exist
1831 * @return \string User's current value for the option
1832 * @see getBoolOption()
1833 * @see getIntOption()
1834 */
1835 function getOption( $oname, $defaultOverride = '' ) {
1836 $this->load();
1837
1838 if ( is_null( $this->mOptions ) ) {
1839 if($defaultOverride != '') {
1840 return $defaultOverride;
1841 }
1842 $this->mOptions = User::getDefaultOptions();
1843 }
1844
1845 if ( array_key_exists( $oname, $this->mOptions ) ) {
1846 return trim( $this->mOptions[$oname] );
1847 } else {
1848 return $defaultOverride;
1849 }
1850 }
1851
1852 /**
1853 * Get the user's current setting for a given option, as a boolean value.
1854 *
1855 * @param $oname \string The option to check
1856 * @return \bool User's current value for the option
1857 * @see getOption()
1858 */
1859 function getBoolOption( $oname ) {
1860 return (bool)$this->getOption( $oname );
1861 }
1862
1863
1864 /**
1865 * Get the user's current setting for a given option, as a boolean value.
1866 *
1867 * @param $oname \string The option to check
1868 * @param $defaultOverride \int A default value returned if the option does not exist
1869 * @return \int User's current value for the option
1870 * @see getOption()
1871 */
1872 function getIntOption( $oname, $defaultOverride=0 ) {
1873 $val = $this->getOption( $oname );
1874 if( $val == '' ) {
1875 $val = $defaultOverride;
1876 }
1877 return intval( $val );
1878 }
1879
1880 /**
1881 * Set the given option for a user.
1882 *
1883 * @param $oname \string The option to set
1884 * @param $val \mixed New value to set
1885 */
1886 function setOption( $oname, $val ) {
1887 $this->load();
1888 if ( is_null( $this->mOptions ) ) {
1889 $this->mOptions = User::getDefaultOptions();
1890 }
1891 if ( $oname == 'skin' ) {
1892 # Clear cached skin, so the new one displays immediately in Special:Preferences
1893 unset( $this->mSkin );
1894 }
1895 // Filter out any newlines that may have passed through input validation.
1896 // Newlines are used to separate items in the options blob.
1897 if( $val ) {
1898 $val = str_replace( "\r\n", "\n", $val );
1899 $val = str_replace( "\r", "\n", $val );
1900 $val = str_replace( "\n", " ", $val );
1901 }
1902 // Explicitly NULL values should refer to defaults
1903 global $wgDefaultUserOptions;
1904 if( is_null($val) && isset($wgDefaultUserOptions[$oname]) ) {
1905 $val = $wgDefaultUserOptions[$oname];
1906 }
1907 $this->mOptions[$oname] = $val;
1908 }
1909
1910 /**
1911 * Get the user's preferred date format.
1912 * @return \string User's preferred date format
1913 */
1914 function getDatePreference() {
1915 // Important migration for old data rows
1916 if ( is_null( $this->mDatePreference ) ) {
1917 global $wgLang;
1918 $value = $this->getOption( 'date' );
1919 $map = $wgLang->getDatePreferenceMigrationMap();
1920 if ( isset( $map[$value] ) ) {
1921 $value = $map[$value];
1922 }
1923 $this->mDatePreference = $value;
1924 }
1925 return $this->mDatePreference;
1926 }
1927
1928 /**
1929 * Get the permissions this user has.
1930 * @return \type{\arrayof{\string}} Array of permission names
1931 */
1932 function getRights() {
1933 if ( is_null( $this->mRights ) ) {
1934 $this->mRights = self::getGroupPermissions( $this->getEffectiveGroups() );
1935 wfRunHooks( 'UserGetRights', array( $this, &$this->mRights ) );
1936 // Force reindexation of rights when a hook has unset one of them
1937 $this->mRights = array_values( $this->mRights );
1938 }
1939 return $this->mRights;
1940 }
1941
1942 /**
1943 * Get the list of explicit group memberships this user has.
1944 * The implicit * and user groups are not included.
1945 * @return \type{\arrayof{\string}} Array of internal group names
1946 */
1947 function getGroups() {
1948 $this->load();
1949 return $this->mGroups;
1950 }
1951
1952 /**
1953 * Get the list of implicit group memberships this user has.
1954 * This includes all explicit groups, plus 'user' if logged in,
1955 * '*' for all accounts and autopromoted groups
1956 * @param $recache \bool Whether to avoid the cache
1957 * @return \type{\arrayof{\string}} Array of internal group names
1958 */
1959 function getEffectiveGroups( $recache = false ) {
1960 if ( $recache || is_null( $this->mEffectiveGroups ) ) {
1961 $this->mEffectiveGroups = $this->getGroups();
1962 $this->mEffectiveGroups[] = '*';
1963 if( $this->getId() ) {
1964 $this->mEffectiveGroups[] = 'user';
1965
1966 $this->mEffectiveGroups = array_unique( array_merge(
1967 $this->mEffectiveGroups,
1968 Autopromote::getAutopromoteGroups( $this )
1969 ) );
1970
1971 # Hook for additional groups
1972 wfRunHooks( 'UserEffectiveGroups', array( &$this, &$this->mEffectiveGroups ) );
1973 }
1974 }
1975 return $this->mEffectiveGroups;
1976 }
1977
1978 /**
1979 * Get the user's edit count.
1980 * @return \int User'e edit count
1981 */
1982 function getEditCount() {
1983 if ($this->mId) {
1984 if ( !isset( $this->mEditCount ) ) {
1985 /* Populate the count, if it has not been populated yet */
1986 $this->mEditCount = User::edits($this->mId);
1987 }
1988 return $this->mEditCount;
1989 } else {
1990 /* nil */
1991 return null;
1992 }
1993 }
1994
1995 /**
1996 * Add the user to the given group.
1997 * This takes immediate effect.
1998 * @param $group \string Name of the group to add
1999 */
2000 function addGroup( $group ) {
2001 $dbw = wfGetDB( DB_MASTER );
2002 if( $this->getId() ) {
2003 $dbw->insert( 'user_groups',
2004 array(
2005 'ug_user' => $this->getID(),
2006 'ug_group' => $group,
2007 ),
2008 'User::addGroup',
2009 array( 'IGNORE' ) );
2010 }
2011
2012 $this->loadGroups();
2013 $this->mGroups[] = $group;
2014 $this->mRights = User::getGroupPermissions( $this->getEffectiveGroups( true ) );
2015
2016 $this->invalidateCache();
2017 }
2018
2019 /**
2020 * Remove the user from the given group.
2021 * This takes immediate effect.
2022 * @param $group \string Name of the group to remove
2023 */
2024 function removeGroup( $group ) {
2025 $this->load();
2026 $dbw = wfGetDB( DB_MASTER );
2027 $dbw->delete( 'user_groups',
2028 array(
2029 'ug_user' => $this->getID(),
2030 'ug_group' => $group,
2031 ),
2032 'User::removeGroup' );
2033
2034 $this->loadGroups();
2035 $this->mGroups = array_diff( $this->mGroups, array( $group ) );
2036 $this->mRights = User::getGroupPermissions( $this->getEffectiveGroups( true ) );
2037
2038 $this->invalidateCache();
2039 }
2040
2041
2042 /**
2043 * Get whether the user is logged in
2044 * @return \bool True or false
2045 */
2046 function isLoggedIn() {
2047 return $this->getID() != 0;
2048 }
2049
2050 /**
2051 * Get whether the user is anonymous
2052 * @return \bool True or false
2053 */
2054 function isAnon() {
2055 return !$this->isLoggedIn();
2056 }
2057
2058 /**
2059 * Get whether the user is a bot
2060 * @return \bool True or false
2061 * @deprecated
2062 */
2063 function isBot() {
2064 wfDeprecated( __METHOD__ );
2065 return $this->isAllowed( 'bot' );
2066 }
2067
2068 /**
2069 * Check if user is allowed to access a feature / make an action
2070 * @param $action \string action to be checked
2071 * @return \bool True if action is allowed, else false
2072 */
2073 function isAllowed($action='') {
2074 if ( $action === '' )
2075 // In the spirit of DWIM
2076 return true;
2077
2078 # Use strict parameter to avoid matching numeric 0 accidentally inserted
2079 # by misconfiguration: 0 == 'foo'
2080 return in_array( $action, $this->getRights(), true );
2081 }
2082
2083 /**
2084 * Check whether to enable recent changes patrol features for this user
2085 * @return \bool True or false
2086 */
2087 public function useRCPatrol() {
2088 global $wgUseRCPatrol;
2089 return( $wgUseRCPatrol && ($this->isAllowed('patrol') || $this->isAllowed('patrolmarks')) );
2090 }
2091
2092 /**
2093 * Check whether to enable new pages patrol features for this user
2094 * @return \bool True or false
2095 */
2096 public function useNPPatrol() {
2097 global $wgUseRCPatrol, $wgUseNPPatrol;
2098 return( ($wgUseRCPatrol || $wgUseNPPatrol) && ($this->isAllowed('patrol') || $this->isAllowed('patrolmarks')) );
2099 }
2100
2101 /**
2102 * Get the current skin, loading it if required
2103 * @return \type{Skin} Current skin
2104 * @todo FIXME : need to check the old failback system [AV]
2105 */
2106 function &getSkin() {
2107 global $wgRequest, $wgAllowUserSkin, $wgDefaultSkin;
2108 if ( ! isset( $this->mSkin ) ) {
2109 wfProfileIn( __METHOD__ );
2110
2111 if( $wgAllowUserSkin ) {
2112 # get the user skin
2113 $userSkin = $this->getOption( 'skin' );
2114 $userSkin = $wgRequest->getVal('useskin', $userSkin);
2115 } else {
2116 # if we're not allowing users to override, then use the default
2117 $userSkin = $wgDefaultSkin;
2118 }
2119
2120 $this->mSkin =& Skin::newFromKey( $userSkin );
2121 wfProfileOut( __METHOD__ );
2122 }
2123 return $this->mSkin;
2124 }
2125
2126 /**
2127 * Check the watched status of an article.
2128 * @param $title \type{Title} Title of the article to look at
2129 * @return \bool True if article is watched
2130 */
2131 function isWatched( $title ) {
2132 $wl = WatchedItem::fromUserTitle( $this, $title );
2133 return $wl->isWatched();
2134 }
2135
2136 /**
2137 * Watch an article.
2138 * @param $title \type{Title} Title of the article to look at
2139 */
2140 function addWatch( $title ) {
2141 $wl = WatchedItem::fromUserTitle( $this, $title );
2142 $wl->addWatch();
2143 $this->invalidateCache();
2144 }
2145
2146 /**
2147 * Stop watching an article.
2148 * @param $title \type{Title} Title of the article to look at
2149 */
2150 function removeWatch( $title ) {
2151 $wl = WatchedItem::fromUserTitle( $this, $title );
2152 $wl->removeWatch();
2153 $this->invalidateCache();
2154 }
2155
2156 /**
2157 * Clear the user's notification timestamp for the given title.
2158 * If e-notif e-mails are on, they will receive notification mails on
2159 * the next change of the page if it's watched etc.
2160 * @param $title \type{Title} Title of the article to look at
2161 */
2162 function clearNotification( &$title ) {
2163 global $wgUser, $wgUseEnotif, $wgShowUpdatedMarker;
2164
2165 # Do nothing if the database is locked to writes
2166 if( wfReadOnly() ) {
2167 return;
2168 }
2169
2170 if ($title->getNamespace() == NS_USER_TALK &&
2171 $title->getText() == $this->getName() ) {
2172 if (!wfRunHooks('UserClearNewTalkNotification', array(&$this)))
2173 return;
2174 $this->setNewtalk( false );
2175 }
2176
2177 if( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
2178 return;
2179 }
2180
2181 if( $this->isAnon() ) {
2182 // Nothing else to do...
2183 return;
2184 }
2185
2186 // Only update the timestamp if the page is being watched.
2187 // The query to find out if it is watched is cached both in memcached and per-invocation,
2188 // and when it does have to be executed, it can be on a slave
2189 // If this is the user's newtalk page, we always update the timestamp
2190 if ($title->getNamespace() == NS_USER_TALK &&
2191 $title->getText() == $wgUser->getName())
2192 {
2193 $watched = true;
2194 } elseif ( $this->getId() == $wgUser->getId() ) {
2195 $watched = $title->userIsWatching();
2196 } else {
2197 $watched = true;
2198 }
2199
2200 // If the page is watched by the user (or may be watched), update the timestamp on any
2201 // any matching rows
2202 if ( $watched ) {
2203 $dbw = wfGetDB( DB_MASTER );
2204 $dbw->update( 'watchlist',
2205 array( /* SET */
2206 'wl_notificationtimestamp' => NULL
2207 ), array( /* WHERE */
2208 'wl_title' => $title->getDBkey(),
2209 'wl_namespace' => $title->getNamespace(),
2210 'wl_user' => $this->getID()
2211 ), __METHOD__
2212 );
2213 }
2214 }
2215
2216 /**
2217 * Resets all of the given user's page-change notification timestamps.
2218 * If e-notif e-mails are on, they will receive notification mails on
2219 * the next change of any watched page.
2220 *
2221 * @param $currentUser \int User ID
2222 */
2223 function clearAllNotifications( $currentUser ) {
2224 global $wgUseEnotif, $wgShowUpdatedMarker;
2225 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
2226 $this->setNewtalk( false );
2227 return;
2228 }
2229 if( $currentUser != 0 ) {
2230 $dbw = wfGetDB( DB_MASTER );
2231 $dbw->update( 'watchlist',
2232 array( /* SET */
2233 'wl_notificationtimestamp' => NULL
2234 ), array( /* WHERE */
2235 'wl_user' => $currentUser
2236 ), __METHOD__
2237 );
2238 # We also need to clear here the "you have new message" notification for the own user_talk page
2239 # This is cleared one page view later in Article::viewUpdates();
2240 }
2241 }
2242
2243 /**
2244 * Encode this user's options as a string
2245 * @return \string Encoded options
2246 * @private
2247 */
2248 function encodeOptions() {
2249 $this->load();
2250 if ( is_null( $this->mOptions ) ) {
2251 $this->mOptions = User::getDefaultOptions();
2252 }
2253 $a = array();
2254 foreach ( $this->mOptions as $oname => $oval ) {
2255 array_push( $a, $oname.'='.$oval );
2256 }
2257 $s = implode( "\n", $a );
2258 return $s;
2259 }
2260
2261 /**
2262 * Set this user's options from an encoded string
2263 * @param $str \string Encoded options to import
2264 * @private
2265 */
2266 function decodeOptions( $str ) {
2267 $this->mOptions = array();
2268 $a = explode( "\n", $str );
2269 foreach ( $a as $s ) {
2270 $m = array();
2271 if ( preg_match( "/^(.[^=]*)=(.*)$/", $s, $m ) ) {
2272 $this->mOptions[$m[1]] = $m[2];
2273 }
2274 }
2275 }
2276
2277 /**
2278 * Set a cookie on the user's client. Wrapper for
2279 * WebResponse::setCookie
2280 * @param $name \string Name of the cookie to set
2281 * @param $value \string Value to set
2282 * @param $exp \int Expiration time, as a UNIX time value;
2283 * if 0 or not specified, use the default $wgCookieExpiration
2284 */
2285 protected function setCookie( $name, $value, $exp=0 ) {
2286 global $wgRequest;
2287 $wgRequest->response()->setcookie( $name, $value, $exp );
2288 }
2289
2290 /**
2291 * Clear a cookie on the user's client
2292 * @param $name \string Name of the cookie to clear
2293 */
2294 protected function clearCookie( $name ) {
2295 $this->setCookie( $name, '', time() - 86400 );
2296 }
2297
2298 /**
2299 * Set the default cookies for this session on the user's client.
2300 */
2301 function setCookies() {
2302 $this->load();
2303 if ( 0 == $this->mId ) return;
2304 $session = array(
2305 'wsUserID' => $this->mId,
2306 'wsToken' => $this->mToken,
2307 'wsUserName' => $this->getName()
2308 );
2309 $cookies = array(
2310 'UserID' => $this->mId,
2311 'UserName' => $this->getName(),
2312 );
2313 if ( 1 == $this->getOption( 'rememberpassword' ) ) {
2314 $cookies['Token'] = $this->mToken;
2315 } else {
2316 $cookies['Token'] = false;
2317 }
2318
2319 wfRunHooks( 'UserSetCookies', array( $this, &$session, &$cookies ) );
2320 #check for null, since the hook could cause a null value
2321 if ( !is_null( $session ) && !is_null( $_SESSION ) ){
2322 $_SESSION = $session + $_SESSION;
2323 }
2324 foreach ( $cookies as $name => $value ) {
2325 if ( $value === false ) {
2326 $this->clearCookie( $name );
2327 } else {
2328 $this->setCookie( $name, $value );
2329 }
2330 }
2331 }
2332
2333 /**
2334 * Log this user out.
2335 */
2336 function logout() {
2337 global $wgUser;
2338 if( wfRunHooks( 'UserLogout', array(&$this) ) ) {
2339 $this->doLogout();
2340 }
2341 }
2342
2343 /**
2344 * Clear the user's cookies and session, and reset the instance cache.
2345 * @private
2346 * @see logout()
2347 */
2348 function doLogout() {
2349 $this->clearInstanceCache( 'defaults' );
2350
2351 $_SESSION['wsUserID'] = 0;
2352
2353 $this->clearCookie( 'UserID' );
2354 $this->clearCookie( 'Token' );
2355
2356 # Remember when user logged out, to prevent seeing cached pages
2357 $this->setCookie( 'LoggedOut', wfTimestampNow(), time() + 86400 );
2358 }
2359
2360 /**
2361 * Save this user's settings into the database.
2362 * @todo Only rarely do all these fields need to be set!
2363 */
2364 function saveSettings() {
2365 $this->load();
2366 if ( wfReadOnly() ) { return; }
2367 if ( 0 == $this->mId ) { return; }
2368
2369 $this->mTouched = self::newTouchedTimestamp();
2370
2371 $dbw = wfGetDB( DB_MASTER );
2372 $dbw->update( 'user',
2373 array( /* SET */
2374 'user_name' => $this->mName,
2375 'user_password' => $this->mPassword,
2376 'user_newpassword' => $this->mNewpassword,
2377 'user_newpass_time' => $dbw->timestampOrNull( $this->mNewpassTime ),
2378 'user_real_name' => $this->mRealName,
2379 'user_email' => $this->mEmail,
2380 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
2381 'user_options' => $this->encodeOptions(),
2382 'user_touched' => $dbw->timestamp($this->mTouched),
2383 'user_token' => $this->mToken,
2384 'user_email_token' => $this->mEmailToken,
2385 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires ),
2386 ), array( /* WHERE */
2387 'user_id' => $this->mId
2388 ), __METHOD__
2389 );
2390 wfRunHooks( 'UserSaveSettings', array( $this ) );
2391 $this->clearSharedCache();
2392 $this->getUserPage()->invalidateCache();
2393 }
2394
2395 /**
2396 * If only this user's username is known, and it exists, return the user ID.
2397 */
2398 function idForName() {
2399 $s = trim( $this->getName() );
2400 if ( $s === '' ) return 0;
2401
2402 $dbr = wfGetDB( DB_SLAVE );
2403 $id = $dbr->selectField( 'user', 'user_id', array( 'user_name' => $s ), __METHOD__ );
2404 if ( $id === false ) {
2405 $id = 0;
2406 }
2407 return $id;
2408 }
2409
2410 /**
2411 * Add a user to the database, return the user object
2412 *
2413 * @param $name \string Username to add
2414 * @param $params \type{\arrayof{\string}} Non-default parameters to save to the database:
2415 * - password The user's password. Password logins will be disabled if this is omitted.
2416 * - newpassword A temporary password mailed to the user
2417 * - email The user's email address
2418 * - email_authenticated The email authentication timestamp
2419 * - real_name The user's real name
2420 * - options An associative array of non-default options
2421 * - token Random authentication token. Do not set.
2422 * - registration Registration timestamp. Do not set.
2423 *
2424 * @return \type{User} A new User object, or null if the username already exists
2425 */
2426 static function createNew( $name, $params = array() ) {
2427 $user = new User;
2428 $user->load();
2429 if ( isset( $params['options'] ) ) {
2430 $user->mOptions = $params['options'] + $user->mOptions;
2431 unset( $params['options'] );
2432 }
2433 $dbw = wfGetDB( DB_MASTER );
2434 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
2435 $fields = array(
2436 'user_id' => $seqVal,
2437 'user_name' => $name,
2438 'user_password' => $user->mPassword,
2439 'user_newpassword' => $user->mNewpassword,
2440 'user_newpass_time' => $dbw->timestamp( $user->mNewpassTime ),
2441 'user_email' => $user->mEmail,
2442 'user_email_authenticated' => $dbw->timestampOrNull( $user->mEmailAuthenticated ),
2443 'user_real_name' => $user->mRealName,
2444 'user_options' => $user->encodeOptions(),
2445 'user_token' => $user->mToken,
2446 'user_registration' => $dbw->timestamp( $user->mRegistration ),
2447 'user_editcount' => 0,
2448 );
2449 foreach ( $params as $name => $value ) {
2450 $fields["user_$name"] = $value;
2451 }
2452 $dbw->insert( 'user', $fields, __METHOD__, array( 'IGNORE' ) );
2453 if ( $dbw->affectedRows() ) {
2454 $newUser = User::newFromId( $dbw->insertId() );
2455 } else {
2456 $newUser = null;
2457 }
2458 return $newUser;
2459 }
2460
2461 /**
2462 * Add this existing user object to the database
2463 */
2464 function addToDatabase() {
2465 $this->load();
2466 $dbw = wfGetDB( DB_MASTER );
2467 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
2468 $dbw->insert( 'user',
2469 array(
2470 'user_id' => $seqVal,
2471 'user_name' => $this->mName,
2472 'user_password' => $this->mPassword,
2473 'user_newpassword' => $this->mNewpassword,
2474 'user_newpass_time' => $dbw->timestamp( $this->mNewpassTime ),
2475 'user_email' => $this->mEmail,
2476 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
2477 'user_real_name' => $this->mRealName,
2478 'user_options' => $this->encodeOptions(),
2479 'user_token' => $this->mToken,
2480 'user_registration' => $dbw->timestamp( $this->mRegistration ),
2481 'user_editcount' => 0,
2482 ), __METHOD__
2483 );
2484 $this->mId = $dbw->insertId();
2485
2486 // Clear instance cache other than user table data, which is already accurate
2487 $this->clearInstanceCache();
2488 }
2489
2490 /**
2491 * If this (non-anonymous) user is blocked, block any IP address
2492 * they've successfully logged in from.
2493 */
2494 function spreadBlock() {
2495 wfDebug( __METHOD__."()\n" );
2496 $this->load();
2497 if ( $this->mId == 0 ) {
2498 return;
2499 }
2500
2501 $userblock = Block::newFromDB( '', $this->mId );
2502 if ( !$userblock ) {
2503 return;
2504 }
2505
2506 $userblock->doAutoblock( wfGetIp() );
2507
2508 }
2509
2510 /**
2511 * Generate a string which will be different for any combination of
2512 * user options which would produce different parser output.
2513 * This will be used as part of the hash key for the parser cache,
2514 * so users will the same options can share the same cached data
2515 * safely.
2516 *
2517 * Extensions which require it should install 'PageRenderingHash' hook,
2518 * which will give them a chance to modify this key based on their own
2519 * settings.
2520 *
2521 * @return \string Page rendering hash
2522 */
2523 function getPageRenderingHash() {
2524 global $wgUseDynamicDates, $wgRenderHashAppend, $wgLang, $wgContLang;
2525 if( $this->mHash ){
2526 return $this->mHash;
2527 }
2528
2529 // stubthreshold is only included below for completeness,
2530 // it will always be 0 when this function is called by parsercache.
2531
2532 $confstr = $this->getOption( 'math' );
2533 $confstr .= '!' . $this->getOption( 'stubthreshold' );
2534 if ( $wgUseDynamicDates ) {
2535 $confstr .= '!' . $this->getDatePreference();
2536 }
2537 $confstr .= '!' . ($this->getOption( 'numberheadings' ) ? '1' : '');
2538 $confstr .= '!' . $wgLang->getCode();
2539 $confstr .= '!' . $this->getOption( 'thumbsize' );
2540 // add in language specific options, if any
2541 $extra = $wgContLang->getExtraHashOptions();
2542 $confstr .= $extra;
2543
2544 $confstr .= $wgRenderHashAppend;
2545
2546 // Give a chance for extensions to modify the hash, if they have
2547 // extra options or other effects on the parser cache.
2548 wfRunHooks( 'PageRenderingHash', array( &$confstr ) );
2549
2550 // Make it a valid memcached key fragment
2551 $confstr = str_replace( ' ', '_', $confstr );
2552 $this->mHash = $confstr;
2553 return $confstr;
2554 }
2555
2556 /**
2557 * Get whether the user is explicitly blocked from account creation.
2558 * @return \bool True if blocked
2559 */
2560 function isBlockedFromCreateAccount() {
2561 $this->getBlockedStatus();
2562 return $this->mBlock && $this->mBlock->mCreateAccount;
2563 }
2564
2565 /**
2566 * Get whether the user is blocked from using Special:Emailuser.
2567 * @return \bool True if blocked
2568 */
2569 function isBlockedFromEmailuser() {
2570 $this->getBlockedStatus();
2571 return $this->mBlock && $this->mBlock->mBlockEmail;
2572 }
2573
2574 /**
2575 * Get whether the user is allowed to create an account.
2576 * @return \bool True if allowed
2577 */
2578 function isAllowedToCreateAccount() {
2579 return $this->isAllowed( 'createaccount' ) && !$this->isBlockedFromCreateAccount();
2580 }
2581
2582 /**
2583 * @deprecated
2584 */
2585 function setLoaded( $loaded ) {
2586 wfDeprecated( __METHOD__ );
2587 }
2588
2589 /**
2590 * Get this user's personal page title.
2591 *
2592 * @return \type{Title} User's personal page title
2593 */
2594 function getUserPage() {
2595 return Title::makeTitle( NS_USER, $this->getName() );
2596 }
2597
2598 /**
2599 * Get this user's talk page title.
2600 *
2601 * @return \type{Title} User's talk page title
2602 */
2603 function getTalkPage() {
2604 $title = $this->getUserPage();
2605 return $title->getTalkPage();
2606 }
2607
2608 /**
2609 * Get the maximum valid user ID.
2610 * @return \int User ID
2611 * @static
2612 */
2613 function getMaxID() {
2614 static $res; // cache
2615
2616 if ( isset( $res ) )
2617 return $res;
2618 else {
2619 $dbr = wfGetDB( DB_SLAVE );
2620 return $res = $dbr->selectField( 'user', 'max(user_id)', false, 'User::getMaxID' );
2621 }
2622 }
2623
2624 /**
2625 * Determine whether the user is a newbie. Newbies are either
2626 * anonymous IPs, or the most recently created accounts.
2627 * @return \bool True if the user is a newbie
2628 */
2629 function isNewbie() {
2630 return !$this->isAllowed( 'autoconfirmed' );
2631 }
2632
2633 /**
2634 * Is the user active? We check to see if they've made at least
2635 * X number of edits in the last Y days.
2636 *
2637 * @return \bool True if the user is active, false if not.
2638 */
2639 public function isActiveEditor() {
2640 global $wgActiveUserEditCount, $wgActiveUserDays;
2641 $dbr = wfGetDB( DB_SLAVE );
2642
2643 // Stolen without shame from RC
2644 $cutoff_unixtime = time() - ( $wgActiveUserDays * 86400 );
2645 $cutoff_unixtime = $cutoff_unixtime - ( $cutoff_unixtime % 86400 );
2646 $oldTime = $dbr->addQuotes( $dbr->timestamp( $cutoff_unixtime ) );
2647
2648 $res = $dbr->select( 'revision', '1',
2649 array( 'rev_user_text' => $this->getName(), "rev_timestamp > $oldTime"),
2650 __METHOD__,
2651 array('LIMIT' => $wgActiveUserEditCount ) );
2652
2653 $count = $dbr->numRows($res);
2654 $dbr->freeResult($res);
2655
2656 return $count == $wgActiveUserEditCount;
2657 }
2658
2659 /**
2660 * Check to see if the given clear-text password is one of the accepted passwords
2661 * @param $password \string user password.
2662 * @return \bool True if the given password is correct, otherwise False.
2663 */
2664 function checkPassword( $password ) {
2665 global $wgAuth;
2666 $this->load();
2667
2668 // Even though we stop people from creating passwords that
2669 // are shorter than this, doesn't mean people wont be able
2670 // to. Certain authentication plugins do NOT want to save
2671 // domain passwords in a mysql database, so we should
2672 // check this (incase $wgAuth->strict() is false).
2673 if( !$this->isValidPassword( $password ) ) {
2674 return false;
2675 }
2676
2677 if( $wgAuth->authenticate( $this->getName(), $password ) ) {
2678 return true;
2679 } elseif( $wgAuth->strict() ) {
2680 /* Auth plugin doesn't allow local authentication */
2681 return false;
2682 } elseif( $wgAuth->strictUserAuth( $this->getName() ) ) {
2683 /* Auth plugin doesn't allow local authentication for this user name */
2684 return false;
2685 }
2686 if ( self::comparePasswords( $this->mPassword, $password, $this->mId ) ) {
2687 return true;
2688 } elseif ( function_exists( 'iconv' ) ) {
2689 # Some wikis were converted from ISO 8859-1 to UTF-8, the passwords can't be converted
2690 # Check for this with iconv
2691 $cp1252Password = iconv( 'UTF-8', 'WINDOWS-1252//TRANSLIT', $password );
2692 if ( self::comparePasswords( $this->mPassword, $cp1252Password, $this->mId ) ) {
2693 return true;
2694 }
2695 }
2696 return false;
2697 }
2698
2699 /**
2700 * Check if the given clear-text password matches the temporary password
2701 * sent by e-mail for password reset operations.
2702 * @return \bool True if matches, false otherwise
2703 */
2704 function checkTemporaryPassword( $plaintext ) {
2705 return self::comparePasswords( $this->mNewpassword, $plaintext, $this->getId() );
2706 }
2707
2708 /**
2709 * Initialize (if necessary) and return a session token value
2710 * which can be used in edit forms to show that the user's
2711 * login credentials aren't being hijacked with a foreign form
2712 * submission.
2713 *
2714 * @param $salt \types{\string,\arrayof{\string}} Optional function-specific data for hashing
2715 * @return \string The new edit token
2716 */
2717 function editToken( $salt = '' ) {
2718 if ( $this->isAnon() ) {
2719 return EDIT_TOKEN_SUFFIX;
2720 } else {
2721 if( !isset( $_SESSION['wsEditToken'] ) ) {
2722 $token = $this->generateToken();
2723 $_SESSION['wsEditToken'] = $token;
2724 } else {
2725 $token = $_SESSION['wsEditToken'];
2726 }
2727 if( is_array( $salt ) ) {
2728 $salt = implode( '|', $salt );
2729 }
2730 return md5( $token . $salt ) . EDIT_TOKEN_SUFFIX;
2731 }
2732 }
2733
2734 /**
2735 * Generate a looking random token for various uses.
2736 *
2737 * @param $salt \string Optional salt value
2738 * @return \string The new random token
2739 */
2740 function generateToken( $salt = '' ) {
2741 $token = dechex( mt_rand() ) . dechex( mt_rand() );
2742 return md5( $token . $salt );
2743 }
2744
2745 /**
2746 * Check given value against the token value stored in the session.
2747 * A match should confirm that the form was submitted from the
2748 * user's own login session, not a form submission from a third-party
2749 * site.
2750 *
2751 * @param $val \string Input value to compare
2752 * @param $salt \string Optional function-specific data for hashing
2753 * @return \bool Whether the token matches
2754 */
2755 function matchEditToken( $val, $salt = '' ) {
2756 $sessionToken = $this->editToken( $salt );
2757 if ( $val != $sessionToken ) {
2758 wfDebug( "User::matchEditToken: broken session data\n" );
2759 }
2760 return $val == $sessionToken;
2761 }
2762
2763 /**
2764 * Check given value against the token value stored in the session,
2765 * ignoring the suffix.
2766 *
2767 * @param $val \string Input value to compare
2768 * @param $salt \string Optional function-specific data for hashing
2769 * @return \bool Whether the token matches
2770 */
2771 function matchEditTokenNoSuffix( $val, $salt = '' ) {
2772 $sessionToken = $this->editToken( $salt );
2773 return substr( $sessionToken, 0, 32 ) == substr( $val, 0, 32 );
2774 }
2775
2776 /**
2777 * Generate a new e-mail confirmation token and send a confirmation/invalidation
2778 * mail to the user's given address.
2779 *
2780 * @return \types{\bool,\type{WikiError}} True on success, a WikiError object on failure.
2781 */
2782 function sendConfirmationMail() {
2783 global $wgLang;
2784 $expiration = null; // gets passed-by-ref and defined in next line.
2785 $token = $this->confirmationToken( $expiration );
2786 $url = $this->confirmationTokenUrl( $token );
2787 $invalidateURL = $this->invalidationTokenUrl( $token );
2788 $this->saveSettings();
2789
2790 return $this->sendMail( wfMsg( 'confirmemail_subject' ),
2791 wfMsg( 'confirmemail_body',
2792 wfGetIP(),
2793 $this->getName(),
2794 $url,
2795 $wgLang->timeanddate( $expiration, false ),
2796 $invalidateURL ) );
2797 }
2798
2799 /**
2800 * Send an e-mail to this user's account. Does not check for
2801 * confirmed status or validity.
2802 *
2803 * @param $subject \string Message subject
2804 * @param $body \string Message body
2805 * @param $from \string Optional From address; if unspecified, default $wgPasswordSender will be used
2806 * @param $replyto \string Reply-To address
2807 * @return \types{\bool,\type{WikiError}} True on success, a WikiError object on failure
2808 */
2809 function sendMail( $subject, $body, $from = null, $replyto = null ) {
2810 if( is_null( $from ) ) {
2811 global $wgPasswordSender;
2812 $from = $wgPasswordSender;
2813 }
2814
2815 $to = new MailAddress( $this );
2816 $sender = new MailAddress( $from );
2817 return UserMailer::send( $to, $sender, $subject, $body, $replyto );
2818 }
2819
2820 /**
2821 * Generate, store, and return a new e-mail confirmation code.
2822 * A hash (unsalted, since it's used as a key) is stored.
2823 *
2824 * @note Call saveSettings() after calling this function to commit
2825 * this change to the database.
2826 *
2827 * @param[out] &$expiration \mixed Accepts the expiration time
2828 * @return \string New token
2829 * @private
2830 */
2831 function confirmationToken( &$expiration ) {
2832 $now = time();
2833 $expires = $now + 7 * 24 * 60 * 60;
2834 $expiration = wfTimestamp( TS_MW, $expires );
2835 $token = $this->generateToken( $this->mId . $this->mEmail . $expires );
2836 $hash = md5( $token );
2837 $this->load();
2838 $this->mEmailToken = $hash;
2839 $this->mEmailTokenExpires = $expiration;
2840 return $token;
2841 }
2842
2843 /**
2844 * Return a URL the user can use to confirm their email address.
2845 * @param $token \string Accepts the email confirmation token
2846 * @return \string New token URL
2847 * @private
2848 */
2849 function confirmationTokenUrl( $token ) {
2850 return $this->getTokenUrl( 'ConfirmEmail', $token );
2851 }
2852 /**
2853 * Return a URL the user can use to invalidate their email address.
2854 * @param $token \string Accepts the email confirmation token
2855 * @return \string New token URL
2856 * @private
2857 */
2858 function invalidationTokenUrl( $token ) {
2859 return $this->getTokenUrl( 'Invalidateemail', $token );
2860 }
2861
2862 /**
2863 * Internal function to format the e-mail validation/invalidation URLs.
2864 * This uses $wgArticlePath directly as a quickie hack to use the
2865 * hardcoded English names of the Special: pages, for ASCII safety.
2866 *
2867 * @note Since these URLs get dropped directly into emails, using the
2868 * short English names avoids insanely long URL-encoded links, which
2869 * also sometimes can get corrupted in some browsers/mailers
2870 * (bug 6957 with Gmail and Internet Explorer).
2871 *
2872 * @param $page \string Special page
2873 * @param $token \string Token
2874 * @return \string Formatted URL
2875 */
2876 protected function getTokenUrl( $page, $token ) {
2877 global $wgArticlePath;
2878 return wfExpandUrl(
2879 str_replace(
2880 '$1',
2881 "Special:$page/$token",
2882 $wgArticlePath ) );
2883 }
2884
2885 /**
2886 * Mark the e-mail address confirmed.
2887 *
2888 * @note Call saveSettings() after calling this function to commit the change.
2889 */
2890 function confirmEmail() {
2891 $this->setEmailAuthenticationTimestamp( wfTimestampNow() );
2892 return true;
2893 }
2894
2895 /**
2896 * Invalidate the user's e-mail confirmation, and unauthenticate the e-mail
2897 * address if it was already confirmed.
2898 *
2899 * @note Call saveSettings() after calling this function to commit the change.
2900 */
2901 function invalidateEmail() {
2902 $this->load();
2903 $this->mEmailToken = null;
2904 $this->mEmailTokenExpires = null;
2905 $this->setEmailAuthenticationTimestamp( null );
2906 return true;
2907 }
2908
2909 /**
2910 * Set the e-mail authentication timestamp.
2911 * @param $timestamp \string TS_MW timestamp
2912 */
2913 function setEmailAuthenticationTimestamp( $timestamp ) {
2914 $this->load();
2915 $this->mEmailAuthenticated = $timestamp;
2916 wfRunHooks( 'UserSetEmailAuthenticationTimestamp', array( $this, &$this->mEmailAuthenticated ) );
2917 }
2918
2919 /**
2920 * Is this user allowed to send e-mails within limits of current
2921 * site configuration?
2922 * @return \bool True if allowed
2923 */
2924 function canSendEmail() {
2925 global $wgEnableEmail, $wgEnableUserEmail;
2926 if( !$wgEnableEmail || !$wgEnableUserEmail ) {
2927 return false;
2928 }
2929 $canSend = $this->isEmailConfirmed();
2930 wfRunHooks( 'UserCanSendEmail', array( &$this, &$canSend ) );
2931 return $canSend;
2932 }
2933
2934 /**
2935 * Is this user allowed to receive e-mails within limits of current
2936 * site configuration?
2937 * @return \bool True if allowed
2938 */
2939 function canReceiveEmail() {
2940 return $this->isEmailConfirmed() && !$this->getOption( 'disablemail' );
2941 }
2942
2943 /**
2944 * Is this user's e-mail address valid-looking and confirmed within
2945 * limits of the current site configuration?
2946 *
2947 * @note If $wgEmailAuthentication is on, this may require the user to have
2948 * confirmed their address by returning a code or using a password
2949 * sent to the address from the wiki.
2950 *
2951 * @return \bool True if confirmed
2952 */
2953 function isEmailConfirmed() {
2954 global $wgEmailAuthentication;
2955 $this->load();
2956 $confirmed = true;
2957 if( wfRunHooks( 'EmailConfirmed', array( &$this, &$confirmed ) ) ) {
2958 if( $this->isAnon() )
2959 return false;
2960 if( !self::isValidEmailAddr( $this->mEmail ) )
2961 return false;
2962 if( $wgEmailAuthentication && !$this->getEmailAuthenticationTimestamp() )
2963 return false;
2964 return true;
2965 } else {
2966 return $confirmed;
2967 }
2968 }
2969
2970 /**
2971 * Check whether there is an outstanding request for e-mail confirmation.
2972 * @return \bool True if pending
2973 */
2974 function isEmailConfirmationPending() {
2975 global $wgEmailAuthentication;
2976 return $wgEmailAuthentication &&
2977 !$this->isEmailConfirmed() &&
2978 $this->mEmailToken &&
2979 $this->mEmailTokenExpires > wfTimestamp();
2980 }
2981
2982 /**
2983 * Get the timestamp of account creation.
2984 *
2985 * @return \types{\string,\bool} string Timestamp of account creation, or false for
2986 * non-existent/anonymous user accounts.
2987 */
2988 public function getRegistration() {
2989 return $this->mId > 0
2990 ? $this->mRegistration
2991 : false;
2992 }
2993
2994 /**
2995 * Get the permissions associated with a given list of groups
2996 *
2997 * @param $groups \type{\arrayof{\string}} List of internal group names
2998 * @return \type{\arrayof{\string}} List of permission key names for given groups combined
2999 */
3000 static function getGroupPermissions( $groups ) {
3001 global $wgGroupPermissions;
3002 $rights = array();
3003 foreach( $groups as $group ) {
3004 if( isset( $wgGroupPermissions[$group] ) ) {
3005 $rights = array_merge( $rights,
3006 // array_filter removes empty items
3007 array_keys( array_filter( $wgGroupPermissions[$group] ) ) );
3008 }
3009 }
3010 return array_unique($rights);
3011 }
3012
3013 /**
3014 * Get all the groups who have a given permission
3015 *
3016 * @param $role \string Role to check
3017 * @return \type{\arrayof{\string}} List of internal group names with the given permission
3018 */
3019 static function getGroupsWithPermission( $role ) {
3020 global $wgGroupPermissions;
3021 $allowedGroups = array();
3022 foreach ( $wgGroupPermissions as $group => $rights ) {
3023 if ( isset( $rights[$role] ) && $rights[$role] ) {
3024 $allowedGroups[] = $group;
3025 }
3026 }
3027 return $allowedGroups;
3028 }
3029
3030 /**
3031 * Get the localized descriptive name for a group, if it exists
3032 *
3033 * @param $group \string Internal group name
3034 * @return \string Localized descriptive group name
3035 */
3036 static function getGroupName( $group ) {
3037 global $wgMessageCache;
3038 $wgMessageCache->loadAllMessages();
3039 $key = "group-$group";
3040 $name = wfMsg( $key );
3041 return $name == '' || wfEmptyMsg( $key, $name )
3042 ? $group
3043 : $name;
3044 }
3045
3046 /**
3047 * Get the localized descriptive name for a member of a group, if it exists
3048 *
3049 * @param $group \string Internal group name
3050 * @return \string Localized name for group member
3051 */
3052 static function getGroupMember( $group ) {
3053 global $wgMessageCache;
3054 $wgMessageCache->loadAllMessages();
3055 $key = "group-$group-member";
3056 $name = wfMsg( $key );
3057 return $name == '' || wfEmptyMsg( $key, $name )
3058 ? $group
3059 : $name;
3060 }
3061
3062 /**
3063 * Return the set of defined explicit groups.
3064 * The implicit groups (by default *, 'user' and 'autoconfirmed')
3065 * are not included, as they are defined automatically, not in the database.
3066 * @return \type{\arrayof{\string}} Array of internal group names
3067 */
3068 static function getAllGroups() {
3069 global $wgGroupPermissions;
3070 return array_diff(
3071 array_keys( $wgGroupPermissions ),
3072 self::getImplicitGroups()
3073 );
3074 }
3075
3076 /**
3077 * Get a list of all available permissions.
3078 * @return \type{\arrayof{\string}} Array of permission names
3079 */
3080 static function getAllRights() {
3081 if ( self::$mAllRights === false ) {
3082 global $wgAvailableRights;
3083 if ( count( $wgAvailableRights ) ) {
3084 self::$mAllRights = array_unique( array_merge( self::$mCoreRights, $wgAvailableRights ) );
3085 } else {
3086 self::$mAllRights = self::$mCoreRights;
3087 }
3088 wfRunHooks( 'UserGetAllRights', array( &self::$mAllRights ) );
3089 }
3090 return self::$mAllRights;
3091 }
3092
3093 /**
3094 * Get a list of implicit groups
3095 * @return \type{\arrayof{\string}} Array of internal group names
3096 */
3097 public static function getImplicitGroups() {
3098 global $wgImplicitGroups;
3099 $groups = $wgImplicitGroups;
3100 wfRunHooks( 'UserGetImplicitGroups', array( &$groups ) ); #deprecated, use $wgImplictGroups instead
3101 return $groups;
3102 }
3103
3104 /**
3105 * Get the title of a page describing a particular group
3106 *
3107 * @param $group \string Internal group name
3108 * @return \types{\type{Title},\bool} Title of the page if it exists, false otherwise
3109 */
3110 static function getGroupPage( $group ) {
3111 global $wgMessageCache;
3112 $wgMessageCache->loadAllMessages();
3113 $page = wfMsgForContent( 'grouppage-' . $group );
3114 if( !wfEmptyMsg( 'grouppage-' . $group, $page ) ) {
3115 $title = Title::newFromText( $page );
3116 if( is_object( $title ) )
3117 return $title;
3118 }
3119 return false;
3120 }
3121
3122 /**
3123 * Create a link to the group in HTML, if available;
3124 * else return the group name.
3125 *
3126 * @param $group \string Internal name of the group
3127 * @param $text \string The text of the link
3128 * @return \string HTML link to the group
3129 */
3130 static function makeGroupLinkHTML( $group, $text = '' ) {
3131 if( $text == '' ) {
3132 $text = self::getGroupName( $group );
3133 }
3134 $title = self::getGroupPage( $group );
3135 if( $title ) {
3136 global $wgUser;
3137 $sk = $wgUser->getSkin();
3138 return $sk->makeLinkObj( $title, htmlspecialchars( $text ) );
3139 } else {
3140 return $text;
3141 }
3142 }
3143
3144 /**
3145 * Create a link to the group in Wikitext, if available;
3146 * else return the group name.
3147 *
3148 * @param $group \string Internal name of the group
3149 * @param $text \string The text of the link
3150 * @return \string Wikilink to the group
3151 */
3152 static function makeGroupLinkWiki( $group, $text = '' ) {
3153 if( $text == '' ) {
3154 $text = self::getGroupName( $group );
3155 }
3156 $title = self::getGroupPage( $group );
3157 if( $title ) {
3158 $page = $title->getPrefixedText();
3159 return "[[$page|$text]]";
3160 } else {
3161 return $text;
3162 }
3163 }
3164
3165 /**
3166 * Increment the user's edit-count field.
3167 * Will have no effect for anonymous users.
3168 */
3169 function incEditCount() {
3170 if( !$this->isAnon() ) {
3171 $dbw = wfGetDB( DB_MASTER );
3172 $dbw->update( 'user',
3173 array( 'user_editcount=user_editcount+1' ),
3174 array( 'user_id' => $this->getId() ),
3175 __METHOD__ );
3176
3177 // Lazy initialization check...
3178 if( $dbw->affectedRows() == 0 ) {
3179 // Pull from a slave to be less cruel to servers
3180 // Accuracy isn't the point anyway here
3181 $dbr = wfGetDB( DB_SLAVE );
3182 $count = $dbr->selectField( 'revision',
3183 'COUNT(rev_user)',
3184 array( 'rev_user' => $this->getId() ),
3185 __METHOD__ );
3186
3187 // Now here's a goddamn hack...
3188 if( $dbr !== $dbw ) {
3189 // If we actually have a slave server, the count is
3190 // at least one behind because the current transaction
3191 // has not been committed and replicated.
3192 $count++;
3193 } else {
3194 // But if DB_SLAVE is selecting the master, then the
3195 // count we just read includes the revision that was
3196 // just added in the working transaction.
3197 }
3198
3199 $dbw->update( 'user',
3200 array( 'user_editcount' => $count ),
3201 array( 'user_id' => $this->getId() ),
3202 __METHOD__ );
3203 }
3204 }
3205 // edit count in user cache too
3206 $this->invalidateCache();
3207 }
3208
3209 /**
3210 * Get the description of a given right
3211 *
3212 * @param $right \string Right to query
3213 * @return \string Localized description of the right
3214 */
3215 static function getRightDescription( $right ) {
3216 global $wgMessageCache;
3217 $wgMessageCache->loadAllMessages();
3218 $key = "right-$right";
3219 $name = wfMsg( $key );
3220 return $name == '' || wfEmptyMsg( $key, $name )
3221 ? $right
3222 : $name;
3223 }
3224
3225 /**
3226 * Make an old-style password hash
3227 *
3228 * @param $password \string Plain-text password
3229 * @param $userId \string User ID
3230 * @return \string Password hash
3231 */
3232 static function oldCrypt( $password, $userId ) {
3233 global $wgPasswordSalt;
3234 if ( $wgPasswordSalt ) {
3235 return md5( $userId . '-' . md5( $password ) );
3236 } else {
3237 return md5( $password );
3238 }
3239 }
3240
3241 /**
3242 * Make a new-style password hash
3243 *
3244 * @param $password \string Plain-text password
3245 * @param $salt \string Optional salt, may be random or the user ID.
3246 * If unspecified or false, will generate one automatically
3247 * @return \string Password hash
3248 */
3249 static function crypt( $password, $salt = false ) {
3250 global $wgPasswordSalt;
3251
3252 $hash = '';
3253 if( !wfRunHooks( 'UserCryptPassword', array( &$password, &$salt, &$wgPasswordSalt, &$hash ) ) ) {
3254 return $hash;
3255 }
3256
3257 if( $wgPasswordSalt ) {
3258 if ( $salt === false ) {
3259 $salt = substr( wfGenerateToken(), 0, 8 );
3260 }
3261 return ':B:' . $salt . ':' . md5( $salt . '-' . md5( $password ) );
3262 } else {
3263 return ':A:' . md5( $password );
3264 }
3265 }
3266
3267 /**
3268 * Compare a password hash with a plain-text password. Requires the user
3269 * ID if there's a chance that the hash is an old-style hash.
3270 *
3271 * @param $hash \string Password hash
3272 * @param $password \string Plain-text password to compare
3273 * @param $userId \string User ID for old-style password salt
3274 * @return \bool
3275 */
3276 static function comparePasswords( $hash, $password, $userId = false ) {
3277 $m = false;
3278 $type = substr( $hash, 0, 3 );
3279
3280 $result = false;
3281 if( !wfRunHooks( 'UserComparePasswords', array( &$hash, &$password, &$userId, &$result ) ) ) {
3282 return $result;
3283 }
3284
3285 if ( $type == ':A:' ) {
3286 # Unsalted
3287 return md5( $password ) === substr( $hash, 3 );
3288 } elseif ( $type == ':B:' ) {
3289 # Salted
3290 list( $salt, $realHash ) = explode( ':', substr( $hash, 3 ), 2 );
3291 return md5( $salt.'-'.md5( $password ) ) == $realHash;
3292 } else {
3293 # Old-style
3294 return self::oldCrypt( $password, $userId ) === $hash;
3295 }
3296 }
3297
3298 /**
3299 * Add a newuser log entry for this user
3300 * @param $byEmail Boolean: account made by email?
3301 */
3302 public function addNewUserLogEntry( $byEmail = false ) {
3303 global $wgUser, $wgContLang, $wgNewUserLog;
3304 if( empty($wgNewUserLog) ) {
3305 return true; // disabled
3306 }
3307 $talk = $wgContLang->getFormattedNsText( NS_TALK );
3308 if( $this->getName() == $wgUser->getName() ) {
3309 $action = 'create';
3310 $message = '';
3311 } else {
3312 $action = 'create2';
3313 $message = $byEmail ? wfMsgForContent( 'newuserlog-byemail' ) : '';
3314 }
3315 $log = new LogPage( 'newusers' );
3316 $log->addEntry( $action, $this->getUserPage(), $message, array( $this->getId() ) );
3317 return true;
3318 }
3319
3320 /**
3321 * Add an autocreate newuser log entry for this user
3322 * Used by things like CentralAuth and perhaps other authplugins.
3323 */
3324 public function addNewUserLogEntryAutoCreate() {
3325 global $wgNewUserLog;
3326 if( empty($wgNewUserLog) ) {
3327 return true; // disabled
3328 }
3329 $log = new LogPage( 'newusers', false );
3330 $log->addEntry( 'autocreate', $this->getUserPage(), '', array( $this->getId() ) );
3331 return true;
3332 }
3333
3334 }