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