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