* (bug 21441) meta=userinfo&uiprop=options no longer returns default options for...
[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;
854
855 $result = null;
856 wfRunHooks( 'UserLoadFromSession', array( $this, &$result ) );
857 if ( $result !== null ) {
858 return $result;
859 }
860
861 if ( isset( $_COOKIE["{$wgCookiePrefix}UserID"] ) ) {
862 $sId = intval( $_COOKIE["{$wgCookiePrefix}UserID"] );
863 if( isset( $_SESSION['wsUserID'] ) && $sId != $_SESSION['wsUserID'] ) {
864 $this->loadDefaults(); // Possible collision!
865 wfDebugLog( 'loginSessions', "Session user ID ({$_SESSION['wsUserID']}) and
866 cookie user ID ($sId) don't match!" );
867 return false;
868 }
869 $_SESSION['wsUserID'] = $sId;
870 } else if ( isset( $_SESSION['wsUserID'] ) ) {
871 if ( $_SESSION['wsUserID'] != 0 ) {
872 $sId = $_SESSION['wsUserID'];
873 } else {
874 $this->loadDefaults();
875 return false;
876 }
877 } else {
878 $this->loadDefaults();
879 return false;
880 }
881
882 if ( isset( $_SESSION['wsUserName'] ) ) {
883 $sName = $_SESSION['wsUserName'];
884 } else if ( isset( $_COOKIE["{$wgCookiePrefix}UserName"] ) ) {
885 $sName = $_COOKIE["{$wgCookiePrefix}UserName"];
886 $_SESSION['wsUserName'] = $sName;
887 } else {
888 $this->loadDefaults();
889 return false;
890 }
891
892 $passwordCorrect = FALSE;
893 $this->mId = $sId;
894 if ( !$this->loadFromId() ) {
895 # Not a valid ID, loadFromId has switched the object to anon for us
896 return false;
897 }
898
899 if ( isset( $_SESSION['wsToken'] ) ) {
900 $passwordCorrect = $_SESSION['wsToken'] == $this->mToken;
901 $from = 'session';
902 } else if ( isset( $_COOKIE["{$wgCookiePrefix}Token"] ) ) {
903 $passwordCorrect = $this->mToken == $_COOKIE["{$wgCookiePrefix}Token"];
904 $from = 'cookie';
905 } else {
906 # No session or persistent login cookie
907 $this->loadDefaults();
908 return false;
909 }
910
911 if ( ( $sName == $this->mName ) && $passwordCorrect ) {
912 $_SESSION['wsToken'] = $this->mToken;
913 wfDebug( "Logged in from $from\n" );
914 return true;
915 } else {
916 # Invalid credentials
917 wfDebug( "Can't log in from $from, invalid credentials\n" );
918 $this->loadDefaults();
919 return false;
920 }
921 }
922
923 /**
924 * Load user and user_group data from the database.
925 * $this::mId must be set, this is how the user is identified.
926 *
927 * @return \bool True if the user exists, false if the user is anonymous
928 * @private
929 */
930 function loadFromDatabase() {
931 # Paranoia
932 $this->mId = intval( $this->mId );
933
934 /** Anonymous user */
935 if( !$this->mId ) {
936 $this->loadDefaults();
937 return false;
938 }
939
940 $dbr = wfGetDB( DB_MASTER );
941 $s = $dbr->selectRow( 'user', '*', array( 'user_id' => $this->mId ), __METHOD__ );
942
943 wfRunHooks( 'UserLoadFromDatabase', array( $this, &$s ) );
944
945 if ( $s !== false ) {
946 # Initialise user table data
947 $this->loadFromRow( $s );
948 $this->mGroups = null; // deferred
949 $this->getEditCount(); // revalidation for nulls
950 return true;
951 } else {
952 # Invalid user_id
953 $this->mId = 0;
954 $this->loadDefaults();
955 return false;
956 }
957 }
958
959 /**
960 * Initialize this object from a row from the user table.
961 *
962 * @param $row \type{\arrayof{\mixed}} Row from the user table to load.
963 */
964 function loadFromRow( $row ) {
965 $this->mDataLoaded = true;
966
967 if ( isset( $row->user_id ) ) {
968 $this->mId = intval( $row->user_id );
969 }
970 $this->mName = $row->user_name;
971 $this->mRealName = $row->user_real_name;
972 $this->mPassword = $row->user_password;
973 $this->mNewpassword = $row->user_newpassword;
974 $this->mNewpassTime = wfTimestampOrNull( TS_MW, $row->user_newpass_time );
975 $this->mEmail = $row->user_email;
976 $this->decodeOptions( $row->user_options );
977 $this->mTouched = wfTimestamp(TS_MW,$row->user_touched);
978 $this->mToken = $row->user_token;
979 $this->mEmailAuthenticated = wfTimestampOrNull( TS_MW, $row->user_email_authenticated );
980 $this->mEmailToken = $row->user_email_token;
981 $this->mEmailTokenExpires = wfTimestampOrNull( TS_MW, $row->user_email_token_expires );
982 $this->mRegistration = wfTimestampOrNull( TS_MW, $row->user_registration );
983 $this->mEditCount = $row->user_editcount;
984 }
985
986 /**
987 * Load the groups from the database if they aren't already loaded.
988 * @private
989 */
990 function loadGroups() {
991 if ( is_null( $this->mGroups ) ) {
992 $dbr = wfGetDB( DB_MASTER );
993 $res = $dbr->select( 'user_groups',
994 array( 'ug_group' ),
995 array( 'ug_user' => $this->mId ),
996 __METHOD__ );
997 $this->mGroups = array();
998 while( $row = $dbr->fetchObject( $res ) ) {
999 $this->mGroups[] = $row->ug_group;
1000 }
1001 }
1002 }
1003
1004 /**
1005 * Clear various cached data stored in this object.
1006 * @param $reloadFrom \string Reload user and user_groups table data from a
1007 * given source. May be "name", "id", "defaults", "session", or false for
1008 * no reload.
1009 */
1010 function clearInstanceCache( $reloadFrom = false ) {
1011 $this->mNewtalk = -1;
1012 $this->mDatePreference = null;
1013 $this->mBlockedby = -1; # Unset
1014 $this->mHash = false;
1015 $this->mSkin = null;
1016 $this->mRights = null;
1017 $this->mEffectiveGroups = null;
1018 $this->mOptions = null;
1019
1020 if ( $reloadFrom ) {
1021 $this->mDataLoaded = false;
1022 $this->mFrom = $reloadFrom;
1023 }
1024 }
1025
1026 /**
1027 * Combine the language default options with any site-specific options
1028 * and add the default language variants.
1029 *
1030 * @return \type{\arrayof{\string}} Array of options
1031 */
1032 static function getDefaultOptions() {
1033 global $wgNamespacesToBeSearchedDefault;
1034 /**
1035 * Site defaults will override the global/language defaults
1036 */
1037 global $wgDefaultUserOptions, $wgContLang, $wgDefaultSkin;
1038 $defOpt = $wgDefaultUserOptions + $wgContLang->getDefaultUserOptionOverrides();
1039
1040 /**
1041 * default language setting
1042 */
1043 $variant = $wgContLang->getPreferredVariant( false );
1044 $defOpt['variant'] = $variant;
1045 $defOpt['language'] = $variant;
1046 foreach( SearchEngine::searchableNamespaces() as $nsnum => $nsname ) {
1047 $defOpt['searchNs'.$nsnum] = !empty( $wgNamespacesToBeSearchedDefault[$nsnum] );
1048 }
1049 $defOpt['skin'] = $wgDefaultSkin;
1050
1051 return $defOpt;
1052 }
1053
1054 /**
1055 * Get a given default option value.
1056 *
1057 * @param $opt \string Name of option to retrieve
1058 * @return \string Default option value
1059 */
1060 public static function getDefaultOption( $opt ) {
1061 $defOpts = self::getDefaultOptions();
1062 if( isset( $defOpts[$opt] ) ) {
1063 return $defOpts[$opt];
1064 } else {
1065 return null;
1066 }
1067 }
1068
1069 /**
1070 * Get a list of user toggle names
1071 * @return \type{\arrayof{\string}} Array of user toggle names
1072 */
1073 static function getToggles() {
1074 global $wgContLang, $wgUseRCPatrol;
1075 $extraToggles = array();
1076 wfRunHooks( 'UserToggles', array( &$extraToggles ) );
1077 if( $wgUseRCPatrol ) {
1078 $extraToggles[] = 'hidepatrolled';
1079 $extraToggles[] = 'newpageshidepatrolled';
1080 $extraToggles[] = 'watchlisthidepatrolled';
1081 }
1082 return array_merge( self::$mToggles, $extraToggles, $wgContLang->getExtraUserToggles() );
1083 }
1084
1085
1086 /**
1087 * Get blocking information
1088 * @private
1089 * @param $bFromSlave \bool Whether to check the slave database first. To
1090 * improve performance, non-critical checks are done
1091 * against slaves. Check when actually saving should be
1092 * done against master.
1093 */
1094 function getBlockedStatus( $bFromSlave = true ) {
1095 global $wgEnableSorbs, $wgProxyWhitelist, $wgUser;
1096
1097 if ( -1 != $this->mBlockedby ) {
1098 wfDebug( "User::getBlockedStatus: already loaded.\n" );
1099 return;
1100 }
1101
1102 wfProfileIn( __METHOD__ );
1103 wfDebug( __METHOD__.": checking...\n" );
1104
1105 // Initialize data...
1106 // Otherwise something ends up stomping on $this->mBlockedby when
1107 // things get lazy-loaded later, causing false positive block hits
1108 // due to -1 !== 0. Probably session-related... Nothing should be
1109 // overwriting mBlockedby, surely?
1110 $this->load();
1111
1112 $this->mBlockedby = 0;
1113 $this->mHideName = 0;
1114 $this->mAllowUsertalk = 0;
1115
1116 # Check if we are looking at an IP or a logged-in user
1117 if ( $this->isIP( $this->getName() ) ) {
1118 $ip = $this->getName();
1119 } else {
1120 # Check if we are looking at the current user
1121 # If we don't, and the user is logged in, we don't know about
1122 # his IP / autoblock status, so ignore autoblock of current user's IP
1123 if ( $this->getID() != $wgUser->getID() ) {
1124 $ip = '';
1125 } else {
1126 # Get IP of current user
1127 $ip = wfGetIP();
1128 }
1129 }
1130
1131 if ( $this->isAllowed( 'ipblock-exempt' ) ) {
1132 # Exempt from all types of IP-block
1133 $ip = '';
1134 }
1135
1136 # User/IP blocking
1137 $this->mBlock = new Block();
1138 $this->mBlock->fromMaster( !$bFromSlave );
1139 if ( $this->mBlock->load( $ip , $this->mId ) ) {
1140 wfDebug( __METHOD__ . ": Found block.\n" );
1141 $this->mBlockedby = $this->mBlock->mBy;
1142 $this->mBlockreason = $this->mBlock->mReason;
1143 $this->mHideName = $this->mBlock->mHideName;
1144 $this->mAllowUsertalk = $this->mBlock->mAllowUsertalk;
1145 if ( $this->isLoggedIn() && $wgUser->getID() == $this->getID() ) {
1146 $this->spreadBlock();
1147 }
1148 } else {
1149 // Bug 13611: don't remove mBlock here, to allow account creation blocks to
1150 // apply to users. Note that the existence of $this->mBlock is not used to
1151 // check for edit blocks, $this->mBlockedby is instead.
1152 }
1153
1154 # Proxy blocking
1155 if ( !$this->isAllowed( 'proxyunbannable' ) && !in_array( $ip, $wgProxyWhitelist ) ) {
1156 # Local list
1157 if ( wfIsLocallyBlockedProxy( $ip ) ) {
1158 $this->mBlockedby = wfMsg( 'proxyblocker' );
1159 $this->mBlockreason = wfMsg( 'proxyblockreason' );
1160 }
1161
1162 # DNSBL
1163 if ( !$this->mBlockedby && $wgEnableSorbs && !$this->getID() ) {
1164 if ( $this->inSorbsBlacklist( $ip ) ) {
1165 $this->mBlockedby = wfMsg( 'sorbs' );
1166 $this->mBlockreason = wfMsg( 'sorbsreason' );
1167 }
1168 }
1169 }
1170
1171 # Extensions
1172 wfRunHooks( 'GetBlockedStatus', array( &$this ) );
1173
1174 wfProfileOut( __METHOD__ );
1175 }
1176
1177 /**
1178 * Whether the given IP is in the SORBS blacklist.
1179 *
1180 * @param $ip \string IP to check
1181 * @return \bool True if blacklisted.
1182 */
1183 function inSorbsBlacklist( $ip ) {
1184 global $wgEnableSorbs, $wgSorbsUrl;
1185
1186 return $wgEnableSorbs &&
1187 $this->inDnsBlacklist( $ip, $wgSorbsUrl );
1188 }
1189
1190 /**
1191 * Whether the given IP is in a given DNS blacklist.
1192 *
1193 * @param $ip \string IP to check
1194 * @param $bases \string or Array of Strings: URL of the DNS blacklist
1195 * @return \bool True if blacklisted.
1196 */
1197 function inDnsBlacklist( $ip, $bases ) {
1198 wfProfileIn( __METHOD__ );
1199
1200 $found = false;
1201 $host = '';
1202 // FIXME: IPv6 ??? (http://bugs.php.net/bug.php?id=33170)
1203 if( IP::isIPv4( $ip ) ) {
1204 # Reverse IP, bug 21255
1205 $ipReversed = implode( '.', array_reverse( explode( '.', $ip ) ) );
1206
1207 foreach( (array)$bases as $base ) {
1208 # Make hostname
1209 $host = "$ipReversed.$base";
1210
1211 # Send query
1212 $ipList = gethostbynamel( $host );
1213
1214 if( $ipList ) {
1215 wfDebug( "Hostname $host is {$ipList[0]}, it's a proxy says $base!\n" );
1216 $found = true;
1217 break;
1218 } else {
1219 wfDebug( "Requested $host, not found in $base.\n" );
1220 }
1221 }
1222 }
1223
1224 wfProfileOut( __METHOD__ );
1225 return $found;
1226 }
1227
1228 /**
1229 * Is this user subject to rate limiting?
1230 *
1231 * @return \bool True if rate limited
1232 */
1233 public function isPingLimitable() {
1234 global $wgRateLimitsExcludedGroups;
1235 global $wgRateLimitsExcludedIPs;
1236 if( array_intersect( $this->getEffectiveGroups(), $wgRateLimitsExcludedGroups ) ) {
1237 // Deprecated, but kept for backwards-compatibility config
1238 return false;
1239 }
1240 if( in_array( wfGetIP(), $wgRateLimitsExcludedIPs ) ) {
1241 // No other good way currently to disable rate limits
1242 // for specific IPs. :P
1243 // But this is a crappy hack and should die.
1244 return false;
1245 }
1246 return !$this->isAllowed('noratelimit');
1247 }
1248
1249 /**
1250 * Primitive rate limits: enforce maximum actions per time period
1251 * to put a brake on flooding.
1252 *
1253 * @note When using a shared cache like memcached, IP-address
1254 * last-hit counters will be shared across wikis.
1255 *
1256 * @param $action \string Action to enforce; 'edit' if unspecified
1257 * @return \bool True if a rate limiter was tripped
1258 */
1259 function pingLimiter( $action = 'edit' ) {
1260 # Call the 'PingLimiter' hook
1261 $result = false;
1262 if( !wfRunHooks( 'PingLimiter', array( &$this, $action, $result ) ) ) {
1263 return $result;
1264 }
1265
1266 global $wgRateLimits;
1267 if( !isset( $wgRateLimits[$action] ) ) {
1268 return false;
1269 }
1270
1271 # Some groups shouldn't trigger the ping limiter, ever
1272 if( !$this->isPingLimitable() )
1273 return false;
1274
1275 global $wgMemc, $wgRateLimitLog;
1276 wfProfileIn( __METHOD__ );
1277
1278 $limits = $wgRateLimits[$action];
1279 $keys = array();
1280 $id = $this->getId();
1281 $ip = wfGetIP();
1282 $userLimit = false;
1283
1284 if( isset( $limits['anon'] ) && $id == 0 ) {
1285 $keys[wfMemcKey( 'limiter', $action, 'anon' )] = $limits['anon'];
1286 }
1287
1288 if( isset( $limits['user'] ) && $id != 0 ) {
1289 $userLimit = $limits['user'];
1290 }
1291 if( $this->isNewbie() ) {
1292 if( isset( $limits['newbie'] ) && $id != 0 ) {
1293 $keys[wfMemcKey( 'limiter', $action, 'user', $id )] = $limits['newbie'];
1294 }
1295 if( isset( $limits['ip'] ) ) {
1296 $keys["mediawiki:limiter:$action:ip:$ip"] = $limits['ip'];
1297 }
1298 $matches = array();
1299 if( isset( $limits['subnet'] ) && preg_match( '/^(\d+\.\d+\.\d+)\.\d+$/', $ip, $matches ) ) {
1300 $subnet = $matches[1];
1301 $keys["mediawiki:limiter:$action:subnet:$subnet"] = $limits['subnet'];
1302 }
1303 }
1304 // Check for group-specific permissions
1305 // If more than one group applies, use the group with the highest limit
1306 foreach ( $this->getGroups() as $group ) {
1307 if ( isset( $limits[$group] ) ) {
1308 if ( $userLimit === false || $limits[$group] > $userLimit ) {
1309 $userLimit = $limits[$group];
1310 }
1311 }
1312 }
1313 // Set the user limit key
1314 if ( $userLimit !== false ) {
1315 wfDebug( __METHOD__ . ": effective user limit: $userLimit\n" );
1316 $keys[ wfMemcKey( 'limiter', $action, 'user', $id ) ] = $userLimit;
1317 }
1318
1319 $triggered = false;
1320 foreach( $keys as $key => $limit ) {
1321 list( $max, $period ) = $limit;
1322 $summary = "(limit $max in {$period}s)";
1323 $count = $wgMemc->get( $key );
1324 // Already pinged?
1325 if( $count ) {
1326 if( $count > $max ) {
1327 wfDebug( __METHOD__ . ": tripped! $key at $count $summary\n" );
1328 if( $wgRateLimitLog ) {
1329 @error_log( wfTimestamp( TS_MW ) . ' ' . wfWikiID() . ': ' . $this->getName() . " tripped $key at $count $summary\n", 3, $wgRateLimitLog );
1330 }
1331 $triggered = true;
1332 } else {
1333 wfDebug( __METHOD__ . ": ok. $key at $count $summary\n" );
1334 }
1335 $wgMemc->incr( $key );
1336 } else {
1337 wfDebug( __METHOD__ . ": adding record for $key $summary\n" );
1338 $wgMemc->set( $key, 1, intval( $period ) ); // first ping
1339 }
1340 }
1341
1342 wfProfileOut( __METHOD__ );
1343 return $triggered;
1344 }
1345
1346 /**
1347 * Check if user is blocked
1348 *
1349 * @param $bFromSlave \bool Whether to check the slave database instead of the master
1350 * @return \bool True if blocked, false otherwise
1351 */
1352 function isBlocked( $bFromSlave = true ) { // hacked from false due to horrible probs on site
1353 wfDebug( "User::isBlocked: enter\n" );
1354 $this->getBlockedStatus( $bFromSlave );
1355 return $this->mBlockedby !== 0;
1356 }
1357
1358 /**
1359 * Check if user is blocked from editing a particular article
1360 *
1361 * @param $title \string Title to check
1362 * @param $bFromSlave \bool Whether to check the slave database instead of the master
1363 * @return \bool True if blocked, false otherwise
1364 */
1365 function isBlockedFrom( $title, $bFromSlave = false ) {
1366 global $wgBlockAllowsUTEdit;
1367 wfProfileIn( __METHOD__ );
1368 wfDebug( __METHOD__ . ": enter\n" );
1369
1370 wfDebug( __METHOD__ . ": asking isBlocked()\n" );
1371 $blocked = $this->isBlocked( $bFromSlave );
1372 $allowUsertalk = ( $wgBlockAllowsUTEdit ? $this->mAllowUsertalk : false );
1373 # If a user's name is suppressed, they cannot make edits anywhere
1374 if ( !$this->mHideName && $allowUsertalk && $title->getText() === $this->getName() &&
1375 $title->getNamespace() == NS_USER_TALK ) {
1376 $blocked = false;
1377 wfDebug( __METHOD__ . ": self-talk page, ignoring any blocks\n" );
1378 }
1379
1380 wfRunHooks( 'UserIsBlockedFrom', array( $this, $title, &$blocked, &$allowUsertalk ) );
1381
1382 wfProfileOut( __METHOD__ );
1383 return $blocked;
1384 }
1385
1386 /**
1387 * If user is blocked, return the name of the user who placed the block
1388 * @return \string name of blocker
1389 */
1390 function blockedBy() {
1391 $this->getBlockedStatus();
1392 return $this->mBlockedby;
1393 }
1394
1395 /**
1396 * If user is blocked, return the specified reason for the block
1397 * @return \string Blocking reason
1398 */
1399 function blockedFor() {
1400 $this->getBlockedStatus();
1401 return $this->mBlockreason;
1402 }
1403
1404 /**
1405 * If user is blocked, return the ID for the block
1406 * @return \int Block ID
1407 */
1408 function getBlockId() {
1409 $this->getBlockedStatus();
1410 return ( $this->mBlock ? $this->mBlock->mId : false );
1411 }
1412
1413 /**
1414 * Check if user is blocked on all wikis.
1415 * Do not use for actual edit permission checks!
1416 * This is intented for quick UI checks.
1417 *
1418 * @param $ip \type{\string} IP address, uses current client if none given
1419 * @return \type{\bool} True if blocked, false otherwise
1420 */
1421 function isBlockedGlobally( $ip = '' ) {
1422 if( $this->mBlockedGlobally !== null ) {
1423 return $this->mBlockedGlobally;
1424 }
1425 // User is already an IP?
1426 if( IP::isIPAddress( $this->getName() ) ) {
1427 $ip = $this->getName();
1428 } else if( !$ip ) {
1429 $ip = wfGetIP();
1430 }
1431 $blocked = false;
1432 wfRunHooks( 'UserIsBlockedGlobally', array( &$this, $ip, &$blocked ) );
1433 $this->mBlockedGlobally = (bool)$blocked;
1434 return $this->mBlockedGlobally;
1435 }
1436
1437 /**
1438 * Check if user account is locked
1439 *
1440 * @return \type{\bool} True if locked, false otherwise
1441 */
1442 function isLocked() {
1443 if( $this->mLocked !== null ) {
1444 return $this->mLocked;
1445 }
1446 global $wgAuth;
1447 $authUser = $wgAuth->getUserInstance( $this );
1448 $this->mLocked = (bool)$authUser->isLocked();
1449 return $this->mLocked;
1450 }
1451
1452 /**
1453 * Check if user account is hidden
1454 *
1455 * @return \type{\bool} True if hidden, false otherwise
1456 */
1457 function isHidden() {
1458 if( $this->mHideName !== null ) {
1459 return $this->mHideName;
1460 }
1461 $this->getBlockedStatus();
1462 if( !$this->mHideName ) {
1463 global $wgAuth;
1464 $authUser = $wgAuth->getUserInstance( $this );
1465 $this->mHideName = (bool)$authUser->isHidden();
1466 }
1467 return $this->mHideName;
1468 }
1469
1470 /**
1471 * Get the user's ID.
1472 * @return \int The user's ID; 0 if the user is anonymous or nonexistent
1473 */
1474 function getId() {
1475 if( $this->mId === null and $this->mName !== null
1476 and User::isIP( $this->mName ) ) {
1477 // Special case, we know the user is anonymous
1478 return 0;
1479 } elseif( $this->mId === null ) {
1480 // Don't load if this was initialized from an ID
1481 $this->load();
1482 }
1483 return $this->mId;
1484 }
1485
1486 /**
1487 * Set the user and reload all fields according to a given ID
1488 * @param $v \int User ID to reload
1489 */
1490 function setId( $v ) {
1491 $this->mId = $v;
1492 $this->clearInstanceCache( 'id' );
1493 }
1494
1495 /**
1496 * Get the user name, or the IP of an anonymous user
1497 * @return \string User's name or IP address
1498 */
1499 function getName() {
1500 if ( !$this->mDataLoaded && $this->mFrom == 'name' ) {
1501 # Special case optimisation
1502 return $this->mName;
1503 } else {
1504 $this->load();
1505 if ( $this->mName === false ) {
1506 # Clean up IPs
1507 $this->mName = IP::sanitizeIP( wfGetIP() );
1508 }
1509 return $this->mName;
1510 }
1511 }
1512
1513 /**
1514 * Set the user name.
1515 *
1516 * This does not reload fields from the database according to the given
1517 * name. Rather, it is used to create a temporary "nonexistent user" for
1518 * later addition to the database. It can also be used to set the IP
1519 * address for an anonymous user to something other than the current
1520 * remote IP.
1521 *
1522 * @note User::newFromName() has rougly the same function, when the named user
1523 * does not exist.
1524 * @param $str \string New user name to set
1525 */
1526 function setName( $str ) {
1527 $this->load();
1528 $this->mName = $str;
1529 }
1530
1531 /**
1532 * Get the user's name escaped by underscores.
1533 * @return \string Username escaped by underscores.
1534 */
1535 function getTitleKey() {
1536 return str_replace( ' ', '_', $this->getName() );
1537 }
1538
1539 /**
1540 * Check if the user has new messages.
1541 * @return \bool True if the user has new messages
1542 */
1543 function getNewtalk() {
1544 $this->load();
1545
1546 # Load the newtalk status if it is unloaded (mNewtalk=-1)
1547 if( $this->mNewtalk === -1 ) {
1548 $this->mNewtalk = false; # reset talk page status
1549
1550 # Check memcached separately for anons, who have no
1551 # entire User object stored in there.
1552 if( !$this->mId ) {
1553 global $wgMemc;
1554 $key = wfMemcKey( 'newtalk', 'ip', $this->getName() );
1555 $newtalk = $wgMemc->get( $key );
1556 if( strval( $newtalk ) !== '' ) {
1557 $this->mNewtalk = (bool)$newtalk;
1558 } else {
1559 // Since we are caching this, make sure it is up to date by getting it
1560 // from the master
1561 $this->mNewtalk = $this->checkNewtalk( 'user_ip', $this->getName(), true );
1562 $wgMemc->set( $key, (int)$this->mNewtalk, 1800 );
1563 }
1564 } else {
1565 $this->mNewtalk = $this->checkNewtalk( 'user_id', $this->mId );
1566 }
1567 }
1568
1569 return (bool)$this->mNewtalk;
1570 }
1571
1572 /**
1573 * Return the talk page(s) this user has new messages on.
1574 * @return \type{\arrayof{\string}} Array of page URLs
1575 */
1576 function getNewMessageLinks() {
1577 $talks = array();
1578 if( !wfRunHooks( 'UserRetrieveNewTalks', array( &$this, &$talks ) ) )
1579 return $talks;
1580
1581 if( !$this->getNewtalk() )
1582 return array();
1583 $up = $this->getUserPage();
1584 $utp = $up->getTalkPage();
1585 return array( array( 'wiki' => wfWikiID(), 'link' => $utp->getLocalURL() ) );
1586 }
1587
1588 /**
1589 * Internal uncached check for new messages
1590 *
1591 * @see getNewtalk()
1592 * @param $field \string 'user_ip' for anonymous users, 'user_id' otherwise
1593 * @param $id \types{\string,\int} User's IP address for anonymous users, User ID otherwise
1594 * @param $fromMaster \bool true to fetch from the master, false for a slave
1595 * @return \bool True if the user has new messages
1596 * @private
1597 */
1598 function checkNewtalk( $field, $id, $fromMaster = false ) {
1599 if ( $fromMaster ) {
1600 $db = wfGetDB( DB_MASTER );
1601 } else {
1602 $db = wfGetDB( DB_SLAVE );
1603 }
1604 $ok = $db->selectField( 'user_newtalk', $field,
1605 array( $field => $id ), __METHOD__ );
1606 return $ok !== false;
1607 }
1608
1609 /**
1610 * Add or update the new messages flag
1611 * @param $field \string 'user_ip' for anonymous users, 'user_id' otherwise
1612 * @param $id \types{\string,\int} User's IP address for anonymous users, User ID otherwise
1613 * @return \bool True if successful, false otherwise
1614 * @private
1615 */
1616 function updateNewtalk( $field, $id ) {
1617 $dbw = wfGetDB( DB_MASTER );
1618 $dbw->insert( 'user_newtalk',
1619 array( $field => $id ),
1620 __METHOD__,
1621 'IGNORE' );
1622 if ( $dbw->affectedRows() ) {
1623 wfDebug( __METHOD__ . ": set on ($field, $id)\n" );
1624 return true;
1625 } else {
1626 wfDebug( __METHOD__ . " already set ($field, $id)\n" );
1627 return false;
1628 }
1629 }
1630
1631 /**
1632 * Clear the new messages flag for the given user
1633 * @param $field \string 'user_ip' for anonymous users, 'user_id' otherwise
1634 * @param $id \types{\string,\int} User's IP address for anonymous users, User ID otherwise
1635 * @return \bool True if successful, false otherwise
1636 * @private
1637 */
1638 function deleteNewtalk( $field, $id ) {
1639 $dbw = wfGetDB( DB_MASTER );
1640 $dbw->delete( 'user_newtalk',
1641 array( $field => $id ),
1642 __METHOD__ );
1643 if ( $dbw->affectedRows() ) {
1644 wfDebug( __METHOD__ . ": killed on ($field, $id)\n" );
1645 return true;
1646 } else {
1647 wfDebug( __METHOD__ . ": already gone ($field, $id)\n" );
1648 return false;
1649 }
1650 }
1651
1652 /**
1653 * Update the 'You have new messages!' status.
1654 * @param $val \bool Whether the user has new messages
1655 */
1656 function setNewtalk( $val ) {
1657 if( wfReadOnly() ) {
1658 return;
1659 }
1660
1661 $this->load();
1662 $this->mNewtalk = $val;
1663
1664 if( $this->isAnon() ) {
1665 $field = 'user_ip';
1666 $id = $this->getName();
1667 } else {
1668 $field = 'user_id';
1669 $id = $this->getId();
1670 }
1671 global $wgMemc;
1672
1673 if( $val ) {
1674 $changed = $this->updateNewtalk( $field, $id );
1675 } else {
1676 $changed = $this->deleteNewtalk( $field, $id );
1677 }
1678
1679 if( $this->isAnon() ) {
1680 // Anons have a separate memcached space, since
1681 // user records aren't kept for them.
1682 $key = wfMemcKey( 'newtalk', 'ip', $id );
1683 $wgMemc->set( $key, $val ? 1 : 0, 1800 );
1684 }
1685 if ( $changed ) {
1686 $this->invalidateCache();
1687 }
1688 }
1689
1690 /**
1691 * Generate a current or new-future timestamp to be stored in the
1692 * user_touched field when we update things.
1693 * @return \string Timestamp in TS_MW format
1694 */
1695 private static function newTouchedTimestamp() {
1696 global $wgClockSkewFudge;
1697 return wfTimestamp( TS_MW, time() + $wgClockSkewFudge );
1698 }
1699
1700 /**
1701 * Clear user data from memcached.
1702 * Use after applying fun updates to the database; caller's
1703 * responsibility to update user_touched if appropriate.
1704 *
1705 * Called implicitly from invalidateCache() and saveSettings().
1706 */
1707 private function clearSharedCache() {
1708 $this->load();
1709 if( $this->mId ) {
1710 global $wgMemc;
1711 $wgMemc->delete( wfMemcKey( 'user', 'id', $this->mId ) );
1712 }
1713 }
1714
1715 /**
1716 * Immediately touch the user data cache for this account.
1717 * Updates user_touched field, and removes account data from memcached
1718 * for reload on the next hit.
1719 */
1720 function invalidateCache() {
1721 if( wfReadOnly() ) {
1722 return;
1723 }
1724 $this->load();
1725 if( $this->mId ) {
1726 $this->mTouched = self::newTouchedTimestamp();
1727
1728 $dbw = wfGetDB( DB_MASTER );
1729 $dbw->update( 'user',
1730 array( 'user_touched' => $dbw->timestamp( $this->mTouched ) ),
1731 array( 'user_id' => $this->mId ),
1732 __METHOD__ );
1733
1734 $this->clearSharedCache();
1735 }
1736 }
1737
1738 /**
1739 * Validate the cache for this account.
1740 * @param $timestamp \string A timestamp in TS_MW format
1741 */
1742 function validateCache( $timestamp ) {
1743 $this->load();
1744 return ( $timestamp >= $this->mTouched );
1745 }
1746
1747 /**
1748 * Get the user touched timestamp
1749 */
1750 function getTouched() {
1751 $this->load();
1752 return $this->mTouched;
1753 }
1754
1755 /**
1756 * Set the password and reset the random token.
1757 * Calls through to authentication plugin if necessary;
1758 * will have no effect if the auth plugin refuses to
1759 * pass the change through or if the legal password
1760 * checks fail.
1761 *
1762 * As a special case, setting the password to null
1763 * wipes it, so the account cannot be logged in until
1764 * a new password is set, for instance via e-mail.
1765 *
1766 * @param $str \string New password to set
1767 * @throws PasswordError on failure
1768 */
1769 function setPassword( $str ) {
1770 global $wgAuth;
1771
1772 if( $str !== null ) {
1773 if( !$wgAuth->allowPasswordChange() ) {
1774 throw new PasswordError( wfMsg( 'password-change-forbidden' ) );
1775 }
1776
1777 if( !$this->isValidPassword( $str ) ) {
1778 global $wgMinimalPasswordLength;
1779 $valid = $this->getPasswordValidity( $str );
1780 throw new PasswordError( wfMsgExt( $valid, array( 'parsemag' ),
1781 $wgMinimalPasswordLength ) );
1782 }
1783 }
1784
1785 if( !$wgAuth->setPassword( $this, $str ) ) {
1786 throw new PasswordError( wfMsg( 'externaldberror' ) );
1787 }
1788
1789 $this->setInternalPassword( $str );
1790
1791 return true;
1792 }
1793
1794 /**
1795 * Set the password and reset the random token unconditionally.
1796 *
1797 * @param $str \string New password to set
1798 */
1799 function setInternalPassword( $str ) {
1800 $this->load();
1801 $this->setToken();
1802
1803 if( $str === null ) {
1804 // Save an invalid hash...
1805 $this->mPassword = '';
1806 } else {
1807 $this->mPassword = self::crypt( $str );
1808 }
1809 $this->mNewpassword = '';
1810 $this->mNewpassTime = null;
1811 }
1812
1813 /**
1814 * Get the user's current token.
1815 * @return \string Token
1816 */
1817 function getToken() {
1818 $this->load();
1819 return $this->mToken;
1820 }
1821
1822 /**
1823 * Set the random token (used for persistent authentication)
1824 * Called from loadDefaults() among other places.
1825 *
1826 * @param $token \string If specified, set the token to this value
1827 * @private
1828 */
1829 function setToken( $token = false ) {
1830 global $wgSecretKey, $wgProxyKey;
1831 $this->load();
1832 if ( !$token ) {
1833 if ( $wgSecretKey ) {
1834 $key = $wgSecretKey;
1835 } elseif ( $wgProxyKey ) {
1836 $key = $wgProxyKey;
1837 } else {
1838 $key = microtime();
1839 }
1840 $this->mToken = md5( $key . mt_rand( 0, 0x7fffffff ) . wfWikiID() . $this->mId );
1841 } else {
1842 $this->mToken = $token;
1843 }
1844 }
1845
1846 /**
1847 * Set the cookie password
1848 *
1849 * @param $str \string New cookie password
1850 * @private
1851 */
1852 function setCookiePassword( $str ) {
1853 $this->load();
1854 $this->mCookiePassword = md5( $str );
1855 }
1856
1857 /**
1858 * Set the password for a password reminder or new account email
1859 *
1860 * @param $str \string New password to set
1861 * @param $throttle \bool If true, reset the throttle timestamp to the present
1862 */
1863 function setNewpassword( $str, $throttle = true ) {
1864 $this->load();
1865 $this->mNewpassword = self::crypt( $str );
1866 if ( $throttle ) {
1867 $this->mNewpassTime = wfTimestampNow();
1868 }
1869 }
1870
1871 /**
1872 * Has password reminder email been sent within the last
1873 * $wgPasswordReminderResendTime hours?
1874 * @return \bool True or false
1875 */
1876 function isPasswordReminderThrottled() {
1877 global $wgPasswordReminderResendTime;
1878 $this->load();
1879 if ( !$this->mNewpassTime || !$wgPasswordReminderResendTime ) {
1880 return false;
1881 }
1882 $expiry = wfTimestamp( TS_UNIX, $this->mNewpassTime ) + $wgPasswordReminderResendTime * 3600;
1883 return time() < $expiry;
1884 }
1885
1886 /**
1887 * Get the user's e-mail address
1888 * @return \string User's email address
1889 */
1890 function getEmail() {
1891 $this->load();
1892 wfRunHooks( 'UserGetEmail', array( $this, &$this->mEmail ) );
1893 return $this->mEmail;
1894 }
1895
1896 /**
1897 * Get the timestamp of the user's e-mail authentication
1898 * @return \string TS_MW timestamp
1899 */
1900 function getEmailAuthenticationTimestamp() {
1901 $this->load();
1902 wfRunHooks( 'UserGetEmailAuthenticationTimestamp', array( $this, &$this->mEmailAuthenticated ) );
1903 return $this->mEmailAuthenticated;
1904 }
1905
1906 /**
1907 * Set the user's e-mail address
1908 * @param $str \string New e-mail address
1909 */
1910 function setEmail( $str ) {
1911 $this->load();
1912 $this->mEmail = $str;
1913 wfRunHooks( 'UserSetEmail', array( $this, &$this->mEmail ) );
1914 }
1915
1916 /**
1917 * Get the user's real name
1918 * @return \string User's real name
1919 */
1920 function getRealName() {
1921 $this->load();
1922 return $this->mRealName;
1923 }
1924
1925 /**
1926 * Set the user's real name
1927 * @param $str \string New real name
1928 */
1929 function setRealName( $str ) {
1930 $this->load();
1931 $this->mRealName = $str;
1932 }
1933
1934 /**
1935 * Get the user's current setting for a given option.
1936 *
1937 * @param $oname \string The option to check
1938 * @param $defaultOverride \string A default value returned if the option does not exist
1939 * @return \string User's current value for the option
1940 * @see getBoolOption()
1941 * @see getIntOption()
1942 */
1943 function getOption( $oname, $defaultOverride = null ) {
1944 $this->loadOptions();
1945
1946 if ( is_null( $this->mOptions ) ) {
1947 if($defaultOverride != '') {
1948 return $defaultOverride;
1949 }
1950 $this->mOptions = User::getDefaultOptions();
1951 }
1952
1953 if ( array_key_exists( $oname, $this->mOptions ) ) {
1954 return $this->mOptions[$oname];
1955 } else {
1956 return $defaultOverride;
1957 }
1958 }
1959
1960 /**
1961 * Get all user's options
1962 *
1963 * @return array
1964 */
1965 public function getOptions() {
1966 $this->loadOptions();
1967 return $this->mOptions;
1968 }
1969
1970 /**
1971 * Get the user's current setting for a given option, as a boolean value.
1972 *
1973 * @param $oname \string The option to check
1974 * @return \bool User's current value for the option
1975 * @see getOption()
1976 */
1977 function getBoolOption( $oname ) {
1978 return (bool)$this->getOption( $oname );
1979 }
1980
1981
1982 /**
1983 * Get the user's current setting for a given option, as a boolean value.
1984 *
1985 * @param $oname \string The option to check
1986 * @param $defaultOverride \int A default value returned if the option does not exist
1987 * @return \int User's current value for the option
1988 * @see getOption()
1989 */
1990 function getIntOption( $oname, $defaultOverride=0 ) {
1991 $val = $this->getOption( $oname );
1992 if( $val == '' ) {
1993 $val = $defaultOverride;
1994 }
1995 return intval( $val );
1996 }
1997
1998 /**
1999 * Set the given option for a user.
2000 *
2001 * @param $oname \string The option to set
2002 * @param $val \mixed New value to set
2003 */
2004 function setOption( $oname, $val ) {
2005 $this->load();
2006 $this->loadOptions();
2007
2008 if ( $oname == 'skin' ) {
2009 # Clear cached skin, so the new one displays immediately in Special:Preferences
2010 unset( $this->mSkin );
2011 }
2012
2013 // Explicitly NULL values should refer to defaults
2014 global $wgDefaultUserOptions;
2015 if( is_null( $val ) && isset( $wgDefaultUserOptions[$oname] ) ) {
2016 $val = $wgDefaultUserOptions[$oname];
2017 }
2018
2019 $this->mOptions[$oname] = $val;
2020 }
2021
2022 /**
2023 * Reset all options to the site defaults
2024 */
2025 function resetOptions() {
2026 $this->mOptions = User::getDefaultOptions();
2027 }
2028
2029 /**
2030 * Get the user's preferred date format.
2031 * @return \string User's preferred date format
2032 */
2033 function getDatePreference() {
2034 // Important migration for old data rows
2035 if ( is_null( $this->mDatePreference ) ) {
2036 global $wgLang;
2037 $value = $this->getOption( 'date' );
2038 $map = $wgLang->getDatePreferenceMigrationMap();
2039 if ( isset( $map[$value] ) ) {
2040 $value = $map[$value];
2041 }
2042 $this->mDatePreference = $value;
2043 }
2044 return $this->mDatePreference;
2045 }
2046
2047 /**
2048 * Get the permissions this user has.
2049 * @return \type{\arrayof{\string}} Array of permission names
2050 */
2051 function getRights() {
2052 if ( is_null( $this->mRights ) ) {
2053 $this->mRights = self::getGroupPermissions( $this->getEffectiveGroups() );
2054 wfRunHooks( 'UserGetRights', array( $this, &$this->mRights ) );
2055 // Force reindexation of rights when a hook has unset one of them
2056 $this->mRights = array_values( $this->mRights );
2057 }
2058 return $this->mRights;
2059 }
2060
2061 /**
2062 * Get the list of explicit group memberships this user has.
2063 * The implicit * and user groups are not included.
2064 * @return \type{\arrayof{\string}} Array of internal group names
2065 */
2066 function getGroups() {
2067 $this->load();
2068 return $this->mGroups;
2069 }
2070
2071 /**
2072 * Get the list of implicit group memberships this user has.
2073 * This includes all explicit groups, plus 'user' if logged in,
2074 * '*' for all accounts and autopromoted groups
2075 * @param $recache \bool Whether to avoid the cache
2076 * @return \type{\arrayof{\string}} Array of internal group names
2077 */
2078 function getEffectiveGroups( $recache = false ) {
2079 if ( $recache || is_null( $this->mEffectiveGroups ) ) {
2080 wfProfileIn( __METHOD__ );
2081 $this->mEffectiveGroups = $this->getGroups();
2082 $this->mEffectiveGroups[] = '*';
2083 if( $this->getId() ) {
2084 $this->mEffectiveGroups[] = 'user';
2085
2086 $this->mEffectiveGroups = array_unique( array_merge(
2087 $this->mEffectiveGroups,
2088 Autopromote::getAutopromoteGroups( $this )
2089 ) );
2090
2091 # Hook for additional groups
2092 wfRunHooks( 'UserEffectiveGroups', array( &$this, &$this->mEffectiveGroups ) );
2093 }
2094 wfProfileOut( __METHOD__ );
2095 }
2096 return $this->mEffectiveGroups;
2097 }
2098
2099 /**
2100 * Get the user's edit count.
2101 * @return \int User'e edit count
2102 */
2103 function getEditCount() {
2104 if( $this->getId() ) {
2105 if ( !isset( $this->mEditCount ) ) {
2106 /* Populate the count, if it has not been populated yet */
2107 $this->mEditCount = User::edits( $this->mId );
2108 }
2109 return $this->mEditCount;
2110 } else {
2111 /* nil */
2112 return null;
2113 }
2114 }
2115
2116 /**
2117 * Add the user to the given group.
2118 * This takes immediate effect.
2119 * @param $group \string Name of the group to add
2120 */
2121 function addGroup( $group ) {
2122 $dbw = wfGetDB( DB_MASTER );
2123 if( $this->getId() ) {
2124 $dbw->insert( 'user_groups',
2125 array(
2126 'ug_user' => $this->getID(),
2127 'ug_group' => $group,
2128 ),
2129 'User::addGroup',
2130 array( 'IGNORE' ) );
2131 }
2132
2133 $this->loadGroups();
2134 $this->mGroups[] = $group;
2135 $this->mRights = User::getGroupPermissions( $this->getEffectiveGroups( true ) );
2136
2137 $this->invalidateCache();
2138 }
2139
2140 /**
2141 * Remove the user from the given group.
2142 * This takes immediate effect.
2143 * @param $group \string Name of the group to remove
2144 */
2145 function removeGroup( $group ) {
2146 $this->load();
2147 $dbw = wfGetDB( DB_MASTER );
2148 $dbw->delete( 'user_groups',
2149 array(
2150 'ug_user' => $this->getID(),
2151 'ug_group' => $group,
2152 ),
2153 'User::removeGroup' );
2154
2155 $this->loadGroups();
2156 $this->mGroups = array_diff( $this->mGroups, array( $group ) );
2157 $this->mRights = User::getGroupPermissions( $this->getEffectiveGroups( true ) );
2158
2159 $this->invalidateCache();
2160 }
2161
2162 /**
2163 * Get whether the user is logged in
2164 * @return \bool True or false
2165 */
2166 function isLoggedIn() {
2167 return $this->getID() != 0;
2168 }
2169
2170 /**
2171 * Get whether the user is anonymous
2172 * @return \bool True or false
2173 */
2174 function isAnon() {
2175 return !$this->isLoggedIn();
2176 }
2177
2178 /**
2179 * Get whether the user is a bot
2180 * @return \bool True or false
2181 * @deprecated
2182 */
2183 function isBot() {
2184 wfDeprecated( __METHOD__ );
2185 return $this->isAllowed( 'bot' );
2186 }
2187
2188 /**
2189 * Check if user is allowed to access a feature / make an action
2190 * @param $action \string action to be checked
2191 * @return \bool True if action is allowed, else false
2192 */
2193 function isAllowed( $action = '' ) {
2194 if ( $action === '' )
2195 return true; // In the spirit of DWIM
2196 # Patrolling may not be enabled
2197 if( $action === 'patrol' || $action === 'autopatrol' ) {
2198 global $wgUseRCPatrol, $wgUseNPPatrol;
2199 if( !$wgUseRCPatrol && !$wgUseNPPatrol )
2200 return false;
2201 }
2202 # Use strict parameter to avoid matching numeric 0 accidentally inserted
2203 # by misconfiguration: 0 == 'foo'
2204 return in_array( $action, $this->getRights(), true );
2205 }
2206
2207 /**
2208 * Check whether to enable recent changes patrol features for this user
2209 * @return \bool True or false
2210 */
2211 public function useRCPatrol() {
2212 global $wgUseRCPatrol;
2213 return( $wgUseRCPatrol && ( $this->isAllowed( 'patrol' ) || $this->isAllowed( 'patrolmarks' ) ) );
2214 }
2215
2216 /**
2217 * Check whether to enable new pages patrol features for this user
2218 * @return \bool True or false
2219 */
2220 public function useNPPatrol() {
2221 global $wgUseRCPatrol, $wgUseNPPatrol;
2222 return( ( $wgUseRCPatrol || $wgUseNPPatrol ) && ( $this->isAllowed( 'patrol' ) || $this->isAllowed( 'patrolmarks' ) ) );
2223 }
2224
2225 /**
2226 * Get the current skin, loading it if required, and setting a title
2227 * @param $t Title: the title to use in the skin
2228 * @return Skin The current skin
2229 * @todo FIXME : need to check the old failback system [AV]
2230 */
2231 function &getSkin( $t = null ) {
2232 if ( !isset( $this->mSkin ) ) {
2233 wfProfileIn( __METHOD__ );
2234
2235 global $wgHiddenPrefs;
2236 if( !in_array( 'skin', $wgHiddenPrefs ) ) {
2237 # get the user skin
2238 global $wgRequest;
2239 $userSkin = $this->getOption( 'skin' );
2240 $userSkin = $wgRequest->getVal( 'useskin', $userSkin );
2241 } else {
2242 # if we're not allowing users to override, then use the default
2243 global $wgDefaultSkin;
2244 $userSkin = $wgDefaultSkin;
2245 }
2246
2247 $this->mSkin =& Skin::newFromKey( $userSkin );
2248 wfProfileOut( __METHOD__ );
2249 }
2250 if( $t || !$this->mSkin->getTitle() ) {
2251 if ( !$t ) {
2252 global $wgOut;
2253 $t = $wgOut->getTitle();
2254 }
2255 $this->mSkin->setTitle( $t );
2256 }
2257 return $this->mSkin;
2258 }
2259
2260 /**
2261 * Check the watched status of an article.
2262 * @param $title \type{Title} Title of the article to look at
2263 * @return \bool True if article is watched
2264 */
2265 function isWatched( $title ) {
2266 $wl = WatchedItem::fromUserTitle( $this, $title );
2267 return $wl->isWatched();
2268 }
2269
2270 /**
2271 * Watch an article.
2272 * @param $title \type{Title} Title of the article to look at
2273 */
2274 function addWatch( $title ) {
2275 $wl = WatchedItem::fromUserTitle( $this, $title );
2276 $wl->addWatch();
2277 }
2278
2279 /**
2280 * Stop watching an article.
2281 * @param $title \type{Title} Title of the article to look at
2282 */
2283 function removeWatch( $title ) {
2284 $wl = WatchedItem::fromUserTitle( $this, $title );
2285 $wl->removeWatch();
2286 }
2287
2288 /**
2289 * Clear the user's notification timestamp for the given title.
2290 * If e-notif e-mails are on, they will receive notification mails on
2291 * the next change of the page if it's watched etc.
2292 * @param $title \type{Title} Title of the article to look at
2293 */
2294 function clearNotification( &$title ) {
2295 global $wgUser, $wgUseEnotif, $wgShowUpdatedMarker;
2296
2297 # Do nothing if the database is locked to writes
2298 if( wfReadOnly() ) {
2299 return;
2300 }
2301
2302 if( $title->getNamespace() == NS_USER_TALK &&
2303 $title->getText() == $this->getName() ) {
2304 if( !wfRunHooks( 'UserClearNewTalkNotification', array( &$this ) ) )
2305 return;
2306 $this->setNewtalk( false );
2307 }
2308
2309 if( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
2310 return;
2311 }
2312
2313 if( $this->isAnon() ) {
2314 // Nothing else to do...
2315 return;
2316 }
2317
2318 // Only update the timestamp if the page is being watched.
2319 // The query to find out if it is watched is cached both in memcached and per-invocation,
2320 // and when it does have to be executed, it can be on a slave
2321 // If this is the user's newtalk page, we always update the timestamp
2322 if( $title->getNamespace() == NS_USER_TALK &&
2323 $title->getText() == $wgUser->getName() )
2324 {
2325 $watched = true;
2326 } elseif ( $this->getId() == $wgUser->getId() ) {
2327 $watched = $title->userIsWatching();
2328 } else {
2329 $watched = true;
2330 }
2331
2332 // If the page is watched by the user (or may be watched), update the timestamp on any
2333 // any matching rows
2334 if ( $watched ) {
2335 $dbw = wfGetDB( DB_MASTER );
2336 $dbw->update( 'watchlist',
2337 array( /* SET */
2338 'wl_notificationtimestamp' => null
2339 ), array( /* WHERE */
2340 'wl_title' => $title->getDBkey(),
2341 'wl_namespace' => $title->getNamespace(),
2342 'wl_user' => $this->getID()
2343 ), __METHOD__
2344 );
2345 }
2346 }
2347
2348 /**
2349 * Resets all of the given user's page-change notification timestamps.
2350 * If e-notif e-mails are on, they will receive notification mails on
2351 * the next change of any watched page.
2352 *
2353 * @param $currentUser \int User ID
2354 */
2355 function clearAllNotifications( $currentUser ) {
2356 global $wgUseEnotif, $wgShowUpdatedMarker;
2357 if ( !$wgUseEnotif && !$wgShowUpdatedMarker ) {
2358 $this->setNewtalk( false );
2359 return;
2360 }
2361 if( $currentUser != 0 ) {
2362 $dbw = wfGetDB( DB_MASTER );
2363 $dbw->update( 'watchlist',
2364 array( /* SET */
2365 'wl_notificationtimestamp' => null
2366 ), array( /* WHERE */
2367 'wl_user' => $currentUser
2368 ), __METHOD__
2369 );
2370 # We also need to clear here the "you have new message" notification for the own user_talk page
2371 # This is cleared one page view later in Article::viewUpdates();
2372 }
2373 }
2374
2375 /**
2376 * Set this user's options from an encoded string
2377 * @param $str \string Encoded options to import
2378 * @private
2379 */
2380 function decodeOptions( $str ) {
2381 if( !$str )
2382 return;
2383
2384 $this->mOptionsLoaded = true;
2385 $this->mOptionOverrides = array();
2386
2387 $this->mOptions = array();
2388 $a = explode( "\n", $str );
2389 foreach ( $a as $s ) {
2390 $m = array();
2391 if ( preg_match( "/^(.[^=]*)=(.*)$/", $s, $m ) ) {
2392 $this->mOptions[$m[1]] = $m[2];
2393 $this->mOptionOverrides[$m[1]] = $m[2];
2394 }
2395 }
2396 }
2397
2398 /**
2399 * Set a cookie on the user's client. Wrapper for
2400 * WebResponse::setCookie
2401 * @param $name \string Name of the cookie to set
2402 * @param $value \string Value to set
2403 * @param $exp \int Expiration time, as a UNIX time value;
2404 * if 0 or not specified, use the default $wgCookieExpiration
2405 */
2406 protected function setCookie( $name, $value, $exp = 0 ) {
2407 global $wgRequest;
2408 $wgRequest->response()->setcookie( $name, $value, $exp );
2409 }
2410
2411 /**
2412 * Clear a cookie on the user's client
2413 * @param $name \string Name of the cookie to clear
2414 */
2415 protected function clearCookie( $name ) {
2416 $this->setCookie( $name, '', time() - 86400 );
2417 }
2418
2419 /**
2420 * Set the default cookies for this session on the user's client.
2421 */
2422 function setCookies() {
2423 $this->load();
2424 if ( 0 == $this->mId ) return;
2425 $session = array(
2426 'wsUserID' => $this->mId,
2427 'wsToken' => $this->mToken,
2428 'wsUserName' => $this->getName()
2429 );
2430 $cookies = array(
2431 'UserID' => $this->mId,
2432 'UserName' => $this->getName(),
2433 );
2434 if ( 1 == $this->getOption( 'rememberpassword' ) ) {
2435 $cookies['Token'] = $this->mToken;
2436 } else {
2437 $cookies['Token'] = false;
2438 }
2439
2440 wfRunHooks( 'UserSetCookies', array( $this, &$session, &$cookies ) );
2441 #check for null, since the hook could cause a null value
2442 if ( !is_null( $session ) && isset( $_SESSION ) ){
2443 $_SESSION = $session + $_SESSION;
2444 }
2445 foreach ( $cookies as $name => $value ) {
2446 if ( $value === false ) {
2447 $this->clearCookie( $name );
2448 } else {
2449 $this->setCookie( $name, $value );
2450 }
2451 }
2452 }
2453
2454 /**
2455 * Log this user out.
2456 */
2457 function logout() {
2458 if( wfRunHooks( 'UserLogout', array( &$this ) ) ) {
2459 $this->doLogout();
2460 }
2461 }
2462
2463 /**
2464 * Clear the user's cookies and session, and reset the instance cache.
2465 * @private
2466 * @see logout()
2467 */
2468 function doLogout() {
2469 $this->clearInstanceCache( 'defaults' );
2470
2471 $_SESSION['wsUserID'] = 0;
2472
2473 $this->clearCookie( 'UserID' );
2474 $this->clearCookie( 'Token' );
2475
2476 # Remember when user logged out, to prevent seeing cached pages
2477 $this->setCookie( 'LoggedOut', wfTimestampNow(), time() + 86400 );
2478 }
2479
2480 /**
2481 * Save this user's settings into the database.
2482 * @todo Only rarely do all these fields need to be set!
2483 */
2484 function saveSettings() {
2485 $this->load();
2486 if ( wfReadOnly() ) { return; }
2487 if ( 0 == $this->mId ) { return; }
2488
2489 $this->mTouched = self::newTouchedTimestamp();
2490
2491 $dbw = wfGetDB( DB_MASTER );
2492 $dbw->update( 'user',
2493 array( /* SET */
2494 'user_name' => $this->mName,
2495 'user_password' => $this->mPassword,
2496 'user_newpassword' => $this->mNewpassword,
2497 'user_newpass_time' => $dbw->timestampOrNull( $this->mNewpassTime ),
2498 'user_real_name' => $this->mRealName,
2499 'user_email' => $this->mEmail,
2500 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
2501 'user_options' => '',
2502 'user_touched' => $dbw->timestamp( $this->mTouched ),
2503 'user_token' => $this->mToken,
2504 'user_email_token' => $this->mEmailToken,
2505 'user_email_token_expires' => $dbw->timestampOrNull( $this->mEmailTokenExpires ),
2506 ), array( /* WHERE */
2507 'user_id' => $this->mId
2508 ), __METHOD__
2509 );
2510
2511 $this->saveOptions();
2512
2513 wfRunHooks( 'UserSaveSettings', array( $this ) );
2514 $this->clearSharedCache();
2515 $this->getUserPage()->invalidateCache();
2516 }
2517
2518 /**
2519 * If only this user's username is known, and it exists, return the user ID.
2520 */
2521 function idForName() {
2522 $s = trim( $this->getName() );
2523 if ( $s === '' ) return 0;
2524
2525 $dbr = wfGetDB( DB_SLAVE );
2526 $id = $dbr->selectField( 'user', 'user_id', array( 'user_name' => $s ), __METHOD__ );
2527 if ( $id === false ) {
2528 $id = 0;
2529 }
2530 return $id;
2531 }
2532
2533 /**
2534 * Add a user to the database, return the user object
2535 *
2536 * @param $name \string Username to add
2537 * @param $params \type{\arrayof{\string}} Non-default parameters to save to the database:
2538 * - password The user's password. Password logins will be disabled if this is omitted.
2539 * - newpassword A temporary password mailed to the user
2540 * - email The user's email address
2541 * - email_authenticated The email authentication timestamp
2542 * - real_name The user's real name
2543 * - options An associative array of non-default options
2544 * - token Random authentication token. Do not set.
2545 * - registration Registration timestamp. Do not set.
2546 *
2547 * @return \type{User} A new User object, or null if the username already exists
2548 */
2549 static function createNew( $name, $params = array() ) {
2550 $user = new User;
2551 $user->load();
2552 if ( isset( $params['options'] ) ) {
2553 $user->mOptions = $params['options'] + (array)$user->mOptions;
2554 unset( $params['options'] );
2555 }
2556 $dbw = wfGetDB( DB_MASTER );
2557 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
2558 $fields = array(
2559 'user_id' => $seqVal,
2560 'user_name' => $name,
2561 'user_password' => $user->mPassword,
2562 'user_newpassword' => $user->mNewpassword,
2563 'user_newpass_time' => $dbw->timestamp( $user->mNewpassTime ),
2564 'user_email' => $user->mEmail,
2565 'user_email_authenticated' => $dbw->timestampOrNull( $user->mEmailAuthenticated ),
2566 'user_real_name' => $user->mRealName,
2567 'user_options' => '',
2568 'user_token' => $user->mToken,
2569 'user_registration' => $dbw->timestamp( $user->mRegistration ),
2570 'user_editcount' => 0,
2571 );
2572 foreach ( $params as $name => $value ) {
2573 $fields["user_$name"] = $value;
2574 }
2575 $dbw->insert( 'user', $fields, __METHOD__, array( 'IGNORE' ) );
2576 if ( $dbw->affectedRows() ) {
2577 $newUser = User::newFromId( $dbw->insertId() );
2578 } else {
2579 $newUser = null;
2580 }
2581 return $newUser;
2582 }
2583
2584 /**
2585 * Add this existing user object to the database
2586 */
2587 function addToDatabase() {
2588 $this->load();
2589 $dbw = wfGetDB( DB_MASTER );
2590 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
2591 $dbw->insert( 'user',
2592 array(
2593 'user_id' => $seqVal,
2594 'user_name' => $this->mName,
2595 'user_password' => $this->mPassword,
2596 'user_newpassword' => $this->mNewpassword,
2597 'user_newpass_time' => $dbw->timestamp( $this->mNewpassTime ),
2598 'user_email' => $this->mEmail,
2599 'user_email_authenticated' => $dbw->timestampOrNull( $this->mEmailAuthenticated ),
2600 'user_real_name' => $this->mRealName,
2601 'user_options' => '',
2602 'user_token' => $this->mToken,
2603 'user_registration' => $dbw->timestamp( $this->mRegistration ),
2604 'user_editcount' => 0,
2605 ), __METHOD__
2606 );
2607 $this->mId = $dbw->insertId();
2608
2609 // Clear instance cache other than user table data, which is already accurate
2610 $this->clearInstanceCache();
2611
2612 $this->saveOptions();
2613 }
2614
2615 /**
2616 * If this (non-anonymous) user is blocked, block any IP address
2617 * they've successfully logged in from.
2618 */
2619 function spreadBlock() {
2620 wfDebug( __METHOD__ . "()\n" );
2621 $this->load();
2622 if ( $this->mId == 0 ) {
2623 return;
2624 }
2625
2626 $userblock = Block::newFromDB( '', $this->mId );
2627 if ( !$userblock ) {
2628 return;
2629 }
2630
2631 $userblock->doAutoblock( wfGetIP() );
2632 }
2633
2634 /**
2635 * Generate a string which will be different for any combination of
2636 * user options which would produce different parser output.
2637 * This will be used as part of the hash key for the parser cache,
2638 * so users with the same options can share the same cached data
2639 * safely.
2640 *
2641 * Extensions which require it should install 'PageRenderingHash' hook,
2642 * which will give them a chance to modify this key based on their own
2643 * settings.
2644 *
2645 * @return \string Page rendering hash
2646 */
2647 function getPageRenderingHash() {
2648 global $wgUseDynamicDates, $wgRenderHashAppend, $wgLang, $wgContLang;
2649 if( $this->mHash ){
2650 return $this->mHash;
2651 }
2652
2653 // stubthreshold is only included below for completeness,
2654 // it will always be 0 when this function is called by parsercache.
2655
2656 $confstr = $this->getOption( 'math' );
2657 $confstr .= '!' . $this->getOption( 'stubthreshold' );
2658 if ( $wgUseDynamicDates ) {
2659 $confstr .= '!' . $this->getDatePreference();
2660 }
2661 $confstr .= '!' . ( $this->getOption( 'numberheadings' ) ? '1' : '' );
2662 $confstr .= '!' . $wgLang->getCode();
2663 $confstr .= '!' . $this->getOption( 'thumbsize' );
2664 // add in language specific options, if any
2665 $extra = $wgContLang->getExtraHashOptions();
2666 $confstr .= $extra;
2667
2668 $confstr .= $wgRenderHashAppend;
2669
2670 // Give a chance for extensions to modify the hash, if they have
2671 // extra options or other effects on the parser cache.
2672 wfRunHooks( 'PageRenderingHash', array( &$confstr ) );
2673
2674 // Make it a valid memcached key fragment
2675 $confstr = str_replace( ' ', '_', $confstr );
2676 $this->mHash = $confstr;
2677 return $confstr;
2678 }
2679
2680 /**
2681 * Get whether the user is explicitly blocked from account creation.
2682 * @return \bool True if blocked
2683 */
2684 function isBlockedFromCreateAccount() {
2685 $this->getBlockedStatus();
2686 return $this->mBlock && $this->mBlock->mCreateAccount;
2687 }
2688
2689 /**
2690 * Get whether the user is blocked from using Special:Emailuser.
2691 * @return \bool True if blocked
2692 */
2693 function isBlockedFromEmailuser() {
2694 $this->getBlockedStatus();
2695 return $this->mBlock && $this->mBlock->mBlockEmail;
2696 }
2697
2698 /**
2699 * Get whether the user is allowed to create an account.
2700 * @return \bool True if allowed
2701 */
2702 function isAllowedToCreateAccount() {
2703 return $this->isAllowed( 'createaccount' ) && !$this->isBlockedFromCreateAccount();
2704 }
2705
2706 /**
2707 * @deprecated
2708 */
2709 function setLoaded( $loaded ) {
2710 wfDeprecated( __METHOD__ );
2711 }
2712
2713 /**
2714 * Get this user's personal page title.
2715 *
2716 * @return \type{Title} User's personal page title
2717 */
2718 function getUserPage() {
2719 return Title::makeTitle( NS_USER, $this->getName() );
2720 }
2721
2722 /**
2723 * Get this user's talk page title.
2724 *
2725 * @return \type{Title} User's talk page title
2726 */
2727 function getTalkPage() {
2728 $title = $this->getUserPage();
2729 return $title->getTalkPage();
2730 }
2731
2732 /**
2733 * Get the maximum valid user ID.
2734 * @return \int User ID
2735 * @static
2736 */
2737 function getMaxID() {
2738 static $res; // cache
2739
2740 if ( isset( $res ) )
2741 return $res;
2742 else {
2743 $dbr = wfGetDB( DB_SLAVE );
2744 return $res = $dbr->selectField( 'user', 'max(user_id)', false, 'User::getMaxID' );
2745 }
2746 }
2747
2748 /**
2749 * Determine whether the user is a newbie. Newbies are either
2750 * anonymous IPs, or the most recently created accounts.
2751 * @return \bool True if the user is a newbie
2752 */
2753 function isNewbie() {
2754 return !$this->isAllowed( 'autoconfirmed' );
2755 }
2756
2757 /**
2758 * Check to see if the given clear-text password is one of the accepted passwords
2759 * @param $password \string user password.
2760 * @return \bool True if the given password is correct, otherwise False.
2761 */
2762 function checkPassword( $password ) {
2763 global $wgAuth;
2764 $this->load();
2765
2766 // Even though we stop people from creating passwords that
2767 // are shorter than this, doesn't mean people wont be able
2768 // to. Certain authentication plugins do NOT want to save
2769 // domain passwords in a mysql database, so we should
2770 // check this (incase $wgAuth->strict() is false).
2771 if( !$this->isValidPassword( $password ) ) {
2772 return false;
2773 }
2774
2775 if( $wgAuth->authenticate( $this->getName(), $password ) ) {
2776 return true;
2777 } elseif( $wgAuth->strict() ) {
2778 /* Auth plugin doesn't allow local authentication */
2779 return false;
2780 } elseif( $wgAuth->strictUserAuth( $this->getName() ) ) {
2781 /* Auth plugin doesn't allow local authentication for this user name */
2782 return false;
2783 }
2784 if ( self::comparePasswords( $this->mPassword, $password, $this->mId ) ) {
2785 return true;
2786 } elseif ( function_exists( 'iconv' ) ) {
2787 # Some wikis were converted from ISO 8859-1 to UTF-8, the passwords can't be converted
2788 # Check for this with iconv
2789 $cp1252Password = iconv( 'UTF-8', 'WINDOWS-1252//TRANSLIT', $password );
2790 if ( self::comparePasswords( $this->mPassword, $cp1252Password, $this->mId ) ) {
2791 return true;
2792 }
2793 }
2794 return false;
2795 }
2796
2797 /**
2798 * Check if the given clear-text password matches the temporary password
2799 * sent by e-mail for password reset operations.
2800 * @return \bool True if matches, false otherwise
2801 */
2802 function checkTemporaryPassword( $plaintext ) {
2803 global $wgNewPasswordExpiry;
2804 if( self::comparePasswords( $this->mNewpassword, $plaintext, $this->getId() ) ) {
2805 $this->load();
2806 $expiry = wfTimestamp( TS_UNIX, $this->mNewpassTime ) + $wgNewPasswordExpiry;
2807 return ( time() < $expiry );
2808 } else {
2809 return false;
2810 }
2811 }
2812
2813 /**
2814 * Initialize (if necessary) and return a session token value
2815 * which can be used in edit forms to show that the user's
2816 * login credentials aren't being hijacked with a foreign form
2817 * submission.
2818 *
2819 * @param $salt \types{\string,\arrayof{\string}} Optional function-specific data for hashing
2820 * @return \string The new edit token
2821 */
2822 function editToken( $salt = '' ) {
2823 if ( $this->isAnon() ) {
2824 return EDIT_TOKEN_SUFFIX;
2825 } else {
2826 if( !isset( $_SESSION['wsEditToken'] ) ) {
2827 $token = $this->generateToken();
2828 $_SESSION['wsEditToken'] = $token;
2829 } else {
2830 $token = $_SESSION['wsEditToken'];
2831 }
2832 if( is_array( $salt ) ) {
2833 $salt = implode( '|', $salt );
2834 }
2835 return md5( $token . $salt ) . EDIT_TOKEN_SUFFIX;
2836 }
2837 }
2838
2839 /**
2840 * Generate a looking random token for various uses.
2841 *
2842 * @param $salt \string Optional salt value
2843 * @return \string The new random token
2844 */
2845 function generateToken( $salt = '' ) {
2846 $token = dechex( mt_rand() ) . dechex( mt_rand() );
2847 return md5( $token . $salt );
2848 }
2849
2850 /**
2851 * Check given value against the token value stored in the session.
2852 * A match should confirm that the form was submitted from the
2853 * user's own login session, not a form submission from a third-party
2854 * site.
2855 *
2856 * @param $val \string Input value to compare
2857 * @param $salt \string Optional function-specific data for hashing
2858 * @return \bool Whether the token matches
2859 */
2860 function matchEditToken( $val, $salt = '' ) {
2861 $sessionToken = $this->editToken( $salt );
2862 if ( $val != $sessionToken ) {
2863 wfDebug( "User::matchEditToken: broken session data\n" );
2864 }
2865 return $val == $sessionToken;
2866 }
2867
2868 /**
2869 * Check given value against the token value stored in the session,
2870 * ignoring the suffix.
2871 *
2872 * @param $val \string Input value to compare
2873 * @param $salt \string Optional function-specific data for hashing
2874 * @return \bool Whether the token matches
2875 */
2876 function matchEditTokenNoSuffix( $val, $salt = '' ) {
2877 $sessionToken = $this->editToken( $salt );
2878 return substr( $sessionToken, 0, 32 ) == substr( $val, 0, 32 );
2879 }
2880
2881 /**
2882 * Generate a new e-mail confirmation token and send a confirmation/invalidation
2883 * mail to the user's given address.
2884 *
2885 * @return \types{\bool,\type{WikiError}} True on success, a WikiError object on failure.
2886 */
2887 function sendConfirmationMail() {
2888 global $wgLang;
2889 $expiration = null; // gets passed-by-ref and defined in next line.
2890 $token = $this->confirmationToken( $expiration );
2891 $url = $this->confirmationTokenUrl( $token );
2892 $invalidateURL = $this->invalidationTokenUrl( $token );
2893 $this->saveSettings();
2894
2895 return $this->sendMail( wfMsg( 'confirmemail_subject' ),
2896 wfMsg( 'confirmemail_body',
2897 wfGetIP(),
2898 $this->getName(),
2899 $url,
2900 $wgLang->timeanddate( $expiration, false ),
2901 $invalidateURL,
2902 $wgLang->date( $expiration, false ),
2903 $wgLang->time( $expiration, false ) ) );
2904 }
2905
2906 /**
2907 * Send an e-mail to this user's account. Does not check for
2908 * confirmed status or validity.
2909 *
2910 * @param $subject \string Message subject
2911 * @param $body \string Message body
2912 * @param $from \string Optional From address; if unspecified, default $wgPasswordSender will be used
2913 * @param $replyto \string Reply-To address
2914 * @return \types{\bool,\type{WikiError}} True on success, a WikiError object on failure
2915 */
2916 function sendMail( $subject, $body, $from = null, $replyto = null ) {
2917 if( is_null( $from ) ) {
2918 global $wgPasswordSender;
2919 $from = $wgPasswordSender;
2920 }
2921
2922 $to = new MailAddress( $this );
2923 $sender = new MailAddress( $from );
2924 return UserMailer::send( $to, $sender, $subject, $body, $replyto );
2925 }
2926
2927 /**
2928 * Generate, store, and return a new e-mail confirmation code.
2929 * A hash (unsalted, since it's used as a key) is stored.
2930 *
2931 * @note Call saveSettings() after calling this function to commit
2932 * this change to the database.
2933 *
2934 * @param[out] &$expiration \mixed Accepts the expiration time
2935 * @return \string New token
2936 * @private
2937 */
2938 function confirmationToken( &$expiration ) {
2939 $now = time();
2940 $expires = $now + 7 * 24 * 60 * 60;
2941 $expiration = wfTimestamp( TS_MW, $expires );
2942 $token = $this->generateToken( $this->mId . $this->mEmail . $expires );
2943 $hash = md5( $token );
2944 $this->load();
2945 $this->mEmailToken = $hash;
2946 $this->mEmailTokenExpires = $expiration;
2947 return $token;
2948 }
2949
2950 /**
2951 * Return a URL the user can use to confirm their email address.
2952 * @param $token \string Accepts the email confirmation token
2953 * @return \string New token URL
2954 * @private
2955 */
2956 function confirmationTokenUrl( $token ) {
2957 return $this->getTokenUrl( 'ConfirmEmail', $token );
2958 }
2959
2960 /**
2961 * Return a URL the user can use to invalidate their email address.
2962 * @param $token \string Accepts the email confirmation token
2963 * @return \string New token URL
2964 * @private
2965 */
2966 function invalidationTokenUrl( $token ) {
2967 return $this->getTokenUrl( 'Invalidateemail', $token );
2968 }
2969
2970 /**
2971 * Internal function to format the e-mail validation/invalidation URLs.
2972 * This uses $wgArticlePath directly as a quickie hack to use the
2973 * hardcoded English names of the Special: pages, for ASCII safety.
2974 *
2975 * @note Since these URLs get dropped directly into emails, using the
2976 * short English names avoids insanely long URL-encoded links, which
2977 * also sometimes can get corrupted in some browsers/mailers
2978 * (bug 6957 with Gmail and Internet Explorer).
2979 *
2980 * @param $page \string Special page
2981 * @param $token \string Token
2982 * @return \string Formatted URL
2983 */
2984 protected function getTokenUrl( $page, $token ) {
2985 global $wgArticlePath;
2986 return wfExpandUrl(
2987 str_replace(
2988 '$1',
2989 "Special:$page/$token",
2990 $wgArticlePath ) );
2991 }
2992
2993 /**
2994 * Mark the e-mail address confirmed.
2995 *
2996 * @note Call saveSettings() after calling this function to commit the change.
2997 */
2998 function confirmEmail() {
2999 $this->setEmailAuthenticationTimestamp( wfTimestampNow() );
3000 wfRunHooks( 'ConfirmEmailComplete', array( $this ) );
3001 return true;
3002 }
3003
3004 /**
3005 * Invalidate the user's e-mail confirmation, and unauthenticate the e-mail
3006 * address if it was already confirmed.
3007 *
3008 * @note Call saveSettings() after calling this function to commit the change.
3009 */
3010 function invalidateEmail() {
3011 $this->load();
3012 $this->mEmailToken = null;
3013 $this->mEmailTokenExpires = null;
3014 $this->setEmailAuthenticationTimestamp( null );
3015 wfRunHooks( 'InvalidateEmailComplete', array( $this ) );
3016 return true;
3017 }
3018
3019 /**
3020 * Set the e-mail authentication timestamp.
3021 * @param $timestamp \string TS_MW timestamp
3022 */
3023 function setEmailAuthenticationTimestamp( $timestamp ) {
3024 $this->load();
3025 $this->mEmailAuthenticated = $timestamp;
3026 wfRunHooks( 'UserSetEmailAuthenticationTimestamp', array( $this, &$this->mEmailAuthenticated ) );
3027 }
3028
3029 /**
3030 * Is this user allowed to send e-mails within limits of current
3031 * site configuration?
3032 * @return \bool True if allowed
3033 */
3034 function canSendEmail() {
3035 global $wgEnableEmail, $wgEnableUserEmail, $wgUser;
3036 if( !$wgEnableEmail || !$wgEnableUserEmail || !$wgUser->isAllowed( 'sendemail' ) ) {
3037 return false;
3038 }
3039 $canSend = $this->isEmailConfirmed();
3040 wfRunHooks( 'UserCanSendEmail', array( &$this, &$canSend ) );
3041 return $canSend;
3042 }
3043
3044 /**
3045 * Is this user allowed to receive e-mails within limits of current
3046 * site configuration?
3047 * @return \bool True if allowed
3048 */
3049 function canReceiveEmail() {
3050 return $this->isEmailConfirmed() && !$this->getOption( 'disablemail' );
3051 }
3052
3053 /**
3054 * Is this user's e-mail address valid-looking and confirmed within
3055 * limits of the current site configuration?
3056 *
3057 * @note If $wgEmailAuthentication is on, this may require the user to have
3058 * confirmed their address by returning a code or using a password
3059 * sent to the address from the wiki.
3060 *
3061 * @return \bool True if confirmed
3062 */
3063 function isEmailConfirmed() {
3064 global $wgEmailAuthentication;
3065 $this->load();
3066 $confirmed = true;
3067 if( wfRunHooks( 'EmailConfirmed', array( &$this, &$confirmed ) ) ) {
3068 if( $this->isAnon() )
3069 return false;
3070 if( !self::isValidEmailAddr( $this->mEmail ) )
3071 return false;
3072 if( $wgEmailAuthentication && !$this->getEmailAuthenticationTimestamp() )
3073 return false;
3074 return true;
3075 } else {
3076 return $confirmed;
3077 }
3078 }
3079
3080 /**
3081 * Check whether there is an outstanding request for e-mail confirmation.
3082 * @return \bool True if pending
3083 */
3084 function isEmailConfirmationPending() {
3085 global $wgEmailAuthentication;
3086 return $wgEmailAuthentication &&
3087 !$this->isEmailConfirmed() &&
3088 $this->mEmailToken &&
3089 $this->mEmailTokenExpires > wfTimestamp();
3090 }
3091
3092 /**
3093 * Get the timestamp of account creation.
3094 *
3095 * @return \types{\string,\bool} string Timestamp of account creation, or false for
3096 * non-existent/anonymous user accounts.
3097 */
3098 public function getRegistration() {
3099 return $this->getId() > 0
3100 ? $this->mRegistration
3101 : false;
3102 }
3103
3104 /**
3105 * Get the timestamp of the first edit
3106 *
3107 * @return \types{\string,\bool} string Timestamp of first edit, or false for
3108 * non-existent/anonymous user accounts.
3109 */
3110 public function getFirstEditTimestamp() {
3111 if( $this->getId() == 0 ) return false; // anons
3112 $dbr = wfGetDB( DB_SLAVE );
3113 $time = $dbr->selectField( 'revision', 'rev_timestamp',
3114 array( 'rev_user' => $this->getId() ),
3115 __METHOD__,
3116 array( 'ORDER BY' => 'rev_timestamp ASC' )
3117 );
3118 if( !$time ) return false; // no edits
3119 return wfTimestamp( TS_MW, $time );
3120 }
3121
3122 /**
3123 * Get the permissions associated with a given list of groups
3124 *
3125 * @param $groups \type{\arrayof{\string}} List of internal group names
3126 * @return \type{\arrayof{\string}} List of permission key names for given groups combined
3127 */
3128 static function getGroupPermissions( $groups ) {
3129 global $wgGroupPermissions, $wgRevokePermissions;
3130 $rights = array();
3131 // grant every granted permission first
3132 foreach( $groups as $group ) {
3133 if( isset( $wgGroupPermissions[$group] ) ) {
3134 $rights = array_merge( $rights,
3135 // array_filter removes empty items
3136 array_keys( array_filter( $wgGroupPermissions[$group] ) ) );
3137 }
3138 }
3139 // now revoke the revoked permissions
3140 foreach( $groups as $group ) {
3141 if( isset( $wgRevokePermissions[$group] ) ) {
3142 $rights = array_diff( $rights,
3143 array_keys( array_filter( $wgRevokePermissions[$group] ) ) );
3144 }
3145 }
3146 return array_unique( $rights );
3147 }
3148
3149 /**
3150 * Get all the groups who have a given permission
3151 *
3152 * @param $role \string Role to check
3153 * @return \type{\arrayof{\string}} List of internal group names with the given permission
3154 */
3155 static function getGroupsWithPermission( $role ) {
3156 global $wgGroupPermissions;
3157 $allowedGroups = array();
3158 foreach ( $wgGroupPermissions as $group => $rights ) {
3159 if ( isset( $rights[$role] ) && $rights[$role] ) {
3160 $allowedGroups[] = $group;
3161 }
3162 }
3163 return $allowedGroups;
3164 }
3165
3166 /**
3167 * Get the localized descriptive name for a group, if it exists
3168 *
3169 * @param $group \string Internal group name
3170 * @return \string Localized descriptive group name
3171 */
3172 static function getGroupName( $group ) {
3173 global $wgMessageCache;
3174 $wgMessageCache->loadAllMessages();
3175 $key = "group-$group";
3176 $name = wfMsg( $key );
3177 return $name == '' || wfEmptyMsg( $key, $name )
3178 ? $group
3179 : $name;
3180 }
3181
3182 /**
3183 * Get the localized descriptive name for a member of a group, if it exists
3184 *
3185 * @param $group \string Internal group name
3186 * @return \string Localized name for group member
3187 */
3188 static function getGroupMember( $group ) {
3189 global $wgMessageCache;
3190 $wgMessageCache->loadAllMessages();
3191 $key = "group-$group-member";
3192 $name = wfMsg( $key );
3193 return $name == '' || wfEmptyMsg( $key, $name )
3194 ? $group
3195 : $name;
3196 }
3197
3198 /**
3199 * Return the set of defined explicit groups.
3200 * The implicit groups (by default *, 'user' and 'autoconfirmed')
3201 * are not included, as they are defined automatically, not in the database.
3202 * @return \type{\arrayof{\string}} Array of internal group names
3203 */
3204 static function getAllGroups() {
3205 global $wgGroupPermissions, $wgRevokePermissions;
3206 return array_diff(
3207 array_merge( array_keys( $wgGroupPermissions ), array_keys( $wgRevokePermissions ) ),
3208 self::getImplicitGroups()
3209 );
3210 }
3211
3212 /**
3213 * Get a list of all available permissions.
3214 * @return \type{\arrayof{\string}} Array of permission names
3215 */
3216 static function getAllRights() {
3217 if ( self::$mAllRights === false ) {
3218 global $wgAvailableRights;
3219 if ( count( $wgAvailableRights ) ) {
3220 self::$mAllRights = array_unique( array_merge( self::$mCoreRights, $wgAvailableRights ) );
3221 } else {
3222 self::$mAllRights = self::$mCoreRights;
3223 }
3224 wfRunHooks( 'UserGetAllRights', array( &self::$mAllRights ) );
3225 }
3226 return self::$mAllRights;
3227 }
3228
3229 /**
3230 * Get a list of implicit groups
3231 * @return \type{\arrayof{\string}} Array of internal group names
3232 */
3233 public static function getImplicitGroups() {
3234 global $wgImplicitGroups;
3235 $groups = $wgImplicitGroups;
3236 wfRunHooks( 'UserGetImplicitGroups', array( &$groups ) ); #deprecated, use $wgImplictGroups instead
3237 return $groups;
3238 }
3239
3240 /**
3241 * Get the title of a page describing a particular group
3242 *
3243 * @param $group \string Internal group name
3244 * @return \types{\type{Title},\bool} Title of the page if it exists, false otherwise
3245 */
3246 static function getGroupPage( $group ) {
3247 global $wgMessageCache;
3248 $wgMessageCache->loadAllMessages();
3249 $page = wfMsgForContent( 'grouppage-' . $group );
3250 if( !wfEmptyMsg( 'grouppage-' . $group, $page ) ) {
3251 $title = Title::newFromText( $page );
3252 if( is_object( $title ) )
3253 return $title;
3254 }
3255 return false;
3256 }
3257
3258 /**
3259 * Create a link to the group in HTML, if available;
3260 * else return the group name.
3261 *
3262 * @param $group \string Internal name of the group
3263 * @param $text \string The text of the link
3264 * @return \string HTML link to the group
3265 */
3266 static function makeGroupLinkHTML( $group, $text = '' ) {
3267 if( $text == '' ) {
3268 $text = self::getGroupName( $group );
3269 }
3270 $title = self::getGroupPage( $group );
3271 if( $title ) {
3272 global $wgUser;
3273 $sk = $wgUser->getSkin();
3274 return $sk->link( $title, htmlspecialchars( $text ) );
3275 } else {
3276 return $text;
3277 }
3278 }
3279
3280 /**
3281 * Create a link to the group in Wikitext, if available;
3282 * else return the group name.
3283 *
3284 * @param $group \string Internal name of the group
3285 * @param $text \string The text of the link
3286 * @return \string Wikilink to the group
3287 */
3288 static function makeGroupLinkWiki( $group, $text = '' ) {
3289 if( $text == '' ) {
3290 $text = self::getGroupName( $group );
3291 }
3292 $title = self::getGroupPage( $group );
3293 if( $title ) {
3294 $page = $title->getPrefixedText();
3295 return "[[$page|$text]]";
3296 } else {
3297 return $text;
3298 }
3299 }
3300
3301 /**
3302 * Returns an array of the groups that a particular group can add/remove.
3303 *
3304 * @param $group String: the group to check for whether it can add/remove
3305 * @return Array array( 'add' => array( addablegroups ),
3306 * 'remove' => array( removablegroups ),
3307 * 'add-self' => array( addablegroups to self),
3308 * 'remove-self' => array( removable groups from self) )
3309 */
3310 static function changeableByGroup( $group ) {
3311 global $wgAddGroups, $wgRemoveGroups, $wgGroupsAddToSelf, $wgGroupsRemoveFromSelf;
3312
3313 $groups = array( 'add' => array(), 'remove' => array(), 'add-self' => array(), 'remove-self' => array() );
3314 if( empty( $wgAddGroups[$group] ) ) {
3315 // Don't add anything to $groups
3316 } elseif( $wgAddGroups[$group] === true ) {
3317 // You get everything
3318 $groups['add'] = self::getAllGroups();
3319 } elseif( is_array( $wgAddGroups[$group] ) ) {
3320 $groups['add'] = $wgAddGroups[$group];
3321 }
3322
3323 // Same thing for remove
3324 if( empty( $wgRemoveGroups[$group] ) ) {
3325 } elseif( $wgRemoveGroups[$group] === true ) {
3326 $groups['remove'] = self::getAllGroups();
3327 } elseif( is_array( $wgRemoveGroups[$group] ) ) {
3328 $groups['remove'] = $wgRemoveGroups[$group];
3329 }
3330
3331 // Re-map numeric keys of AddToSelf/RemoveFromSelf to the 'user' key for backwards compatibility
3332 if( empty( $wgGroupsAddToSelf['user']) || $wgGroupsAddToSelf['user'] !== true ) {
3333 foreach( $wgGroupsAddToSelf as $key => $value ) {
3334 if( is_int( $key ) ) {
3335 $wgGroupsAddToSelf['user'][] = $value;
3336 }
3337 }
3338 }
3339
3340 if( empty( $wgGroupsRemoveFromSelf['user']) || $wgGroupsRemoveFromSelf['user'] !== true ) {
3341 foreach( $wgGroupsRemoveFromSelf as $key => $value ) {
3342 if( is_int( $key ) ) {
3343 $wgGroupsRemoveFromSelf['user'][] = $value;
3344 }
3345 }
3346 }
3347
3348 // Now figure out what groups the user can add to him/herself
3349 if( empty( $wgGroupsAddToSelf[$group] ) ) {
3350 } elseif( $wgGroupsAddToSelf[$group] === true ) {
3351 // No idea WHY this would be used, but it's there
3352 $groups['add-self'] = User::getAllGroups();
3353 } elseif( is_array( $wgGroupsAddToSelf[$group] ) ) {
3354 $groups['add-self'] = $wgGroupsAddToSelf[$group];
3355 }
3356
3357 if( empty( $wgGroupsRemoveFromSelf[$group] ) ) {
3358 } elseif( $wgGroupsRemoveFromSelf[$group] === true ) {
3359 $groups['remove-self'] = User::getAllGroups();
3360 } elseif( is_array( $wgGroupsRemoveFromSelf[$group] ) ) {
3361 $groups['remove-self'] = $wgGroupsRemoveFromSelf[$group];
3362 }
3363
3364 return $groups;
3365 }
3366
3367 /**
3368 * Returns an array of groups that this user can add and remove
3369 * @return Array array( 'add' => array( addablegroups ),
3370 * 'remove' => array( removablegroups ),
3371 * 'add-self' => array( addablegroups to self),
3372 * 'remove-self' => array( removable groups from self) )
3373 */
3374 function changeableGroups() {
3375 if( $this->isAllowed( 'userrights' ) ) {
3376 // This group gives the right to modify everything (reverse-
3377 // compatibility with old "userrights lets you change
3378 // everything")
3379 // Using array_merge to make the groups reindexed
3380 $all = array_merge( User::getAllGroups() );
3381 return array(
3382 'add' => $all,
3383 'remove' => $all,
3384 'add-self' => array(),
3385 'remove-self' => array()
3386 );
3387 }
3388
3389 // Okay, it's not so simple, we will have to go through the arrays
3390 $groups = array(
3391 'add' => array(),
3392 'remove' => array(),
3393 'add-self' => array(),
3394 'remove-self' => array()
3395 );
3396 $addergroups = $this->getEffectiveGroups();
3397
3398 foreach( $addergroups as $addergroup ) {
3399 $groups = array_merge_recursive(
3400 $groups, $this->changeableByGroup( $addergroup )
3401 );
3402 $groups['add'] = array_unique( $groups['add'] );
3403 $groups['remove'] = array_unique( $groups['remove'] );
3404 $groups['add-self'] = array_unique( $groups['add-self'] );
3405 $groups['remove-self'] = array_unique( $groups['remove-self'] );
3406 }
3407 return $groups;
3408 }
3409
3410 /**
3411 * Increment the user's edit-count field.
3412 * Will have no effect for anonymous users.
3413 */
3414 function incEditCount() {
3415 if( !$this->isAnon() ) {
3416 $dbw = wfGetDB( DB_MASTER );
3417 $dbw->update( 'user',
3418 array( 'user_editcount=user_editcount+1' ),
3419 array( 'user_id' => $this->getId() ),
3420 __METHOD__ );
3421
3422 // Lazy initialization check...
3423 if( $dbw->affectedRows() == 0 ) {
3424 // Pull from a slave to be less cruel to servers
3425 // Accuracy isn't the point anyway here
3426 $dbr = wfGetDB( DB_SLAVE );
3427 $count = $dbr->selectField( 'revision',
3428 'COUNT(rev_user)',
3429 array( 'rev_user' => $this->getId() ),
3430 __METHOD__ );
3431
3432 // Now here's a goddamn hack...
3433 if( $dbr !== $dbw ) {
3434 // If we actually have a slave server, the count is
3435 // at least one behind because the current transaction
3436 // has not been committed and replicated.
3437 $count++;
3438 } else {
3439 // But if DB_SLAVE is selecting the master, then the
3440 // count we just read includes the revision that was
3441 // just added in the working transaction.
3442 }
3443
3444 $dbw->update( 'user',
3445 array( 'user_editcount' => $count ),
3446 array( 'user_id' => $this->getId() ),
3447 __METHOD__ );
3448 }
3449 }
3450 // edit count in user cache too
3451 $this->invalidateCache();
3452 }
3453
3454 /**
3455 * Get the description of a given right
3456 *
3457 * @param $right \string Right to query
3458 * @return \string Localized description of the right
3459 */
3460 static function getRightDescription( $right ) {
3461 global $wgMessageCache;
3462 $wgMessageCache->loadAllMessages();
3463 $key = "right-$right";
3464 $name = wfMsg( $key );
3465 return $name == '' || wfEmptyMsg( $key, $name )
3466 ? $right
3467 : $name;
3468 }
3469
3470 /**
3471 * Make an old-style password hash
3472 *
3473 * @param $password \string Plain-text password
3474 * @param $userId \string User ID
3475 * @return \string Password hash
3476 */
3477 static function oldCrypt( $password, $userId ) {
3478 global $wgPasswordSalt;
3479 if ( $wgPasswordSalt ) {
3480 return md5( $userId . '-' . md5( $password ) );
3481 } else {
3482 return md5( $password );
3483 }
3484 }
3485
3486 /**
3487 * Make a new-style password hash
3488 *
3489 * @param $password \string Plain-text password
3490 * @param $salt \string Optional salt, may be random or the user ID.
3491 * If unspecified or false, will generate one automatically
3492 * @return \string Password hash
3493 */
3494 static function crypt( $password, $salt = false ) {
3495 global $wgPasswordSalt;
3496
3497 $hash = '';
3498 if( !wfRunHooks( 'UserCryptPassword', array( &$password, &$salt, &$wgPasswordSalt, &$hash ) ) ) {
3499 return $hash;
3500 }
3501
3502 if( $wgPasswordSalt ) {
3503 if ( $salt === false ) {
3504 $salt = substr( wfGenerateToken(), 0, 8 );
3505 }
3506 return ':B:' . $salt . ':' . md5( $salt . '-' . md5( $password ) );
3507 } else {
3508 return ':A:' . md5( $password );
3509 }
3510 }
3511
3512 /**
3513 * Compare a password hash with a plain-text password. Requires the user
3514 * ID if there's a chance that the hash is an old-style hash.
3515 *
3516 * @param $hash \string Password hash
3517 * @param $password \string Plain-text password to compare
3518 * @param $userId \string User ID for old-style password salt
3519 * @return \bool
3520 */
3521 static function comparePasswords( $hash, $password, $userId = false ) {
3522 $m = false;
3523 $type = substr( $hash, 0, 3 );
3524
3525 $result = false;
3526 if( !wfRunHooks( 'UserComparePasswords', array( &$hash, &$password, &$userId, &$result ) ) ) {
3527 return $result;
3528 }
3529
3530 if ( $type == ':A:' ) {
3531 # Unsalted
3532 return md5( $password ) === substr( $hash, 3 );
3533 } elseif ( $type == ':B:' ) {
3534 # Salted
3535 list( $salt, $realHash ) = explode( ':', substr( $hash, 3 ), 2 );
3536 return md5( $salt.'-'.md5( $password ) ) == $realHash;
3537 } else {
3538 # Old-style
3539 return self::oldCrypt( $password, $userId ) === $hash;
3540 }
3541 }
3542
3543 /**
3544 * Add a newuser log entry for this user
3545 * @param $byEmail Boolean: account made by email?
3546 */
3547 public function addNewUserLogEntry( $byEmail = false ) {
3548 global $wgUser, $wgContLang, $wgNewUserLog;
3549 if( empty( $wgNewUserLog ) ) {
3550 return true; // disabled
3551 }
3552 $talk = $wgContLang->getFormattedNsText( NS_TALK );
3553 if( $this->getName() == $wgUser->getName() ) {
3554 $action = 'create';
3555 $message = '';
3556 } else {
3557 $action = 'create2';
3558 $message = $byEmail
3559 ? wfMsgForContent( 'newuserlog-byemail' )
3560 : '';
3561 }
3562 $log = new LogPage( 'newusers' );
3563 $log->addEntry(
3564 $action,
3565 $this->getUserPage(),
3566 $message,
3567 array( $this->getId() )
3568 );
3569 return true;
3570 }
3571
3572 /**
3573 * Add an autocreate newuser log entry for this user
3574 * Used by things like CentralAuth and perhaps other authplugins.
3575 */
3576 public function addNewUserLogEntryAutoCreate() {
3577 global $wgNewUserLog;
3578 if( empty( $wgNewUserLog ) ) {
3579 return true; // disabled
3580 }
3581 $log = new LogPage( 'newusers', false );
3582 $log->addEntry( 'autocreate', $this->getUserPage(), '', array( $this->getId() ) );
3583 return true;
3584 }
3585
3586 protected function loadOptions() {
3587 global $wgCookiePrefix;
3588 $this->load();
3589 if ( $this->mOptionsLoaded || !$this->getId() )
3590 return;
3591
3592 $this->mOptions = self::getDefaultOptions();
3593
3594 // Maybe load from the object
3595 if ( !is_null( $this->mOptionOverrides ) ) {
3596 wfDebug( "Loading options for user " . $this->getId() . " from override cache.\n" );
3597 foreach( $this->mOptionOverrides as $key => $value ) {
3598 $this->mOptions[$key] = $value;
3599 }
3600 } else {
3601 wfDebug( "Loading options for user " . $this->getId() . " from database.\n" );
3602 // Load from database
3603 $dbr = wfGetDB( DB_SLAVE );
3604
3605 $res = $dbr->select(
3606 'user_properties',
3607 '*',
3608 array( 'up_user' => $this->getId() ),
3609 __METHOD__
3610 );
3611
3612 while( $row = $dbr->fetchObject( $res ) ) {
3613 $this->mOptionOverrides[$row->up_property] = $row->up_value;
3614 $this->mOptions[$row->up_property] = $row->up_value;
3615 }
3616
3617 //null skin if User::mId is loaded out of session data without persistant credentials
3618 if ( !isset( $_SESSION['wsToken'] ) && !isset( $_COOKIE["{$wgCookiePrefix}Token"] ) )
3619 $this->mOptions['skin'] = null;
3620
3621 }
3622
3623 $this->mOptionsLoaded = true;
3624
3625 wfRunHooks( 'UserLoadOptions', array( $this, &$this->mOptions ) );
3626 }
3627
3628 protected function saveOptions() {
3629 global $wgAllowPrefChange;
3630
3631 $extuser = ExternalUser::newFromUser( $this );
3632
3633 $this->loadOptions();
3634 $dbw = wfGetDB( DB_MASTER );
3635
3636 $insert_rows = array();
3637
3638 $saveOptions = $this->mOptions;
3639
3640 // Allow hooks to abort, for instance to save to a global profile.
3641 // Reset options to default state before saving.
3642 if( !wfRunHooks( 'UserSaveOptions', array( $this, &$saveOptions ) ) )
3643 return;
3644
3645 foreach( $saveOptions as $key => $value ) {
3646 # Don't bother storing default values
3647 if ( ( is_null( self::getDefaultOption( $key ) ) &&
3648 !( $value === false || is_null($value) ) ) ||
3649 $value != self::getDefaultOption( $key ) ) {
3650 $insert_rows[] = array(
3651 'up_user' => $this->getId(),
3652 'up_property' => $key,
3653 'up_value' => $value,
3654 );
3655 }
3656 if ( $extuser && isset( $wgAllowPrefChange[$key] ) ) {
3657 switch ( $wgAllowPrefChange[$key] ) {
3658 case 'local':
3659 case 'message':
3660 break;
3661 case 'semiglobal':
3662 case 'global':
3663 $extuser->setPref( $key, $value );
3664 }
3665 }
3666 }
3667
3668 $dbw->begin();
3669 $dbw->delete( 'user_properties', array( 'up_user' => $this->getId() ), __METHOD__ );
3670 $dbw->insert( 'user_properties', $insert_rows, __METHOD__ );
3671 $dbw->commit();
3672 }
3673
3674 /**
3675 * Provide an array of HTML 5 attributes to put on an input element
3676 * intended for the user to enter a new password. This may include
3677 * required, title, and/or pattern, depending on $wgMinimalPasswordLength.
3678 *
3679 * Do *not* use this when asking the user to enter his current password!
3680 * Regardless of configuration, users may have invalid passwords for whatever
3681 * reason (e.g., they were set before requirements were tightened up).
3682 * Only use it when asking for a new password, like on account creation or
3683 * ResetPass.
3684 *
3685 * Obviously, you still need to do server-side checking.
3686 *
3687 * @return array Array of HTML attributes suitable for feeding to
3688 * Html::element(), directly or indirectly. (Don't feed to Xml::*()!
3689 * That will potentially output invalid XHTML 1.0 Transitional, and will
3690 * get confused by the boolean attribute syntax used.)
3691 */
3692 public static function passwordChangeInputAttribs() {
3693 global $wgMinimalPasswordLength;
3694
3695 if ( $wgMinimalPasswordLength == 0 ) {
3696 return array();
3697 }
3698
3699 # Note that the pattern requirement will always be satisfied if the
3700 # input is empty, so we need required in all cases.
3701 $ret = array( 'required' );
3702
3703 # We can't actually do this right now, because Opera 9.6 will print out
3704 # the entered password visibly in its error message! When other
3705 # browsers add support for this attribute, or Opera fixes its support,
3706 # we can add support with a version check to avoid doing this on Opera
3707 # versions where it will be a problem. Reported to Opera as
3708 # DSK-262266, but they don't have a public bug tracker for us to follow.
3709 /*
3710 if ( $wgMinimalPasswordLength > 1 ) {
3711 $ret['pattern'] = '.{' . intval( $wgMinimalPasswordLength ) . ',}';
3712 $ret['title'] = wfMsgExt( 'passwordtooshort', 'parsemag',
3713 $wgMinimalPasswordLength );
3714 }
3715 */
3716
3717 return $ret;
3718 }
3719 }