02111b7bbc1125bf54edc690d0d1eab2c7905853
[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 = array();
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 global $wgUser;
2379 if( wfRunHooks( 'UserLogout', array(&$this) ) ) {
2380 $this->doLogout();
2381 }
2382 }
2383
2384 /**
2385 * Clear the user's cookies and session, and reset the instance cache.
2386 * @private
2387 * @see logout()
2388 */
2389 function doLogout() {
2390 $this->clearInstanceCache( 'defaults' );
2391
2392 $_SESSION['wsUserID'] = 0;
2393
2394 $this->clearCookie( 'UserID' );
2395 $this->clearCookie( 'Token' );
2396
2397 # Remember when user logged out, to prevent seeing cached pages
2398 $this->setCookie( 'LoggedOut', wfTimestampNow(), time() + 86400 );
2399 }
2400
2401 /**
2402 * Save this user's settings into the database.
2403 * @todo Only rarely do all these fields need to be set!
2404 */
2405 function saveSettings() {
2406 $this->load();
2407 if ( wfReadOnly() ) { return; }
2408 if ( 0 == $this->mId ) { return; }
2409
2410 $this->mTouched = self::newTouchedTimestamp();
2411
2412 $dbw = wfGetDB( DB_MASTER );
2413 $dbw->update( 'user',
2414 array( /* SET */
2415 'user_name' => $this->mName,
2416 'user_password' => $this->mPassword,
2417 'user_newpassword' => $this->mNewpassword,
2418 'user_newpass_time' => $dbw->timestampOrNull( $this->mNewpassTime ),
2419 'user_real_name' => $this->mRealName,
2420 'user_email' => $this->mEmail,
2421 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
2422 'user_options' => '',
2423 'user_touched' => $dbw->timestamp($this->mTouched),
2424 'user_token' => $this->mToken,
2425 'user_email_token' => $this->mEmailToken,
2426 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires ),
2427 ), array( /* WHERE */
2428 'user_id' => $this->mId
2429 ), __METHOD__
2430 );
2431
2432 $this->saveOptions();
2433
2434 wfRunHooks( 'UserSaveSettings', array( $this ) );
2435 $this->clearSharedCache();
2436 $this->getUserPage()->invalidateCache();
2437 }
2438
2439 /**
2440 * If only this user's username is known, and it exists, return the user ID.
2441 */
2442 function idForName() {
2443 $s = trim( $this->getName() );
2444 if ( $s === '' ) return 0;
2445
2446 $dbr = wfGetDB( DB_SLAVE );
2447 $id = $dbr->selectField( 'user', 'user_id', array( 'user_name' => $s ), __METHOD__ );
2448 if ( $id === false ) {
2449 $id = 0;
2450 }
2451 return $id;
2452 }
2453
2454 /**
2455 * Add a user to the database, return the user object
2456 *
2457 * @param $name \string Username to add
2458 * @param $params \type{\arrayof{\string}} Non-default parameters to save to the database:
2459 * - password The user's password. Password logins will be disabled if this is omitted.
2460 * - newpassword A temporary password mailed to the user
2461 * - email The user's email address
2462 * - email_authenticated The email authentication timestamp
2463 * - real_name The user's real name
2464 * - options An associative array of non-default options
2465 * - token Random authentication token. Do not set.
2466 * - registration Registration timestamp. Do not set.
2467 *
2468 * @return \type{User} A new User object, or null if the username already exists
2469 */
2470 static function createNew( $name, $params = array() ) {
2471 $user = new User;
2472 $user->load();
2473 if ( isset( $params['options'] ) ) {
2474 $user->mOptions = $params['options'] + $user->mOptions;
2475 unset( $params['options'] );
2476 }
2477 $dbw = wfGetDB( DB_MASTER );
2478 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
2479 $fields = array(
2480 'user_id' => $seqVal,
2481 'user_name' => $name,
2482 'user_password' => $user->mPassword,
2483 'user_newpassword' => $user->mNewpassword,
2484 'user_newpass_time' => $dbw->timestamp( $user->mNewpassTime ),
2485 'user_email' => $user->mEmail,
2486 'user_email_authenticated' => $dbw->timestampOrNull( $user->mEmailAuthenticated ),
2487 'user_real_name' => $user->mRealName,
2488 'user_options' => $user->encodeOptions(),
2489 'user_token' => $user->mToken,
2490 'user_registration' => $dbw->timestamp( $user->mRegistration ),
2491 'user_editcount' => 0,
2492 );
2493 foreach ( $params as $name => $value ) {
2494 $fields["user_$name"] = $value;
2495 }
2496 $dbw->insert( 'user', $fields, __METHOD__, array( 'IGNORE' ) );
2497 if ( $dbw->affectedRows() ) {
2498 $newUser = User::newFromId( $dbw->insertId() );
2499 } else {
2500 $newUser = null;
2501 }
2502 return $newUser;
2503 }
2504
2505 /**
2506 * Add this existing user object to the database
2507 */
2508 function addToDatabase() {
2509 $this->load();
2510 $dbw = wfGetDB( DB_MASTER );
2511 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
2512 $dbw->insert( 'user',
2513 array(
2514 'user_id' => $seqVal,
2515 'user_name' => $this->mName,
2516 'user_password' => $this->mPassword,
2517 'user_newpassword' => $this->mNewpassword,
2518 'user_newpass_time' => $dbw->timestamp( $this->mNewpassTime ),
2519 'user_email' => $this->mEmail,
2520 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
2521 'user_real_name' => $this->mRealName,
2522 'user_options' => '',
2523 'user_token' => $this->mToken,
2524 'user_registration' => $dbw->timestamp( $this->mRegistration ),
2525 'user_editcount' => 0,
2526 ), __METHOD__
2527 );
2528 $this->mId = $dbw->insertId();
2529
2530 // Clear instance cache other than user table data, which is already accurate
2531 $this->clearInstanceCache();
2532
2533 $this->saveOptions();
2534 }
2535
2536 /**
2537 * If this (non-anonymous) user is blocked, block any IP address
2538 * they've successfully logged in from.
2539 */
2540 function spreadBlock() {
2541 wfDebug( __METHOD__."()\n" );
2542 $this->load();
2543 if ( $this->mId == 0 ) {
2544 return;
2545 }
2546
2547 $userblock = Block::newFromDB( '', $this->mId );
2548 if ( !$userblock ) {
2549 return;
2550 }
2551
2552 $userblock->doAutoblock( wfGetIp() );
2553
2554 }
2555
2556 /**
2557 * Generate a string which will be different for any combination of
2558 * user options which would produce different parser output.
2559 * This will be used as part of the hash key for the parser cache,
2560 * so users will the same options can share the same cached data
2561 * safely.
2562 *
2563 * Extensions which require it should install 'PageRenderingHash' hook,
2564 * which will give them a chance to modify this key based on their own
2565 * settings.
2566 *
2567 * @return \string Page rendering hash
2568 */
2569 function getPageRenderingHash() {
2570 global $wgUseDynamicDates, $wgRenderHashAppend, $wgLang, $wgContLang;
2571 if( $this->mHash ){
2572 return $this->mHash;
2573 }
2574
2575 // stubthreshold is only included below for completeness,
2576 // it will always be 0 when this function is called by parsercache.
2577
2578 $confstr = $this->getOption( 'math' );
2579 $confstr .= '!' . $this->getOption( 'stubthreshold' );
2580 if ( $wgUseDynamicDates ) {
2581 $confstr .= '!' . $this->getDatePreference();
2582 }
2583 $confstr .= '!' . ($this->getOption( 'numberheadings' ) ? '1' : '');
2584 $confstr .= '!' . $wgLang->getCode();
2585 $confstr .= '!' . $this->getOption( 'thumbsize' );
2586 // add in language specific options, if any
2587 $extra = $wgContLang->getExtraHashOptions();
2588 $confstr .= $extra;
2589
2590 $confstr .= $wgRenderHashAppend;
2591
2592 // Give a chance for extensions to modify the hash, if they have
2593 // extra options or other effects on the parser cache.
2594 wfRunHooks( 'PageRenderingHash', array( &$confstr ) );
2595
2596 // Make it a valid memcached key fragment
2597 $confstr = str_replace( ' ', '_', $confstr );
2598 $this->mHash = $confstr;
2599 return $confstr;
2600 }
2601
2602 /**
2603 * Get whether the user is explicitly blocked from account creation.
2604 * @return \bool True if blocked
2605 */
2606 function isBlockedFromCreateAccount() {
2607 $this->getBlockedStatus();
2608 return $this->mBlock && $this->mBlock->mCreateAccount;
2609 }
2610
2611 /**
2612 * Get whether the user is blocked from using Special:Emailuser.
2613 * @return \bool True if blocked
2614 */
2615 function isBlockedFromEmailuser() {
2616 $this->getBlockedStatus();
2617 return $this->mBlock && $this->mBlock->mBlockEmail;
2618 }
2619
2620 /**
2621 * Get whether the user is allowed to create an account.
2622 * @return \bool True if allowed
2623 */
2624 function isAllowedToCreateAccount() {
2625 return $this->isAllowed( 'createaccount' ) && !$this->isBlockedFromCreateAccount();
2626 }
2627
2628 /**
2629 * @deprecated
2630 */
2631 function setLoaded( $loaded ) {
2632 wfDeprecated( __METHOD__ );
2633 }
2634
2635 /**
2636 * Get this user's personal page title.
2637 *
2638 * @return \type{Title} User's personal page title
2639 */
2640 function getUserPage() {
2641 return Title::makeTitle( NS_USER, $this->getName() );
2642 }
2643
2644 /**
2645 * Get this user's talk page title.
2646 *
2647 * @return \type{Title} User's talk page title
2648 */
2649 function getTalkPage() {
2650 $title = $this->getUserPage();
2651 return $title->getTalkPage();
2652 }
2653
2654 /**
2655 * Get the maximum valid user ID.
2656 * @return \int User ID
2657 * @static
2658 */
2659 function getMaxID() {
2660 static $res; // cache
2661
2662 if ( isset( $res ) )
2663 return $res;
2664 else {
2665 $dbr = wfGetDB( DB_SLAVE );
2666 return $res = $dbr->selectField( 'user', 'max(user_id)', false, 'User::getMaxID' );
2667 }
2668 }
2669
2670 /**
2671 * Determine whether the user is a newbie. Newbies are either
2672 * anonymous IPs, or the most recently created accounts.
2673 * @return \bool True if the user is a newbie
2674 */
2675 function isNewbie() {
2676 return !$this->isAllowed( 'autoconfirmed' );
2677 }
2678
2679 /**
2680 * Is the user active? We check to see if they've made at least
2681 * X number of edits in the last Y days.
2682 *
2683 * @return \bool True if the user is active, false if not.
2684 */
2685 public function isActiveEditor() {
2686 global $wgActiveUserEditCount, $wgActiveUserDays;
2687 $dbr = wfGetDB( DB_SLAVE );
2688
2689 // Stolen without shame from RC
2690 $cutoff_unixtime = time() - ( $wgActiveUserDays * 86400 );
2691 $cutoff_unixtime = $cutoff_unixtime - ( $cutoff_unixtime % 86400 );
2692 $oldTime = $dbr->addQuotes( $dbr->timestamp( $cutoff_unixtime ) );
2693
2694 $res = $dbr->select( 'revision', '1',
2695 array( 'rev_user_text' => $this->getName(), "rev_timestamp > $oldTime"),
2696 __METHOD__,
2697 array('LIMIT' => $wgActiveUserEditCount ) );
2698
2699 $count = $dbr->numRows($res);
2700 $dbr->freeResult($res);
2701
2702 return $count == $wgActiveUserEditCount;
2703 }
2704
2705 /**
2706 * Check to see if the given clear-text password is one of the accepted passwords
2707 * @param $password \string user password.
2708 * @return \bool True if the given password is correct, otherwise False.
2709 */
2710 function checkPassword( $password ) {
2711 global $wgAuth;
2712 $this->load();
2713
2714 // Even though we stop people from creating passwords that
2715 // are shorter than this, doesn't mean people wont be able
2716 // to. Certain authentication plugins do NOT want to save
2717 // domain passwords in a mysql database, so we should
2718 // check this (incase $wgAuth->strict() is false).
2719 if( !$this->isValidPassword( $password ) ) {
2720 return false;
2721 }
2722
2723 if( $wgAuth->authenticate( $this->getName(), $password ) ) {
2724 return true;
2725 } elseif( $wgAuth->strict() ) {
2726 /* Auth plugin doesn't allow local authentication */
2727 return false;
2728 } elseif( $wgAuth->strictUserAuth( $this->getName() ) ) {
2729 /* Auth plugin doesn't allow local authentication for this user name */
2730 return false;
2731 }
2732 if ( self::comparePasswords( $this->mPassword, $password, $this->mId ) ) {
2733 return true;
2734 } elseif ( function_exists( 'iconv' ) ) {
2735 # Some wikis were converted from ISO 8859-1 to UTF-8, the passwords can't be converted
2736 # Check for this with iconv
2737 $cp1252Password = iconv( 'UTF-8', 'WINDOWS-1252//TRANSLIT', $password );
2738 if ( self::comparePasswords( $this->mPassword, $cp1252Password, $this->mId ) ) {
2739 return true;
2740 }
2741 }
2742 return false;
2743 }
2744
2745 /**
2746 * Check if the given clear-text password matches the temporary password
2747 * sent by e-mail for password reset operations.
2748 * @return \bool True if matches, false otherwise
2749 */
2750 function checkTemporaryPassword( $plaintext ) {
2751 global $wgNewPasswordExpiry;
2752 if( self::comparePasswords( $this->mNewpassword, $plaintext, $this->getId() ) ) {
2753 $this->load();
2754 $expiry = wfTimestamp( TS_UNIX, $this->mNewpassTime ) + $wgNewPasswordExpiry;
2755 return ( time() < $expiry );
2756 } else {
2757 return false;
2758 }
2759 }
2760
2761 /**
2762 * Initialize (if necessary) and return a session token value
2763 * which can be used in edit forms to show that the user's
2764 * login credentials aren't being hijacked with a foreign form
2765 * submission.
2766 *
2767 * @param $salt \types{\string,\arrayof{\string}} Optional function-specific data for hashing
2768 * @return \string The new edit token
2769 */
2770 function editToken( $salt = '' ) {
2771 if ( $this->isAnon() ) {
2772 return EDIT_TOKEN_SUFFIX;
2773 } else {
2774 if( !isset( $_SESSION['wsEditToken'] ) ) {
2775 $token = $this->generateToken();
2776 $_SESSION['wsEditToken'] = $token;
2777 } else {
2778 $token = $_SESSION['wsEditToken'];
2779 }
2780 if( is_array( $salt ) ) {
2781 $salt = implode( '|', $salt );
2782 }
2783 return md5( $token . $salt ) . EDIT_TOKEN_SUFFIX;
2784 }
2785 }
2786
2787 /**
2788 * Generate a looking random token for various uses.
2789 *
2790 * @param $salt \string Optional salt value
2791 * @return \string The new random token
2792 */
2793 function generateToken( $salt = '' ) {
2794 $token = dechex( mt_rand() ) . dechex( mt_rand() );
2795 return md5( $token . $salt );
2796 }
2797
2798 /**
2799 * Check given value against the token value stored in the session.
2800 * A match should confirm that the form was submitted from the
2801 * user's own login session, not a form submission from a third-party
2802 * site.
2803 *
2804 * @param $val \string Input value to compare
2805 * @param $salt \string Optional function-specific data for hashing
2806 * @return \bool Whether the token matches
2807 */
2808 function matchEditToken( $val, $salt = '' ) {
2809 $sessionToken = $this->editToken( $salt );
2810 if ( $val != $sessionToken ) {
2811 wfDebug( "User::matchEditToken: broken session data\n" );
2812 }
2813 return $val == $sessionToken;
2814 }
2815
2816 /**
2817 * Check given value against the token value stored in the session,
2818 * ignoring the suffix.
2819 *
2820 * @param $val \string Input value to compare
2821 * @param $salt \string Optional function-specific data for hashing
2822 * @return \bool Whether the token matches
2823 */
2824 function matchEditTokenNoSuffix( $val, $salt = '' ) {
2825 $sessionToken = $this->editToken( $salt );
2826 return substr( $sessionToken, 0, 32 ) == substr( $val, 0, 32 );
2827 }
2828
2829 /**
2830 * Generate a new e-mail confirmation token and send a confirmation/invalidation
2831 * mail to the user's given address.
2832 *
2833 * @return \types{\bool,\type{WikiError}} True on success, a WikiError object on failure.
2834 */
2835 function sendConfirmationMail() {
2836 global $wgLang;
2837 $expiration = null; // gets passed-by-ref and defined in next line.
2838 $token = $this->confirmationToken( $expiration );
2839 $url = $this->confirmationTokenUrl( $token );
2840 $invalidateURL = $this->invalidationTokenUrl( $token );
2841 $this->saveSettings();
2842
2843 return $this->sendMail( wfMsg( 'confirmemail_subject' ),
2844 wfMsg( 'confirmemail_body',
2845 wfGetIP(),
2846 $this->getName(),
2847 $url,
2848 $wgLang->timeanddate( $expiration, false ),
2849 $invalidateURL ) );
2850 }
2851
2852 /**
2853 * Send an e-mail to this user's account. Does not check for
2854 * confirmed status or validity.
2855 *
2856 * @param $subject \string Message subject
2857 * @param $body \string Message body
2858 * @param $from \string Optional From address; if unspecified, default $wgPasswordSender will be used
2859 * @param $replyto \string Reply-To address
2860 * @return \types{\bool,\type{WikiError}} True on success, a WikiError object on failure
2861 */
2862 function sendMail( $subject, $body, $from = null, $replyto = null ) {
2863 if( is_null( $from ) ) {
2864 global $wgPasswordSender;
2865 $from = $wgPasswordSender;
2866 }
2867
2868 $to = new MailAddress( $this );
2869 $sender = new MailAddress( $from );
2870 return UserMailer::send( $to, $sender, $subject, $body, $replyto );
2871 }
2872
2873 /**
2874 * Generate, store, and return a new e-mail confirmation code.
2875 * A hash (unsalted, since it's used as a key) is stored.
2876 *
2877 * @note Call saveSettings() after calling this function to commit
2878 * this change to the database.
2879 *
2880 * @param[out] &$expiration \mixed Accepts the expiration time
2881 * @return \string New token
2882 * @private
2883 */
2884 function confirmationToken( &$expiration ) {
2885 $now = time();
2886 $expires = $now + 7 * 24 * 60 * 60;
2887 $expiration = wfTimestamp( TS_MW, $expires );
2888 $token = $this->generateToken( $this->mId . $this->mEmail . $expires );
2889 $hash = md5( $token );
2890 $this->load();
2891 $this->mEmailToken = $hash;
2892 $this->mEmailTokenExpires = $expiration;
2893 return $token;
2894 }
2895
2896 /**
2897 * Return a URL the user can use to confirm their email address.
2898 * @param $token \string Accepts the email confirmation token
2899 * @return \string New token URL
2900 * @private
2901 */
2902 function confirmationTokenUrl( $token ) {
2903 return $this->getTokenUrl( 'ConfirmEmail', $token );
2904 }
2905 /**
2906 * Return a URL the user can use to invalidate their email address.
2907 * @param $token \string Accepts the email confirmation token
2908 * @return \string New token URL
2909 * @private
2910 */
2911 function invalidationTokenUrl( $token ) {
2912 return $this->getTokenUrl( 'Invalidateemail', $token );
2913 }
2914
2915 /**
2916 * Internal function to format the e-mail validation/invalidation URLs.
2917 * This uses $wgArticlePath directly as a quickie hack to use the
2918 * hardcoded English names of the Special: pages, for ASCII safety.
2919 *
2920 * @note Since these URLs get dropped directly into emails, using the
2921 * short English names avoids insanely long URL-encoded links, which
2922 * also sometimes can get corrupted in some browsers/mailers
2923 * (bug 6957 with Gmail and Internet Explorer).
2924 *
2925 * @param $page \string Special page
2926 * @param $token \string Token
2927 * @return \string Formatted URL
2928 */
2929 protected function getTokenUrl( $page, $token ) {
2930 global $wgArticlePath;
2931 return wfExpandUrl(
2932 str_replace(
2933 '$1',
2934 "Special:$page/$token",
2935 $wgArticlePath ) );
2936 }
2937
2938 /**
2939 * Mark the e-mail address confirmed.
2940 *
2941 * @note Call saveSettings() after calling this function to commit the change.
2942 */
2943 function confirmEmail() {
2944 $this->setEmailAuthenticationTimestamp( wfTimestampNow() );
2945 return true;
2946 }
2947
2948 /**
2949 * Invalidate the user's e-mail confirmation, and unauthenticate the e-mail
2950 * address if it was already confirmed.
2951 *
2952 * @note Call saveSettings() after calling this function to commit the change.
2953 */
2954 function invalidateEmail() {
2955 $this->load();
2956 $this->mEmailToken = null;
2957 $this->mEmailTokenExpires = null;
2958 $this->setEmailAuthenticationTimestamp( null );
2959 return true;
2960 }
2961
2962 /**
2963 * Set the e-mail authentication timestamp.
2964 * @param $timestamp \string TS_MW timestamp
2965 */
2966 function setEmailAuthenticationTimestamp( $timestamp ) {
2967 $this->load();
2968 $this->mEmailAuthenticated = $timestamp;
2969 wfRunHooks( 'UserSetEmailAuthenticationTimestamp', array( $this, &$this->mEmailAuthenticated ) );
2970 }
2971
2972 /**
2973 * Is this user allowed to send e-mails within limits of current
2974 * site configuration?
2975 * @return \bool True if allowed
2976 */
2977 function canSendEmail() {
2978 global $wgEnableEmail, $wgEnableUserEmail;
2979 if( !$wgEnableEmail || !$wgEnableUserEmail ) {
2980 return false;
2981 }
2982 $canSend = $this->isEmailConfirmed();
2983 wfRunHooks( 'UserCanSendEmail', array( &$this, &$canSend ) );
2984 return $canSend;
2985 }
2986
2987 /**
2988 * Is this user allowed to receive e-mails within limits of current
2989 * site configuration?
2990 * @return \bool True if allowed
2991 */
2992 function canReceiveEmail() {
2993 return $this->isEmailConfirmed() && !$this->getOption( 'disablemail' );
2994 }
2995
2996 /**
2997 * Is this user's e-mail address valid-looking and confirmed within
2998 * limits of the current site configuration?
2999 *
3000 * @note If $wgEmailAuthentication is on, this may require the user to have
3001 * confirmed their address by returning a code or using a password
3002 * sent to the address from the wiki.
3003 *
3004 * @return \bool True if confirmed
3005 */
3006 function isEmailConfirmed() {
3007 global $wgEmailAuthentication;
3008 $this->load();
3009 $confirmed = true;
3010 if( wfRunHooks( 'EmailConfirmed', array( &$this, &$confirmed ) ) ) {
3011 if( $this->isAnon() )
3012 return false;
3013 if( !self::isValidEmailAddr( $this->mEmail ) )
3014 return false;
3015 if( $wgEmailAuthentication && !$this->getEmailAuthenticationTimestamp() )
3016 return false;
3017 return true;
3018 } else {
3019 return $confirmed;
3020 }
3021 }
3022
3023 /**
3024 * Check whether there is an outstanding request for e-mail confirmation.
3025 * @return \bool True if pending
3026 */
3027 function isEmailConfirmationPending() {
3028 global $wgEmailAuthentication;
3029 return $wgEmailAuthentication &&
3030 !$this->isEmailConfirmed() &&
3031 $this->mEmailToken &&
3032 $this->mEmailTokenExpires > wfTimestamp();
3033 }
3034
3035 /**
3036 * Get the timestamp of account creation.
3037 *
3038 * @return \types{\string,\bool} string Timestamp of account creation, or false for
3039 * non-existent/anonymous user accounts.
3040 */
3041 public function getRegistration() {
3042 return $this->getId() > 0
3043 ? $this->mRegistration
3044 : false;
3045 }
3046
3047 /**
3048 * Get the timestamp of the first edit
3049 *
3050 * @return \types{\string,\bool} string Timestamp of first edit, or false for
3051 * non-existent/anonymous user accounts.
3052 */
3053 public function getFirstEditTimestamp() {
3054 if( $this->getId() == 0 ) return false; // anons
3055 $dbr = wfGetDB( DB_SLAVE );
3056 $time = $dbr->selectField( 'revision', 'rev_timestamp',
3057 array( 'rev_user' => $this->getId() ),
3058 __METHOD__,
3059 array( 'ORDER BY' => 'rev_timestamp ASC' )
3060 );
3061 if( !$time ) return false; // no edits
3062 return wfTimestamp( TS_MW, $time );
3063 }
3064
3065 /**
3066 * Get the permissions associated with a given list of groups
3067 *
3068 * @param $groups \type{\arrayof{\string}} List of internal group names
3069 * @return \type{\arrayof{\string}} List of permission key names for given groups combined
3070 */
3071 static function getGroupPermissions( $groups ) {
3072 global $wgGroupPermissions;
3073 $rights = array();
3074 foreach( $groups as $group ) {
3075 if( isset( $wgGroupPermissions[$group] ) ) {
3076 $rights = array_merge( $rights,
3077 // array_filter removes empty items
3078 array_keys( array_filter( $wgGroupPermissions[$group] ) ) );
3079 }
3080 }
3081 return array_unique($rights);
3082 }
3083
3084 /**
3085 * Get all the groups who have a given permission
3086 *
3087 * @param $role \string Role to check
3088 * @return \type{\arrayof{\string}} List of internal group names with the given permission
3089 */
3090 static function getGroupsWithPermission( $role ) {
3091 global $wgGroupPermissions;
3092 $allowedGroups = array();
3093 foreach ( $wgGroupPermissions as $group => $rights ) {
3094 if ( isset( $rights[$role] ) && $rights[$role] ) {
3095 $allowedGroups[] = $group;
3096 }
3097 }
3098 return $allowedGroups;
3099 }
3100
3101 /**
3102 * Get the localized descriptive name for a group, if it exists
3103 *
3104 * @param $group \string Internal group name
3105 * @return \string Localized descriptive group name
3106 */
3107 static function getGroupName( $group ) {
3108 global $wgMessageCache;
3109 $wgMessageCache->loadAllMessages();
3110 $key = "group-$group";
3111 $name = wfMsg( $key );
3112 return $name == '' || wfEmptyMsg( $key, $name )
3113 ? $group
3114 : $name;
3115 }
3116
3117 /**
3118 * Get the localized descriptive name for a member of a group, if it exists
3119 *
3120 * @param $group \string Internal group name
3121 * @return \string Localized name for group member
3122 */
3123 static function getGroupMember( $group ) {
3124 global $wgMessageCache;
3125 $wgMessageCache->loadAllMessages();
3126 $key = "group-$group-member";
3127 $name = wfMsg( $key );
3128 return $name == '' || wfEmptyMsg( $key, $name )
3129 ? $group
3130 : $name;
3131 }
3132
3133 /**
3134 * Return the set of defined explicit groups.
3135 * The implicit groups (by default *, 'user' and 'autoconfirmed')
3136 * are not included, as they are defined automatically, not in the database.
3137 * @return \type{\arrayof{\string}} Array of internal group names
3138 */
3139 static function getAllGroups() {
3140 global $wgGroupPermissions;
3141 return array_diff(
3142 array_keys( $wgGroupPermissions ),
3143 self::getImplicitGroups()
3144 );
3145 }
3146
3147 /**
3148 * Get a list of all available permissions.
3149 * @return \type{\arrayof{\string}} Array of permission names
3150 */
3151 static function getAllRights() {
3152 if ( self::$mAllRights === false ) {
3153 global $wgAvailableRights;
3154 if ( count( $wgAvailableRights ) ) {
3155 self::$mAllRights = array_unique( array_merge( self::$mCoreRights, $wgAvailableRights ) );
3156 } else {
3157 self::$mAllRights = self::$mCoreRights;
3158 }
3159 wfRunHooks( 'UserGetAllRights', array( &self::$mAllRights ) );
3160 }
3161 return self::$mAllRights;
3162 }
3163
3164 /**
3165 * Get a list of implicit groups
3166 * @return \type{\arrayof{\string}} Array of internal group names
3167 */
3168 public static function getImplicitGroups() {
3169 global $wgImplicitGroups;
3170 $groups = $wgImplicitGroups;
3171 wfRunHooks( 'UserGetImplicitGroups', array( &$groups ) ); #deprecated, use $wgImplictGroups instead
3172 return $groups;
3173 }
3174
3175 /**
3176 * Get the title of a page describing a particular group
3177 *
3178 * @param $group \string Internal group name
3179 * @return \types{\type{Title},\bool} Title of the page if it exists, false otherwise
3180 */
3181 static function getGroupPage( $group ) {
3182 global $wgMessageCache;
3183 $wgMessageCache->loadAllMessages();
3184 $page = wfMsgForContent( 'grouppage-' . $group );
3185 if( !wfEmptyMsg( 'grouppage-' . $group, $page ) ) {
3186 $title = Title::newFromText( $page );
3187 if( is_object( $title ) )
3188 return $title;
3189 }
3190 return false;
3191 }
3192
3193 /**
3194 * Create a link to the group in HTML, if available;
3195 * else return the group name.
3196 *
3197 * @param $group \string Internal name of the group
3198 * @param $text \string The text of the link
3199 * @return \string HTML link to the group
3200 */
3201 static function makeGroupLinkHTML( $group, $text = '' ) {
3202 if( $text == '' ) {
3203 $text = self::getGroupName( $group );
3204 }
3205 $title = self::getGroupPage( $group );
3206 if( $title ) {
3207 global $wgUser;
3208 $sk = $wgUser->getSkin();
3209 return $sk->makeLinkObj( $title, htmlspecialchars( $text ) );
3210 } else {
3211 return $text;
3212 }
3213 }
3214
3215 /**
3216 * Create a link to the group in Wikitext, if available;
3217 * else return the group name.
3218 *
3219 * @param $group \string Internal name of the group
3220 * @param $text \string The text of the link
3221 * @return \string Wikilink to the group
3222 */
3223 static function makeGroupLinkWiki( $group, $text = '' ) {
3224 if( $text == '' ) {
3225 $text = self::getGroupName( $group );
3226 }
3227 $title = self::getGroupPage( $group );
3228 if( $title ) {
3229 $page = $title->getPrefixedText();
3230 return "[[$page|$text]]";
3231 } else {
3232 return $text;
3233 }
3234 }
3235
3236 /**
3237 * Returns an array of the groups that a particular group can add/remove.
3238 *
3239 * @param $group String: the group to check for whether it can add/remove
3240 * @return Array array( 'add' => array( addablegroups ),
3241 * 'remove' => array( removablegroups ),
3242 * 'add-self' => array( addablegroups to self),
3243 * 'remove-self' => array( removable groups from self) )
3244 */
3245 static function changeableByGroup( $group ) {
3246 global $wgAddGroups, $wgRemoveGroups, $wgGroupsAddToSelf, $wgGroupsRemoveFromSelf;
3247
3248 $groups = array( 'add' => array(), 'remove' => array(), 'add-self' => array(), 'remove-self' => array() );
3249 if( empty($wgAddGroups[$group]) ) {
3250 // Don't add anything to $groups
3251 } elseif( $wgAddGroups[$group] === true ) {
3252 // You get everything
3253 $groups['add'] = self::getAllGroups();
3254 } elseif( is_array($wgAddGroups[$group]) ) {
3255 $groups['add'] = $wgAddGroups[$group];
3256 }
3257
3258 // Same thing for remove
3259 if( empty($wgRemoveGroups[$group]) ) {
3260 } elseif($wgRemoveGroups[$group] === true ) {
3261 $groups['remove'] = self::getAllGroups();
3262 } elseif( is_array($wgRemoveGroups[$group]) ) {
3263 $groups['remove'] = $wgRemoveGroups[$group];
3264 }
3265
3266 // Re-map numeric keys of AddToSelf/RemoveFromSelf to the 'user' key for backwards compatibility
3267 if( empty($wgGroupsAddToSelf['user']) || $wgGroupsAddToSelf['user'] !== true ) {
3268 foreach($wgGroupsAddToSelf as $key => $value) {
3269 if( is_int($key) ) {
3270 $wgGroupsAddToSelf['user'][] = $value;
3271 }
3272 }
3273 }
3274
3275 if( empty($wgGroupsRemoveFromSelf['user']) || $wgGroupsRemoveFromSelf['user'] !== true ) {
3276 foreach($wgGroupsRemoveFromSelf as $key => $value) {
3277 if( is_int($key) ) {
3278 $wgGroupsRemoveFromSelf['user'][] = $value;
3279 }
3280 }
3281 }
3282
3283 // Now figure out what groups the user can add to him/herself
3284 if( empty($wgGroupsAddToSelf[$group]) ) {
3285 } elseif( $wgGroupsAddToSelf[$group] === true ) {
3286 // No idea WHY this would be used, but it's there
3287 $groups['add-self'] = User::getAllGroups();
3288 } elseif( is_array($wgGroupsAddToSelf[$group]) ) {
3289 $groups['add-self'] = $wgGroupsAddToSelf[$group];
3290 }
3291
3292 if( empty($wgGroupsRemoveFromSelf[$group]) ) {
3293 } elseif( $wgGroupsRemoveFromSelf[$group] === true ) {
3294 $groups['remove-self'] = User::getAllGroups();
3295 } elseif( is_array($wgGroupsRemoveFromSelf[$group]) ) {
3296 $groups['remove-self'] = $wgGroupsRemoveFromSelf[$group];
3297 }
3298
3299 return $groups;
3300 }
3301
3302 /**
3303 * Returns an array of groups that this user can add and remove
3304 * @return Array array( 'add' => array( addablegroups ),
3305 * 'remove' => array( removablegroups ),
3306 * 'add-self' => array( addablegroups to self),
3307 * 'remove-self' => array( removable groups from self) )
3308 */
3309 function changeableGroups() {
3310 if( $this->isAllowed( 'userrights' ) ) {
3311 // This group gives the right to modify everything (reverse-
3312 // compatibility with old "userrights lets you change
3313 // everything")
3314 // Using array_merge to make the groups reindexed
3315 $all = array_merge( User::getAllGroups() );
3316 return array(
3317 'add' => $all,
3318 'remove' => $all,
3319 'add-self' => array(),
3320 'remove-self' => array()
3321 );
3322 }
3323
3324 // Okay, it's not so simple, we will have to go through the arrays
3325 $groups = array(
3326 'add' => array(),
3327 'remove' => array(),
3328 'add-self' => array(),
3329 'remove-self' => array() );
3330 $addergroups = $this->getEffectiveGroups();
3331
3332 foreach ($addergroups as $addergroup) {
3333 $groups = array_merge_recursive(
3334 $groups, $this->changeableByGroup($addergroup)
3335 );
3336 $groups['add'] = array_unique( $groups['add'] );
3337 $groups['remove'] = array_unique( $groups['remove'] );
3338 $groups['add-self'] = array_unique( $groups['add-self'] );
3339 $groups['remove-self'] = array_unique( $groups['remove-self'] );
3340 }
3341 return $groups;
3342 }
3343
3344 /**
3345 * Increment the user's edit-count field.
3346 * Will have no effect for anonymous users.
3347 */
3348 function incEditCount() {
3349 if( !$this->isAnon() ) {
3350 $dbw = wfGetDB( DB_MASTER );
3351 $dbw->update( 'user',
3352 array( 'user_editcount=user_editcount+1' ),
3353 array( 'user_id' => $this->getId() ),
3354 __METHOD__ );
3355
3356 // Lazy initialization check...
3357 if( $dbw->affectedRows() == 0 ) {
3358 // Pull from a slave to be less cruel to servers
3359 // Accuracy isn't the point anyway here
3360 $dbr = wfGetDB( DB_SLAVE );
3361 $count = $dbr->selectField( 'revision',
3362 'COUNT(rev_user)',
3363 array( 'rev_user' => $this->getId() ),
3364 __METHOD__ );
3365
3366 // Now here's a goddamn hack...
3367 if( $dbr !== $dbw ) {
3368 // If we actually have a slave server, the count is
3369 // at least one behind because the current transaction
3370 // has not been committed and replicated.
3371 $count++;
3372 } else {
3373 // But if DB_SLAVE is selecting the master, then the
3374 // count we just read includes the revision that was
3375 // just added in the working transaction.
3376 }
3377
3378 $dbw->update( 'user',
3379 array( 'user_editcount' => $count ),
3380 array( 'user_id' => $this->getId() ),
3381 __METHOD__ );
3382 }
3383 }
3384 // edit count in user cache too
3385 $this->invalidateCache();
3386 }
3387
3388 /**
3389 * Get the description of a given right
3390 *
3391 * @param $right \string Right to query
3392 * @return \string Localized description of the right
3393 */
3394 static function getRightDescription( $right ) {
3395 global $wgMessageCache;
3396 $wgMessageCache->loadAllMessages();
3397 $key = "right-$right";
3398 $name = wfMsg( $key );
3399 return $name == '' || wfEmptyMsg( $key, $name )
3400 ? $right
3401 : $name;
3402 }
3403
3404 /**
3405 * Make an old-style password hash
3406 *
3407 * @param $password \string Plain-text password
3408 * @param $userId \string User ID
3409 * @return \string Password hash
3410 */
3411 static function oldCrypt( $password, $userId ) {
3412 global $wgPasswordSalt;
3413 if ( $wgPasswordSalt ) {
3414 return md5( $userId . '-' . md5( $password ) );
3415 } else {
3416 return md5( $password );
3417 }
3418 }
3419
3420 /**
3421 * Make a new-style password hash
3422 *
3423 * @param $password \string Plain-text password
3424 * @param $salt \string Optional salt, may be random or the user ID.
3425 * If unspecified or false, will generate one automatically
3426 * @return \string Password hash
3427 */
3428 static function crypt( $password, $salt = false ) {
3429 global $wgPasswordSalt;
3430
3431 $hash = '';
3432 if( !wfRunHooks( 'UserCryptPassword', array( &$password, &$salt, &$wgPasswordSalt, &$hash ) ) ) {
3433 return $hash;
3434 }
3435
3436 if( $wgPasswordSalt ) {
3437 if ( $salt === false ) {
3438 $salt = substr( wfGenerateToken(), 0, 8 );
3439 }
3440 return ':B:' . $salt . ':' . md5( $salt . '-' . md5( $password ) );
3441 } else {
3442 return ':A:' . md5( $password );
3443 }
3444 }
3445
3446 /**
3447 * Compare a password hash with a plain-text password. Requires the user
3448 * ID if there's a chance that the hash is an old-style hash.
3449 *
3450 * @param $hash \string Password hash
3451 * @param $password \string Plain-text password to compare
3452 * @param $userId \string User ID for old-style password salt
3453 * @return \bool
3454 */
3455 static function comparePasswords( $hash, $password, $userId = false ) {
3456 $m = false;
3457 $type = substr( $hash, 0, 3 );
3458
3459 $result = false;
3460 if( !wfRunHooks( 'UserComparePasswords', array( &$hash, &$password, &$userId, &$result ) ) ) {
3461 return $result;
3462 }
3463
3464 if ( $type == ':A:' ) {
3465 # Unsalted
3466 return md5( $password ) === substr( $hash, 3 );
3467 } elseif ( $type == ':B:' ) {
3468 # Salted
3469 list( $salt, $realHash ) = explode( ':', substr( $hash, 3 ), 2 );
3470 return md5( $salt.'-'.md5( $password ) ) == $realHash;
3471 } else {
3472 # Old-style
3473 return self::oldCrypt( $password, $userId ) === $hash;
3474 }
3475 }
3476
3477 /**
3478 * Add a newuser log entry for this user
3479 * @param $byEmail Boolean: account made by email?
3480 */
3481 public function addNewUserLogEntry( $byEmail = false ) {
3482 global $wgUser, $wgContLang, $wgNewUserLog;
3483 if( empty($wgNewUserLog) ) {
3484 return true; // disabled
3485 }
3486 $talk = $wgContLang->getFormattedNsText( NS_TALK );
3487 if( $this->getName() == $wgUser->getName() ) {
3488 $action = 'create';
3489 $message = '';
3490 } else {
3491 $action = 'create2';
3492 $message = $byEmail ? wfMsgForContent( 'newuserlog-byemail' ) : '';
3493 }
3494 $log = new LogPage( 'newusers' );
3495 $log->addEntry( $action, $this->getUserPage(), $message, array( $this->getId() ) );
3496 return true;
3497 }
3498
3499 /**
3500 * Add an autocreate newuser log entry for this user
3501 * Used by things like CentralAuth and perhaps other authplugins.
3502 */
3503 public function addNewUserLogEntryAutoCreate() {
3504 global $wgNewUserLog;
3505 if( empty($wgNewUserLog) ) {
3506 return true; // disabled
3507 }
3508 $log = new LogPage( 'newusers', false );
3509 $log->addEntry( 'autocreate', $this->getUserPage(), '', array( $this->getId() ) );
3510 return true;
3511 }
3512
3513 protected function loadOptions() {
3514 $this->load();
3515 if ($this->mOptionsLoaded || !$this->getId() )
3516 return;
3517
3518 $this->mOptions = self::getDefaultOptions();
3519
3520 // Maybe load from the object
3521
3522 if ( !is_null($this->mOptionOverrides) ) {
3523 wfDebug( "Loading options for user ".$this->getId()." from override cache.\n" );
3524 foreach( $this->mOptionOverrides as $key => $value ) {
3525 $this->mOptions[$key] = $value;
3526 }
3527 } else {
3528 wfDebug( "Loading options for user ".$this->getId()." from database.\n" );
3529 // Load from database
3530 $dbr = wfGetDB( DB_SLAVE );
3531
3532 $res = $dbr->select( 'user_properties',
3533 '*',
3534 array('up_user' => $this->getId()),
3535 __METHOD__
3536 );
3537
3538 while( $row = $dbr->fetchObject( $res ) ) {
3539 $this->mOptionOverrides[$row->up_property] = $row->up_value;
3540 $this->mOptions[$row->up_property] = $row->up_value;
3541 }
3542 }
3543
3544 $this->mOptionsLoaded = true;
3545
3546 wfRunHooks( 'UserLoadOptions', array( $this, &$this->mOptions ) );
3547 }
3548
3549 protected function saveOptions() {
3550 $this->loadOptions();
3551 $dbw = wfGetDB( DB_MASTER );
3552
3553 $insert_rows = array();
3554
3555 $saveOptions = $this->mOptions;
3556
3557 // Allow hooks to abort, for instance to save to a global profile.
3558 // Reset options to default state before saving.
3559 if (!wfRunHooks( 'UserSaveOptions', array($this, &$saveOptions) ) )
3560 return;
3561
3562 foreach( $saveOptions as $key => $value ) {
3563 if ( ( is_null(self::getDefaultOption($key)) &&
3564 !( $value === false || is_null($value) ) ) ||
3565 $value != self::getDefaultOption( $key ) ) {
3566 $insert_rows[] = array(
3567 'up_user' => $this->getId(),
3568 'up_property' => $key,
3569 'up_value' => $value,
3570 );
3571 }
3572 }
3573
3574 $dbw->begin();
3575 $dbw->delete( 'user_properties', array( 'up_user' => $this->getId() ), __METHOD__ );
3576 $dbw->insert( 'user_properties', $insert_rows, __METHOD__ );
3577 $dbw->commit();
3578 }
3579
3580 }