MediaWiki  1.29.1
ApiLogin.php
Go to the documentation of this file.
1 <?php
32 
38 class 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  $this->requirePostedParameters( [ 'password', 'token' ] );
74 
75  $params = $this->extractRequestParams();
76 
77  $result = [];
78 
79  // Make sure session is persisted
81  $session->persist();
82 
83  // Make sure it's possible to log in
84  if ( !$session->canSetUser() ) {
85  $this->getResult()->addValue( null, 'login', [
86  'result' => 'Aborted',
87  'reason' => 'Cannot log in when using ' .
88  $session->getProvider()->describe( Language::factory( 'en' ) ),
89  ] );
90 
91  return;
92  }
93 
94  $authRes = false;
95  $context = new DerivativeContext( $this->getContext() );
96  $loginType = 'N/A';
97 
98  // Check login token
99  $token = $session->getToken( '', 'login' );
100  if ( $token->wasNew() || !$params['token'] ) {
101  $authRes = 'NeedToken';
102  } elseif ( !$token->match( $params['token'] ) ) {
103  $authRes = 'WrongToken';
104  }
105 
106  // Try bot passwords
107  if (
108  $authRes === false && $this->getConfig()->get( 'EnableBotPasswords' ) &&
109  ( $botLoginData = BotPassword::canonicalizeLoginData( $params['name'], $params['password'] ) )
110  ) {
112  $botLoginData[0], $botLoginData[1], $this->getRequest()
113  );
114  if ( $status->isOK() ) {
115  $session = $status->getValue();
116  $authRes = 'Success';
117  $loginType = 'BotPassword';
118  } elseif ( !$botLoginData[2] ) {
119  $authRes = 'Failed';
120  $message = $status->getMessage();
121  LoggerFactory::getInstance( 'authentication' )->info(
122  'BotPassword login failed: ' . $status->getWikiText( false, false, 'en' )
123  );
124  }
125  }
126 
127  if ( $authRes === false ) {
128  // Simplified AuthManager login, for backwards compatibility
129  $manager = AuthManager::singleton();
130  $reqs = AuthenticationRequest::loadRequestsFromSubmission(
131  $manager->getAuthenticationRequests( AuthManager::ACTION_LOGIN, $this->getUser() ),
132  [
133  'username' => $params['name'],
134  'password' => $params['password'],
135  'domain' => $params['domain'],
136  'rememberMe' => true,
137  ]
138  );
139  $res = AuthManager::singleton()->beginAuthentication( $reqs, 'null:' );
140  switch ( $res->status ) {
141  case AuthenticationResponse::PASS:
142  if ( $this->getConfig()->get( 'EnableBotPasswords' ) ) {
143  $this->addDeprecation( 'apiwarn-deprecation-login-botpw', 'main-account-login' );
144  } else {
145  $this->addDeprecation( 'apiwarn-deprecation-login-nobotpw', 'main-account-login' );
146  }
147  $authRes = 'Success';
148  $loginType = 'AuthManager';
149  break;
150 
151  case AuthenticationResponse::FAIL:
152  // Hope it's not a PreAuthenticationProvider that failed...
153  $authRes = 'Failed';
154  $message = $res->message;
156  ->info( __METHOD__ . ': Authentication failed: '
157  . $message->inLanguage( 'en' )->plain() );
158  break;
159 
160  default:
162  ->info( __METHOD__ . ': Authentication failed due to unsupported response type: '
163  . $res->status, $this->getAuthenticationResponseLogData( $res ) );
164  $authRes = 'Aborted';
165  break;
166  }
167  }
168 
169  $result['result'] = $authRes;
170  switch ( $authRes ) {
171  case 'Success':
172  $user = $session->getUser();
173 
175 
176  // Deprecated hook
177  $injected_html = '';
178  Hooks::run( 'UserLoginComplete', [ &$user, &$injected_html, true ] );
179 
180  $result['lguserid'] = intval( $user->getId() );
181  $result['lgusername'] = $user->getName();
182  break;
183 
184  case 'NeedToken':
185  $result['token'] = $token->toString();
186  $this->addDeprecation( 'apiwarn-deprecation-login-token', 'action=login&!lgtoken' );
187  break;
188 
189  case 'WrongToken':
190  break;
191 
192  case 'Failed':
193  $errorFormatter = $this->getErrorFormatter();
194  if ( $errorFormatter instanceof ApiErrorFormatter_BackCompat ) {
196  $message->useDatabase( false )->inLanguage( 'en' )->text()
197  );
198  } else {
199  $result['reason'] = $errorFormatter->formatMessage( $message );
200  }
201  break;
202 
203  case 'Aborted':
204  $result['reason'] = 'Authentication requires user interaction, ' .
205  'which is not supported by action=login.';
206  if ( $this->getConfig()->get( 'EnableBotPasswords' ) ) {
207  $result['reason'] .= ' To be able to login with action=login, see [[Special:BotPasswords]].';
208  $result['reason'] .= ' To continue using main-account login, see action=clientlogin.';
209  } else {
210  $result['reason'] .= ' To log in, see action=clientlogin.';
211  }
212  break;
213 
214  default:
215  ApiBase::dieDebug( __METHOD__, "Unhandled case value: {$authRes}" );
216  }
217 
218  $this->getResult()->addValue( null, 'login', $result );
219 
220  if ( $loginType === 'LoginForm' && isset( LoginForm::$statusCodes[$authRes] ) ) {
221  $authRes = LoginForm::$statusCodes[$authRes];
222  }
223  LoggerFactory::getInstance( 'authevents' )->info( 'Login attempt', [
224  'event' => 'login',
225  'successful' => $authRes === 'Success',
226  'loginType' => $loginType,
227  'status' => $authRes,
228  ] );
229  }
230 
231  public function isDeprecated() {
232  return !$this->getConfig()->get( 'EnableBotPasswords' );
233  }
234 
235  public function mustBePosted() {
236  return true;
237  }
238 
239  public function isReadMode() {
240  return false;
241  }
242 
243  public function getAllowedParams() {
244  return [
245  'name' => null,
246  'password' => [
247  ApiBase::PARAM_TYPE => 'password',
248  ],
249  'domain' => null,
250  'token' => [
251  ApiBase::PARAM_TYPE => 'string',
252  ApiBase::PARAM_REQUIRED => false, // for BC
253  ApiBase::PARAM_SENSITIVE => true,
254  ApiBase::PARAM_HELP_MSG => [ 'api-help-param-token', 'login' ],
255  ],
256  ];
257  }
258 
259  protected function getExamplesMessages() {
260  return [
261  'action=login&lgname=user&lgpassword=password'
262  => 'apihelp-login-example-gettoken',
263  'action=login&lgname=user&lgpassword=password&lgtoken=123ABC'
264  => 'apihelp-login-example-login',
265  ];
266  }
267 
268  public function getHelpUrls() {
269  return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Login';
270  }
271 
278  $ret = [
279  'status' => $response->status,
280  ];
281  if ( $response->message ) {
282  $ret['message'] = $response->message->inLanguage( 'en' )->plain();
283  };
284  $reqs = [
285  'neededRequests' => $response->neededRequests,
286  'createRequest' => $response->createRequest,
287  'linkRequest' => $response->linkRequest,
288  ];
289  foreach ( $reqs as $k => $v ) {
290  if ( $v ) {
291  $v = is_array( $v ) ? $v : [ $v ];
292  $reqClasses = array_unique( array_map( 'get_class', $v ) );
293  sort( $reqClasses );
294  $ret[$k] = implode( ', ', $reqClasses );
295  }
296  }
297  return $ret;
298  }
299 }
ApiMain
This is the main API class, used for both external and internal processing.
Definition: ApiMain.php:45
ContextSource\$context
IContextSource $context
Definition: ContextSource.php:34
ContextSource\getConfig
getConfig()
Get the Config object.
Definition: ContextSource.php:68
ApiLogin\isReadMode
isReadMode()
Indicates whether this module requires read rights.
Definition: ApiLogin.php:239
ContextSource\getContext
getContext()
Get the base IContextSource object.
Definition: ContextSource.php:41
LoginForm\$statusCodes
static $statusCodes
Definition: LoginSignupSpecialPage.php:1460
ApiLogin\execute
execute()
Executes the log-in attempt using the parameters passed.
Definition: ApiLogin.php:61
ApiErrorFormatter_BackCompat
Format errors and warnings in the old style, for backwards compatibility.
Definition: ApiErrorFormatter.php:362
ApiBase\PARAM_REQUIRED
const PARAM_REQUIRED
(boolean) Is the parameter required?
Definition: ApiBase.php:115
BotPassword\canonicalizeLoginData
static canonicalizeLoginData( $username, $password)
There are two ways to login with a bot password: "username@appId", "password" and "username",...
Definition: BotPassword.php:413
MediaWiki\Logger\LoggerFactory\getInstance
static getInstance( $channel)
Get a named logger instance from the currently configured logger factory.
Definition: LoggerFactory.php:93
ApiBase\PARAM_HELP_MSG
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition: ApiBase.php:128
ApiLogin\mustBePosted
mustBePosted()
Indicates whether this module must be called with a POST request.
Definition: ApiLogin.php:235
ApiQueryInfo\resetTokenCache
static resetTokenCache()
Definition: ApiQueryInfo.php:130
$result
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:Array with elements of the form "language:title" in the order that they will be output. & $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:1954
ApiLogin\isDeprecated
isDeprecated()
Indicates whether this module is deprecated.
Definition: ApiLogin.php:231
ApiBase\PARAM_TYPE
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition: ApiBase.php:91
ApiBase\getResult
getResult()
Get the result object.
Definition: ApiBase.php:610
$status
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup 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
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
ApiLogin\getExamplesMessages
getExamplesMessages()
Returns usage examples for this module.
Definition: ApiLogin.php:259
$user
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 account $user
Definition: hooks.txt:246
$params
$params
Definition: styleTest.css.php:40
$res
$res
Definition: database.txt:21
ContextSource\getRequest
getRequest()
Get the WebRequest object.
Definition: ContextSource.php:78
ApiBase\lacksSameOriginSecurity
lacksSameOriginSecurity()
Returns true if the current request breaks the same-origin policy.
Definition: ApiBase.php:538
php
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:35
ApiBase
This abstract class implements many basic API functions, and is the base of all API classes.
Definition: ApiBase.php:41
ApiBase\PARAM_SENSITIVE
const PARAM_SENSITIVE
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:196
ApiLogin\getHelpUrls
getHelpUrls()
Return links to more detailed help pages about the module.
Definition: ApiLogin.php:268
DerivativeContext
An IContextSource implementation which will inherit context from another source but allow individual ...
Definition: DerivativeContext.php:31
ApiErrorFormatter\stripMarkup
static stripMarkup( $text)
Turn wikitext into something resembling plaintext.
Definition: ApiErrorFormatter.php:252
MediaWiki\Auth\AuthenticationResponse
This is a value object to hold authentication response data.
Definition: AuthenticationResponse.php:37
ApiLogin\getDescriptionMessage
getDescriptionMessage()
Return the description message.
Definition: ApiLogin.php:44
ApiLogin\getAuthenticationResponseLogData
getAuthenticationResponseLogData(AuthenticationResponse $response)
Turns an AuthenticationResponse into a hash suitable for passing to Logger.
Definition: ApiLogin.php:277
ApiBase\extractRequestParams
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:718
MediaWiki\Session\SessionManager\getGlobalSession
static getGlobalSession()
Get the "global" session.
Definition: SessionManager.php:106
ApiLogin\getAllowedParams
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Definition: ApiLogin.php:243
ApiBase\addDeprecation
addDeprecation( $msg, $feature, $data=[])
Add a deprecation warning for this module.
Definition: ApiBase.php:1734
$ret
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:1956
BotPassword\login
static login( $username, $password, WebRequest $request)
Try to log the user in.
Definition: BotPassword.php:439
$response
this hook is for auditing only $response
Definition: hooks.txt:783
MediaWiki\Auth\AuthManager
This serves as the entry point to the authentication system.
Definition: AuthManager.php:82
as
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
Definition: distributors.txt:9
LoggerFactory
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
Definition: logger.txt:5
Language\factory
static factory( $code)
Get a cached or new language object for a given language code.
Definition: Language.php:183
ApiLogin
Unit to authenticate log-in attempts to the current wiki.
Definition: ApiLogin.php:38
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
ApiLogin\__construct
__construct(ApiMain $main, $action)
Definition: ApiLogin.php:40
ApiBase\dieDebug
static dieDebug( $method, $message)
Internal code errors should be reported with this method.
Definition: ApiBase.php:1962
ApiBase\getErrorFormatter
getErrorFormatter()
Get the error formatter.
Definition: ApiBase.php:624
ApiBase\requirePostedParameters
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:850
MediaWiki\Auth\AuthenticationRequest
This is a value object for authentication requests.
Definition: AuthenticationRequest.php:37