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