MediaWiki  1.27.2
ApiClientLogin.php
Go to the documentation of this file.
1 <?php
27 
33 class ApiClientLogin extends ApiBase {
34 
35  public function __construct( ApiMain $main, $action ) {
36  parent::__construct( $main, $action, 'login' );
37  }
38 
39  public function getFinalDescription() {
40  // A bit of a hack to append 'api-help-authmanager-general-usage'
41  $msgs = parent::getFinalDescription();
42  $msgs[] = ApiBase::makeMessage( 'api-help-authmanager-general-usage', $this->getContext(), [
43  $this->getModulePrefix(),
44  $this->getModuleName(),
45  $this->getModulePath(),
46  AuthManager::ACTION_LOGIN,
47  self::needsToken(),
48  ] );
49  return $msgs;
50  }
51 
52  public function execute() {
53  $params = $this->extractRequestParams();
54 
55  $this->requireAtLeastOneParameter( $params, 'continue', 'returnurl' );
56 
57  if ( $params['returnurl'] !== null ) {
58  $bits = wfParseUrl( $params['returnurl'] );
59  if ( !$bits || $bits['scheme'] === '' ) {
60  $encParamName = $this->encodeParamName( 'returnurl' );
61  $this->dieUsage(
62  "Invalid value '{$params['returnurl']}' for url parameter $encParamName",
63  "badurl_{$encParamName}"
64  );
65  }
66  }
67 
68  $helper = new ApiAuthManagerHelper( $this );
69  $manager = AuthManager::singleton();
70 
71  // Make sure it's possible to log in
72  if ( !$manager->canAuthenticateNow() ) {
73  $this->getResult()->addValue( null, 'clientlogin', $helper->formatAuthenticationResponse(
74  AuthenticationResponse::newFail( $this->msg( 'userlogin-cannot-' . AuthManager::ACTION_LOGIN ) )
75  ) );
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.
99  );
100 
101  $this->getResult()->addValue( null, 'clientlogin',
102  $helper->formatAuthenticationResponse( $res ) );
103  }
104 
105  public function isReadMode() {
106  return false;
107  }
108 
109  public function needsToken() {
110  return 'login';
111  }
112 
113  public function getAllowedParams() {
114  return ApiAuthManagerHelper::getStandardParams( AuthManager::ACTION_LOGIN,
115  'requests', 'messageformat', 'mergerequestfields', 'preservestate', 'returnurl', 'continue'
116  );
117  }
118 
119  public function dynamicParameterDocumentation() {
120  return [ 'api-help-authmanagerhelper-additional-params', AuthManager::ACTION_LOGIN ];
121  }
122 
123  protected function getExamplesMessages() {
124  return [
125  'action=clientlogin&username=Example&password=ExamplePassword&'
126  . 'loginreturnurl=http://example.org/&logintoken=123ABC'
127  => 'apihelp-clientlogin-example-login',
128  'action=clientlogin&logincontinue=1&OATHToken=987654&logintoken=123ABC'
129  => 'apihelp-clientlogin-example-login2',
130  ];
131  }
132 
133  public function getHelpUrls() {
134  return 'https://www.mediawiki.org/wiki/API:Login';
135  }
136 }
static getStandardParams($action, $param)
Fetch the standard parameters this helper recognizes.
getResult()
Get the result object.
Definition: ApiBase.php:584
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Log in to the wiki with AuthManager.
extractRequestParams($parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user...
Definition: ApiBase.php:685
static makeMessage($msg, IContextSource $context, array $params=null)
Create a Message from a string or array.
Definition: ApiBase.php:1463
$res
Definition: database.txt:21
getModulePath()
Get the path to this module.
Definition: ApiBase.php:528
getContext()
Get the base IContextSource object.
$params
This is the main API class, used for both external and internal processing.
Definition: ApiMain.php:41
getModuleName()
Get the name of the module being executed by this instance.
Definition: ApiBase.php:464
__construct(ApiMain $main, $action)
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
this hook is for auditing only $req
Definition: hooks.txt:965
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
Definition: ApiBase.php:472
static blacklistAuthenticationRequests(array $reqs, array $blacklist)
Filter out authentication requests by class name.
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
requireAtLeastOneParameter($params, $required)
Die if none of a certain set of parameters is set and not false.
Definition: ApiBase.php:770
dieUsage($description, $errorCode, $httpRespCode=0, $extradata=null)
Throw a UsageException, which will (if uncaught) call the main module's error handler and die with an...
Definition: ApiBase.php:1526
This abstract class implements many basic API functions, and is the base of all API classes...
Definition: ApiBase.php:39
wfParseUrl($url)
parse_url() work-alike, but non-broken.
encodeParamName($paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
Definition: ApiBase.php:672
Helper class for AuthManager-using API modules.