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