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