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