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