]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - includes/api/ApiClientLogin.php
MediaWiki 1.30.2-scripts
[autoinstalls/mediawiki.git] / includes / api / ApiClientLogin.php
1 <?php
2 /**
3  * Copyright © 2016 Wikimedia Foundation and contributors
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  */
22
23 use MediaWiki\Auth\AuthManager;
24 use MediaWiki\Auth\AuthenticationResponse;
25 use MediaWiki\Auth\CreateFromLoginAuthenticationRequest;
26
27 /**
28  * Log in to the wiki with AuthManager
29  *
30  * @ingroup API
31  */
32 class ApiClientLogin extends ApiBase {
33
34         public function __construct( ApiMain $main, $action ) {
35                 parent::__construct( $main, $action, 'login' );
36         }
37
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,
46                         self::needsToken(),
47                 ] );
48                 return $msgs;
49         }
50
51         public function execute() {
52                 $params = $this->extractRequestParams();
53
54                 $this->requireAtLeastOneParameter( $params, 'continue', 'returnurl' );
55
56                 if ( $params['returnurl'] !== null ) {
57                         $bits = wfParseUrl( $params['returnurl'] );
58                         if ( !$bits || $bits['scheme'] === '' ) {
59                                 $encParamName = $this->encodeParamName( 'returnurl' );
60                                 $this->dieWithError(
61                                         [ 'apierror-badurl', $encParamName, wfEscapeWikiText( $params['returnurl'] ) ],
62                                         "badurl_{$encParamName}"
63                                 );
64                         }
65                 }
66
67                 $helper = new ApiAuthManagerHelper( $this );
68                 $manager = AuthManager::singleton();
69
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 ) )
74                         ) );
75                         $helper->logAuthenticationResult( 'login', 'userlogin-cannot-' . AuthManager::ACTION_LOGIN );
76                         return;
77                 }
78
79                 // Perform the login step
80                 if ( $params['continue'] ) {
81                         $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LOGIN_CONTINUE );
82                         $res = $manager->continueAuthentication( $reqs );
83                 } else {
84                         $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LOGIN );
85                         if ( $params['preservestate'] ) {
86                                 $req = $helper->getPreservedRequest();
87                                 if ( $req ) {
88                                         $reqs[] = $req;
89                                 }
90                         }
91                         $res = $manager->beginAuthentication( $reqs, $params['returnurl'] );
92                 }
93
94                 // Remove CreateFromLoginAuthenticationRequest from $res->neededRequests.
95                 // It's there so a RESTART treated as UI will work right, but showing
96                 // it to the API client is just confusing.
97                 $res->neededRequests = ApiAuthManagerHelper::blacklistAuthenticationRequests(
98                         $res->neededRequests, [ CreateFromLoginAuthenticationRequest::class ]
99                 );
100
101                 $this->getResult()->addValue( null, 'clientlogin',
102                         $helper->formatAuthenticationResponse( $res ) );
103                 $helper->logAuthenticationResult( 'login', $res );
104         }
105
106         public function isReadMode() {
107                 return false;
108         }
109
110         public function needsToken() {
111                 return 'login';
112         }
113
114         public function getAllowedParams() {
115                 return ApiAuthManagerHelper::getStandardParams( AuthManager::ACTION_LOGIN,
116                         'requests', 'messageformat', 'mergerequestfields', 'preservestate', 'returnurl', 'continue'
117                 );
118         }
119
120         public function dynamicParameterDocumentation() {
121                 return [ 'api-help-authmanagerhelper-additional-params', AuthManager::ACTION_LOGIN ];
122         }
123
124         protected function getExamplesMessages() {
125                 return [
126                         'action=clientlogin&username=Example&password=ExamplePassword&'
127                                 . 'loginreturnurl=http://example.org/&logintoken=123ABC'
128                                 => 'apihelp-clientlogin-example-login',
129                         'action=clientlogin&logincontinue=1&OATHToken=987654&logintoken=123ABC'
130                                 => 'apihelp-clientlogin-example-login2',
131                 ];
132         }
133
134         public function getHelpUrls() {
135                 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Login';
136         }
137 }