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