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