Fix dupe title construction, reported by ymas on IRC
[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 * Constructor
26 */
27 function wfSpecialUserlogin( $par = '' ) {
28 global $wgRequest;
29 if( session_id() == '' ) {
30 wfSetupSession();
31 }
32
33 $form = new LoginForm( $wgRequest, $par );
34 $form->execute();
35 }
36
37 /**
38 * Implements Special:UserLogin
39 *
40 * @ingroup SpecialPage
41 */
42 class LoginForm {
43
44 const SUCCESS = 0;
45 const NO_NAME = 1;
46 const ILLEGAL = 2;
47 const WRONG_PLUGIN_PASS = 3;
48 const NOT_EXISTS = 4;
49 const WRONG_PASS = 5;
50 const EMPTY_PASS = 6;
51 const RESET_PASS = 7;
52 const ABORTED = 8;
53 const CREATE_BLOCKED = 9;
54 const THROTTLED = 10;
55 const USER_BLOCKED = 11;
56 const NEED_TOKEN = 12;
57 const WRONG_TOKEN = 13;
58
59 var $mName, $mPassword, $mRetype, $mReturnTo, $mCookieCheck, $mPosted;
60 var $mAction, $mCreateaccount, $mCreateaccountMail, $mMailmypassword;
61 var $mLoginattempt, $mRemember, $mEmail, $mDomain, $mLanguage;
62 var $mSkipCookieCheck, $mReturnToQuery, $mToken;
63
64 private $mExtUser = null;
65
66 /**
67 * Constructor
68 * @param $request WebRequest: a WebRequest object passed by reference
69 * @param $par String: subpage parameter
70 */
71 function __construct( &$request, $par = '' ) {
72 global $wgAuth, $wgHiddenPrefs, $wgEnableEmail, $wgRedirectOnLogin;
73
74 $this->mType = ( $par == 'signup' ) ? $par : $request->getText( 'type' ); # Check for [[Special:Userlogin/signup]]
75 $this->mName = $request->getText( 'wpName' );
76 $this->mPassword = $request->getText( 'wpPassword' );
77 $this->mRetype = $request->getText( 'wpRetype' );
78 $this->mDomain = $request->getText( 'wpDomain' );
79 $this->mReason = $request->getText( 'wpReason' );
80 $this->mReturnTo = $request->getVal( 'returnto' );
81 $this->mReturnToQuery = $request->getVal( 'returntoquery' );
82 $this->mCookieCheck = $request->getVal( 'wpCookieCheck' );
83 $this->mPosted = $request->wasPosted();
84 $this->mCreateaccount = $request->getCheck( 'wpCreateaccount' );
85 $this->mCreateaccountMail = $request->getCheck( 'wpCreateaccountMail' )
86 && $wgEnableEmail;
87 $this->mMailmypassword = $request->getCheck( 'wpMailmypassword' )
88 && $wgEnableEmail;
89 $this->mLoginattempt = $request->getCheck( 'wpLoginattempt' );
90 $this->mAction = $request->getVal( 'action' );
91 $this->mRemember = $request->getCheck( 'wpRemember' );
92 $this->mLanguage = $request->getText( 'uselang' );
93 $this->mSkipCookieCheck = $request->getCheck( 'wpSkipCookieCheck' );
94 $this->mToken = ( $this->mType == 'signup' ) ? $request->getVal( 'wpCreateaccountToken' ) : $request->getVal( 'wpLoginToken' );
95
96 if ( $wgRedirectOnLogin ) {
97 $this->mReturnTo = $wgRedirectOnLogin;
98 $this->mReturnToQuery = '';
99 }
100
101 if( $wgEnableEmail ) {
102 $this->mEmail = $request->getText( 'wpEmail' );
103 } else {
104 $this->mEmail = '';
105 }
106 if( !in_array( 'realname', $wgHiddenPrefs ) ) {
107 $this->mRealName = $request->getText( 'wpRealName' );
108 } else {
109 $this->mRealName = '';
110 }
111
112 if( !$wgAuth->validDomain( $this->mDomain ) ) {
113 $this->mDomain = 'invaliddomain';
114 }
115 $wgAuth->setDomain( $this->mDomain );
116
117 # When switching accounts, it sucks to get automatically logged out
118 $returnToTitle = Title::newFromText( $this->mReturnTo );
119 if( is_object( $returnToTitle ) && $returnToTitle->isSpecial( 'Userlogout' ) ) {
120 $this->mReturnTo = '';
121 $this->mReturnToQuery = '';
122 }
123 }
124
125 function execute() {
126 if ( !is_null( $this->mCookieCheck ) ) {
127 $this->onCookieRedirectCheck( $this->mCookieCheck );
128 return;
129 } elseif( $this->mPosted ) {
130 if( $this->mCreateaccount ) {
131 return $this->addNewAccount();
132 } elseif ( $this->mCreateaccountMail ) {
133 return $this->addNewAccountMailPassword();
134 } elseif ( $this->mMailmypassword ) {
135 return $this->mailPassword();
136 } elseif ( ( 'submitlogin' == $this->mAction ) || $this->mLoginattempt ) {
137 return $this->processLogin();
138 }
139 }
140 $this->mainLoginForm( '' );
141 }
142
143 /**
144 * @private
145 */
146 function addNewAccountMailPassword() {
147 global $wgOut;
148
149 if ( $this->mEmail == '' ) {
150 $this->mainLoginForm( wfMsgExt( 'noemail', array( 'parsemag', 'escape' ), $this->mName ) );
151 return;
152 }
153
154 $u = $this->addNewaccountInternal();
155
156 if ( $u == null ) {
157 return;
158 }
159
160 // Wipe the initial password and mail a temporary one
161 $u->setPassword( null );
162 $u->saveSettings();
163 $result = $this->mailPasswordInternal( $u, false, 'createaccount-title', 'createaccount-text' );
164
165 wfRunHooks( 'AddNewAccount', array( $u, true ) );
166 $u->addNewUserLogEntry( true, $this->mReason );
167
168 $wgOut->setPageTitle( wfMsg( 'accmailtitle' ) );
169 $wgOut->setRobotPolicy( 'noindex,nofollow' );
170 $wgOut->setArticleRelated( false );
171
172 if( WikiError::isError( $result ) ) {
173 $this->mainLoginForm( wfMsg( 'mailerror', $result->getMessage() ) );
174 } else {
175 $wgOut->addWikiMsg( 'accmailtext', $u->getName(), $u->getEmail() );
176 $wgOut->returnToMain( false );
177 }
178 $u = 0;
179 }
180
181 /**
182 * @private
183 */
184 function addNewAccount() {
185 global $wgUser, $wgEmailAuthentication, $wgOut;
186
187 # Create the account and abort if there's a problem doing so
188 $u = $this->addNewAccountInternal();
189 if( $u == null ) {
190 return;
191 }
192
193 # If we showed up language selection links, and one was in use, be
194 # smart (and sensible) and save that language as the user's preference
195 global $wgLoginLanguageSelector;
196 if( $wgLoginLanguageSelector && $this->mLanguage ) {
197 $u->setOption( 'language', $this->mLanguage );
198 }
199
200 # Send out an email authentication message if needed
201 if( $wgEmailAuthentication && User::isValidEmailAddr( $u->getEmail() ) ) {
202 $error = $u->sendConfirmationMail();
203 if( WikiError::isError( $error ) ) {
204 $wgOut->addWikiMsg( 'confirmemail_sendfailed', $error->getMessage() );
205 } else {
206 $wgOut->addWikiMsg( 'confirmemail_oncreate' );
207 }
208 }
209
210 # Save settings (including confirmation token)
211 $u->saveSettings();
212
213 # If not logged in, assume the new account as the current one and set
214 # session cookies then show a "welcome" message or a "need cookies"
215 # message as needed
216 if( $wgUser->isAnon() ) {
217 $wgUser = $u;
218 $wgUser->setCookies();
219 wfRunHooks( 'AddNewAccount', array( $wgUser, false ) );
220 $wgUser->addNewUserLogEntry();
221 if( $this->hasSessionCookie() ) {
222 return $this->successfulCreation();
223 } else {
224 return $this->cookieRedirectCheck( 'new' );
225 }
226 } else {
227 # Confirm that the account was created
228 $self = SpecialPage::getTitleFor( 'Userlogin' );
229 $wgOut->setPageTitle( wfMsgHtml( 'accountcreated' ) );
230 $wgOut->setArticleRelated( false );
231 $wgOut->setRobotPolicy( 'noindex,nofollow' );
232 $wgOut->addHTML( wfMsgWikiHtml( 'accountcreatedtext', $u->getName() ) );
233 $wgOut->returnToMain( false, $self );
234 wfRunHooks( 'AddNewAccount', array( $u, false ) );
235 $u->addNewUserLogEntry( false, $this->mReason );
236 return true;
237 }
238 }
239
240 /**
241 * @private
242 */
243 function addNewAccountInternal() {
244 global $wgUser, $wgOut;
245 global $wgMemc, $wgAccountCreationThrottle;
246 global $wgAuth, $wgMinimalPasswordLength;
247 global $wgEmailConfirmToEdit;
248
249 // If the user passes an invalid domain, something is fishy
250 if( !$wgAuth->validDomain( $this->mDomain ) ) {
251 $this->mainLoginForm( wfMsg( 'wrongpassword' ) );
252 return false;
253 }
254
255 // If we are not allowing users to login locally, we should be checking
256 // to see if the user is actually able to authenticate to the authenti-
257 // cation server before they create an account (otherwise, they can
258 // create a local account and login as any domain user). We only need
259 // to check this for domains that aren't local.
260 if( 'local' != $this->mDomain && $this->mDomain != '' ) {
261 if( !$wgAuth->canCreateAccounts() && ( !$wgAuth->userExists( $this->mName ) || !$wgAuth->authenticate( $this->mName, $this->mPassword ) ) ) {
262 $this->mainLoginForm( wfMsg( 'wrongpassword' ) );
263 return false;
264 }
265 }
266
267 if ( wfReadOnly() ) {
268 $wgOut->readOnlyPage();
269 return false;
270 }
271
272 # Request forgery checks.
273 if ( !self::getCreateaccountToken() ) {
274 self::setCreateaccountToken();
275 $this->mainLoginForm( wfMsgExt( 'nocookiesnew', array( 'parseinline' ) ) );
276 return false;
277 }
278
279 # The user didn't pass a createaccount token
280 if ( !$this->mToken ) {
281 $this->mainLoginForm( wfMsg( 'sessionfailure' ) );
282 return false;
283 }
284
285 # Validate the createaccount token
286 if ( $this->mToken !== self::getCreateaccountToken() ) {
287 $this->mainLoginForm( wfMsg( 'sessionfailure' ) );
288 return false;
289 }
290
291 # Check permissions
292 if ( !$wgUser->isAllowed( 'createaccount' ) ) {
293 $this->userNotPrivilegedMessage();
294 return false;
295 } elseif ( $wgUser->isBlockedFromCreateAccount() ) {
296 $this->userBlockedMessage();
297 return false;
298 }
299
300 $ip = wfGetIP();
301 if ( $wgUser->isDnsBlacklisted( $ip, true /* check $wgProxyWhitelist */ ) ) {
302 $this->mainLoginForm( wfMsg( 'sorbs_create_account_reason' ) . ' (' . htmlspecialchars( $ip ) . ')' );
303 return false;
304 }
305
306 # Now create a dummy user ($u) and check if it is valid
307 $name = trim( $this->mName );
308 $u = User::newFromName( $name, 'creatable' );
309 if ( !is_object( $u ) ) {
310 $this->mainLoginForm( wfMsg( 'noname' ) );
311 return false;
312 }
313
314 if ( 0 != $u->idForName() ) {
315 $this->mainLoginForm( wfMsg( 'userexists' ) );
316 return false;
317 }
318
319 if ( 0 != strcmp( $this->mPassword, $this->mRetype ) ) {
320 $this->mainLoginForm( wfMsg( 'badretype' ) );
321 return false;
322 }
323
324 # check for minimal password length
325 $valid = $u->getPasswordValidity( $this->mPassword );
326 if ( $valid !== true ) {
327 if ( !$this->mCreateaccountMail ) {
328 $this->mainLoginForm( wfMsgExt( $valid, array( 'parsemag' ), $wgMinimalPasswordLength ) );
329 return false;
330 } else {
331 # do not force a password for account creation by email
332 # set invalid password, it will be replaced later by a random generated password
333 $this->mPassword = null;
334 }
335 }
336
337 # if you need a confirmed email address to edit, then obviously you
338 # need an email address.
339 if ( $wgEmailConfirmToEdit && empty( $this->mEmail ) ) {
340 $this->mainLoginForm( wfMsg( 'noemailtitle' ) );
341 return false;
342 }
343
344 if( !empty( $this->mEmail ) && !User::isValidEmailAddr( $this->mEmail ) ) {
345 $this->mainLoginForm( wfMsg( 'invalidemailaddress' ) );
346 return false;
347 }
348
349 # Set some additional data so the AbortNewAccount hook can be used for
350 # more than just username validation
351 $u->setEmail( $this->mEmail );
352 $u->setRealName( $this->mRealName );
353
354 $abortError = '';
355 if( !wfRunHooks( 'AbortNewAccount', array( $u, &$abortError ) ) ) {
356 // Hook point to add extra creation throttles and blocks
357 wfDebug( "LoginForm::addNewAccountInternal: a hook blocked creation\n" );
358 $this->mainLoginForm( $abortError );
359 return false;
360 }
361
362 if ( $wgAccountCreationThrottle && $wgUser->isPingLimitable() ) {
363 $key = wfMemcKey( 'acctcreate', 'ip', $ip );
364 $value = $wgMemc->get( $key );
365 if ( !$value ) {
366 $wgMemc->set( $key, 0, 86400 );
367 }
368 if ( $value >= $wgAccountCreationThrottle ) {
369 $this->throttleHit( $wgAccountCreationThrottle );
370 return false;
371 }
372 $wgMemc->incr( $key );
373 }
374
375 if( !$wgAuth->addUser( $u, $this->mPassword, $this->mEmail, $this->mRealName ) ) {
376 $this->mainLoginForm( wfMsg( 'externaldberror' ) );
377 return false;
378 }
379
380 self::clearCreateaccountToken();
381 return $this->initUser( $u, false );
382 }
383
384 /**
385 * Actually add a user to the database.
386 * Give it a User object that has been initialised with a name.
387 *
388 * @param $u User object.
389 * @param $autocreate boolean -- true if this is an autocreation via auth plugin
390 * @return User object.
391 * @private
392 */
393 function initUser( $u, $autocreate ) {
394 global $wgAuth;
395
396 $u->addToDatabase();
397
398 if ( $wgAuth->allowPasswordChange() ) {
399 $u->setPassword( $this->mPassword );
400 }
401
402 $u->setEmail( $this->mEmail );
403 $u->setRealName( $this->mRealName );
404 $u->setToken();
405
406 $wgAuth->initUser( $u, $autocreate );
407
408 if ( $this->mExtUser ) {
409 $this->mExtUser->linkToLocal( $u->getId() );
410 $email = $this->mExtUser->getPref( 'emailaddress' );
411 if ( $email && !$this->mEmail ) {
412 $u->setEmail( $email );
413 }
414 }
415
416 $u->setOption( 'rememberpassword', $this->mRemember ? 1 : 0 );
417 $u->saveSettings();
418
419 # Update user count
420 $ssUpdate = new SiteStatsUpdate( 0, 0, 0, 0, 1 );
421 $ssUpdate->doUpdate();
422
423 return $u;
424 }
425
426 /**
427 * Internally authenticate the login request.
428 *
429 * This may create a local account as a side effect if the
430 * authentication plugin allows transparent local account
431 * creation.
432 */
433 public function authenticateUserData() {
434 global $wgUser, $wgAuth, $wgMemc;
435
436 if ( $this->mName == '' ) {
437 return self::NO_NAME;
438 }
439
440 // We require a login token to prevent login CSRF
441 // Handle part of this before incrementing the throttle so
442 // token-less login attempts don't count towards the throttle
443 // but wrong-token attempts do.
444
445 // If the user doesn't have a login token yet, set one.
446 if ( !self::getLoginToken() ) {
447 self::setLoginToken();
448 return self::NEED_TOKEN;
449 }
450 // If the user didn't pass a login token, tell them we need one
451 if ( !$this->mToken ) {
452 return self::NEED_TOKEN;
453 }
454
455 global $wgPasswordAttemptThrottle;
456
457 $throttleCount = 0;
458 if ( is_array( $wgPasswordAttemptThrottle ) ) {
459 $throttleKey = wfMemcKey( 'password-throttle', wfGetIP(), md5( $this->mName ) );
460 $count = $wgPasswordAttemptThrottle['count'];
461 $period = $wgPasswordAttemptThrottle['seconds'];
462
463 $throttleCount = $wgMemc->get( $throttleKey );
464 if ( !$throttleCount ) {
465 $wgMemc->add( $throttleKey, 1, $period ); // start counter
466 } elseif ( $throttleCount < $count ) {
467 $wgMemc->incr( $throttleKey );
468 } elseif ( $throttleCount >= $count ) {
469 return self::THROTTLED;
470 }
471 }
472
473 // Validate the login token
474 if ( $this->mToken !== self::getLoginToken() ) {
475 return self::WRONG_TOKEN;
476 }
477
478 // Load $wgUser now, and check to see if we're logging in as the same
479 // name. This is necessary because loading $wgUser (say by calling
480 // getName()) calls the UserLoadFromSession hook, which potentially
481 // creates the user in the database. Until we load $wgUser, checking
482 // for user existence using User::newFromName($name)->getId() below
483 // will effectively be using stale data.
484 if ( $wgUser->getName() === $this->mName ) {
485 wfDebug( __METHOD__ . ": already logged in as {$this->mName}\n" );
486 return self::SUCCESS;
487 }
488
489 $this->mExtUser = ExternalUser::newFromName( $this->mName );
490
491 # TODO: Allow some magic here for invalid external names, e.g., let the
492 # user choose a different wiki name.
493 $u = User::newFromName( $this->mName );
494 if( !( $u instanceof User ) || !User::isUsableName( $u->getName() ) ) {
495 return self::ILLEGAL;
496 }
497
498 $isAutoCreated = false;
499 if ( 0 == $u->getID() ) {
500 $status = $this->attemptAutoCreate( $u );
501 if ( $status !== self::SUCCESS ) {
502 return $status;
503 } else {
504 $isAutoCreated = true;
505 }
506 } else {
507 global $wgExternalAuthType, $wgAutocreatePolicy;
508 if ( $wgExternalAuthType && $wgAutocreatePolicy != 'never'
509 && is_object( $this->mExtUser )
510 && $this->mExtUser->authenticate( $this->mPassword ) ) {
511 # The external user and local user have the same name and
512 # password, so we assume they're the same.
513 $this->mExtUser->linkToLocal( $u->getID() );
514 }
515
516 $u->load();
517 }
518
519 // Give general extensions, such as a captcha, a chance to abort logins
520 $abort = self::ABORTED;
521 if( !wfRunHooks( 'AbortLogin', array( $u, $this->mPassword, &$abort ) ) ) {
522 return $abort;
523 }
524
525 global $wgBlockDisablesLogin;
526 if ( !$u->checkPassword( $this->mPassword ) ) {
527 if( $u->checkTemporaryPassword( $this->mPassword ) ) {
528 // The e-mailed temporary password should not be used for actu-
529 // al logins; that's a very sloppy habit, and insecure if an
530 // attacker has a few seconds to click "search" on someone's o-
531 // pen mail reader.
532 //
533 // Allow it to be used only to reset the password a single time
534 // to a new value, which won't be in the user's e-mail ar-
535 // chives.
536 //
537 // For backwards compatibility, we'll still recognize it at the
538 // login form to minimize surprises for people who have been
539 // logging in with a temporary password for some time.
540 //
541 // As a side-effect, we can authenticate the user's e-mail ad-
542 // dress if it's not already done, since the temporary password
543 // was sent via e-mail.
544 if( !$u->isEmailConfirmed() ) {
545 $u->confirmEmail();
546 $u->saveSettings();
547 }
548
549 // At this point we just return an appropriate code/ indicating
550 // that the UI should show a password reset form; bot inter-
551 // faces etc will probably just fail cleanly here.
552 $retval = self::RESET_PASS;
553 } else {
554 $retval = ( $this->mPassword == '' ) ? self::EMPTY_PASS : self::WRONG_PASS;
555 }
556 } elseif ( $wgBlockDisablesLogin && $u->isBlocked() ) {
557 // If we've enabled it, make it so that a blocked user cannot login
558 $retval = self::USER_BLOCKED;
559 } else {
560 $wgAuth->updateUser( $u );
561 $wgUser = $u;
562
563 // Please reset throttle for successful logins, thanks!
564 if( $throttleCount ) {
565 $wgMemc->delete( $throttleKey );
566 }
567
568 if ( $isAutoCreated ) {
569 // Must be run after $wgUser is set, for correct new user log
570 wfRunHooks( 'AuthPluginAutoCreate', array( $wgUser ) );
571 }
572
573 $retval = self::SUCCESS;
574 }
575 wfRunHooks( 'LoginAuthenticateAudit', array( $u, $this->mPassword, $retval ) );
576 return $retval;
577 }
578
579 /**
580 * Attempt to automatically create a user on login. Only succeeds if there
581 * is an external authentication method which allows it.
582 * @return integer Status code
583 */
584 function attemptAutoCreate( $user ) {
585 global $wgAuth, $wgUser, $wgAutocreatePolicy;
586
587 if ( $wgUser->isBlockedFromCreateAccount() ) {
588 wfDebug( __METHOD__ . ": user is blocked from account creation\n" );
589 return self::CREATE_BLOCKED;
590 }
591
592 /**
593 * If the external authentication plugin allows it, automatically cre-
594 * ate a new account for users that are externally defined but have not
595 * yet logged in.
596 */
597 if ( $this->mExtUser ) {
598 # mExtUser is neither null nor false, so use the new ExternalAuth
599 # system.
600 if ( $wgAutocreatePolicy == 'never' ) {
601 return self::NOT_EXISTS;
602 }
603 if ( !$this->mExtUser->authenticate( $this->mPassword ) ) {
604 return self::WRONG_PLUGIN_PASS;
605 }
606 } else {
607 # Old AuthPlugin.
608 if ( !$wgAuth->autoCreate() ) {
609 return self::NOT_EXISTS;
610 }
611 if ( !$wgAuth->userExists( $user->getName() ) ) {
612 wfDebug( __METHOD__ . ": user does not exist\n" );
613 return self::NOT_EXISTS;
614 }
615 if ( !$wgAuth->authenticate( $user->getName(), $this->mPassword ) ) {
616 wfDebug( __METHOD__ . ": \$wgAuth->authenticate() returned false, aborting\n" );
617 return self::WRONG_PLUGIN_PASS;
618 }
619 }
620
621 wfDebug( __METHOD__ . ": creating account\n" );
622 $user = $this->initUser( $user, true );
623 return self::SUCCESS;
624 }
625
626 function processLogin() {
627 global $wgUser;
628
629 switch ( $this->authenticateUserData() ) {
630 case self::SUCCESS:
631 # We've verified now, update the real record
632 if( (bool)$this->mRemember != (bool)$wgUser->getOption( 'rememberpassword' ) ) {
633 $wgUser->setOption( 'rememberpassword', $this->mRemember ? 1 : 0 );
634 $wgUser->saveSettings();
635 } else {
636 $wgUser->invalidateCache();
637 }
638 $wgUser->setCookies();
639 self::clearLoginToken();
640
641 // Reset the throttle
642 $key = wfMemcKey( 'password-throttle', wfGetIP(), md5( $this->mName ) );
643 global $wgMemc;
644 $wgMemc->delete( $key );
645
646 if( $this->hasSessionCookie() || $this->mSkipCookieCheck ) {
647 /* Replace the language object to provide user interface in
648 * correct language immediately on this first page load.
649 */
650 global $wgLang, $wgRequest;
651 $code = $wgRequest->getVal( 'uselang', $wgUser->getOption( 'language' ) );
652 $wgLang = Language::factory( $code );
653 return $this->successfulLogin();
654 } else {
655 return $this->cookieRedirectCheck( 'login' );
656 }
657 break;
658
659 case self::NEED_TOKEN:
660 $this->mainLoginForm( wfMsgExt( 'nocookieslogin', array( 'parseinline' ) ) );
661 break;
662 case self::WRONG_TOKEN:
663 $this->mainLoginForm( wfMsg( 'sessionfailure' ) );
664 break;
665 case self::NO_NAME:
666 case self::ILLEGAL:
667 $this->mainLoginForm( wfMsg( 'noname' ) );
668 break;
669 case self::WRONG_PLUGIN_PASS:
670 $this->mainLoginForm( wfMsg( 'wrongpassword' ) );
671 break;
672 case self::NOT_EXISTS:
673 if( $wgUser->isAllowed( 'createaccount' ) ) {
674 $this->mainLoginForm( wfMsgWikiHtml( 'nosuchuser', htmlspecialchars( $this->mName ) ) );
675 } else {
676 $this->mainLoginForm( wfMsg( 'nosuchusershort', htmlspecialchars( $this->mName ) ) );
677 }
678 break;
679 case self::WRONG_PASS:
680 $this->mainLoginForm( wfMsg( 'wrongpassword' ) );
681 break;
682 case self::EMPTY_PASS:
683 $this->mainLoginForm( wfMsg( 'wrongpasswordempty' ) );
684 break;
685 case self::RESET_PASS:
686 $this->resetLoginForm( wfMsg( 'resetpass_announce' ) );
687 break;
688 case self::CREATE_BLOCKED:
689 $this->userBlockedMessage();
690 break;
691 case self::THROTTLED:
692 $this->mainLoginForm( wfMsg( 'login-throttled' ) );
693 break;
694 case self::USER_BLOCKED:
695 $this->mainLoginForm( wfMsgExt( 'login-userblocked',
696 array( 'parsemag', 'escape' ), $this->mName ) );
697 break;
698 default:
699 throw new MWException( 'Unhandled case value' );
700 }
701 }
702
703 function resetLoginForm( $error ) {
704 global $wgOut;
705 $wgOut->addHTML( Xml::element('p', array( 'class' => 'error' ), $error ) );
706 $reset = new SpecialResetpass();
707 $reset->execute( null );
708 }
709
710 /**
711 * @private
712 */
713 function mailPassword() {
714 global $wgUser, $wgOut, $wgAuth;
715
716 if ( wfReadOnly() ) {
717 $wgOut->readOnlyPage();
718 return false;
719 }
720
721 if( !$wgAuth->allowPasswordChange() ) {
722 $this->mainLoginForm( wfMsg( 'resetpass_forbidden' ) );
723 return;
724 }
725
726 # Check against blocked IPs so blocked users can't flood admins
727 # with password resets
728 if( $wgUser->isBlocked() ) {
729 $this->mainLoginForm( wfMsg( 'blocked-mailpassword' ) );
730 return;
731 }
732
733 # Check for hooks
734 $error = null;
735 if ( !wfRunHooks( 'UserLoginMailPassword', array( $this->mName, &$error ) ) ) {
736 $this->mainLoginForm( $error );
737 return;
738 }
739
740 # If the user doesn't have a login token yet, set one.
741 if ( !self::getLoginToken() ) {
742 self::setLoginToken();
743 $this->mainLoginForm( wfMsg( 'sessionfailure' ) );
744 return;
745 }
746
747 # If the user didn't pass a login token, tell them we need one
748 if ( !$this->mToken ) {
749 $this->mainLoginForm( wfMsg( 'sessionfailure' ) );
750 return;
751 }
752
753 # Check against the rate limiter
754 if( $wgUser->pingLimiter( 'mailpassword' ) ) {
755 $wgOut->rateLimited();
756 return;
757 }
758
759 if ( $this->mName == '' ) {
760 $this->mainLoginForm( wfMsg( 'noname' ) );
761 return;
762 }
763 $u = User::newFromName( $this->mName );
764 if( !$u instanceof User ) {
765 $this->mainLoginForm( wfMsg( 'noname' ) );
766 return;
767 }
768 if ( 0 == $u->getID() ) {
769 $this->mainLoginForm( wfMsgWikiHtml( 'nosuchuser', htmlspecialchars( $u->getName() ) ) );
770 return;
771 }
772
773 # Validate the login token
774 if ( $this->mToken !== self::getLoginToken() ) {
775 $this->mainLoginForm( wfMsg( 'sessionfailure' ) );
776 return;
777 }
778
779 # Check against password throttle
780 if ( $u->isPasswordReminderThrottled() ) {
781 global $wgPasswordReminderResendTime;
782 # Round the time in hours to 3 d.p., in case someone is specifying
783 # minutes or seconds.
784 $this->mainLoginForm( wfMsgExt( 'throttled-mailpassword', array( 'parsemag' ),
785 round( $wgPasswordReminderResendTime, 3 ) ) );
786 return;
787 }
788
789 $result = $this->mailPasswordInternal( $u, true, 'passwordremindertitle', 'passwordremindertext' );
790 if( WikiError::isError( $result ) ) {
791 $this->mainLoginForm( wfMsg( 'mailerror', $result->getMessage() ) );
792 } else {
793 $this->mainLoginForm( wfMsg( 'passwordsent', $u->getName() ), 'success' );
794 self::clearLoginToken();
795 }
796 }
797
798
799 /**
800 * @param $u User object
801 * @param $throttle Boolean
802 * @param $emailTitle String: message name of email title
803 * @param $emailText String: message name of email text
804 * @return Mixed: true on success, WikiError on failure
805 * @private
806 */
807 function mailPasswordInternal( $u, $throttle = true, $emailTitle = 'passwordremindertitle', $emailText = 'passwordremindertext' ) {
808 global $wgServer, $wgScript, $wgUser, $wgNewPasswordExpiry;
809
810 if ( $u->getEmail() == '' ) {
811 return new WikiError( wfMsg( 'noemail', $u->getName() ) );
812 }
813 $ip = wfGetIP();
814 if( !$ip ) {
815 return new WikiError( wfMsg( 'badipaddress' ) );
816 }
817
818 wfRunHooks( 'User::mailPasswordInternal', array( &$wgUser, &$ip, &$u ) );
819
820 $np = $u->randomPassword();
821 $u->setNewpassword( $np, $throttle );
822 $u->saveSettings();
823 $userLanguage = $u->getOption( 'language' );
824 $m = wfMsgExt( $emailText, array( 'parsemag', 'language' => $userLanguage ), $ip, $u->getName(), $np,
825 $wgServer . $wgScript, round( $wgNewPasswordExpiry / 86400 ) );
826 $result = $u->sendMail( wfMsgExt( $emailTitle, array( 'parsemag', 'language' => $userLanguage ) ), $m );
827
828 return $result;
829 }
830
831
832 /**
833 * Run any hooks registered for logins, then HTTP redirect to
834 * $this->mReturnTo (or Main Page if that's undefined). Formerly we had a
835 * nice message here, but that's really not as useful as just being sent to
836 * wherever you logged in from. It should be clear that the action was
837 * successful, given the lack of error messages plus the appearance of your
838 * name in the upper right.
839 *
840 * @private
841 */
842 function successfulLogin() {
843 global $wgUser, $wgOut;
844
845 # Run any hooks; display injected HTML if any, else redirect
846 $injected_html = '';
847 wfRunHooks( 'UserLoginComplete', array( &$wgUser, &$injected_html ) );
848
849 if( $injected_html !== '' ) {
850 $this->displaySuccessfulLogin( 'loginsuccess', $injected_html );
851 } else {
852 $titleObj = Title::newFromText( $this->mReturnTo );
853 if ( !$titleObj instanceof Title ) {
854 $titleObj = Title::newMainPage();
855 }
856 $wgOut->redirect( $titleObj->getFullURL( $this->mReturnToQuery ) );
857 }
858 }
859
860 /**
861 * Run any hooks registered for logins, then display a message welcoming
862 * the user.
863 *
864 * @private
865 */
866 function successfulCreation() {
867 global $wgUser;
868 # Run any hooks; display injected HTML
869 $injected_html = '';
870 wfRunHooks( 'UserLoginComplete', array( &$wgUser, &$injected_html ) );
871
872 $this->displaySuccessfulLogin( 'welcomecreation', $injected_html );
873 }
874
875 /**
876 * Display a "login successful" page.
877 */
878 private function displaySuccessfulLogin( $msgname, $injected_html ) {
879 global $wgOut, $wgUser;
880
881 $wgOut->setPageTitle( wfMsg( 'loginsuccesstitle' ) );
882 $wgOut->setRobotPolicy( 'noindex,nofollow' );
883 $wgOut->setArticleRelated( false );
884 $wgOut->addWikiMsg( $msgname, $wgUser->getName() );
885 $wgOut->addHTML( $injected_html );
886
887 if ( !empty( $this->mReturnTo ) ) {
888 $wgOut->returnToMain( null, $this->mReturnTo, $this->mReturnToQuery );
889 } else {
890 $wgOut->returnToMain( null );
891 }
892 }
893
894 /** */
895 function userNotPrivilegedMessage( $errors ) {
896 global $wgOut;
897
898 $wgOut->setPageTitle( wfMsg( 'permissionserrors' ) );
899 $wgOut->setRobotPolicy( 'noindex,nofollow' );
900 $wgOut->setArticleRelated( false );
901
902 $wgOut->addWikiText( $wgOut->formatPermissionsErrorMessage( $errors, 'createaccount' ) );
903 // Stuff that might want to be added at the end. For example, instruc-
904 // tions if blocked.
905 $wgOut->addWikiMsg( 'cantcreateaccount-nonblock-text' );
906
907 $wgOut->returnToMain( false );
908 }
909
910 /** */
911 function userBlockedMessage() {
912 global $wgOut, $wgUser;
913
914 # Let's be nice about this, it's likely that this feature will be used
915 # for blocking large numbers of innocent people, e.g. range blocks on
916 # schools. Don't blame it on the user. There's a small chance that it
917 # really is the user's fault, i.e. the username is blocked and they
918 # haven't bothered to log out before trying to create an account to
919 # evade it, but we'll leave that to their guilty conscience to figure
920 # out.
921
922 $wgOut->setPageTitle( wfMsg( 'cantcreateaccounttitle' ) );
923 $wgOut->setRobotPolicy( 'noindex,nofollow' );
924 $wgOut->setArticleRelated( false );
925
926 $ip = wfGetIP();
927 $blocker = User::whoIs( $wgUser->mBlock->mBy );
928 $block_reason = $wgUser->mBlock->mReason;
929
930 if ( strval( $block_reason ) === '' ) {
931 $block_reason = wfMsg( 'blockednoreason' );
932 }
933 $wgOut->addWikiMsg( 'cantcreateaccount-text', $ip, $block_reason, $blocker );
934 $wgOut->returnToMain( false );
935 }
936
937 /**
938 * @private
939 */
940 function mainLoginForm( $msg, $msgtype = 'error' ) {
941 global $wgUser, $wgOut, $wgHiddenPrefs, $wgEnableEmail;
942 global $wgRequest, $wgLoginLanguageSelector;
943 global $wgAuth, $wgEmailConfirmToEdit, $wgCookieExpiration;
944
945 $titleObj = SpecialPage::getTitleFor( 'Userlogin' );
946
947 if ( $this->mType == 'signup' ) {
948 // Block signup here if in readonly. Keeps user from
949 // going through the process (filling out data, etc)
950 // and being informed later.
951 if ( wfReadOnly() ) {
952 $wgOut->readOnlyPage();
953 return;
954 } elseif ( $wgUser->isBlockedFromCreateAccount() ) {
955 $this->userBlockedMessage();
956 return;
957 } elseif ( count( $permErrors = $titleObj->getUserPermissionsErrors( 'createaccount', $wgUser, true ) )>0 ) {
958 $wgOut->showPermissionsErrorPage( $permErrors, 'createaccount' );
959 return;
960 }
961 }
962
963 if ( $this->mName == '' ) {
964 if ( $wgUser->isLoggedIn() ) {
965 $this->mName = $wgUser->getName();
966 } else {
967 $this->mName = $wgRequest->getCookie( 'UserName' );
968 }
969 }
970
971 if ( $this->mType == 'signup' ) {
972 global $wgLivePasswordStrengthChecks;
973 if ( $wgLivePasswordStrengthChecks ) {
974 $wgOut->addPasswordSecurity( 'wpPassword2', 'wpRetype' );
975 }
976 $template = new UsercreateTemplate();
977 $q = 'action=submitlogin&type=signup';
978 $linkq = 'type=login';
979 $linkmsg = 'gotaccount';
980 } else {
981 $template = new UserloginTemplate();
982 $q = 'action=submitlogin&type=login';
983 $linkq = 'type=signup';
984 $linkmsg = 'nologin';
985 }
986
987 if ( !empty( $this->mReturnTo ) ) {
988 $returnto = '&returnto=' . wfUrlencode( $this->mReturnTo );
989 if ( !empty( $this->mReturnToQuery ) ) {
990 $returnto .= '&returntoquery=' .
991 wfUrlencode( $this->mReturnToQuery );
992 }
993 $q .= $returnto;
994 $linkq .= $returnto;
995 }
996
997 # Pass any language selection on to the mode switch link
998 if( $wgLoginLanguageSelector && $this->mLanguage ) {
999 $linkq .= '&uselang=' . $this->mLanguage;
1000 }
1001
1002 $link = '<a href="' . htmlspecialchars ( $titleObj->getLocalURL( $linkq ) ) . '">';
1003 $link .= wfMsgHtml( $linkmsg . 'link' ); # Calling either 'gotaccountlink' or 'nologinlink'
1004 $link .= '</a>';
1005
1006 # Don't show a "create account" link if the user can't
1007 if( $this->showCreateOrLoginLink( $wgUser ) ) {
1008 $template->set( 'link', wfMsgExt( $linkmsg, array( 'parseinline', 'replaceafter' ), $link ) );
1009 } else {
1010 $template->set( 'link', '' );
1011 }
1012
1013 $template->set( 'header', '' );
1014 $template->set( 'name', $this->mName );
1015 $template->set( 'password', $this->mPassword );
1016 $template->set( 'retype', $this->mRetype );
1017 $template->set( 'email', $this->mEmail );
1018 $template->set( 'realname', $this->mRealName );
1019 $template->set( 'domain', $this->mDomain );
1020 $template->set( 'reason', $this->mReason );
1021
1022 $template->set( 'action', $titleObj->getLocalURL( $q ) );
1023 $template->set( 'message', $msg );
1024 $template->set( 'messagetype', $msgtype );
1025 $template->set( 'createemail', $wgEnableEmail && $wgUser->isLoggedIn() );
1026 $template->set( 'userealname', !in_array( 'realname', $wgHiddenPrefs ) );
1027 $template->set( 'useemail', $wgEnableEmail );
1028 $template->set( 'emailrequired', $wgEmailConfirmToEdit );
1029 $template->set( 'canreset', $wgAuth->allowPasswordChange() );
1030 $template->set( 'canremember', ( $wgCookieExpiration > 0 ) );
1031 $template->set( 'usereason', $wgUser->isLoggedIn() );
1032 $template->set( 'remember', $wgUser->getOption( 'rememberpassword' ) || $this->mRemember );
1033
1034 if ( $this->mType == 'signup' ) {
1035 if ( !self::getCreateaccountToken() ) {
1036 self::setCreateaccountToken();
1037 }
1038 $template->set( 'token', self::getCreateaccountToken() );
1039 } else {
1040 if ( !self::getLoginToken() ) {
1041 self::setLoginToken();
1042 }
1043 $template->set( 'token', self::getLoginToken() );
1044 }
1045
1046 # Prepare language selection links as needed
1047 if( $wgLoginLanguageSelector ) {
1048 $template->set( 'languages', $this->makeLanguageSelector() );
1049 if( $this->mLanguage )
1050 $template->set( 'uselang', $this->mLanguage );
1051 }
1052
1053 // Give authentication and captcha plugins a chance to modify the form
1054 $wgAuth->modifyUITemplate( $template, $this->mType );
1055 if ( $this->mType == 'signup' ) {
1056 wfRunHooks( 'UserCreateForm', array( &$template ) );
1057 } else {
1058 wfRunHooks( 'UserLoginForm', array( &$template ) );
1059 }
1060
1061 // Changes the title depending on permissions for creating account
1062 if ( $wgUser->isAllowed( 'createaccount' ) ) {
1063 $wgOut->setPageTitle( wfMsg( 'userlogin' ) );
1064 } else {
1065 $wgOut->setPageTitle( wfMsg( 'userloginnocreate' ) );
1066 }
1067
1068 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1069 $wgOut->setArticleRelated( false );
1070 $wgOut->disallowUserJs(); // just in case...
1071 $wgOut->addTemplate( $template );
1072 }
1073
1074 /**
1075 * @private
1076 */
1077 function showCreateOrLoginLink( &$user ) {
1078 if( $this->mType == 'signup' ) {
1079 return( true );
1080 } elseif( $user->isAllowed( 'createaccount' ) ) {
1081 return( true );
1082 } else {
1083 return( false );
1084 }
1085 }
1086
1087 /**
1088 * Check if a session cookie is present.
1089 *
1090 * This will not pick up a cookie set during _this_ request, but is meant
1091 * to ensure that the client is returning the cookie which was set on a
1092 * previous pass through the system.
1093 *
1094 * @private
1095 */
1096 function hasSessionCookie() {
1097 global $wgDisableCookieCheck, $wgRequest;
1098 return $wgDisableCookieCheck ? true : $wgRequest->checkSessionCookie();
1099 }
1100
1101 /**
1102 * Get the login token from the current session
1103 */
1104 public static function getLoginToken() {
1105 global $wgRequest;
1106 return $wgRequest->getSessionData( 'wsLoginToken' );
1107 }
1108
1109 /**
1110 * Randomly generate a new login token and attach it to the current session
1111 */
1112 public static function setLoginToken() {
1113 global $wgRequest;
1114 // Use User::generateToken() instead of $user->editToken()
1115 // because the latter reuses $_SESSION['wsEditToken']
1116 $wgRequest->setSessionData( 'wsLoginToken', User::generateToken() );
1117 }
1118
1119 /**
1120 * Remove any login token attached to the current session
1121 */
1122 public static function clearLoginToken() {
1123 global $wgRequest;
1124 $wgRequest->setSessionData( 'wsLoginToken', null );
1125 }
1126
1127 /**
1128 * Get the createaccount token from the current session
1129 */
1130 public static function getCreateaccountToken() {
1131 global $wgRequest;
1132 return $wgRequest->getSessionData( 'wsCreateaccountToken' );
1133 }
1134
1135 /**
1136 * Randomly generate a new createaccount token and attach it to the current session
1137 */
1138 public static function setCreateaccountToken() {
1139 global $wgRequest;
1140 $wgRequest->setSessionData( 'wsCreateaccountToken', User::generateToken() );
1141 }
1142
1143 /**
1144 * Remove any createaccount token attached to the current session
1145 */
1146 public static function clearCreateaccountToken() {
1147 global $wgRequest;
1148 $wgRequest->setSessionData( 'wsCreateaccountToken', null );
1149 }
1150
1151 /**
1152 * @private
1153 */
1154 function cookieRedirectCheck( $type ) {
1155 global $wgOut;
1156
1157 $titleObj = SpecialPage::getTitleFor( 'Userlogin' );
1158 $query = array( 'wpCookieCheck' => $type );
1159 if ( $this->mReturnTo ) {
1160 $query['returnto'] = $this->mReturnTo;
1161 }
1162 $check = $titleObj->getFullURL( $query );
1163
1164 return $wgOut->redirect( $check );
1165 }
1166
1167 /**
1168 * @private
1169 */
1170 function onCookieRedirectCheck( $type ) {
1171 if ( !$this->hasSessionCookie() ) {
1172 if ( $type == 'new' ) {
1173 return $this->mainLoginForm( wfMsgExt( 'nocookiesnew', array( 'parseinline' ) ) );
1174 } elseif ( $type == 'login' ) {
1175 return $this->mainLoginForm( wfMsgExt( 'nocookieslogin', array( 'parseinline' ) ) );
1176 } else {
1177 # shouldn't happen
1178 return $this->mainLoginForm( wfMsg( 'error' ) );
1179 }
1180 } else {
1181 return $this->successfulLogin();
1182 }
1183 }
1184
1185 /**
1186 * @private
1187 */
1188 function throttleHit( $limit ) {
1189 $this->mainLoginForm( wfMsgExt( 'acct_creation_throttle_hit', array( 'parseinline' ), $limit ) );
1190 }
1191
1192 /**
1193 * Produce a bar of links which allow the user to select another language
1194 * during login/registration but retain "returnto"
1195 *
1196 * @return string
1197 */
1198 function makeLanguageSelector() {
1199 global $wgLang;
1200
1201 $msg = wfMsgForContent( 'loginlanguagelinks' );
1202 if( $msg != '' && !wfEmptyMsg( 'loginlanguagelinks', $msg ) ) {
1203 $langs = explode( "\n", $msg );
1204 $links = array();
1205 foreach( $langs as $lang ) {
1206 $lang = trim( $lang, '* ' );
1207 $parts = explode( '|', $lang );
1208 if ( count( $parts ) >= 2 ) {
1209 $links[] = $this->makeLanguageSelectorLink( $parts[0], $parts[1] );
1210 }
1211 }
1212 return count( $links ) > 0 ? wfMsgHtml( 'loginlanguagelabel', $wgLang->pipeList( $links ) ) : '';
1213 } else {
1214 return '';
1215 }
1216 }
1217
1218 /**
1219 * Create a language selector link for a particular language
1220 * Links back to this page preserving type and returnto
1221 *
1222 * @param $text Link text
1223 * @param $lang Language code
1224 */
1225 function makeLanguageSelectorLink( $text, $lang ) {
1226 global $wgUser;
1227 $self = SpecialPage::getTitleFor( 'Userlogin' );
1228 $attr = array( 'uselang' => $lang );
1229 if( $this->mType == 'signup' ) {
1230 $attr['type'] = 'signup';
1231 }
1232 if( $this->mReturnTo ) {
1233 $attr['returnto'] = $this->mReturnTo;
1234 }
1235 $skin = $wgUser->getSkin();
1236 return $skin->linkKnown(
1237 $self,
1238 htmlspecialchars( $text ),
1239 array(),
1240 $attr
1241 );
1242 }
1243 }