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