MediaWiki REL1_28
ApiLogin.php
Go to the documentation of this file.
1<?php
32
38class ApiLogin extends ApiBase {
39
40 public function __construct( ApiMain $main, $action ) {
41 parent::__construct( $main, $action, 'lg' );
42 }
43
44 protected function getDescriptionMessage() {
45 if ( $this->getConfig()->get( 'EnableBotPasswords' ) ) {
46 return 'apihelp-login-description';
47 } else {
48 return 'apihelp-login-description-nobotpasswords';
49 }
50 }
51
61 public function execute() {
62 // If we're in a mode that breaks the same-origin policy, no tokens can
63 // be obtained
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',
68 ] );
69
70 return;
71 }
72
73 try {
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' );
79 }
80
82
83 $result = [];
84
85 // Make sure session is persisted
86 $session = MediaWiki\Session\SessionManager::getGlobalSession();
87 $session->persist();
88
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' ) ),
95 ] );
96
97 return;
98 }
99
100 $authRes = false;
101 $context = new DerivativeContext( $this->getContext() );
102 $loginType = 'N/A';
103
104 // Check login token
105 $token = $session->getToken( '', 'login' );
106 if ( $token->wasNew() || !$params['token'] ) {
107 $authRes = 'NeedToken';
108 } elseif ( !$token->match( $params['token'] ) ) {
109 $authRes = 'WrongToken';
110 }
111
112 // Try bot passwords
113 if (
114 $authRes === false && $this->getConfig()->get( 'EnableBotPasswords' ) &&
115 ( $botLoginData = BotPassword::canonicalizeLoginData( $params['name'], $params['password'] ) )
116 ) {
117 $status = BotPassword::login(
118 $botLoginData[0], $botLoginData[1], $this->getRequest()
119 );
120 if ( $status->isOK() ) {
121 $session = $status->getValue();
122 $authRes = 'Success';
123 $loginType = 'BotPassword';
124 } elseif ( !$botLoginData[2] || $status->hasMessage( 'login-throttled' ) ) {
125 $authRes = 'Failed';
126 $message = $status->getMessage();
127 LoggerFactory::getInstance( 'authentication' )->info(
128 'BotPassword login failed: ' . $status->getWikiText( false, false, 'en' )
129 );
130 }
131 }
132
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() ),
138 [
139 'username' => $params['name'],
140 'password' => $params['password'],
141 'domain' => $params['domain'],
142 'rememberMe' => true,
143 ]
144 );
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 ' .
150 'without warning.';
151 $warn .= ' To continue login with action=login, see [[Special:BotPasswords]].';
152 $warn .= ' To safely continue using main-account login, see action=clientlogin.';
153 } else {
154 $warn = 'Login via action=login is deprecated and may stop working without warning.';
155 $warn .= ' To safely log in, see action=clientlogin.';
156 }
157 $this->setWarning( $warn );
158 $authRes = 'Success';
159 $loginType = 'AuthManager';
160 break;
161
162 case AuthenticationResponse::FAIL:
163 // Hope it's not a PreAuthenticationProvider that failed...
164 $authRes = 'Failed';
165 $message = $res->message;
166 \MediaWiki\Logger\LoggerFactory::getInstance( 'authentication' )
167 ->info( __METHOD__ . ': Authentication failed: '
168 . $message->inLanguage( 'en' )->plain() );
169 break;
170
171 default:
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';
176 break;
177 }
178 }
179
180 $result['result'] = $authRes;
181 switch ( $authRes ) {
182 case 'Success':
183 $user = $session->getUser();
184
186
187 // Deprecated hook
188 $injected_html = '';
189 Hooks::run( 'UserLoginComplete', [ &$user, &$injected_html, true ] );
190
191 $result['lguserid'] = intval( $user->getId() );
192 $result['lgusername'] = $user->getName();
193 break;
194
195 case 'NeedToken':
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' );
200 break;
201
202 case 'WrongToken':
203 break;
204
205 case 'Failed':
206 $result['reason'] = $message->useDatabase( 'false' )->inLanguage( 'en' )->text();
207 break;
208
209 case 'Aborted':
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.';
215 } else {
216 $result['reason'] .= ' To log in, see action=clientlogin.';
217 }
218 break;
219
220 default:
221 ApiBase::dieDebug( __METHOD__, "Unhandled case value: {$authRes}" );
222 }
223
224 $this->getResult()->addValue( null, 'login', $result );
225
226 if ( $loginType === 'LoginForm' && isset( LoginForm::$statusCodes[$authRes] ) ) {
227 $authRes = LoginForm::$statusCodes[$authRes];
228 }
229 LoggerFactory::getInstance( 'authevents' )->info( 'Login attempt', [
230 'event' => 'login',
231 'successful' => $authRes === 'Success',
232 'loginType' => $loginType,
233 'status' => $authRes,
234 ] );
235 }
236
237 public function isDeprecated() {
238 return !$this->getConfig()->get( 'EnableBotPasswords' );
239 }
240
241 public function mustBePosted() {
242 return true;
243 }
244
245 public function isReadMode() {
246 return false;
247 }
248
249 public function getAllowedParams() {
250 return [
251 'name' => null,
252 'password' => [
253 ApiBase::PARAM_TYPE => 'password',
254 ],
255 'domain' => null,
256 'token' => [
257 ApiBase::PARAM_TYPE => 'string',
258 ApiBase::PARAM_REQUIRED => false, // for BC
260 ApiBase::PARAM_HELP_MSG => [ 'api-help-param-token', 'login' ],
261 ],
262 ];
263 }
264
265 protected function getExamplesMessages() {
266 return [
267 'action=login&lgname=user&lgpassword=password'
268 => 'apihelp-login-example-gettoken',
269 'action=login&lgname=user&lgpassword=password&lgtoken=123ABC'
270 => 'apihelp-login-example-login',
271 ];
272 }
273
274 public function getHelpUrls() {
275 return 'https://www.mediawiki.org/wiki/API:Login';
276 }
277
284 $ret = [
285 'status' => $response->status,
286 ];
287 if ( $response->message ) {
288 $ret['message'] = $response->message->inLanguage( 'en' )->plain();
289 };
290 $reqs = [
291 'neededRequests' => $response->neededRequests,
292 'createRequest' => $response->createRequest,
293 'linkRequest' => $response->linkRequest,
294 ];
295 foreach ( $reqs as $k => $v ) {
296 if ( $v ) {
297 $v = is_array( $v ) ? $v : [ $v ];
298 $reqClasses = array_unique( array_map( 'get_class', $v ) );
299 sort( $reqClasses );
300 $ret[$k] = implode( ', ', $reqClasses );
301 }
302 }
303 return $ret;
304 }
305}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
This abstract class implements many basic API functions, and is the base of all API classes.
Definition ApiBase.php:39
const PARAM_REQUIRED
(boolean) Is the parameter required?
Definition ApiBase.php:112
static dieDebug( $method, $message)
Internal code errors should be reported with this method.
Definition ApiBase.php:2295
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:88
const PARAM_SENSITIVE
(boolean) Is the parameter sensitive? Note 'password'-type fields are always sensitive regardless of ...
Definition ApiBase.php:179
requirePostedParameters( $params, $prefix='prefix')
Die if any of the specified parameters were found in the query part of the URL rather than the post b...
Definition ApiBase.php:793
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:685
setWarning( $warning)
Set warning section for this module.
Definition ApiBase.php:1554
getResult()
Get the result object.
Definition ApiBase.php:584
logFeatureUsage( $feature)
Write logging information for API features to a debug log, for usage analysis.
Definition ApiBase.php:2304
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:125
lacksSameOriginSecurity()
Returns true if the current request breaks the same-origin policy.
Definition ApiBase.php:512
Unit to authenticate log-in attempts to the current wiki.
Definition ApiLogin.php:38
getHelpUrls()
Return links to more detailed help pages about the module.
Definition ApiLogin.php:274
getDescriptionMessage()
Return the description message.
Definition ApiLogin.php:44
isDeprecated()
Indicates whether this module is deprecated.
Definition ApiLogin.php:237
__construct(ApiMain $main, $action)
Definition ApiLogin.php:40
isReadMode()
Indicates whether this module requires read rights.
Definition ApiLogin.php:245
mustBePosted()
Indicates whether this module must be called with a POST request.
Definition ApiLogin.php:241
execute()
Executes the log-in attempt using the parameters passed.
Definition ApiLogin.php:61
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Definition ApiLogin.php:249
getAuthenticationResponseLogData(AuthenticationResponse $response)
Turns an AuthenticationResponse into a hash suitable for passing to Logger.
Definition ApiLogin.php:283
getExamplesMessages()
Returns usage examples for this module.
Definition ApiLogin.php:265
This is the main API class, used for both external and internal processing.
Definition ApiMain.php:43
static resetTokenCache()
getRequest()
Get the WebRequest object.
getConfig()
Get the Config object.
IContextSource $context
getContext()
Get the base IContextSource object.
An IContextSource implementation which will inherit context from another source but allow individual ...
This serves as the entry point to the authentication system.
This is a value object for authentication requests.
This is a value object to hold authentication response data.
PSR-3 logger instance factory.
This exception will be thrown when dieUsage is called to stop module execution.
Definition ApiMain.php:1860
$res
Definition database.txt:21
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition hooks.txt:1049
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition hooks.txt:249
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Associative array mapping language codes to prefixed links of the form "language:title". & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition hooks.txt:1937
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:1949
this hook is for auditing only $response
Definition hooks.txt:805
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
$params