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