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