3 * Implements Special:UserLogin
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
25 * Implements Special:UserLogin
27 * @ingroup SpecialPage
29 class LoginForm
extends SpecialPage
{
34 const WRONG_PLUGIN_PASS
= 3;
40 const CREATE_BLOCKED
= 9;
42 const USER_BLOCKED
= 11;
43 const NEED_TOKEN
= 12;
44 const WRONG_TOKEN
= 13;
46 var $mUsername, $mPassword, $mRetype, $mReturnTo, $mCookieCheck, $mPosted;
47 var $mAction, $mCreateaccount, $mCreateaccountMail;
48 var $mLoginattempt, $mRemember, $mEmail, $mDomain, $mLanguage;
49 var $mSkipCookieCheck, $mReturnToQuery, $mToken, $mStickHTTPS;
50 var $mType, $mReason, $mRealName;
51 var $mAbortLoginErrorMsg = 'login-abort-generic';
52 private $mLoaded = false;
53 private $mSecureLoginUrl;
58 private $mOverrideRequest = null;
61 * Effective request; set at the beginning of load
63 * @var WebRequest $mRequest
65 private $mRequest = null;
68 * @param WebRequest $request
70 public function __construct( $request = null ) {
71 parent
::__construct( 'Userlogin' );
73 $this->mOverrideRequest
= $request;
80 global $wgAuth, $wgHiddenPrefs, $wgEnableEmail;
82 if ( $this->mLoaded
) {
85 $this->mLoaded
= true;
87 if ( $this->mOverrideRequest
=== null ) {
88 $request = $this->getRequest();
90 $request = $this->mOverrideRequest
;
92 $this->mRequest
= $request;
94 $this->mType
= $request->getText( 'type' );
95 $this->mUsername
= $request->getText( 'wpName' );
96 $this->mPassword
= $request->getText( 'wpPassword' );
97 $this->mRetype
= $request->getText( 'wpRetype' );
98 $this->mDomain
= $request->getText( 'wpDomain' );
99 $this->mReason
= $request->getText( 'wpReason' );
100 $this->mCookieCheck
= $request->getVal( 'wpCookieCheck' );
101 $this->mPosted
= $request->wasPosted();
102 $this->mCreateaccountMail
= $request->getCheck( 'wpCreateaccountMail' )
104 $this->mCreateaccount
= $request->getCheck( 'wpCreateaccount' ) && !$this->mCreateaccountMail
;
105 $this->mLoginattempt
= $request->getCheck( 'wpLoginattempt' );
106 $this->mAction
= $request->getVal( 'action' );
107 $this->mRemember
= $request->getCheck( 'wpRemember' );
108 $this->mStickHTTPS
= $request->getCheck( 'wpStickHTTPS' );
109 $this->mLanguage
= $request->getText( 'uselang' );
110 $this->mSkipCookieCheck
= $request->getCheck( 'wpSkipCookieCheck' );
111 $this->mToken
= ( $this->mType
== 'signup' ) ?
$request->getVal( 'wpCreateaccountToken' ) : $request->getVal( 'wpLoginToken' );
112 $this->mReturnTo
= $request->getVal( 'returnto', '' );
113 $this->mReturnToQuery
= $request->getVal( 'returntoquery', '' );
115 if ( $wgEnableEmail ) {
116 $this->mEmail
= $request->getText( 'wpEmail' );
120 if ( !in_array( 'realname', $wgHiddenPrefs ) ) {
121 $this->mRealName
= $request->getText( 'wpRealName' );
123 $this->mRealName
= '';
126 if ( !$wgAuth->validDomain( $this->mDomain
) ) {
127 $this->mDomain
= $wgAuth->getDomain();
129 $wgAuth->setDomain( $this->mDomain
);
131 # 1. When switching accounts, it sucks to get automatically logged out
132 # 2. Do not return to PasswordReset after a successful password change
133 # but goto Wiki start page (Main_Page) instead ( bug 33997 )
134 $returnToTitle = Title
::newFromText( $this->mReturnTo
);
135 if ( is_object( $returnToTitle ) && (
136 $returnToTitle->isSpecial( 'Userlogout' )
137 ||
$returnToTitle->isSpecial( 'PasswordReset' ) ) ) {
138 $this->mReturnTo
= '';
139 $this->mReturnToQuery
= '';
143 function getDescription() {
144 if ( $this->mType
=== 'signup' ) {
145 return $this->msg( 'createaccount' )->text();
147 return $this->msg( 'login' )->text();
152 * @param $subPage string|null
154 public function execute( $subPage ) {
155 if ( session_id() == '' ) {
161 // Check for [[Special:Userlogin/signup]]. This affects form display and
163 if ( $subPage == 'signup' ) {
164 $this->mType
= 'signup';
168 // If logging in and not on HTTPS, either redirect to it or offer a link.
169 global $wgSecureLogin;
171 $this->mType
!== 'signup' &&
172 WebRequest
::detectProtocol() !== 'https'
174 $title = $this->getFullTitle();
176 'returnto' => $this->mReturnTo
,
177 'returntoquery' => $this->mReturnToQuery
,
178 'wpStickHTTPS' => $this->mStickHTTPS
180 $url = $title->getFullURL( $query, false, PROTO_HTTPS
);
181 if ( $wgSecureLogin ) {
182 $this->getOutput()->redirect( $url );
185 // A wiki without HTTPS login support should set $wgServer to
186 // http://somehost, in which case the secure URL generated
187 // above won't actually start with https://
188 if ( substr( $url, 0, 8 ) === 'https://' ) {
189 $this->mSecureLoginUrl
= $url;
194 if ( !is_null( $this->mCookieCheck
) ) {
195 $this->onCookieRedirectCheck( $this->mCookieCheck
);
197 } elseif ( $this->mPosted
) {
198 if ( $this->mCreateaccount
) {
199 $this->addNewAccount();
201 } elseif ( $this->mCreateaccountMail
) {
202 $this->addNewAccountMailPassword();
204 } elseif ( ( 'submitlogin' == $this->mAction
) ||
$this->mLoginattempt
) {
205 $this->processLogin();
209 $this->mainLoginForm( '' );
215 function addNewAccountMailPassword() {
216 if ( $this->mEmail
== '' ) {
217 $this->mainLoginForm( $this->msg( 'noemailcreate' )->escaped() );
221 $status = $this->addNewaccountInternal();
222 if ( !$status->isGood() ) {
223 $error = $this->getOutput()->parse( $status->getWikiText() );
224 $this->mainLoginForm( $error );
228 $u = $status->getValue();
230 // Wipe the initial password and mail a temporary one
231 $u->setPassword( null );
233 $result = $this->mailPasswordInternal( $u, false, 'createaccount-title', 'createaccount-text' );
235 wfRunHooks( 'AddNewAccount', array( $u, true ) );
236 $u->addNewUserLogEntry( 'byemail', $this->mReason
);
238 $out = $this->getOutput();
239 $out->setPageTitle( $this->msg( 'accmailtitle' ) );
241 if ( !$result->isGood() ) {
242 $this->mainLoginForm( $this->msg( 'mailerror', $result->getWikiText() )->text() );
244 $out->addWikiMsg( 'accmailtext', $u->getName(), $u->getEmail() );
245 $this->executeReturnTo( 'success' );
253 function addNewAccount() {
254 global $wgContLang, $wgUser, $wgEmailAuthentication, $wgLoginLanguageSelector;
256 # Create the account and abort if there's a problem doing so
257 $status = $this->addNewAccountInternal();
258 if ( !$status->isGood() ) {
259 $error = $this->getOutput()->parse( $status->getWikiText() );
260 $this->mainLoginForm( $error );
264 $u = $status->getValue();
266 # Only save preferences if the user is not creating an account for someone else.
267 if ( $this->getUser()->isAnon() ) {
268 # If we showed up language selection links, and one was in use, be
269 # smart (and sensible) and save that language as the user's preference
270 if ( $wgLoginLanguageSelector && $this->mLanguage
) {
271 $u->setOption( 'language', $this->mLanguage
);
274 # Otherwise the user's language preference defaults to $wgContLang,
275 # but it may be better to set it to their preferred $wgContLang variant,
276 # based on browser preferences or URL parameters.
277 $u->setOption( 'language', $wgContLang->getPreferredVariant() );
279 if ( $wgContLang->hasVariants() ) {
280 $u->setOption( 'variant', $wgContLang->getPreferredVariant() );
284 $out = $this->getOutput();
286 # Send out an email authentication message if needed
287 if ( $wgEmailAuthentication && Sanitizer
::validateEmail( $u->getEmail() ) ) {
288 $status = $u->sendConfirmationMail();
289 if ( $status->isGood() ) {
290 $out->addWikiMsg( 'confirmemail_oncreate' );
292 $out->addWikiText( $status->getWikiText( 'confirmemail_sendfailed' ) );
296 # Save settings (including confirmation token)
299 # If not logged in, assume the new account as the current one and set
300 # session cookies then show a "welcome" message or a "need cookies"
302 if ( $this->getUser()->isAnon() ) {
305 // This should set it for OutputPage and the Skin
306 // which is needed or the personal links will be
308 $this->getContext()->setUser( $u );
309 wfRunHooks( 'AddNewAccount', array( $u, false ) );
310 $u->addNewUserLogEntry( 'create' );
311 if ( $this->hasSessionCookie() ) {
312 $this->successfulCreation();
314 $this->cookieRedirectCheck( 'new' );
317 # Confirm that the account was created
318 $out->setPageTitle( $this->msg( 'accountcreated' ) );
319 $out->addWikiMsg( 'accountcreatedtext', $u->getName() );
320 $out->addReturnTo( $this->getTitle() );
321 wfRunHooks( 'AddNewAccount', array( $u, false ) );
322 $u->addNewUserLogEntry( 'create2', $this->mReason
);
328 * Make a new user account using the loaded data.
330 * @throws PermissionsError|ReadOnlyError
333 public function addNewAccountInternal() {
334 global $wgAuth, $wgMemc, $wgAccountCreationThrottle,
335 $wgMinimalPasswordLength, $wgEmailConfirmToEdit;
337 // If the user passes an invalid domain, something is fishy
338 if ( !$wgAuth->validDomain( $this->mDomain
) ) {
339 return Status
::newFatal( 'wrongpassword' );
342 // If we are not allowing users to login locally, we should be checking
343 // to see if the user is actually able to authenticate to the authenti-
344 // cation server before they create an account (otherwise, they can
345 // create a local account and login as any domain user). We only need
346 // to check this for domains that aren't local.
347 if ( 'local' != $this->mDomain
&& $this->mDomain
!= '' ) {
349 !$wgAuth->canCreateAccounts() &&
351 !$wgAuth->userExists( $this->mUsername
) ||
352 !$wgAuth->authenticate( $this->mUsername
, $this->mPassword
)
355 return Status
::newFatal( 'wrongpassword' );
359 if ( wfReadOnly() ) {
360 throw new ReadOnlyError
;
363 # Request forgery checks.
364 if ( !self
::getCreateaccountToken() ) {
365 self
::setCreateaccountToken();
366 return Status
::newFatal( 'nocookiesfornew' );
369 # The user didn't pass a createaccount token
370 if ( !$this->mToken
) {
371 return Status
::newFatal( 'sessionfailure' );
374 # Validate the createaccount token
375 if ( $this->mToken
!== self
::getCreateaccountToken() ) {
376 return Status
::newFatal( 'sessionfailure' );
380 $currentUser = $this->getUser();
381 $creationBlock = $currentUser->isBlockedFromCreateAccount();
382 if ( !$currentUser->isAllowed( 'createaccount' ) ) {
383 throw new PermissionsError( 'createaccount' );
384 } elseif ( $creationBlock instanceof Block
) {
385 // Throws an ErrorPageError.
386 $this->userBlockedMessage( $creationBlock );
387 // This should never be reached.
391 # Include checks that will include GlobalBlocking (Bug 38333)
392 $permErrors = $this->getTitle()->getUserPermissionsErrors( 'createaccount', $currentUser, true );
393 if ( count( $permErrors ) ) {
394 throw new PermissionsError( 'createaccount', $permErrors );
397 $ip = $this->getRequest()->getIP();
398 if ( $currentUser->isDnsBlacklisted( $ip, true /* check $wgProxyWhitelist */ ) ) {
399 return Status
::newFatal( 'sorbs_create_account_reason' );
402 # Now create a dummy user ($u) and check if it is valid
403 $name = trim( $this->mUsername
);
404 $u = User
::newFromName( $name, 'creatable' );
405 if ( !is_object( $u ) ) {
406 return Status
::newFatal( 'noname' );
407 } elseif ( 0 != $u->idForName() ) {
408 return Status
::newFatal( 'userexists' );
411 if ( $this->mCreateaccountMail
) {
412 # do not force a password for account creation by email
413 # set invalid password, it will be replaced later by a random generated password
414 $this->mPassword
= null;
416 if ( $this->mPassword
!== $this->mRetype
) {
417 return Status
::newFatal( 'badretype' );
420 # check for minimal password length
421 $valid = $u->getPasswordValidity( $this->mPassword
);
422 if ( $valid !== true ) {
423 if ( !is_array( $valid ) ) {
424 $valid = array( $valid, $wgMinimalPasswordLength );
426 return call_user_func_array( 'Status::newFatal', $valid );
430 # if you need a confirmed email address to edit, then obviously you
431 # need an email address.
432 if ( $wgEmailConfirmToEdit && strval( $this->mEmail
) === '' ) {
433 return Status
::newFatal( 'noemailtitle' );
436 if ( strval( $this->mEmail
) !== '' && !Sanitizer
::validateEmail( $this->mEmail
) ) {
437 return Status
::newFatal( 'invalidemailaddress' );
440 # Set some additional data so the AbortNewAccount hook can be used for
441 # more than just username validation
442 $u->setEmail( $this->mEmail
);
443 $u->setRealName( $this->mRealName
);
446 if ( !wfRunHooks( 'AbortNewAccount', array( $u, &$abortError ) ) ) {
447 // Hook point to add extra creation throttles and blocks
448 wfDebug( "LoginForm::addNewAccountInternal: a hook blocked creation\n" );
449 return Status
::newFatal( new RawMessage( $abortError ) );
452 // Hook point to check for exempt from account creation throttle
453 if ( !wfRunHooks( 'ExemptFromAccountCreationThrottle', array( $ip ) ) ) {
454 wfDebug( "LoginForm::exemptFromAccountCreationThrottle: a hook allowed account creation w/o throttle\n" );
456 if ( ( $wgAccountCreationThrottle && $currentUser->isPingLimitable() ) ) {
457 $key = wfMemcKey( 'acctcreate', 'ip', $ip );
458 $value = $wgMemc->get( $key );
460 $wgMemc->set( $key, 0, 86400 );
462 if ( $value >= $wgAccountCreationThrottle ) {
463 return Status
::newFatal( 'acct_creation_throttle_hit', $wgAccountCreationThrottle );
465 $wgMemc->incr( $key );
469 if ( !$wgAuth->addUser( $u, $this->mPassword
, $this->mEmail
, $this->mRealName
) ) {
470 return Status
::newFatal( 'externaldberror' );
473 self
::clearCreateaccountToken();
474 return $this->initUser( $u, false );
478 * Actually add a user to the database.
479 * Give it a User object that has been initialised with a name.
481 * @param $u User object.
482 * @param $autocreate boolean -- true if this is an autocreation via auth plugin
483 * @return Status object, with the User object in the value member on success
486 function initUser( $u, $autocreate ) {
489 $status = $u->addToDatabase();
490 if ( !$status->isOK() ) {
494 if ( $wgAuth->allowPasswordChange() ) {
495 $u->setPassword( $this->mPassword
);
498 $u->setEmail( $this->mEmail
);
499 $u->setRealName( $this->mRealName
);
502 $wgAuth->initUser( $u, $autocreate );
504 $u->setOption( 'rememberpassword', $this->mRemember ?
1 : 0 );
508 DeferredUpdates
::addUpdate( new SiteStatsUpdate( 0, 0, 0, 0, 1 ) );
510 return Status
::newGood( $u );
514 * Internally authenticate the login request.
516 * This may create a local account as a side effect if the
517 * authentication plugin allows transparent local account
521 public function authenticateUserData() {
522 global $wgUser, $wgAuth;
526 if ( $this->mUsername
== '' ) {
527 return self
::NO_NAME
;
530 // We require a login token to prevent login CSRF
531 // Handle part of this before incrementing the throttle so
532 // token-less login attempts don't count towards the throttle
533 // but wrong-token attempts do.
535 // If the user doesn't have a login token yet, set one.
536 if ( !self
::getLoginToken() ) {
537 self
::setLoginToken();
538 return self
::NEED_TOKEN
;
540 // If the user didn't pass a login token, tell them we need one
541 if ( !$this->mToken
) {
542 return self
::NEED_TOKEN
;
545 $throttleCount = self
::incLoginThrottle( $this->mUsername
);
546 if ( $throttleCount === true ) {
547 return self
::THROTTLED
;
550 // Validate the login token
551 if ( $this->mToken
!== self
::getLoginToken() ) {
552 return self
::WRONG_TOKEN
;
555 // Load the current user now, and check to see if we're logging in as
556 // the same name. This is necessary because loading the current user
557 // (say by calling getName()) calls the UserLoadFromSession hook, which
558 // potentially creates the user in the database. Until we load $wgUser,
559 // checking for user existence using User::newFromName($name)->getId() below
560 // will effectively be using stale data.
561 if ( $this->getUser()->getName() === $this->mUsername
) {
562 wfDebug( __METHOD__
. ": already logged in as {$this->mUsername}\n" );
563 return self
::SUCCESS
;
566 $u = User
::newFromName( $this->mUsername
);
567 if ( !( $u instanceof User
) ||
!User
::isUsableName( $u->getName() ) ) {
568 return self
::ILLEGAL
;
571 $isAutoCreated = false;
572 if ( $u->getID() == 0 ) {
573 $status = $this->attemptAutoCreate( $u );
574 if ( $status !== self
::SUCCESS
) {
577 $isAutoCreated = true;
583 // Give general extensions, such as a captcha, a chance to abort logins
584 $abort = self
::ABORTED
;
585 if ( !wfRunHooks( 'AbortLogin', array( $u, $this->mPassword
, &$abort, &$this->mAbortLoginErrorMsg
) ) ) {
589 global $wgBlockDisablesLogin;
590 if ( !$u->checkPassword( $this->mPassword
) ) {
591 if ( $u->checkTemporaryPassword( $this->mPassword
) ) {
592 // The e-mailed temporary password should not be used for actu-
593 // al logins; that's a very sloppy habit, and insecure if an
594 // attacker has a few seconds to click "search" on someone's o-
597 // Allow it to be used only to reset the password a single time
598 // to a new value, which won't be in the user's e-mail ar-
601 // For backwards compatibility, we'll still recognize it at the
602 // login form to minimize surprises for people who have been
603 // logging in with a temporary password for some time.
605 // As a side-effect, we can authenticate the user's e-mail ad-
606 // dress if it's not already done, since the temporary password
607 // was sent via e-mail.
608 if ( !$u->isEmailConfirmed() ) {
613 // At this point we just return an appropriate code/ indicating
614 // that the UI should show a password reset form; bot inter-
615 // faces etc will probably just fail cleanly here.
616 $retval = self
::RESET_PASS
;
618 $retval = ( $this->mPassword
== '' ) ? self
::EMPTY_PASS
: self
::WRONG_PASS
;
620 } elseif ( $wgBlockDisablesLogin && $u->isBlocked() ) {
621 // If we've enabled it, make it so that a blocked user cannot login
622 $retval = self
::USER_BLOCKED
;
624 $wgAuth->updateUser( $u );
626 // This should set it for OutputPage and the Skin
627 // which is needed or the personal links will be
629 $this->getContext()->setUser( $u );
631 // Please reset throttle for successful logins, thanks!
632 if ( $throttleCount ) {
633 self
::clearLoginThrottle( $this->mUsername
);
636 if ( $isAutoCreated ) {
637 // Must be run after $wgUser is set, for correct new user log
638 wfRunHooks( 'AuthPluginAutoCreate', array( $u ) );
641 $retval = self
::SUCCESS
;
643 wfRunHooks( 'LoginAuthenticateAudit', array( $u, $this->mPassword
, $retval ) );
648 * Increment the login attempt throttle hit count for the (username,current IP)
649 * tuple unless the throttle was already reached.
650 * @param string $username The user name
651 * @return Bool|Integer The integer hit count or True if it is already at the limit
653 public static function incLoginThrottle( $username ) {
654 global $wgPasswordAttemptThrottle, $wgMemc, $wgRequest;
655 $username = trim( $username ); // sanity
658 if ( is_array( $wgPasswordAttemptThrottle ) ) {
659 $throttleKey = wfMemcKey( 'password-throttle', $wgRequest->getIP(), md5( $username ) );
660 $count = $wgPasswordAttemptThrottle['count'];
661 $period = $wgPasswordAttemptThrottle['seconds'];
663 $throttleCount = $wgMemc->get( $throttleKey );
664 if ( !$throttleCount ) {
665 $wgMemc->add( $throttleKey, 1, $period ); // start counter
666 } elseif ( $throttleCount < $count ) {
667 $wgMemc->incr( $throttleKey );
668 } elseif ( $throttleCount >= $count ) {
673 return $throttleCount;
677 * Clear the login attempt throttle hit count for the (username,current IP) tuple.
678 * @param string $username The user name
681 public static function clearLoginThrottle( $username ) {
682 global $wgMemc, $wgRequest;
683 $username = trim( $username ); // sanity
685 $throttleKey = wfMemcKey( 'password-throttle', $wgRequest->getIP(), md5( $username ) );
686 $wgMemc->delete( $throttleKey );
690 * Attempt to automatically create a user on login. Only succeeds if there
691 * is an external authentication method which allows it.
695 * @return integer Status code
697 function attemptAutoCreate( $user ) {
700 if ( $this->getUser()->isBlockedFromCreateAccount() ) {
701 wfDebug( __METHOD__
. ": user is blocked from account creation\n" );
702 return self
::CREATE_BLOCKED
;
704 if ( !$wgAuth->autoCreate() ) {
705 return self
::NOT_EXISTS
;
707 if ( !$wgAuth->userExists( $user->getName() ) ) {
708 wfDebug( __METHOD__
. ": user does not exist\n" );
709 return self
::NOT_EXISTS
;
711 if ( !$wgAuth->authenticate( $user->getName(), $this->mPassword
) ) {
712 wfDebug( __METHOD__
. ": \$wgAuth->authenticate() returned false, aborting\n" );
713 return self
::WRONG_PLUGIN_PASS
;
717 if ( !wfRunHooks( 'AbortAutoAccount', array( $user, &$abortError ) ) ) {
718 // Hook point to add extra creation throttles and blocks
719 wfDebug( "LoginForm::attemptAutoCreate: a hook blocked creation: $abortError\n" );
720 $this->mAbortLoginErrorMsg
= $abortError;
721 return self
::ABORTED
;
724 wfDebug( __METHOD__
. ": creating account\n" );
725 $status = $this->initUser( $user, true );
727 if ( !$status->isOK() ) {
728 $errors = $status->getErrorsByType( 'error' );
729 $this->mAbortLoginErrorMsg
= $errors[0]['message'];
730 return self
::ABORTED
;
733 return self
::SUCCESS
;
736 function processLogin() {
737 global $wgMemc, $wgLang, $wgSecureLogin;
739 switch ( $this->authenticateUserData() ) {
741 # We've verified now, update the real record
742 $user = $this->getUser();
743 if ( (bool)$this->mRemember
!= $user->getBoolOption( 'rememberpassword' ) ) {
744 $user->setOption( 'rememberpassword', $this->mRemember ?
1 : 0 );
745 $user->saveSettings();
747 $user->invalidateCache();
750 if ( $wgSecureLogin && !$this->mStickHTTPS
) {
751 $user->setCookies( null, false );
755 self
::clearLoginToken();
757 // Reset the throttle
758 $request = $this->getRequest();
759 $key = wfMemcKey( 'password-throttle', $request->getIP(), md5( $this->mUsername
) );
760 $wgMemc->delete( $key );
762 if ( $this->hasSessionCookie() ||
$this->mSkipCookieCheck
) {
763 /* Replace the language object to provide user interface in
764 * correct language immediately on this first page load.
766 $code = $request->getVal( 'uselang', $user->getOption( 'language' ) );
767 $userLang = Language
::factory( $code );
769 $this->getContext()->setLanguage( $userLang );
770 // Reset SessionID on Successful login (bug 40995)
771 $this->renewSessionId();
772 $this->successfulLogin();
774 $this->cookieRedirectCheck( 'login' );
778 case self
::NEED_TOKEN
:
779 $this->mainLoginForm( $this->msg( 'nocookiesforlogin' )->parse() );
781 case self
::WRONG_TOKEN
:
782 $this->mainLoginForm( $this->msg( 'sessionfailure' )->text() );
786 $this->mainLoginForm( $this->msg( 'noname' )->text() );
788 case self
::WRONG_PLUGIN_PASS
:
789 $this->mainLoginForm( $this->msg( 'wrongpassword' )->text() );
791 case self
::NOT_EXISTS
:
792 if ( $this->getUser()->isAllowed( 'createaccount' ) ) {
793 $this->mainLoginForm( $this->msg( 'nosuchuser',
794 wfEscapeWikiText( $this->mUsername
) )->parse() );
796 $this->mainLoginForm( $this->msg( 'nosuchusershort',
797 wfEscapeWikiText( $this->mUsername
) )->text() );
800 case self
::WRONG_PASS
:
801 $this->mainLoginForm( $this->msg( 'wrongpassword' )->text() );
803 case self
::EMPTY_PASS
:
804 $this->mainLoginForm( $this->msg( 'wrongpasswordempty' )->text() );
806 case self
::RESET_PASS
:
807 $this->resetLoginForm( $this->msg( 'resetpass_announce' )->text() );
809 case self
::CREATE_BLOCKED
:
810 $this->userBlockedMessage( $this->getUser()->isBlockedFromCreateAccount() );
812 case self
::THROTTLED
:
813 $this->mainLoginForm( $this->msg( 'login-throttled' )->text() );
815 case self
::USER_BLOCKED
:
816 $this->mainLoginForm( $this->msg( 'login-userblocked',
817 $this->mUsername
)->escaped() );
820 $this->mainLoginForm( $this->msg( $this->mAbortLoginErrorMsg
)->text() );
823 throw new MWException( 'Unhandled case value' );
828 * @param $error string
830 function resetLoginForm( $error ) {
831 $this->getOutput()->addHTML( Xml
::element( 'p', array( 'class' => 'error' ), $error ) );
832 $reset = new SpecialChangePassword();
833 $reset->setContext( $this->getContext() );
834 $reset->execute( null );
838 * @param $u User object
839 * @param $throttle Boolean
840 * @param string $emailTitle message name of email title
841 * @param string $emailText message name of email text
842 * @return Status object
844 function mailPasswordInternal( $u, $throttle = true, $emailTitle = 'passwordremindertitle', $emailText = 'passwordremindertext' ) {
845 global $wgCanonicalServer, $wgScript, $wgNewPasswordExpiry;
847 if ( $u->getEmail() == '' ) {
848 return Status
::newFatal( 'noemail', $u->getName() );
850 $ip = $this->getRequest()->getIP();
852 return Status
::newFatal( 'badipaddress' );
855 $currentUser = $this->getUser();
856 wfRunHooks( 'User::mailPasswordInternal', array( &$currentUser, &$ip, &$u ) );
858 $np = $u->randomPassword();
859 $u->setNewpassword( $np, $throttle );
861 $userLanguage = $u->getOption( 'language' );
862 $m = $this->msg( $emailText, $ip, $u->getName(), $np, '<' . $wgCanonicalServer . $wgScript . '>',
863 round( $wgNewPasswordExpiry / 86400 ) )->inLanguage( $userLanguage )->text();
864 $result = $u->sendMail( $this->msg( $emailTitle )->inLanguage( $userLanguage )->text(), $m );
870 * Run any hooks registered for logins, then HTTP redirect to
871 * $this->mReturnTo (or Main Page if that's undefined). Formerly we had a
872 * nice message here, but that's really not as useful as just being sent to
873 * wherever you logged in from. It should be clear that the action was
874 * successful, given the lack of error messages plus the appearance of your
875 * name in the upper right.
879 function successfulLogin() {
880 # Run any hooks; display injected HTML if any, else redirect
881 $currentUser = $this->getUser();
883 wfRunHooks( 'UserLoginComplete', array( &$currentUser, &$injected_html ) );
885 if ( $injected_html !== '' ) {
886 $this->displaySuccessfulAction( $this->msg( 'loginsuccesstitle' ),
887 'loginsuccess', $injected_html );
889 $this->executeReturnTo( 'successredirect' );
894 * Run any hooks registered for logins, then display a message welcoming
899 function successfulCreation() {
900 # Run any hooks; display injected HTML
901 $currentUser = $this->getUser();
903 $welcome_creation_msg = 'welcomecreation-msg';
905 wfRunHooks( 'UserLoginComplete', array( &$currentUser, &$injected_html ) );
908 * Let any extensions change what message is shown.
909 * @see https://www.mediawiki.org/wiki/Manual:Hooks/BeforeWelcomeCreation
912 wfRunHooks( 'BeforeWelcomeCreation', array( &$welcome_creation_msg, &$injected_html ) );
914 $this->displaySuccessfulAction( $this->msg( 'welcomeuser', $this->getUser()->getName() ),
915 $welcome_creation_msg, $injected_html );
919 * Display an "successful action" page.
921 * @param string|Message $title page's title
922 * @param $msgname string
923 * @param $injected_html string
925 private function displaySuccessfulAction( $title, $msgname, $injected_html ) {
926 $out = $this->getOutput();
927 $out->setPageTitle( $title );
929 $out->addWikiMsg( $msgname, wfEscapeWikiText( $this->getUser()->getName() ) );
932 $out->addHTML( $injected_html );
934 $this->executeReturnTo( 'success' );
938 * Output a message that informs the user that they cannot create an account because
939 * there is a block on them or their IP which prevents account creation. Note that
940 * User::isBlockedFromCreateAccount(), which gets this block, ignores the 'hardblock'
941 * setting on blocks (bug 13611).
942 * @param $block Block the block causing this error
943 * @throws ErrorPageError
945 function userBlockedMessage( Block
$block ) {
946 # Let's be nice about this, it's likely that this feature will be used
947 # for blocking large numbers of innocent people, e.g. range blocks on
948 # schools. Don't blame it on the user. There's a small chance that it
949 # really is the user's fault, i.e. the username is blocked and they
950 # haven't bothered to log out before trying to create an account to
951 # evade it, but we'll leave that to their guilty conscience to figure
953 throw new ErrorPageError(
954 'cantcreateaccounttitle',
955 'cantcreateaccount-text',
958 $block->mReason ?
$block->mReason
: $this->msg( 'blockednoreason' )->text(),
965 * Add a "return to" link or redirect to it.
966 * Extensions can use this to reuse the "return to" logic after
967 * inject steps (such as redirection) into the login process.
969 * @param $type string, one of the following:
970 * - error: display a return to link ignoring $wgRedirectOnLogin
971 * - success: display a return to link using $wgRedirectOnLogin if needed
972 * - successredirect: send an HTTP redirect using $wgRedirectOnLogin if needed
973 * @param string $returnTo
974 * @param array|string $returnToQuery
975 * @param bool $stickHTTPs Keep redirect link on HTTPs
978 public function showReturnToPage(
979 $type, $returnTo = '', $returnToQuery = '', $stickHTTPs = false
981 $this->mReturnTo
= $returnTo;
982 $this->mReturnToQuery
= $returnToQuery;
983 $this->mStickHTTPS
= $stickHTTPs;
984 $this->executeReturnTo( $type );
988 * Add a "return to" link or redirect to it.
990 * @param $type string, one of the following:
991 * - error: display a return to link ignoring $wgRedirectOnLogin
992 * - success: display a return to link using $wgRedirectOnLogin if needed
993 * - successredirect: send an HTTP redirect using $wgRedirectOnLogin if needed
995 private function executeReturnTo( $type ) {
996 global $wgRedirectOnLogin, $wgSecureLogin;
998 if ( $type != 'error' && $wgRedirectOnLogin !== null ) {
999 $returnTo = $wgRedirectOnLogin;
1000 $returnToQuery = array();
1002 $returnTo = $this->mReturnTo
;
1003 $returnToQuery = wfCgiToArray( $this->mReturnToQuery
);
1006 $returnToTitle = Title
::newFromText( $returnTo );
1007 if ( !$returnToTitle ) {
1008 $returnToTitle = Title
::newMainPage();
1011 if ( $wgSecureLogin && !$this->mStickHTTPS
) {
1012 $options = array( 'http' );
1013 $proto = PROTO_HTTP
;
1014 } elseif ( $wgSecureLogin ) {
1015 $options = array( 'https' );
1016 $proto = PROTO_HTTPS
;
1019 $proto = PROTO_RELATIVE
;
1022 if ( $type == 'successredirect' ) {
1023 $redirectUrl = $returnToTitle->getFullURL( $returnToQuery, false, $proto );
1024 $this->getOutput()->redirect( $redirectUrl );
1026 $this->getOutput()->addReturnTo( $returnToTitle, $returnToQuery, null, $options );
1033 function mainLoginForm( $msg, $msgtype = 'error' ) {
1034 global $wgEnableEmail, $wgEnableUserEmail;
1035 global $wgHiddenPrefs, $wgLoginLanguageSelector;
1036 global $wgAuth, $wgEmailConfirmToEdit, $wgCookieExpiration;
1037 global $wgSecureLogin, $wgSecureLoginDefaultHTTPS, $wgPasswordResetRoutes;
1039 $titleObj = $this->getTitle();
1040 $user = $this->getUser();
1041 $out = $this->getOutput();
1043 if ( $this->mType
== 'signup' ) {
1044 // Block signup here if in readonly. Keeps user from
1045 // going through the process (filling out data, etc)
1046 // and being informed later.
1047 $permErrors = $titleObj->getUserPermissionsErrors( 'createaccount', $user, true );
1048 if ( count( $permErrors ) ) {
1049 throw new PermissionsError( 'createaccount', $permErrors );
1050 } elseif ( $user->isBlockedFromCreateAccount() ) {
1051 $this->userBlockedMessage( $user->isBlockedFromCreateAccount() );
1053 } elseif ( wfReadOnly() ) {
1054 throw new ReadOnlyError
;
1058 // Pre-fill username (if not creating an account, bug 44775).
1059 if ( $this->mUsername
== '' && $this->mType
!= 'signup' ) {
1060 if ( $user->isLoggedIn() ) {
1061 $this->mUsername
= $user->getName();
1063 $this->mUsername
= $this->getRequest()->getCookie( 'UserName' );
1067 if ( $this->mType
== 'signup' ) {
1068 $template = new UsercreateTemplate();
1070 $out->addModuleStyles( array(
1072 'mediawiki.special.createaccount'
1074 // XXX hack pending RL or JS parse() support for complex content messages
1075 // https://bugzilla.wikimedia.org/show_bug.cgi?id=25349
1076 $out->addJsConfigVars( 'wgCreateacctImgcaptchaHelp',
1077 $this->msg( 'createacct-imgcaptcha-help' )->parse() );
1078 $out->addModules( array(
1079 'mediawiki.special.createaccount.js'
1081 // Must match number of benefits defined in messages
1082 $template->set( 'benefitCount', 3 );
1084 $q = 'action=submitlogin&type=signup';
1085 $linkq = 'type=login';
1087 $template = new UserloginTemplate();
1089 $out->addModuleStyles( array(
1091 'mediawiki.special.userlogin'
1094 $q = 'action=submitlogin&type=login';
1095 $linkq = 'type=signup';
1098 if ( $this->mReturnTo
!== '' ) {
1099 $returnto = '&returnto=' . wfUrlencode( $this->mReturnTo
);
1100 if ( $this->mReturnToQuery
!== '' ) {
1101 $returnto .= '&returntoquery=' .
1102 wfUrlencode( $this->mReturnToQuery
);
1105 $linkq .= $returnto;
1108 # Don't show a "create account" link if the user can't.
1109 if ( $this->showCreateOrLoginLink( $user ) ) {
1110 # Pass any language selection on to the mode switch link
1111 if ( $wgLoginLanguageSelector && $this->mLanguage
) {
1112 $linkq .= '&uselang=' . $this->mLanguage
;
1114 // Supply URL, login template creates the button.
1115 $template->set( 'createOrLoginHref', $titleObj->getLocalURL( $linkq ) );
1117 $template->set( 'link', '' );
1120 // Decide if we default stickHTTPS on
1121 if ( $wgSecureLoginDefaultHTTPS && $this->mAction
!= 'submitlogin' && !$this->mLoginattempt
) {
1122 $this->mStickHTTPS
= true;
1125 $resetLink = $this->mType
== 'signup'
1127 : is_array( $wgPasswordResetRoutes ) && in_array( true, array_values( $wgPasswordResetRoutes ) );
1129 $template->set( 'header', '' );
1130 $template->set( 'skin', $this->getSkin() );
1131 $template->set( 'name', $this->mUsername
);
1132 $template->set( 'password', $this->mPassword
);
1133 $template->set( 'retype', $this->mRetype
);
1134 $template->set( 'createemailset', $this->mCreateaccountMail
);
1135 $template->set( 'email', $this->mEmail
);
1136 $template->set( 'realname', $this->mRealName
);
1137 $template->set( 'domain', $this->mDomain
);
1138 $template->set( 'reason', $this->mReason
);
1140 $template->set( 'action', $titleObj->getLocalURL( $q ) );
1141 $template->set( 'message', $msg );
1142 $template->set( 'messagetype', $msgtype );
1143 $template->set( 'createemail', $wgEnableEmail && $user->isLoggedIn() );
1144 $template->set( 'userealname', !in_array( 'realname', $wgHiddenPrefs ) );
1145 $template->set( 'useemail', $wgEnableEmail );
1146 $template->set( 'emailrequired', $wgEmailConfirmToEdit );
1147 $template->set( 'emailothers', $wgEnableUserEmail );
1148 $template->set( 'canreset', $wgAuth->allowPasswordChange() );
1149 $template->set( 'resetlink', $resetLink );
1150 $template->set( 'canremember', ( $wgCookieExpiration > 0 ) );
1151 $template->set( 'usereason', $user->isLoggedIn() );
1152 $template->set( 'remember', $user->getOption( 'rememberpassword' ) ||
$this->mRemember
);
1153 $template->set( 'cansecurelogin', ( $wgSecureLogin === true ) );
1154 $template->set( 'stickHTTPS', $this->mStickHTTPS
);
1156 if ( $this->mType
=== 'signup' && $user->isLoggedIn() ) {
1157 $template->set( 'createAnother', true );
1159 $template->set( 'createAnother', false );
1162 if ( $this->mType
== 'signup' ) {
1163 if ( !self
::getCreateaccountToken() ) {
1164 self
::setCreateaccountToken();
1166 $template->set( 'token', self
::getCreateaccountToken() );
1168 if ( !self
::getLoginToken() ) {
1169 self
::setLoginToken();
1171 $template->set( 'token', self
::getLoginToken() );
1174 # Prepare language selection links as needed
1175 if ( $wgLoginLanguageSelector ) {
1176 $template->set( 'languages', $this->makeLanguageSelector() );
1177 if ( $this->mLanguage
) {
1178 $template->set( 'uselang', $this->mLanguage
);
1182 $template->set( 'secureLoginUrl', $this->mSecureLoginUrl
);
1183 // Use loginend-https for HTTPS requests if it's not blank, loginend otherwise
1184 // Ditto for signupend. New forms use neither.
1185 $usingHTTPS = WebRequest
::detectProtocol() == 'https';
1186 $loginendHTTPS = $this->msg( 'loginend-https' );
1187 $signupendHTTPS = $this->msg( 'signupend-https' );
1188 if ( $usingHTTPS && !$loginendHTTPS->isBlank() ) {
1189 $template->set( 'loginend', $loginendHTTPS->parse() );
1191 $template->set( 'loginend', $this->msg( 'loginend' )->parse() );
1193 if ( $usingHTTPS && !$signupendHTTPS->isBlank() ) {
1194 $template->set( 'signupend', $signupendHTTPS->parse() );
1196 $template->set( 'signupend', $this->msg( 'signupend' )->parse() );
1199 // Give authentication and captcha plugins a chance to modify the form
1200 $wgAuth->modifyUITemplate( $template, $this->mType
);
1201 if ( $this->mType
== 'signup' ) {
1202 wfRunHooks( 'UserCreateForm', array( &$template ) );
1204 wfRunHooks( 'UserLoginForm', array( &$template ) );
1207 $out->disallowUserJs(); // just in case...
1208 $out->addTemplate( $template );
1218 function showCreateOrLoginLink( &$user ) {
1219 if ( $this->mType
== 'signup' ) {
1221 } elseif ( $user->isAllowed( 'createaccount' ) ) {
1229 * Check if a session cookie is present.
1231 * This will not pick up a cookie set during _this_ request, but is meant
1232 * to ensure that the client is returning the cookie which was set on a
1233 * previous pass through the system.
1238 function hasSessionCookie() {
1239 global $wgDisableCookieCheck;
1240 return $wgDisableCookieCheck ?
true : $this->getRequest()->checkSessionCookie();
1244 * Get the login token from the current session
1247 public static function getLoginToken() {
1249 return $wgRequest->getSessionData( 'wsLoginToken' );
1253 * Randomly generate a new login token and attach it to the current session
1255 public static function setLoginToken() {
1257 // Generate a token directly instead of using $user->editToken()
1258 // because the latter reuses $_SESSION['wsEditToken']
1259 $wgRequest->setSessionData( 'wsLoginToken', MWCryptRand
::generateHex( 32 ) );
1263 * Remove any login token attached to the current session
1265 public static function clearLoginToken() {
1267 $wgRequest->setSessionData( 'wsLoginToken', null );
1271 * Get the createaccount token from the current session
1274 public static function getCreateaccountToken() {
1276 return $wgRequest->getSessionData( 'wsCreateaccountToken' );
1280 * Randomly generate a new createaccount token and attach it to the current session
1282 public static function setCreateaccountToken() {
1284 $wgRequest->setSessionData( 'wsCreateaccountToken', MWCryptRand
::generateHex( 32 ) );
1288 * Remove any createaccount token attached to the current session
1290 public static function clearCreateaccountToken() {
1292 $wgRequest->setSessionData( 'wsCreateaccountToken', null );
1296 * Renew the user's session id, using strong entropy
1298 private function renewSessionId() {
1299 global $wgSecureLogin, $wgCookieSecure;
1300 if ( $wgSecureLogin && !$this->mStickHTTPS
) {
1301 $wgCookieSecure = false;
1304 // If either we don't trust PHP's entropy, or if we need
1305 // to change cookie settings when logging in because of
1306 // wpStickHTTPS, then change the session ID manually.
1307 $cookieParams = session_get_cookie_params();
1308 if ( wfCheckEntropy() && $wgCookieSecure == $cookieParams['secure'] ) {
1309 session_regenerate_id( false );
1313 wfSetupSession( MWCryptRand
::generateHex( 32 ) );
1321 function cookieRedirectCheck( $type ) {
1322 $titleObj = SpecialPage
::getTitleFor( 'Userlogin' );
1323 $query = array( 'wpCookieCheck' => $type );
1324 if ( $this->mReturnTo
!== '' ) {
1325 $query['returnto'] = $this->mReturnTo
;
1326 $query['returntoquery'] = $this->mReturnToQuery
;
1328 $check = $titleObj->getFullURL( $query );
1330 $this->getOutput()->redirect( $check );
1336 function onCookieRedirectCheck( $type ) {
1337 if ( !$this->hasSessionCookie() ) {
1338 if ( $type == 'new' ) {
1339 $this->mainLoginForm( $this->msg( 'nocookiesnew' )->parse() );
1340 } elseif ( $type == 'login' ) {
1341 $this->mainLoginForm( $this->msg( 'nocookieslogin' )->parse() );
1344 $this->mainLoginForm( $this->msg( 'error' )->text() );
1347 $this->successfulLogin();
1352 * Produce a bar of links which allow the user to select another language
1353 * during login/registration but retain "returnto"
1357 function makeLanguageSelector() {
1358 $msg = $this->msg( 'loginlanguagelinks' )->inContentLanguage();
1359 if ( !$msg->isBlank() ) {
1360 $langs = explode( "\n", $msg->text() );
1362 foreach ( $langs as $lang ) {
1363 $lang = trim( $lang, '* ' );
1364 $parts = explode( '|', $lang );
1365 if ( count( $parts ) >= 2 ) {
1366 $links[] = $this->makeLanguageSelectorLink( $parts[0], trim( $parts[1] ) );
1369 return count( $links ) > 0 ?
$this->msg( 'loginlanguagelabel' )->rawParams(
1370 $this->getLanguage()->pipeList( $links ) )->escaped() : '';
1377 * Create a language selector link for a particular language
1378 * Links back to this page preserving type and returnto
1380 * @param string $text Link text
1381 * @param string $lang Language code
1384 function makeLanguageSelectorLink( $text, $lang ) {
1385 if ( $this->getLanguage()->getCode() == $lang ) {
1386 // no link for currently used language
1387 return htmlspecialchars( $text );
1389 $query = array( 'uselang' => $lang );
1390 if ( $this->mType
== 'signup' ) {
1391 $query['type'] = 'signup';
1393 if ( $this->mReturnTo
!== '' ) {
1394 $query['returnto'] = $this->mReturnTo
;
1395 $query['returntoquery'] = $this->mReturnToQuery
;
1399 $targetLanguage = Language
::factory( $lang );
1400 $attr['lang'] = $attr['hreflang'] = $targetLanguage->getHtmlCode();
1402 return Linker
::linkKnown(
1404 htmlspecialchars( $text ),
1410 protected function getGroupName() {