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