Revert r89537 till we decide a sane way to have it on/off as API bools suck
[lhc/web/wiklou.git] / includes / api / ApiLogin.php
1 <?php
2 /**
3 *
4 *
5 * Created on Sep 19, 2006
6 *
7 * Copyright © 2006-2007 Yuri Astrakhan <Firstname><Lastname>@gmail.com,
8 * Daniel Cannon (cannon dot danielc at gmail dot com)
9 *
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.
14 *
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.
19 *
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
24 *
25 * @file
26 */
27
28 if ( !defined( 'MEDIAWIKI' ) ) {
29 // Eclipse helper - will be ignored in production
30 require_once( 'ApiBase.php' );
31 }
32
33 /**
34 * Unit to authenticate log-in attempts to the current wiki.
35 *
36 * @ingroup API
37 */
38 class ApiLogin extends ApiBase {
39
40 public function __construct( $main, $action ) {
41 parent::__construct( $main, $action, 'lg' );
42 }
43
44 /**
45 * Executes the log-in attempt using the parameters passed. If
46 * the log-in succeeeds, it attaches a cookie to the session
47 * and outputs the user id, username, and session token. If a
48 * log-in fails, as the result of a bad password, a nonexistent
49 * user, or any other reason, the host is cached with an expiry
50 * and no log-in attempts will be accepted until that expiry
51 * is reached. The expiry is $this->mLoginThrottle.
52 */
53 public function execute() {
54 $params = $this->extractRequestParams();
55
56 $result = array();
57
58 $req = new FauxRequest( array(
59 'wpName' => $params['name'],
60 'wpPassword' => $params['password'],
61 'wpDomain' => $params['domain'],
62 'wpLoginToken' => $params['token'],
63 'wpRemember' => ''
64 ) );
65
66 // Init session if necessary
67 if ( session_id() == '' ) {
68 wfSetupSession();
69 }
70
71 $loginForm = new LoginForm( $req );
72
73 global $wgCookiePrefix, $wgUser, $wgPasswordAttemptThrottle;
74
75 $authRes = $loginForm->authenticateUserData();
76 switch ( $authRes ) {
77 case LoginForm::SUCCESS:
78 $wgUser->setOption( 'rememberpassword', 1 );
79 $wgUser->setCookies( $this->getMain()->getRequest() );
80
81 // Run hooks.
82 // @todo FIXME: Split back and frontend from this hook.
83 // @todo FIXME: This hook should be placed in the backend
84 $injected_html = '';
85 wfRunHooks( 'UserLoginComplete', array( &$wgUser, &$injected_html ) );
86
87 $result['result'] = 'Success';
88 $result['lguserid'] = intval( $wgUser->getId() );
89 $result['lgusername'] = $wgUser->getName();
90 $result['lgtoken'] = $wgUser->getToken();
91 $result['cookieprefix'] = $wgCookiePrefix;
92 $result['sessionid'] = session_id();
93 break;
94
95 case LoginForm::NEED_TOKEN:
96 $result['result'] = 'NeedToken';
97 $result['token'] = $loginForm->getLoginToken();
98 $result['cookieprefix'] = $wgCookiePrefix;
99 $result['sessionid'] = session_id();
100 break;
101
102 case LoginForm::WRONG_TOKEN:
103 $result['result'] = 'WrongToken';
104 break;
105
106 case LoginForm::NO_NAME:
107 $result['result'] = 'NoName';
108 break;
109
110 case LoginForm::ILLEGAL:
111 $result['result'] = 'Illegal';
112 break;
113
114 case LoginForm::WRONG_PLUGIN_PASS:
115 $result['result'] = 'WrongPluginPass';
116 break;
117
118 case LoginForm::NOT_EXISTS:
119 $result['result'] = 'NotExists';
120 break;
121
122 case LoginForm::RESET_PASS: // bug 20223 - Treat a temporary password as wrong. Per SpecialUserLogin - "The e-mailed temporary password should not be used for actual logins;"
123 case LoginForm::WRONG_PASS:
124 $result['result'] = 'WrongPass';
125 break;
126
127 case LoginForm::EMPTY_PASS:
128 $result['result'] = 'EmptyPass';
129 break;
130
131 case LoginForm::CREATE_BLOCKED:
132 $result['result'] = 'CreateBlocked';
133 $result['details'] = 'Your IP address is blocked from account creation';
134 break;
135
136 case LoginForm::THROTTLED:
137 $result['result'] = 'Throttled';
138 $result['wait'] = intval( $wgPasswordAttemptThrottle['seconds'] );
139 break;
140
141 case LoginForm::USER_BLOCKED:
142 $result['result'] = 'Blocked';
143 break;
144
145 case LoginForm::ABORTED:
146 $result['result'] = 'Aborted';
147 $result['reason'] = $loginForm->mAbortLoginErrorMsg;
148 break;
149
150 default:
151 ApiBase::dieDebug( __METHOD__, "Unhandled case value: {$authRes}" );
152 }
153
154 $this->getResult()->addValue( null, 'login', $result );
155 }
156
157 public function mustBePosted() {
158 return true;
159 }
160
161 public function isReadMode() {
162 return false;
163 }
164
165 public function getAllowedParams() {
166 return array(
167 'name' => null,
168 'password' => null,
169 'domain' => null,
170 'token' => null,
171 );
172 }
173
174 public function getParamDescription() {
175 return array(
176 'name' => 'User Name',
177 'password' => 'Password',
178 'domain' => 'Domain (optional)',
179 'token' => 'Login token obtained in first request',
180 );
181 }
182
183 public function getDescription() {
184 return array(
185 'Log in and get the authentication tokens. ',
186 'In the event of a successful log-in, a cookie will be attached',
187 'to your session. In the event of a failed log-in, you will not ',
188 'be able to attempt another log-in through this method for 5 seconds.',
189 'This is to prevent password guessing by automated password crackers'
190 );
191 }
192
193 public function getPossibleErrors() {
194 return array_merge( parent::getPossibleErrors(), array(
195 array( 'code' => 'NeedToken', 'info' => 'You need to resubmit your login with the specified token. See https://bugzilla.wikimedia.org/show_bug.cgi?id=23076' ),
196 array( 'code' => 'WrongToken', 'info' => 'You specified an invalid token' ),
197 array( 'code' => 'NoName', 'info' => 'You didn\'t set the lgname parameter' ),
198 array( 'code' => 'Illegal', 'info' => ' You provided an illegal username' ),
199 array( 'code' => 'NotExists', 'info' => ' The username you provided doesn\'t exist' ),
200 array( 'code' => 'EmptyPass', 'info' => ' You didn\'t set the lgpassword parameter or you left it empty' ),
201 array( 'code' => 'WrongPass', 'info' => ' The password you provided is incorrect' ),
202 array( 'code' => 'WrongPluginPass', 'info' => 'Same as `WrongPass", returned when an authentication plugin rather than MediaWiki itself rejected the password' ),
203 array( 'code' => 'CreateBlocked', 'info' => 'The wiki tried to automatically create a new account for you, but your IP address has been blocked from account creation' ),
204 array( 'code' => 'Throttled', 'info' => 'You\'ve logged in too many times in a short time' ),
205 array( 'code' => 'Blocked', 'info' => 'User is blocked' ),
206 ) );
207 }
208
209 protected function getExamples() {
210 return array(
211 'api.php?action=login&lgname=user&lgpassword=password'
212 );
213 }
214
215 public function getVersion() {
216 return __CLASS__ . ': $Id$';
217 }
218 }