Merge "Removes portal-url, currentevents-url and helppage from default Sidebar"
[lhc/web/wiklou.git] / includes / specials / SpecialUserlogin.php
1 <?php
2 /**
3 * Implements Special:UserLogin
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 /**
25 * Implements Special:UserLogin
26 *
27 * @ingroup SpecialPage
28 */
29 class LoginForm extends SpecialPage {
30
31 const SUCCESS = 0;
32 const NO_NAME = 1;
33 const ILLEGAL = 2;
34 const WRONG_PLUGIN_PASS = 3;
35 const NOT_EXISTS = 4;
36 const WRONG_PASS = 5;
37 const EMPTY_PASS = 6;
38 const RESET_PASS = 7;
39 const ABORTED = 8;
40 const CREATE_BLOCKED = 9;
41 const THROTTLED = 10;
42 const USER_BLOCKED = 11;
43 const NEED_TOKEN = 12;
44 const WRONG_TOKEN = 13;
45
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;
54
55 /**
56 * @ var WebRequest
57 */
58 private $mOverrideRequest = null;
59
60 /**
61 * Effective request; set at the beginning of load
62 *
63 * @var WebRequest $mRequest
64 */
65 private $mRequest = null;
66
67 /**
68 * @param WebRequest $request
69 */
70 public function __construct( $request = null ) {
71 parent::__construct( 'Userlogin' );
72
73 $this->mOverrideRequest = $request;
74 }
75
76 /**
77 * Loader
78 */
79 function load() {
80 global $wgAuth, $wgHiddenPrefs, $wgEnableEmail;
81
82 if ( $this->mLoaded ) {
83 return;
84 }
85 $this->mLoaded = true;
86
87 if ( $this->mOverrideRequest === null ) {
88 $request = $this->getRequest();
89 } else {
90 $request = $this->mOverrideRequest;
91 }
92 $this->mRequest = $request;
93
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' )
103 && $wgEnableEmail;
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->mFromHTTP = $request->getBool( 'fromhttp', false );
109 $this->mStickHTTPS = ( !$this->mFromHTTP && $request->detectProtocol() === 'https' ) || $request->getBool( 'wpForceHttps', false );
110 $this->mLanguage = $request->getText( 'uselang' );
111 $this->mSkipCookieCheck = $request->getCheck( 'wpSkipCookieCheck' );
112 $this->mToken = ( $this->mType == 'signup' ) ? $request->getVal( 'wpCreateaccountToken' ) : $request->getVal( 'wpLoginToken' );
113 $this->mReturnTo = $request->getVal( 'returnto', '' );
114 $this->mReturnToQuery = $request->getVal( 'returntoquery', '' );
115
116 if ( $wgEnableEmail ) {
117 $this->mEmail = $request->getText( 'wpEmail' );
118 } else {
119 $this->mEmail = '';
120 }
121 if ( !in_array( 'realname', $wgHiddenPrefs ) ) {
122 $this->mRealName = $request->getText( 'wpRealName' );
123 } else {
124 $this->mRealName = '';
125 }
126
127 if ( !$wgAuth->validDomain( $this->mDomain ) ) {
128 $this->mDomain = $wgAuth->getDomain();
129 }
130 $wgAuth->setDomain( $this->mDomain );
131
132 # 1. When switching accounts, it sucks to get automatically logged out
133 # 2. Do not return to PasswordReset after a successful password change
134 # but goto Wiki start page (Main_Page) instead ( bug 33997 )
135 $returnToTitle = Title::newFromText( $this->mReturnTo );
136 if ( is_object( $returnToTitle ) && (
137 $returnToTitle->isSpecial( 'Userlogout' )
138 || $returnToTitle->isSpecial( 'PasswordReset' ) ) ) {
139 $this->mReturnTo = '';
140 $this->mReturnToQuery = '';
141 }
142 }
143
144 function getDescription() {
145 if ( $this->mType === 'signup' ) {
146 return $this->msg( 'createaccount' )->text();
147 } else {
148 return $this->msg( 'login' )->text();
149 }
150 }
151
152 /*
153 * @param $subPage string|null
154 */
155 public function execute( $subPage ) {
156 if ( session_id() == '' ) {
157 wfSetupSession();
158 }
159
160 $this->load();
161
162 // Check for [[Special:Userlogin/signup]]. This affects form display and
163 // page title.
164 if ( $subPage == 'signup' ) {
165 $this->mType = 'signup';
166 }
167 $this->setHeaders();
168
169 // If logging in and not on HTTPS, either redirect to it or offer a link.
170 global $wgSecureLogin;
171 if (
172 $this->mType !== 'signup' &&
173 WebRequest::detectProtocol() !== 'https'
174 ) {
175 $title = $this->getFullTitle();
176 $query = array(
177 'returnto' => $this->mReturnTo,
178 'returntoquery' => $this->mReturnToQuery,
179 );
180 $url = $title->getFullURL( $query, false, PROTO_HTTPS );
181 if ( $wgSecureLogin && wfCanIPUseHTTPS( $this->getRequest()->getIP() ) ) {
182 $url = wfAppendQuery( $url, 'fromhttp=1' );
183 $this->getOutput()->redirect( $url );
184 return;
185 } else {
186 // A wiki without HTTPS login support should set $wgServer to
187 // http://somehost, in which case the secure URL generated
188 // above won't actually start with https://
189 if ( substr( $url, 0, 8 ) === 'https://' ) {
190 $this->mSecureLoginUrl = $url;
191 }
192 }
193 }
194
195 if ( !is_null( $this->mCookieCheck ) ) {
196 $this->onCookieRedirectCheck( $this->mCookieCheck );
197 return;
198 } elseif ( $this->mPosted ) {
199 if ( $this->mCreateaccount ) {
200 $this->addNewAccount();
201 return;
202 } elseif ( $this->mCreateaccountMail ) {
203 $this->addNewAccountMailPassword();
204 return;
205 } elseif ( ( 'submitlogin' == $this->mAction ) || $this->mLoginattempt ) {
206 $this->processLogin();
207 return;
208 }
209 }
210 $this->mainLoginForm( '' );
211 }
212
213 /**
214 * @private
215 */
216 function addNewAccountMailPassword() {
217 if ( $this->mEmail == '' ) {
218 $this->mainLoginForm( $this->msg( 'noemailcreate' )->escaped() );
219 return;
220 }
221
222 $status = $this->addNewaccountInternal();
223 if ( !$status->isGood() ) {
224 $error = $this->getOutput()->parse( $status->getWikiText() );
225 $this->mainLoginForm( $error );
226 return;
227 }
228
229 $u = $status->getValue();
230
231 // Wipe the initial password and mail a temporary one
232 $u->setPassword( null );
233 $u->saveSettings();
234 $result = $this->mailPasswordInternal( $u, false, 'createaccount-title', 'createaccount-text' );
235
236 wfRunHooks( 'AddNewAccount', array( $u, true ) );
237 $u->addNewUserLogEntry( 'byemail', $this->mReason );
238
239 $out = $this->getOutput();
240 $out->setPageTitle( $this->msg( 'accmailtitle' ) );
241
242 if ( !$result->isGood() ) {
243 $this->mainLoginForm( $this->msg( 'mailerror', $result->getWikiText() )->text() );
244 } else {
245 $out->addWikiMsg( 'accmailtext', $u->getName(), $u->getEmail() );
246 $this->executeReturnTo( 'success' );
247 }
248 }
249
250 /**
251 * @private
252 * @return bool
253 */
254 function addNewAccount() {
255 global $wgContLang, $wgUser, $wgEmailAuthentication, $wgLoginLanguageSelector;
256
257 # Create the account and abort if there's a problem doing so
258 $status = $this->addNewAccountInternal();
259 if ( !$status->isGood() ) {
260 $error = $this->getOutput()->parse( $status->getWikiText() );
261 $this->mainLoginForm( $error );
262 return false;
263 }
264
265 $u = $status->getValue();
266
267 # Only save preferences if the user is not creating an account for someone else.
268 if ( $this->getUser()->isAnon() ) {
269 # If we showed up language selection links, and one was in use, be
270 # smart (and sensible) and save that language as the user's preference
271 if ( $wgLoginLanguageSelector && $this->mLanguage ) {
272 $u->setOption( 'language', $this->mLanguage );
273 } else {
274
275 # Otherwise the user's language preference defaults to $wgContLang,
276 # but it may be better to set it to their preferred $wgContLang variant,
277 # based on browser preferences or URL parameters.
278 $u->setOption( 'language', $wgContLang->getPreferredVariant() );
279 }
280 if ( $wgContLang->hasVariants() ) {
281 $u->setOption( 'variant', $wgContLang->getPreferredVariant() );
282 }
283 }
284
285 $out = $this->getOutput();
286
287 # Send out an email authentication message if needed
288 if ( $wgEmailAuthentication && Sanitizer::validateEmail( $u->getEmail() ) ) {
289 $status = $u->sendConfirmationMail();
290 if ( $status->isGood() ) {
291 $out->addWikiMsg( 'confirmemail_oncreate' );
292 } else {
293 $out->addWikiText( $status->getWikiText( 'confirmemail_sendfailed' ) );
294 }
295 }
296
297 # Save settings (including confirmation token)
298 $u->saveSettings();
299
300 # If not logged in, assume the new account as the current one and set
301 # session cookies then show a "welcome" message or a "need cookies"
302 # message as needed
303 if ( $this->getUser()->isAnon() ) {
304 $u->setCookies();
305 $wgUser = $u;
306 // This should set it for OutputPage and the Skin
307 // which is needed or the personal links will be
308 // wrong.
309 $this->getContext()->setUser( $u );
310 wfRunHooks( 'AddNewAccount', array( $u, false ) );
311 $u->addNewUserLogEntry( 'create' );
312 if ( $this->hasSessionCookie() ) {
313 $this->successfulCreation();
314 } else {
315 $this->cookieRedirectCheck( 'new' );
316 }
317 } else {
318 # Confirm that the account was created
319 $out->setPageTitle( $this->msg( 'accountcreated' ) );
320 $out->addWikiMsg( 'accountcreatedtext', $u->getName() );
321 $out->addReturnTo( $this->getTitle() );
322 wfRunHooks( 'AddNewAccount', array( $u, false ) );
323 $u->addNewUserLogEntry( 'create2', $this->mReason );
324 }
325 return true;
326 }
327
328 /**
329 * Make a new user account using the loaded data.
330 * @private
331 * @throws PermissionsError|ReadOnlyError
332 * @return Status
333 */
334 public function addNewAccountInternal() {
335 global $wgAuth, $wgMemc, $wgAccountCreationThrottle,
336 $wgMinimalPasswordLength, $wgEmailConfirmToEdit;
337
338 // If the user passes an invalid domain, something is fishy
339 if ( !$wgAuth->validDomain( $this->mDomain ) ) {
340 return Status::newFatal( 'wrongpassword' );
341 }
342
343 // If we are not allowing users to login locally, we should be checking
344 // to see if the user is actually able to authenticate to the authenti-
345 // cation server before they create an account (otherwise, they can
346 // create a local account and login as any domain user). We only need
347 // to check this for domains that aren't local.
348 if ( 'local' != $this->mDomain && $this->mDomain != '' ) {
349 if (
350 !$wgAuth->canCreateAccounts() &&
351 (
352 !$wgAuth->userExists( $this->mUsername ) ||
353 !$wgAuth->authenticate( $this->mUsername, $this->mPassword )
354 )
355 ) {
356 return Status::newFatal( 'wrongpassword' );
357 }
358 }
359
360 if ( wfReadOnly() ) {
361 throw new ReadOnlyError;
362 }
363
364 # Request forgery checks.
365 if ( !self::getCreateaccountToken() ) {
366 self::setCreateaccountToken();
367 return Status::newFatal( 'nocookiesfornew' );
368 }
369
370 # The user didn't pass a createaccount token
371 if ( !$this->mToken ) {
372 return Status::newFatal( 'sessionfailure' );
373 }
374
375 # Validate the createaccount token
376 if ( $this->mToken !== self::getCreateaccountToken() ) {
377 return Status::newFatal( 'sessionfailure' );
378 }
379
380 # Check permissions
381 $currentUser = $this->getUser();
382 $creationBlock = $currentUser->isBlockedFromCreateAccount();
383 if ( !$currentUser->isAllowed( 'createaccount' ) ) {
384 throw new PermissionsError( 'createaccount' );
385 } elseif ( $creationBlock instanceof Block ) {
386 // Throws an ErrorPageError.
387 $this->userBlockedMessage( $creationBlock );
388 // This should never be reached.
389 return false;
390 }
391
392 # Include checks that will include GlobalBlocking (Bug 38333)
393 $permErrors = $this->getTitle()->getUserPermissionsErrors( 'createaccount', $currentUser, true );
394 if ( count( $permErrors ) ) {
395 throw new PermissionsError( 'createaccount', $permErrors );
396 }
397
398 $ip = $this->getRequest()->getIP();
399 if ( $currentUser->isDnsBlacklisted( $ip, true /* check $wgProxyWhitelist */ ) ) {
400 return Status::newFatal( 'sorbs_create_account_reason' );
401 }
402
403 # Now create a dummy user ($u) and check if it is valid
404 $name = trim( $this->mUsername );
405 $u = User::newFromName( $name, 'creatable' );
406 if ( !is_object( $u ) ) {
407 return Status::newFatal( 'noname' );
408 } elseif ( 0 != $u->idForName() ) {
409 return Status::newFatal( 'userexists' );
410 }
411
412 if ( $this->mCreateaccountMail ) {
413 # do not force a password for account creation by email
414 # set invalid password, it will be replaced later by a random generated password
415 $this->mPassword = null;
416 } else {
417 if ( $this->mPassword !== $this->mRetype ) {
418 return Status::newFatal( 'badretype' );
419 }
420
421 # check for minimal password length
422 $valid = $u->getPasswordValidity( $this->mPassword );
423 if ( $valid !== true ) {
424 if ( !is_array( $valid ) ) {
425 $valid = array( $valid, $wgMinimalPasswordLength );
426 }
427 return call_user_func_array( 'Status::newFatal', $valid );
428 }
429 }
430
431 # if you need a confirmed email address to edit, then obviously you
432 # need an email address.
433 if ( $wgEmailConfirmToEdit && strval( $this->mEmail ) === '' ) {
434 return Status::newFatal( 'noemailtitle' );
435 }
436
437 if ( strval( $this->mEmail ) !== '' && !Sanitizer::validateEmail( $this->mEmail ) ) {
438 return Status::newFatal( 'invalidemailaddress' );
439 }
440
441 # Set some additional data so the AbortNewAccount hook can be used for
442 # more than just username validation
443 $u->setEmail( $this->mEmail );
444 $u->setRealName( $this->mRealName );
445
446 $abortError = '';
447 if ( !wfRunHooks( 'AbortNewAccount', array( $u, &$abortError ) ) ) {
448 // Hook point to add extra creation throttles and blocks
449 wfDebug( "LoginForm::addNewAccountInternal: a hook blocked creation\n" );
450 return Status::newFatal( new RawMessage( $abortError ) );
451 }
452
453 // Hook point to check for exempt from account creation throttle
454 if ( !wfRunHooks( 'ExemptFromAccountCreationThrottle', array( $ip ) ) ) {
455 wfDebug( "LoginForm::exemptFromAccountCreationThrottle: a hook allowed account creation w/o throttle\n" );
456 } else {
457 if ( ( $wgAccountCreationThrottle && $currentUser->isPingLimitable() ) ) {
458 $key = wfMemcKey( 'acctcreate', 'ip', $ip );
459 $value = $wgMemc->get( $key );
460 if ( !$value ) {
461 $wgMemc->set( $key, 0, 86400 );
462 }
463 if ( $value >= $wgAccountCreationThrottle ) {
464 return Status::newFatal( 'acct_creation_throttle_hit', $wgAccountCreationThrottle );
465 }
466 $wgMemc->incr( $key );
467 }
468 }
469
470 if ( !$wgAuth->addUser( $u, $this->mPassword, $this->mEmail, $this->mRealName ) ) {
471 return Status::newFatal( 'externaldberror' );
472 }
473
474 self::clearCreateaccountToken();
475 return $this->initUser( $u, false );
476 }
477
478 /**
479 * Actually add a user to the database.
480 * Give it a User object that has been initialised with a name.
481 *
482 * @param $u User object.
483 * @param $autocreate boolean -- true if this is an autocreation via auth plugin
484 * @return Status object, with the User object in the value member on success
485 * @private
486 */
487 function initUser( $u, $autocreate ) {
488 global $wgAuth;
489
490 $status = $u->addToDatabase();
491 if ( !$status->isOK() ) {
492 return $status;
493 }
494
495 if ( $wgAuth->allowPasswordChange() ) {
496 $u->setPassword( $this->mPassword );
497 }
498
499 $u->setEmail( $this->mEmail );
500 $u->setRealName( $this->mRealName );
501 $u->setToken();
502
503 $wgAuth->initUser( $u, $autocreate );
504
505 $u->setOption( 'rememberpassword', $this->mRemember ? 1 : 0 );
506 $u->saveSettings();
507
508 # Update user count
509 DeferredUpdates::addUpdate( new SiteStatsUpdate( 0, 0, 0, 0, 1 ) );
510
511 return Status::newGood( $u );
512 }
513
514 /**
515 * Internally authenticate the login request.
516 *
517 * This may create a local account as a side effect if the
518 * authentication plugin allows transparent local account
519 * creation.
520 * @return int
521 */
522 public function authenticateUserData() {
523 global $wgUser, $wgAuth;
524
525 $this->load();
526
527 if ( $this->mUsername == '' ) {
528 return self::NO_NAME;
529 }
530
531 // We require a login token to prevent login CSRF
532 // Handle part of this before incrementing the throttle so
533 // token-less login attempts don't count towards the throttle
534 // but wrong-token attempts do.
535
536 // If the user doesn't have a login token yet, set one.
537 if ( !self::getLoginToken() ) {
538 self::setLoginToken();
539 return self::NEED_TOKEN;
540 }
541 // If the user didn't pass a login token, tell them we need one
542 if ( !$this->mToken ) {
543 return self::NEED_TOKEN;
544 }
545
546 $throttleCount = self::incLoginThrottle( $this->mUsername );
547 if ( $throttleCount === true ) {
548 return self::THROTTLED;
549 }
550
551 // Validate the login token
552 if ( $this->mToken !== self::getLoginToken() ) {
553 return self::WRONG_TOKEN;
554 }
555
556 // Load the current user now, and check to see if we're logging in as
557 // the same name. This is necessary because loading the current user
558 // (say by calling getName()) calls the UserLoadFromSession hook, which
559 // potentially creates the user in the database. Until we load $wgUser,
560 // checking for user existence using User::newFromName($name)->getId() below
561 // will effectively be using stale data.
562 if ( $this->getUser()->getName() === $this->mUsername ) {
563 wfDebug( __METHOD__ . ": already logged in as {$this->mUsername}\n" );
564 return self::SUCCESS;
565 }
566
567 $u = User::newFromName( $this->mUsername );
568 if ( !( $u instanceof User ) || !User::isUsableName( $u->getName() ) ) {
569 return self::ILLEGAL;
570 }
571
572 $isAutoCreated = false;
573 if ( $u->getID() == 0 ) {
574 $status = $this->attemptAutoCreate( $u );
575 if ( $status !== self::SUCCESS ) {
576 return $status;
577 } else {
578 $isAutoCreated = true;
579 }
580 } else {
581 $u->load();
582 }
583
584 // Give general extensions, such as a captcha, a chance to abort logins
585 $abort = self::ABORTED;
586 if ( !wfRunHooks( 'AbortLogin', array( $u, $this->mPassword, &$abort, &$this->mAbortLoginErrorMsg ) ) ) {
587 return $abort;
588 }
589
590 global $wgBlockDisablesLogin;
591 if ( !$u->checkPassword( $this->mPassword ) ) {
592 if ( $u->checkTemporaryPassword( $this->mPassword ) ) {
593 // The e-mailed temporary password should not be used for actu-
594 // al logins; that's a very sloppy habit, and insecure if an
595 // attacker has a few seconds to click "search" on someone's o-
596 // pen mail reader.
597 //
598 // Allow it to be used only to reset the password a single time
599 // to a new value, which won't be in the user's e-mail ar-
600 // chives.
601 //
602 // For backwards compatibility, we'll still recognize it at the
603 // login form to minimize surprises for people who have been
604 // logging in with a temporary password for some time.
605 //
606 // As a side-effect, we can authenticate the user's e-mail ad-
607 // dress if it's not already done, since the temporary password
608 // was sent via e-mail.
609 if ( !$u->isEmailConfirmed() ) {
610 $u->confirmEmail();
611 $u->saveSettings();
612 }
613
614 // At this point we just return an appropriate code/ indicating
615 // that the UI should show a password reset form; bot inter-
616 // faces etc will probably just fail cleanly here.
617 $retval = self::RESET_PASS;
618 } else {
619 $retval = ( $this->mPassword == '' ) ? self::EMPTY_PASS : self::WRONG_PASS;
620 }
621 } elseif ( $wgBlockDisablesLogin && $u->isBlocked() ) {
622 // If we've enabled it, make it so that a blocked user cannot login
623 $retval = self::USER_BLOCKED;
624 } else {
625 $wgAuth->updateUser( $u );
626 $wgUser = $u;
627 // This should set it for OutputPage and the Skin
628 // which is needed or the personal links will be
629 // wrong.
630 $this->getContext()->setUser( $u );
631
632 // Please reset throttle for successful logins, thanks!
633 if ( $throttleCount ) {
634 self::clearLoginThrottle( $this->mUsername );
635 }
636
637 if ( $isAutoCreated ) {
638 // Must be run after $wgUser is set, for correct new user log
639 wfRunHooks( 'AuthPluginAutoCreate', array( $u ) );
640 }
641
642 $retval = self::SUCCESS;
643 }
644 wfRunHooks( 'LoginAuthenticateAudit', array( $u, $this->mPassword, $retval ) );
645 return $retval;
646 }
647
648 /**
649 * Increment the login attempt throttle hit count for the (username,current IP)
650 * tuple unless the throttle was already reached.
651 * @param string $username The user name
652 * @return Bool|Integer The integer hit count or True if it is already at the limit
653 */
654 public static function incLoginThrottle( $username ) {
655 global $wgPasswordAttemptThrottle, $wgMemc, $wgRequest;
656 $username = trim( $username ); // sanity
657
658 $throttleCount = 0;
659 if ( is_array( $wgPasswordAttemptThrottle ) ) {
660 $throttleKey = wfMemcKey( 'password-throttle', $wgRequest->getIP(), md5( $username ) );
661 $count = $wgPasswordAttemptThrottle['count'];
662 $period = $wgPasswordAttemptThrottle['seconds'];
663
664 $throttleCount = $wgMemc->get( $throttleKey );
665 if ( !$throttleCount ) {
666 $wgMemc->add( $throttleKey, 1, $period ); // start counter
667 } elseif ( $throttleCount < $count ) {
668 $wgMemc->incr( $throttleKey );
669 } elseif ( $throttleCount >= $count ) {
670 return true;
671 }
672 }
673
674 return $throttleCount;
675 }
676
677 /**
678 * Clear the login attempt throttle hit count for the (username,current IP) tuple.
679 * @param string $username The user name
680 * @return void
681 */
682 public static function clearLoginThrottle( $username ) {
683 global $wgMemc, $wgRequest;
684 $username = trim( $username ); // sanity
685
686 $throttleKey = wfMemcKey( 'password-throttle', $wgRequest->getIP(), md5( $username ) );
687 $wgMemc->delete( $throttleKey );
688 }
689
690 /**
691 * Attempt to automatically create a user on login. Only succeeds if there
692 * is an external authentication method which allows it.
693 *
694 * @param $user User
695 *
696 * @return integer Status code
697 */
698 function attemptAutoCreate( $user ) {
699 global $wgAuth;
700
701 if ( $this->getUser()->isBlockedFromCreateAccount() ) {
702 wfDebug( __METHOD__ . ": user is blocked from account creation\n" );
703 return self::CREATE_BLOCKED;
704 }
705 if ( !$wgAuth->autoCreate() ) {
706 return self::NOT_EXISTS;
707 }
708 if ( !$wgAuth->userExists( $user->getName() ) ) {
709 wfDebug( __METHOD__ . ": user does not exist\n" );
710 return self::NOT_EXISTS;
711 }
712 if ( !$wgAuth->authenticate( $user->getName(), $this->mPassword ) ) {
713 wfDebug( __METHOD__ . ": \$wgAuth->authenticate() returned false, aborting\n" );
714 return self::WRONG_PLUGIN_PASS;
715 }
716
717 $abortError = '';
718 if ( !wfRunHooks( 'AbortAutoAccount', array( $user, &$abortError ) ) ) {
719 // Hook point to add extra creation throttles and blocks
720 wfDebug( "LoginForm::attemptAutoCreate: a hook blocked creation: $abortError\n" );
721 $this->mAbortLoginErrorMsg = $abortError;
722 return self::ABORTED;
723 }
724
725 wfDebug( __METHOD__ . ": creating account\n" );
726 $status = $this->initUser( $user, true );
727
728 if ( !$status->isOK() ) {
729 $errors = $status->getErrorsByType( 'error' );
730 $this->mAbortLoginErrorMsg = $errors[0]['message'];
731 return self::ABORTED;
732 }
733
734 return self::SUCCESS;
735 }
736
737 function processLogin() {
738 global $wgMemc, $wgLang, $wgSecureLogin, $wgPasswordAttemptThrottle;
739
740 switch ( $this->authenticateUserData() ) {
741 case self::SUCCESS:
742 # We've verified now, update the real record
743 $user = $this->getUser();
744 if ( (bool)$this->mRemember != $user->getBoolOption( 'rememberpassword' ) ) {
745 $user->setOption( 'rememberpassword', $this->mRemember ? 1 : 0 );
746 $user->saveSettings();
747 } else {
748 $user->invalidateCache();
749 }
750
751 if ( $user->requiresHTTPS() ) {
752 $this->mStickHTTPS = true;
753 }
754
755 if ( $wgSecureLogin && !$this->mStickHTTPS ) {
756 $user->setCookies( null, false );
757 } else {
758 $user->setCookies();
759 }
760 self::clearLoginToken();
761
762 // Reset the throttle
763 $request = $this->getRequest();
764 $key = wfMemcKey( 'password-throttle', $request->getIP(), md5( $this->mUsername ) );
765 $wgMemc->delete( $key );
766
767 if ( $this->hasSessionCookie() || $this->mSkipCookieCheck ) {
768 /* Replace the language object to provide user interface in
769 * correct language immediately on this first page load.
770 */
771 $code = $request->getVal( 'uselang', $user->getOption( 'language' ) );
772 $userLang = Language::factory( $code );
773 $wgLang = $userLang;
774 $this->getContext()->setLanguage( $userLang );
775 // Reset SessionID on Successful login (bug 40995)
776 $this->renewSessionId();
777 $this->successfulLogin();
778 } else {
779 $this->cookieRedirectCheck( 'login' );
780 }
781 break;
782
783 case self::NEED_TOKEN:
784 $this->mainLoginForm( $this->msg( 'nocookiesforlogin' )->parse() );
785 break;
786 case self::WRONG_TOKEN:
787 $this->mainLoginForm( $this->msg( 'sessionfailure' )->text() );
788 break;
789 case self::NO_NAME:
790 case self::ILLEGAL:
791 $this->mainLoginForm( $this->msg( 'noname' )->text() );
792 break;
793 case self::WRONG_PLUGIN_PASS:
794 $this->mainLoginForm( $this->msg( 'wrongpassword' )->text() );
795 break;
796 case self::NOT_EXISTS:
797 if ( $this->getUser()->isAllowed( 'createaccount' ) ) {
798 $this->mainLoginForm( $this->msg( 'nosuchuser',
799 wfEscapeWikiText( $this->mUsername ) )->parse() );
800 } else {
801 $this->mainLoginForm( $this->msg( 'nosuchusershort',
802 wfEscapeWikiText( $this->mUsername ) )->text() );
803 }
804 break;
805 case self::WRONG_PASS:
806 $this->mainLoginForm( $this->msg( 'wrongpassword' )->text() );
807 break;
808 case self::EMPTY_PASS:
809 $this->mainLoginForm( $this->msg( 'wrongpasswordempty' )->text() );
810 break;
811 case self::RESET_PASS:
812 $this->resetLoginForm( $this->msg( 'resetpass_announce' )->text() );
813 break;
814 case self::CREATE_BLOCKED:
815 $this->userBlockedMessage( $this->getUser()->isBlockedFromCreateAccount() );
816 break;
817 case self::THROTTLED:
818 $this->mainLoginForm( $this->msg( 'login-throttled' )
819 ->params ( $this->getLanguage()->formatDuration( $wgPasswordAttemptThrottle['seconds'] ) )
820 ->text()
821 );
822 break;
823 case self::USER_BLOCKED:
824 $this->mainLoginForm( $this->msg( 'login-userblocked',
825 $this->mUsername )->escaped() );
826 break;
827 case self::ABORTED:
828 $this->mainLoginForm( $this->msg( $this->mAbortLoginErrorMsg )->text() );
829 break;
830 default:
831 throw new MWException( 'Unhandled case value' );
832 }
833 }
834
835 /**
836 * @param $error string
837 */
838 function resetLoginForm( $error ) {
839 $this->getOutput()->addHTML( Xml::element( 'p', array( 'class' => 'error' ), $error ) );
840 $reset = new SpecialChangePassword();
841 $reset->setContext( $this->getContext() );
842 $reset->execute( null );
843 }
844
845 /**
846 * @param $u User object
847 * @param $throttle Boolean
848 * @param string $emailTitle message name of email title
849 * @param string $emailText message name of email text
850 * @return Status object
851 */
852 function mailPasswordInternal( $u, $throttle = true, $emailTitle = 'passwordremindertitle', $emailText = 'passwordremindertext' ) {
853 global $wgCanonicalServer, $wgScript, $wgNewPasswordExpiry;
854
855 if ( $u->getEmail() == '' ) {
856 return Status::newFatal( 'noemail', $u->getName() );
857 }
858 $ip = $this->getRequest()->getIP();
859 if ( !$ip ) {
860 return Status::newFatal( 'badipaddress' );
861 }
862
863 $currentUser = $this->getUser();
864 wfRunHooks( 'User::mailPasswordInternal', array( &$currentUser, &$ip, &$u ) );
865
866 $np = $u->randomPassword();
867 $u->setNewpassword( $np, $throttle );
868 $u->saveSettings();
869 $userLanguage = $u->getOption( 'language' );
870 $m = $this->msg( $emailText, $ip, $u->getName(), $np, '<' . $wgCanonicalServer . $wgScript . '>',
871 round( $wgNewPasswordExpiry / 86400 ) )->inLanguage( $userLanguage )->text();
872 $result = $u->sendMail( $this->msg( $emailTitle )->inLanguage( $userLanguage )->text(), $m );
873
874 return $result;
875 }
876
877 /**
878 * Run any hooks registered for logins, then HTTP redirect to
879 * $this->mReturnTo (or Main Page if that's undefined). Formerly we had a
880 * nice message here, but that's really not as useful as just being sent to
881 * wherever you logged in from. It should be clear that the action was
882 * successful, given the lack of error messages plus the appearance of your
883 * name in the upper right.
884 *
885 * @private
886 */
887 function successfulLogin() {
888 # Run any hooks; display injected HTML if any, else redirect
889 $currentUser = $this->getUser();
890 $injected_html = '';
891 wfRunHooks( 'UserLoginComplete', array( &$currentUser, &$injected_html ) );
892
893 if ( $injected_html !== '' ) {
894 $this->displaySuccessfulAction( $this->msg( 'loginsuccesstitle' ),
895 'loginsuccess', $injected_html );
896 } else {
897 $this->executeReturnTo( 'successredirect' );
898 }
899 }
900
901 /**
902 * Run any hooks registered for logins, then display a message welcoming
903 * the user.
904 *
905 * @private
906 */
907 function successfulCreation() {
908 # Run any hooks; display injected HTML
909 $currentUser = $this->getUser();
910 $injected_html = '';
911 $welcome_creation_msg = 'welcomecreation-msg';
912
913 wfRunHooks( 'UserLoginComplete', array( &$currentUser, &$injected_html ) );
914
915 /**
916 * Let any extensions change what message is shown.
917 * @see https://www.mediawiki.org/wiki/Manual:Hooks/BeforeWelcomeCreation
918 * @since 1.18
919 */
920 wfRunHooks( 'BeforeWelcomeCreation', array( &$welcome_creation_msg, &$injected_html ) );
921
922 $this->displaySuccessfulAction( $this->msg( 'welcomeuser', $this->getUser()->getName() ),
923 $welcome_creation_msg, $injected_html );
924 }
925
926 /**
927 * Display an "successful action" page.
928 *
929 * @param string|Message $title page's title
930 * @param $msgname string
931 * @param $injected_html string
932 */
933 private function displaySuccessfulAction( $title, $msgname, $injected_html ) {
934 $out = $this->getOutput();
935 $out->setPageTitle( $title );
936 if ( $msgname ) {
937 $out->addWikiMsg( $msgname, wfEscapeWikiText( $this->getUser()->getName() ) );
938 }
939
940 $out->addHTML( $injected_html );
941
942 $this->executeReturnTo( 'success' );
943 }
944
945 /**
946 * Output a message that informs the user that they cannot create an account because
947 * there is a block on them or their IP which prevents account creation. Note that
948 * User::isBlockedFromCreateAccount(), which gets this block, ignores the 'hardblock'
949 * setting on blocks (bug 13611).
950 * @param $block Block the block causing this error
951 * @throws ErrorPageError
952 */
953 function userBlockedMessage( Block $block ) {
954 # Let's be nice about this, it's likely that this feature will be used
955 # for blocking large numbers of innocent people, e.g. range blocks on
956 # schools. Don't blame it on the user. There's a small chance that it
957 # really is the user's fault, i.e. the username is blocked and they
958 # haven't bothered to log out before trying to create an account to
959 # evade it, but we'll leave that to their guilty conscience to figure
960 # out.
961 throw new ErrorPageError(
962 'cantcreateaccounttitle',
963 'cantcreateaccount-text',
964 array(
965 $block->getTarget(),
966 $block->mReason ? $block->mReason : $this->msg( 'blockednoreason' )->text(),
967 $block->getByName()
968 )
969 );
970 }
971
972 /**
973 * Add a "return to" link or redirect to it.
974 * Extensions can use this to reuse the "return to" logic after
975 * inject steps (such as redirection) into the login process.
976 *
977 * @param $type string, one of the following:
978 * - error: display a return to link ignoring $wgRedirectOnLogin
979 * - success: display a return to link using $wgRedirectOnLogin if needed
980 * - successredirect: send an HTTP redirect using $wgRedirectOnLogin if needed
981 * @param string $returnTo
982 * @param array|string $returnToQuery
983 * @param bool $stickHTTPs Keep redirect link on HTTPs
984 * @since 1.22
985 */
986 public function showReturnToPage(
987 $type, $returnTo = '', $returnToQuery = '', $stickHTTPs = false
988 ) {
989 $this->mReturnTo = $returnTo;
990 $this->mReturnToQuery = $returnToQuery;
991 $this->mStickHTTPS = $stickHTTPs;
992 $this->executeReturnTo( $type );
993 }
994
995 /**
996 * Add a "return to" link or redirect to it.
997 *
998 * @param $type string, one of the following:
999 * - error: display a return to link ignoring $wgRedirectOnLogin
1000 * - success: display a return to link using $wgRedirectOnLogin if needed
1001 * - successredirect: send an HTTP redirect using $wgRedirectOnLogin if needed
1002 */
1003 private function executeReturnTo( $type ) {
1004 global $wgRedirectOnLogin, $wgSecureLogin;
1005
1006 if ( $type != 'error' && $wgRedirectOnLogin !== null ) {
1007 $returnTo = $wgRedirectOnLogin;
1008 $returnToQuery = array();
1009 } else {
1010 $returnTo = $this->mReturnTo;
1011 $returnToQuery = wfCgiToArray( $this->mReturnToQuery );
1012 }
1013
1014 $returnToTitle = Title::newFromText( $returnTo );
1015 if ( !$returnToTitle ) {
1016 $returnToTitle = Title::newMainPage();
1017 }
1018
1019 if ( $wgSecureLogin && !$this->mStickHTTPS ) {
1020 $options = array( 'http' );
1021 $proto = PROTO_HTTP;
1022 } elseif ( $wgSecureLogin ) {
1023 $options = array( 'https' );
1024 $proto = PROTO_HTTPS;
1025 } else {
1026 $options = array();
1027 $proto = PROTO_RELATIVE;
1028 }
1029
1030 if ( $type == 'successredirect' ) {
1031 $redirectUrl = $returnToTitle->getFullURL( $returnToQuery, false, $proto );
1032 $this->getOutput()->redirect( $redirectUrl );
1033 } else {
1034 $this->getOutput()->addReturnTo( $returnToTitle, $returnToQuery, null, $options );
1035 }
1036 }
1037
1038 /**
1039 * @private
1040 */
1041 function mainLoginForm( $msg, $msgtype = 'error' ) {
1042 global $wgEnableEmail, $wgEnableUserEmail;
1043 global $wgHiddenPrefs, $wgLoginLanguageSelector;
1044 global $wgAuth, $wgEmailConfirmToEdit, $wgCookieExpiration;
1045 global $wgSecureLogin, $wgPasswordResetRoutes;
1046
1047 $titleObj = $this->getTitle();
1048 $user = $this->getUser();
1049 $out = $this->getOutput();
1050
1051 if ( $this->mType == 'signup' ) {
1052 // Block signup here if in readonly. Keeps user from
1053 // going through the process (filling out data, etc)
1054 // and being informed later.
1055 $permErrors = $titleObj->getUserPermissionsErrors( 'createaccount', $user, true );
1056 if ( count( $permErrors ) ) {
1057 throw new PermissionsError( 'createaccount', $permErrors );
1058 } elseif ( $user->isBlockedFromCreateAccount() ) {
1059 $this->userBlockedMessage( $user->isBlockedFromCreateAccount() );
1060 return;
1061 } elseif ( wfReadOnly() ) {
1062 throw new ReadOnlyError;
1063 }
1064 }
1065
1066 // Pre-fill username (if not creating an account, bug 44775).
1067 if ( $this->mUsername == '' && $this->mType != 'signup' ) {
1068 if ( $user->isLoggedIn() ) {
1069 $this->mUsername = $user->getName();
1070 } else {
1071 $this->mUsername = $this->getRequest()->getCookie( 'UserName' );
1072 }
1073 }
1074
1075 if ( $this->mType == 'signup' ) {
1076 $template = new UsercreateTemplate();
1077
1078 $out->addModuleStyles( array(
1079 'mediawiki.ui',
1080 'mediawiki.special.createaccount'
1081 ) );
1082 // XXX hack pending RL or JS parse() support for complex content messages
1083 // https://bugzilla.wikimedia.org/show_bug.cgi?id=25349
1084 $out->addJsConfigVars( 'wgCreateacctImgcaptchaHelp',
1085 $this->msg( 'createacct-imgcaptcha-help' )->parse() );
1086 $out->addModules( array(
1087 'mediawiki.special.createaccount.js'
1088 ) );
1089 // Must match number of benefits defined in messages
1090 $template->set( 'benefitCount', 3 );
1091
1092 $q = 'action=submitlogin&type=signup';
1093 $linkq = 'type=login';
1094 } else {
1095 $template = new UserloginTemplate();
1096
1097 $out->addModuleStyles( array(
1098 'mediawiki.ui',
1099 'mediawiki.special.userlogin'
1100 ) );
1101
1102 $q = 'action=submitlogin&type=login';
1103 $linkq = 'type=signup';
1104 }
1105
1106 if ( $this->mReturnTo !== '' ) {
1107 $returnto = '&returnto=' . wfUrlencode( $this->mReturnTo );
1108 if ( $this->mReturnToQuery !== '' ) {
1109 $returnto .= '&returntoquery=' .
1110 wfUrlencode( $this->mReturnToQuery );
1111 }
1112 $q .= $returnto;
1113 $linkq .= $returnto;
1114 }
1115
1116 # Don't show a "create account" link if the user can't.
1117 if ( $this->showCreateOrLoginLink( $user ) ) {
1118 # Pass any language selection on to the mode switch link
1119 if ( $wgLoginLanguageSelector && $this->mLanguage ) {
1120 $linkq .= '&uselang=' . $this->mLanguage;
1121 }
1122 // Supply URL, login template creates the button.
1123 $template->set( 'createOrLoginHref', $titleObj->getLocalURL( $linkq ) );
1124 } else {
1125 $template->set( 'link', '' );
1126 }
1127
1128 $resetLink = $this->mType == 'signup'
1129 ? null
1130 : is_array( $wgPasswordResetRoutes ) && in_array( true, array_values( $wgPasswordResetRoutes ) );
1131
1132 $template->set( 'header', '' );
1133 $template->set( 'skin', $this->getSkin() );
1134 $template->set( 'name', $this->mUsername );
1135 $template->set( 'password', $this->mPassword );
1136 $template->set( 'retype', $this->mRetype );
1137 $template->set( 'createemailset', $this->mCreateaccountMail );
1138 $template->set( 'email', $this->mEmail );
1139 $template->set( 'realname', $this->mRealName );
1140 $template->set( 'domain', $this->mDomain );
1141 $template->set( 'reason', $this->mReason );
1142
1143 $template->set( 'action', $titleObj->getLocalURL( $q ) );
1144 $template->set( 'message', $msg );
1145 $template->set( 'messagetype', $msgtype );
1146 $template->set( 'createemail', $wgEnableEmail && $user->isLoggedIn() );
1147 $template->set( 'userealname', !in_array( 'realname', $wgHiddenPrefs ) );
1148 $template->set( 'useemail', $wgEnableEmail );
1149 $template->set( 'emailrequired', $wgEmailConfirmToEdit );
1150 $template->set( 'emailothers', $wgEnableUserEmail );
1151 $template->set( 'canreset', $wgAuth->allowPasswordChange() );
1152 $template->set( 'resetlink', $resetLink );
1153 $template->set( 'canremember', ( $wgCookieExpiration > 0 ) );
1154 $template->set( 'usereason', $user->isLoggedIn() );
1155 $template->set( 'remember', $user->getOption( 'rememberpassword' ) || $this->mRemember );
1156 $template->set( 'cansecurelogin', ( $wgSecureLogin === true ) );
1157 $template->set( 'stickhttps', (int)$this->mStickHTTPS );
1158
1159 if ( $this->mType === 'signup' && $user->isLoggedIn() ) {
1160 $template->set( 'createAnother', true );
1161 } else {
1162 $template->set( 'createAnother', false );
1163 }
1164
1165 if ( $this->mType == 'signup' ) {
1166 if ( !self::getCreateaccountToken() ) {
1167 self::setCreateaccountToken();
1168 }
1169 $template->set( 'token', self::getCreateaccountToken() );
1170 } else {
1171 if ( !self::getLoginToken() ) {
1172 self::setLoginToken();
1173 }
1174 $template->set( 'token', self::getLoginToken() );
1175 }
1176
1177 # Prepare language selection links as needed
1178 if ( $wgLoginLanguageSelector ) {
1179 $template->set( 'languages', $this->makeLanguageSelector() );
1180 if ( $this->mLanguage ) {
1181 $template->set( 'uselang', $this->mLanguage );
1182 }
1183 }
1184
1185 $template->set( 'secureLoginUrl', $this->mSecureLoginUrl );
1186 // Use loginend-https for HTTPS requests if it's not blank, loginend otherwise
1187 // Ditto for signupend. New forms use neither.
1188 $usingHTTPS = WebRequest::detectProtocol() == 'https';
1189 $loginendHTTPS = $this->msg( 'loginend-https' );
1190 $signupendHTTPS = $this->msg( 'signupend-https' );
1191 if ( $usingHTTPS && !$loginendHTTPS->isBlank() ) {
1192 $template->set( 'loginend', $loginendHTTPS->parse() );
1193 } else {
1194 $template->set( 'loginend', $this->msg( 'loginend' )->parse() );
1195 }
1196 if ( $usingHTTPS && !$signupendHTTPS->isBlank() ) {
1197 $template->set( 'signupend', $signupendHTTPS->parse() );
1198 } else {
1199 $template->set( 'signupend', $this->msg( 'signupend' )->parse() );
1200 }
1201
1202 // Give authentication and captcha plugins a chance to modify the form
1203 $wgAuth->modifyUITemplate( $template, $this->mType );
1204 if ( $this->mType == 'signup' ) {
1205 wfRunHooks( 'UserCreateForm', array( &$template ) );
1206 } else {
1207 wfRunHooks( 'UserLoginForm', array( &$template ) );
1208 }
1209
1210 $out->disallowUserJs(); // just in case...
1211 $out->addTemplate( $template );
1212 }
1213
1214 /**
1215 * Whether the login/create account form should display a link to the
1216 * other form (in addition to whatever the skin provides).
1217 *
1218 * @param $user User
1219 * @return bool
1220 */
1221 private function showCreateOrLoginLink( &$user ) {
1222 if ( $user->isLoggedIn() ) {
1223 return false;
1224 } elseif ( $this->mType == 'signup' ) {
1225 return true;
1226 } elseif ( $user->isAllowed( 'createaccount' ) ) {
1227 return true;
1228 } else {
1229 return false;
1230 }
1231 }
1232
1233 /**
1234 * Check if a session cookie is present.
1235 *
1236 * This will not pick up a cookie set during _this_ request, but is meant
1237 * to ensure that the client is returning the cookie which was set on a
1238 * previous pass through the system.
1239 *
1240 * @private
1241 * @return bool
1242 */
1243 function hasSessionCookie() {
1244 global $wgDisableCookieCheck;
1245 return $wgDisableCookieCheck ? true : $this->getRequest()->checkSessionCookie();
1246 }
1247
1248 /**
1249 * Get the login token from the current session
1250 * @return Mixed
1251 */
1252 public static function getLoginToken() {
1253 global $wgRequest;
1254 return $wgRequest->getSessionData( 'wsLoginToken' );
1255 }
1256
1257 /**
1258 * Randomly generate a new login token and attach it to the current session
1259 */
1260 public static function setLoginToken() {
1261 global $wgRequest;
1262 // Generate a token directly instead of using $user->editToken()
1263 // because the latter reuses $_SESSION['wsEditToken']
1264 $wgRequest->setSessionData( 'wsLoginToken', MWCryptRand::generateHex( 32 ) );
1265 }
1266
1267 /**
1268 * Remove any login token attached to the current session
1269 */
1270 public static function clearLoginToken() {
1271 global $wgRequest;
1272 $wgRequest->setSessionData( 'wsLoginToken', null );
1273 }
1274
1275 /**
1276 * Get the createaccount token from the current session
1277 * @return Mixed
1278 */
1279 public static function getCreateaccountToken() {
1280 global $wgRequest;
1281 return $wgRequest->getSessionData( 'wsCreateaccountToken' );
1282 }
1283
1284 /**
1285 * Randomly generate a new createaccount token and attach it to the current session
1286 */
1287 public static function setCreateaccountToken() {
1288 global $wgRequest;
1289 $wgRequest->setSessionData( 'wsCreateaccountToken', MWCryptRand::generateHex( 32 ) );
1290 }
1291
1292 /**
1293 * Remove any createaccount token attached to the current session
1294 */
1295 public static function clearCreateaccountToken() {
1296 global $wgRequest;
1297 $wgRequest->setSessionData( 'wsCreateaccountToken', null );
1298 }
1299
1300 /**
1301 * Renew the user's session id, using strong entropy
1302 */
1303 private function renewSessionId() {
1304 global $wgSecureLogin, $wgCookieSecure;
1305 if ( $wgSecureLogin && !$this->mStickHTTPS ) {
1306 $wgCookieSecure = false;
1307 }
1308
1309 wfResetSessionID();
1310 }
1311
1312 /**
1313 * @private
1314 */
1315 function cookieRedirectCheck( $type ) {
1316 $titleObj = SpecialPage::getTitleFor( 'Userlogin' );
1317 $query = array( 'wpCookieCheck' => $type );
1318 if ( $this->mReturnTo !== '' ) {
1319 $query['returnto'] = $this->mReturnTo;
1320 $query['returntoquery'] = $this->mReturnToQuery;
1321 }
1322 $check = $titleObj->getFullURL( $query );
1323
1324 $this->getOutput()->redirect( $check );
1325 }
1326
1327 /**
1328 * @private
1329 */
1330 function onCookieRedirectCheck( $type ) {
1331 if ( !$this->hasSessionCookie() ) {
1332 if ( $type == 'new' ) {
1333 $this->mainLoginForm( $this->msg( 'nocookiesnew' )->parse() );
1334 } elseif ( $type == 'login' ) {
1335 $this->mainLoginForm( $this->msg( 'nocookieslogin' )->parse() );
1336 } else {
1337 # shouldn't happen
1338 $this->mainLoginForm( $this->msg( 'error' )->text() );
1339 }
1340 } else {
1341 $this->successfulLogin();
1342 }
1343 }
1344
1345 /**
1346 * Produce a bar of links which allow the user to select another language
1347 * during login/registration but retain "returnto"
1348 *
1349 * @return string
1350 */
1351 function makeLanguageSelector() {
1352 $msg = $this->msg( 'loginlanguagelinks' )->inContentLanguage();
1353 if ( !$msg->isBlank() ) {
1354 $langs = explode( "\n", $msg->text() );
1355 $links = array();
1356 foreach ( $langs as $lang ) {
1357 $lang = trim( $lang, '* ' );
1358 $parts = explode( '|', $lang );
1359 if ( count( $parts ) >= 2 ) {
1360 $links[] = $this->makeLanguageSelectorLink( $parts[0], trim( $parts[1] ) );
1361 }
1362 }
1363 return count( $links ) > 0 ? $this->msg( 'loginlanguagelabel' )->rawParams(
1364 $this->getLanguage()->pipeList( $links ) )->escaped() : '';
1365 } else {
1366 return '';
1367 }
1368 }
1369
1370 /**
1371 * Create a language selector link for a particular language
1372 * Links back to this page preserving type and returnto
1373 *
1374 * @param string $text Link text
1375 * @param string $lang Language code
1376 * @return string
1377 */
1378 function makeLanguageSelectorLink( $text, $lang ) {
1379 if ( $this->getLanguage()->getCode() == $lang ) {
1380 // no link for currently used language
1381 return htmlspecialchars( $text );
1382 }
1383 $query = array( 'uselang' => $lang );
1384 if ( $this->mType == 'signup' ) {
1385 $query['type'] = 'signup';
1386 }
1387 if ( $this->mReturnTo !== '' ) {
1388 $query['returnto'] = $this->mReturnTo;
1389 $query['returntoquery'] = $this->mReturnToQuery;
1390 }
1391
1392 $attr = array();
1393 $targetLanguage = Language::factory( $lang );
1394 $attr['lang'] = $attr['hreflang'] = $targetLanguage->getHtmlCode();
1395
1396 return Linker::linkKnown(
1397 $this->getTitle(),
1398 htmlspecialchars( $text ),
1399 $attr,
1400 $query
1401 );
1402 }
1403
1404 protected function getGroupName() {
1405 return 'login';
1406 }
1407 }