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