5 * Created on Sep 19, 2006
7 * Copyright © 2006-2007 Yuri Astrakhan "<Firstname><Lastname>@gmail.com",
8 * Daniel Cannon (cannon dot danielc at gmail dot com)
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
28 use MediaWiki\Auth\AuthManager
;
29 use MediaWiki\Auth\AuthenticationRequest
;
30 use MediaWiki\Auth\AuthenticationResponse
;
31 use MediaWiki\Logger\LoggerFactory
;
34 * Unit to authenticate log-in attempts to the current wiki.
38 class ApiLogin
extends ApiBase
{
40 public function __construct( ApiMain
$main, $action ) {
41 parent
::__construct( $main, $action, 'lg' );
44 protected function getDescriptionMessage() {
45 if ( $this->getConfig()->get( 'EnableBotPasswords' ) ) {
46 return 'apihelp-login-description';
48 return 'apihelp-login-description-nobotpasswords';
53 * Executes the log-in attempt using the parameters passed. If
54 * the log-in succeeds, it attaches a cookie to the session
55 * and outputs the user id, username, and session token. If a
56 * log-in fails, as the result of a bad password, a nonexistent
57 * user, or any other reason, the host is cached with an expiry
58 * and no log-in attempts will be accepted until that expiry
59 * is reached. The expiry is $this->mLoginThrottle.
61 public function execute() {
62 // If we're in a mode that breaks the same-origin policy, no tokens can
64 if ( $this->lacksSameOriginSecurity() ) {
65 $this->getResult()->addValue( null, 'login', [
66 'result' => 'Aborted',
67 'reason' => 'Cannot log in when the same-origin policy is not applied',
74 $this->requirePostedParameters( [ 'password', 'token' ] );
75 } catch ( UsageException
$ex ) {
76 // Make this a warning for now, upgrade to an error in 1.29.
77 $this->setWarning( $ex->getMessage() );
78 $this->logFeatureUsage( 'login-params-in-query-string' );
81 $params = $this->extractRequestParams();
85 // Make sure session is persisted
86 $session = MediaWiki\Session\SessionManager
::getGlobalSession();
89 // Make sure it's possible to log in
90 if ( !$session->canSetUser() ) {
91 $this->getResult()->addValue( null, 'login', [
92 'result' => 'Aborted',
93 'reason' => 'Cannot log in when using ' .
94 $session->getProvider()->describe( Language
::factory( 'en' ) ),
101 $context = new DerivativeContext( $this->getContext() );
105 $token = $session->getToken( '', 'login' );
106 if ( $token->wasNew() ||
!$params['token'] ) {
107 $authRes = 'NeedToken';
108 } elseif ( !$token->match( $params['token'] ) ) {
109 $authRes = 'WrongToken';
114 $authRes === false && $this->getConfig()->get( 'EnableBotPasswords' ) &&
115 ( $botLoginData = BotPassword
::canonicalizeLoginData( $params['name'], $params['password'] ) )
117 $status = BotPassword
::login(
118 $botLoginData[0], $botLoginData[1], $this->getRequest()
120 if ( $status->isOK() ) {
121 $session = $status->getValue();
122 $authRes = 'Success';
123 $loginType = 'BotPassword';
124 } elseif ( !$botLoginData[2] ) {
126 $message = $status->getMessage();
127 LoggerFactory
::getInstance( 'authentication' )->info(
128 'BotPassword login failed: ' . $status->getWikiText( false, false, 'en' )
133 if ( $authRes === false ) {
134 // Simplified AuthManager login, for backwards compatibility
135 $manager = AuthManager
::singleton();
136 $reqs = AuthenticationRequest
::loadRequestsFromSubmission(
137 $manager->getAuthenticationRequests( AuthManager
::ACTION_LOGIN
, $this->getUser() ),
139 'username' => $params['name'],
140 'password' => $params['password'],
141 'domain' => $params['domain'],
142 'rememberMe' => true,
145 $res = AuthManager
::singleton()->beginAuthentication( $reqs, 'null:' );
146 switch ( $res->status
) {
147 case AuthenticationResponse
::PASS
:
148 if ( $this->getConfig()->get( 'EnableBotPasswords' ) ) {
149 $warn = 'Main-account login via action=login is deprecated and may stop working ' .
151 $warn .= ' To continue login with action=login, see [[Special:BotPasswords]].';
152 $warn .= ' To safely continue using main-account login, see action=clientlogin.';
154 $warn = 'Login via action=login is deprecated and may stop working without warning.';
155 $warn .= ' To safely log in, see action=clientlogin.';
157 $this->setWarning( $warn );
158 $authRes = 'Success';
159 $loginType = 'AuthManager';
162 case AuthenticationResponse
::FAIL
:
163 // Hope it's not a PreAuthenticationProvider that failed...
165 $message = $res->message
;
166 \MediaWiki\Logger\LoggerFactory
::getInstance( 'authentication' )
167 ->info( __METHOD__
. ': Authentication failed: '
168 . $message->inLanguage( 'en' )->plain() );
172 \MediaWiki\Logger\LoggerFactory
::getInstance( 'authentication' )
173 ->info( __METHOD__
. ': Authentication failed due to unsupported response type: '
174 . $res->status
, $this->getAuthenticationResponseLogData( $res ) );
175 $authRes = 'Aborted';
180 $result['result'] = $authRes;
181 switch ( $authRes ) {
183 $user = $session->getUser();
185 ApiQueryInfo
::resetTokenCache();
189 Hooks
::run( 'UserLoginComplete', [ &$user, &$injected_html, true ] );
191 $result['lguserid'] = intval( $user->getId() );
192 $result['lgusername'] = $user->getName();
196 $result['token'] = $token->toString();
197 $this->setWarning( 'Fetching a token via action=login is deprecated. ' .
198 'Use action=query&meta=tokens&type=login instead.' );
199 $this->logFeatureUsage( 'action=login&!lgtoken' );
206 $result['reason'] = $message->useDatabase( 'false' )->inLanguage( 'en' )->text();
210 $result['reason'] = 'Authentication requires user interaction, ' .
211 'which is not supported by action=login.';
212 if ( $this->getConfig()->get( 'EnableBotPasswords' ) ) {
213 $result['reason'] .= ' To be able to login with action=login, see [[Special:BotPasswords]].';
214 $result['reason'] .= ' To continue using main-account login, see action=clientlogin.';
216 $result['reason'] .= ' To log in, see action=clientlogin.';
221 ApiBase
::dieDebug( __METHOD__
, "Unhandled case value: {$authRes}" );
224 $this->getResult()->addValue( null, 'login', $result );
226 if ( $loginType === 'LoginForm' && isset( LoginForm
::$statusCodes[$authRes] ) ) {
227 $authRes = LoginForm
::$statusCodes[$authRes];
229 LoggerFactory
::getInstance( 'authevents' )->info( 'Login attempt', [
231 'successful' => $authRes === 'Success',
232 'loginType' => $loginType,
233 'status' => $authRes,
237 public function isDeprecated() {
238 return !$this->getConfig()->get( 'EnableBotPasswords' );
241 public function mustBePosted() {
245 public function isReadMode() {
249 public function getAllowedParams() {
253 ApiBase
::PARAM_TYPE
=> 'password',
257 ApiBase
::PARAM_TYPE
=> 'string',
258 ApiBase
::PARAM_REQUIRED
=> false, // for BC
259 ApiBase
::PARAM_HELP_MSG
=> [ 'api-help-param-token', 'login' ],
264 protected function getExamplesMessages() {
266 'action=login&lgname=user&lgpassword=password'
267 => 'apihelp-login-example-gettoken',
268 'action=login&lgname=user&lgpassword=password&lgtoken=123ABC'
269 => 'apihelp-login-example-login',
273 public function getHelpUrls() {
274 return 'https://www.mediawiki.org/wiki/API:Login';
278 * Turns an AuthenticationResponse into a hash suitable for passing to Logger
279 * @param AuthenticationResponse $response
282 protected function getAuthenticationResponseLogData( AuthenticationResponse
$response ) {
284 'status' => $response->status
,
286 if ( $response->message
) {
287 $ret['message'] = $response->message
->inLanguage( 'en' )->plain();
290 'neededRequests' => $response->neededRequests
,
291 'createRequest' => $response->createRequest
,
292 'linkRequest' => $response->linkRequest
,
294 foreach ( $reqs as $k => $v ) {
296 $v = is_array( $v ) ?
$v : [ $v ];
297 $reqClasses = array_unique( array_map( 'get_class', $v ) );
299 $ret[$k] = implode( ', ', $reqClasses );