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