3 * Copyright © 2016 Brad Jorsch <bjorsch@wikimedia.org>
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.
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.
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
23 use MediaWiki\Auth\AuthManager
;
24 use MediaWiki\Auth\AuthenticationRequest
;
25 use MediaWiki\Auth\AuthenticationResponse
;
28 * Log in to the wiki with AuthManager
32 class ApiClientLogin
extends ApiBase
{
34 public function __construct( ApiMain
$main, $action ) {
35 parent
::__construct( $main, $action, 'login' );
38 public function getFinalDescription() {
39 // A bit of a hack to append 'api-help-authmanager-general-usage'
40 $msgs = parent
::getFinalDescription();
41 $msgs[] = ApiBase
::makeMessage( 'api-help-authmanager-general-usage', $this->getContext(), [
42 $this->getModulePrefix(),
43 $this->getModuleName(),
44 $this->getModulePath(),
45 AuthManager
::ACTION_LOGIN
,
51 public function execute() {
52 $params = $this->extractRequestParams();
54 $this->requireAtLeastOneParameter( $params, 'continue', 'returnurl' );
56 if ( $params['returnurl'] !== null ) {
57 $bits = wfParseUrl( $params['returnurl'] );
58 if ( !$bits ||
$bits['scheme'] === '' ) {
59 $encParamName = $this->encodeParamName( 'returnurl' );
61 "Invalid value '{$params['returnurl']}' for url parameter $encParamName",
62 "badurl_{$encParamName}"
67 $helper = new ApiAuthManagerHelper( $this );
68 $manager = AuthManager
::singleton();
70 // Make sure it's possible to log in
71 if ( !$manager->canAuthenticateNow() ) {
72 $this->getResult()->addValue( null, 'clientlogin', $helper->formatAuthenticationResponse(
73 AuthenticationResponse
::newFail( $this->msg( 'userlogin-cannot-' . AuthManager
::ACTION_LOGIN
) )
78 // Perform the login step
79 if ( $params['continue'] ) {
80 $reqs = $helper->loadAuthenticationRequests( AuthManager
::ACTION_LOGIN_CONTINUE
);
81 $res = $manager->continueAuthentication( $reqs );
83 $reqs = $helper->loadAuthenticationRequests( AuthManager
::ACTION_LOGIN
);
84 if ( $params['preservestate'] ) {
85 $req = $helper->getPreservedRequest();
90 $res = $manager->beginAuthentication( $reqs, $params['returnurl'] );
93 $this->getResult()->addValue( null, 'clientlogin',
94 $helper->formatAuthenticationResponse( $res ) );
97 public function isReadMode() {
101 public function needsToken() {
105 public function getAllowedParams() {
106 return ApiAuthManagerHelper
::getStandardParams( AuthManager
::ACTION_LOGIN
,
107 'requests', 'messageformat', 'mergerequestfields', 'preservestate', 'returnurl', 'continue'
111 public function dynamicParameterDocumentation() {
112 return [ 'api-help-authmanagerhelper-additional-params', AuthManager
::ACTION_LOGIN
];
115 protected function getExamplesMessages() {
117 'action=clientlogin&username=Example&password=ExamplePassword&'
118 . 'loginreturnurl=http://example.org/&logintoken=123ABC'
119 => 'apihelp-clientlogin-example-login',
120 'action=clientlogin&logincontinue=1&OATHToken=987654&logintoken=123ABC'
121 => 'apihelp-clientlogin-example-login2',
125 public function getHelpUrls() {
126 return 'https://www.mediawiki.org/wiki/API:Login';