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