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