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