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