MediaWiki master
ApiLinkAccount.php
Go to the documentation of this file.
1<?php
9namespace MediaWiki\Api;
10
14
20class ApiLinkAccount extends ApiBase {
21
22 private AuthManager $authManager;
23 private UrlUtils $urlUtils;
24
25 public function __construct(
26 ApiMain $main,
27 string $action,
28 AuthManager $authManager,
29 UrlUtils $urlUtils
30 ) {
31 parent::__construct( $main, $action, 'link' );
32 $this->authManager = $authManager;
33 $this->urlUtils = $urlUtils;
34 }
35
37 public function getFinalDescription() {
38 // A bit of a hack to append 'api-help-authmanager-general-usage'
39 $msgs = parent::getFinalDescription();
40 $msgs[] = $this->msg( 'api-help-authmanager-general-usage',
41 $this->getModulePrefix(),
42 $this->getModuleName(),
43 $this->getModulePath(),
44 AuthManager::ACTION_LINK,
45 $this->needsToken(),
46 );
47 return $msgs;
48 }
49
50 public function execute() {
51 if ( !$this->getUser()->isNamed() ) {
52 $this->dieWithError( 'apierror-mustbeloggedin-linkaccounts', 'notloggedin' );
53 }
54
55 $params = $this->extractRequestParams();
56
57 $this->requireAtLeastOneParameter( $params, 'continue', 'returnurl' );
58
59 if ( $params['returnurl'] !== null ) {
60 $bits = $this->urlUtils->parse( $params['returnurl'] );
61 if ( !$bits || $bits['scheme'] === '' ) {
62 $encParamName = $this->encodeParamName( 'returnurl' );
63 $this->dieWithError(
64 [ 'apierror-badurl', $encParamName, wfEscapeWikiText( $params['returnurl'] ) ],
65 "badurl_{$encParamName}"
66 );
67 }
68 }
69
70 $helper = new ApiAuthManagerHelper( $this, $this->authManager );
71
72 // Check security-sensitive operation status
73 $helper->securitySensitiveOperation( 'LinkAccounts' );
74
75 // Make sure it's possible to link accounts
76 if ( !$this->authManager->canLinkAccounts() ) {
77 $this->getResult()->addValue( null, 'linkaccount', $helper->formatAuthenticationResponse(
78 AuthenticationResponse::newFail( $this->msg( 'userlogin-cannot-' . AuthManager::ACTION_LINK ) )
79 ) );
80 return;
81 }
82
83 // Perform the link step
84 if ( $params['continue'] ) {
85 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LINK_CONTINUE );
86 $res = $this->authManager->continueAccountLink( $reqs );
87 } else {
88 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LINK );
89 $res = $this->authManager->beginAccountLink( $this->getUser(), $reqs, $params['returnurl'] );
90 }
91
92 $this->getResult()->addValue( null, 'linkaccount',
93 $helper->formatAuthenticationResponse( $res ) );
94 }
95
97 public function isReadMode() {
98 return false;
99 }
100
102 public function isWriteMode() {
103 return true;
104 }
105
107 public function needsToken() {
108 return 'csrf';
109 }
110
112 public function getAllowedParams() {
113 return ApiAuthManagerHelper::getStandardParams( AuthManager::ACTION_LINK,
114 'requests', 'messageformat', 'mergerequestfields', 'returnurl', 'continue'
115 );
116 }
117
120 return [ 'api-help-authmanagerhelper-additional-params', AuthManager::ACTION_LINK ];
121 }
122
124 protected function getExamplesMessages() {
125 return [
126 'action=linkaccount&provider=Example&linkreturnurl=http://example.org/&linktoken=123ABC'
127 => 'apihelp-linkaccount-example-link',
128 ];
129 }
130
132 public function getHelpUrls() {
133 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Linkaccount';
134 }
135}
136
138class_alias( ApiLinkAccount::class, 'ApiLinkAccount' );
wfEscapeWikiText( $input)
Escapes the given text so that it may be output using addWikiText() without any linking,...
Helper class for AuthManager-using API modules.
static getStandardParams( $action,... $wantedParams)
Fetch the standard parameters this helper recognizes.
This abstract class implements many basic API functions, and is the base of all API classes.
Definition ApiBase.php:61
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
Definition ApiBase.php:1507
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
Definition ApiBase.php:552
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:543
requireAtLeastOneParameter( $params,... $required)
Die if 0 of a certain set of parameters is set and not false.
Definition ApiBase.php:1025
getModulePath()
Get the path to this module.
Definition ApiBase.php:622
getResult()
Get the result object.
Definition ApiBase.php:682
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
Definition ApiBase.php:801
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:823
Link an account with AuthManager.
getFinalDescription()
Get the final module description, after hooks have had a chance to tweak it as needed....
needsToken()
Returns the token type this module requires in order to execute.Modules are strongly encouraged to us...
__construct(ApiMain $main, string $action, AuthManager $authManager, UrlUtils $urlUtils)
isReadMode()
Indicates whether this module requires read rights.to override bool
dynamicParameterDocumentation()
Indicate if the module supports dynamically-determined parameters that cannot be included in self::ge...
isWriteMode()
Indicates whether this module requires write access to the wiki.API modules must override this method...
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getHelpUrls()
Return links to more detailed help pages about the module.1.25, returning boolean false is deprecated...
getExamplesMessages()
Returns usage examples for this module.Return value has query strings as keys, with values being eith...
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
This is the main API class, used for both external and internal processing.
Definition ApiMain.php:67
AuthManager is the authentication system in MediaWiki and serves entry point for authentication.
This is a value object to hold authentication response data.
msg( $key,... $params)
Get a Message object with context set Parameters are the same as wfMessage()
A service to expand, parse, and otherwise manipulate URLs.
Definition UrlUtils.php:16