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