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