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