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