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