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