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