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