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