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