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