MediaWiki  1.27.2
ApiLinkAccount.php
Go to the documentation of this file.
1 <?php
26 
32 class ApiLinkAccount extends ApiBase {
33 
34  public function __construct( ApiMain $main, $action ) {
35  parent::__construct( $main, $action, 'link' );
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_LINK,
46  self::needsToken(),
47  ] );
48  return $msgs;
49  }
50 
51  public function execute() {
52  if ( !$this->getUser()->isLoggedIn() ) {
53  $this->dieUsage( 'Must be logged in to link accounts', 'notloggedin' );
54  }
55 
56  $params = $this->extractRequestParams();
57 
58  $this->requireAtLeastOneParameter( $params, 'continue', 'returnurl' );
59 
60  if ( $params['returnurl'] !== null ) {
61  $bits = wfParseUrl( $params['returnurl'] );
62  if ( !$bits || $bits['scheme'] === '' ) {
63  $encParamName = $this->encodeParamName( 'returnurl' );
64  $this->dieUsage(
65  "Invalid value '{$params['returnurl']}' for url parameter $encParamName",
66  "badurl_{$encParamName}"
67  );
68  }
69  }
70 
71  $helper = new ApiAuthManagerHelper( $this );
72  $manager = AuthManager::singleton();
73 
74  // Check security-sensitive operation status
75  $helper->securitySensitiveOperation( 'LinkAccounts' );
76 
77  // Make sure it's possible to link accounts
78  if ( !$manager->canLinkAccounts() ) {
79  $this->getResult()->addValue( null, 'linkaccount', $helper->formatAuthenticationResponse(
80  AuthenticationResponse::newFail( $this->msg( 'userlogin-cannot-' . AuthManager::ACTION_LINK ) )
81  ) );
82  return;
83  }
84 
85  // Perform the link step
86  if ( $params['continue'] ) {
87  $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LINK_CONTINUE );
88  $res = $manager->continueAccountLink( $reqs );
89  } else {
90  $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LINK );
91  $res = $manager->beginAccountLink( $this->getUser(), $reqs, $params['returnurl'] );
92  }
93 
94  $this->getResult()->addValue( null, 'linkaccount',
95  $helper->formatAuthenticationResponse( $res ) );
96  }
97 
98  public function isReadMode() {
99  return false;
100  }
101 
102  public function isWriteMode() {
103  return true;
104  }
105 
106  public function needsToken() {
107  return 'csrf';
108  }
109 
110  public function getAllowedParams() {
111  return ApiAuthManagerHelper::getStandardParams( AuthManager::ACTION_LINK,
112  'requests', 'messageformat', 'mergerequestfields', 'returnurl', 'continue'
113  );
114  }
115 
116  public function dynamicParameterDocumentation() {
117  return [ 'api-help-authmanagerhelper-additional-params', AuthManager::ACTION_LINK ];
118  }
119 
120  protected function getExamplesMessages() {
121  return [
122  'action=linkaccount&provider=Example&linkreturnurl=http://example.org/&linktoken=123ABC'
123  => 'apihelp-linkaccount-example-link',
124  ];
125  }
126 
127  public function getHelpUrls() {
128  return 'https://www.mediawiki.org/wiki/API:Linkaccount';
129  }
130 }
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
__construct(ApiMain $main, $action)
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
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
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
Definition: ApiBase.php:472
Link an account with AuthManager.
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.
getUser()
Get the User object.