2006-09-23 15:57:16 +00:00
< ? php
/*
* Created on Sep 19 , 2006
*
* API for MediaWiki 1.8 +
*
2007-05-27 23:50:24 +00:00
* Copyright ( C ) 2006 - 2007 Yuri Astrakhan < Firstname >< Lastname >@ gmail . com ,
* Daniel Cannon ( cannon dot danielc at gmail dot com )
2006-09-23 15:57:16 +00:00
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License along
* with this program ; if not , write to the Free Software Foundation , Inc . ,
* 59 Temple Place - Suite 330 , Boston , MA 02111 - 1307 , USA .
* http :// www . gnu . org / copyleft / gpl . html
*/
2010-01-11 15:55:52 +00:00
if ( ! defined ( 'MEDIAWIKI' ) ) {
2006-09-23 15:57:16 +00:00
// Eclipse helper - will be ignored in production
2010-01-11 15:55:52 +00:00
require_once ( 'ApiBase.php' );
2006-09-23 15:57:16 +00:00
}
2007-04-20 08:55:14 +00:00
/**
2007-05-27 23:50:24 +00:00
* Unit to authenticate log - in attempts to the current wiki .
*
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
* @ ingroup API
2007-04-20 08:55:14 +00:00
*/
2006-09-23 15:57:16 +00:00
class ApiLogin extends ApiBase {
2008-04-14 07:45:50 +00:00
2010-01-11 15:55:52 +00:00
public function __construct ( $main , $action ) {
parent :: __construct ( $main , $action , 'lg' );
2006-09-23 15:57:16 +00:00
}
2007-05-27 23:50:24 +00:00
/**
* Executes the log - in attempt using the parameters passed . If
* the log - in succeeeds , it attaches a cookie to the session
* and outputs the user id , username , and session token . If a
2009-01-01 02:02:03 +00:00
* log - in fails , as the result of a bad password , a nonexistent
2007-05-27 23:50:24 +00:00
* user , or any other reason , the host is cached with an expiry
* and no log - in attempts will be accepted until that expiry
* is reached . The expiry is $this -> mLoginThrottle .
*
* @ access public
*/
2006-09-27 05:13:48 +00:00
public function execute () {
2008-12-17 16:34:01 +00:00
$params = $this -> extractRequestParams ();
2006-09-23 15:57:16 +00:00
2006-09-26 06:37:26 +00:00
$result = array ();
2010-01-11 15:55:52 +00:00
$req = new FauxRequest ( array (
2008-12-17 16:34:01 +00:00
'wpName' => $params [ 'name' ],
'wpPassword' => $params [ 'password' ],
'wpDomain' => $params [ 'domain' ],
2009-09-26 00:49:32 +00:00
'wpRemember' => ''
2010-01-11 15:55:52 +00:00
) );
2007-05-28 06:59:19 +00:00
2007-12-04 08:35:26 +00:00
// Init session if necessary
2010-01-11 15:55:52 +00:00
if ( session_id () == '' ) {
2007-12-04 08:35:26 +00:00
wfSetupSession ();
}
2010-01-11 15:55:52 +00:00
$loginForm = new LoginForm ( $req );
switch ( $authRes = $loginForm -> authenticateUserData () ) {
2009-09-26 00:49:32 +00:00
case LoginForm :: SUCCESS :
2007-10-08 18:00:17 +00:00
global $wgUser , $wgCookiePrefix ;
2006-10-01 04:38:31 +00:00
2010-01-11 15:55:52 +00:00
$wgUser -> setOption ( 'rememberpassword' , 1 );
2009-09-26 00:49:32 +00:00
$wgUser -> setCookies ();
// Run hooks. FIXME: split back and frontend from this hook.
// FIXME: This hook should be placed in the backend
$injected_html = '' ;
2010-01-11 15:55:52 +00:00
wfRunHooks ( 'UserLoginComplete' , array ( & $wgUser , & $injected_html ) );
2009-09-26 00:49:32 +00:00
2006-09-23 15:57:16 +00:00
$result [ 'result' ] = 'Success' ;
2010-01-11 15:55:52 +00:00
$result [ 'lguserid' ] = intval ( $wgUser -> getId () );
2008-05-29 18:57:06 +00:00
$result [ 'lgusername' ] = $wgUser -> getName ();
$result [ 'lgtoken' ] = $wgUser -> getToken ();
2007-10-08 18:00:17 +00:00
$result [ 'cookieprefix' ] = $wgCookiePrefix ;
2007-12-03 18:50:53 +00:00
$result [ 'sessionid' ] = session_id ();
2006-09-23 15:57:16 +00:00
break ;
2009-09-26 00:49:32 +00:00
case LoginForm :: NO_NAME :
2006-10-01 04:38:31 +00:00
$result [ 'result' ] = 'NoName' ;
2006-09-23 15:57:16 +00:00
break ;
2010-01-06 13:45:06 +00:00
2009-09-26 00:49:32 +00:00
case LoginForm :: ILLEGAL :
2006-10-01 04:38:31 +00:00
$result [ 'result' ] = 'Illegal' ;
2006-09-23 15:57:16 +00:00
break ;
2010-01-06 13:45:06 +00:00
2009-09-26 00:49:32 +00:00
case LoginForm :: WRONG_PLUGIN_PASS :
2006-10-01 04:38:31 +00:00
$result [ 'result' ] = 'WrongPluginPass' ;
2006-09-23 15:57:16 +00:00
break ;
2010-01-06 13:45:06 +00:00
2009-09-26 00:49:32 +00:00
case LoginForm :: NOT_EXISTS :
2006-10-01 04:38:31 +00:00
$result [ 'result' ] = 'NotExists' ;
2006-09-23 15:57:16 +00:00
break ;
2010-01-06 13:45:06 +00:00
2010-01-11 15:55:52 +00:00
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;"
2009-09-26 00:49:32 +00:00
case LoginForm :: WRONG_PASS :
2006-10-01 04:38:31 +00:00
$result [ 'result' ] = 'WrongPass' ;
2006-09-23 15:57:16 +00:00
break ;
2010-01-06 13:45:06 +00:00
2009-09-26 00:49:32 +00:00
case LoginForm :: EMPTY_PASS :
2006-10-01 04:38:31 +00:00
$result [ 'result' ] = 'EmptyPass' ;
2006-09-23 15:57:16 +00:00
break ;
2010-01-06 13:45:06 +00:00
2009-09-26 00:49:32 +00:00
case LoginForm :: CREATE_BLOCKED :
2008-05-17 04:00:26 +00:00
$result [ 'result' ] = 'CreateBlocked' ;
$result [ 'details' ] = 'Your IP address is blocked from account creation' ;
break ;
2010-01-06 13:45:06 +00:00
2009-09-26 00:49:32 +00:00
case LoginForm :: THROTTLED :
2008-09-04 19:48:48 +00:00
global $wgPasswordAttemptThrottle ;
2008-08-16 18:43:02 +00:00
$result [ 'result' ] = 'Throttled' ;
2010-01-11 15:55:52 +00:00
$result [ 'wait' ] = intval ( $wgPasswordAttemptThrottle [ 'seconds' ] );
2008-08-16 18:43:02 +00:00
break ;
2010-01-29 16:45:55 +00:00
case LoginForm :: USER_BLOCKED :
$result [ 'result' ] = 'Blocked' ;
break ;
2010-01-06 13:45:06 +00:00
2006-09-26 06:37:26 +00:00
default :
2010-01-11 15:55:52 +00:00
ApiBase :: dieDebug ( __METHOD__ , " Unhandled case value: { $authRes } " );
2006-09-23 15:57:16 +00:00
}
2006-09-26 06:37:26 +00:00
2010-01-11 15:55:52 +00:00
$this -> getResult () -> addValue ( null , 'login' , $result );
2006-09-23 15:57:16 +00:00
}
2010-02-14 21:12:11 +00:00
public function mustBePosted () {
return true ;
}
2007-05-27 23:50:24 +00:00
2009-03-06 13:49:44 +00:00
public function isReadMode () {
return false ;
}
2008-01-28 19:05:26 +00:00
public function getAllowedParams () {
2006-09-23 15:57:16 +00:00
return array (
2006-10-17 02:11:29 +00:00
'name' => null ,
'password' => null ,
2006-10-03 05:41:55 +00:00
'domain' => null
2006-09-23 15:57:16 +00:00
);
}
2008-01-28 19:05:26 +00:00
public function getParamDescription () {
2006-09-23 15:57:16 +00:00
return array (
2006-10-03 05:41:55 +00:00
'name' => 'User Name' ,
'password' => 'Password' ,
'domain' => 'Domain (optional)'
2006-09-23 15:57:16 +00:00
);
}
2008-01-28 19:05:26 +00:00
public function getDescription () {
2006-09-26 06:37:26 +00:00
return array (
2007-07-06 02:19:56 +00:00
'This module is used to login and get the authentication tokens. ' ,
'In the event of a successful log-in, a cookie will be attached' ,
'to your session. In the event of a failed log-in, you will not ' ,
2008-03-16 19:08:30 +00:00
'be able to attempt another log-in through this method for 5 seconds.' ,
2007-07-06 02:19:56 +00:00
'This is to prevent password guessing by automated password crackers.'
2006-09-26 06:37:26 +00:00
);
2006-09-23 15:57:16 +00:00
}
2010-02-13 00:09:05 +00:00
public function getPossibleErrors () {
return array_merge ( parent :: getPossibleErrors (), array (
2010-02-14 13:37:14 +00:00
array ( 'code' => 'NoName' , 'info' => 'You didn\'t set the lgname parameter' ),
array ( 'code' => 'Illegal' , 'info' => ' You provided an illegal username' ),
array ( 'code' => 'NotExists' , 'info' => ' The username you provided doesn\'t exist' ),
array ( 'code' => 'EmptyPass' , 'info' => ' You didn\'t set the lgpassword parameter or you left it empty' ),
array ( 'code' => 'WrongPass' , 'info' => ' The password you provided is incorrect' ),
array ( 'code' => 'WrongPluginPass' , 'info' => 'Same as `WrongPass", returned when an authentication plugin rather than MediaWiki itself rejected the password' ),
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' ),
array ( 'code' => 'Throttled' , 'info' => 'You\'ve logged in too many times in a short time' ),
array ( 'code' => 'Blocked' , 'info' => 'User is blocked' ),
2010-02-13 00:09:05 +00:00
) );
;
}
2008-04-14 07:45:50 +00:00
2006-10-03 05:41:55 +00:00
protected function getExamples () {
return array (
'api.php?action=login&lgname=user&lgpassword=password'
);
}
2006-10-01 21:20:55 +00:00
public function getVersion () {
return __CLASS__ . ': $Id$' ;
}
2006-09-23 15:57:16 +00:00
}