MediaWiki master
ApiLinkAccount.php
Go to the documentation of this file.
1<?php
9namespace MediaWiki\Api;
10
14
20class ApiLinkAccount extends ApiBase {
21
22 public function __construct(
23 ApiMain $main,
24 string $action,
25 private readonly AuthManager $authManager,
26 private readonly UrlUtils $urlUtils,
27 ) {
28 parent::__construct( $main, $action, 'link' );
29 }
30
32 public function getFinalDescription() {
33 // A bit of a hack to append 'api-help-authmanager-general-usage'
34 $msgs = parent::getFinalDescription();
35 $msgs[] = $this->msg( 'api-help-authmanager-general-usage',
36 $this->getModulePrefix(),
37 $this->getModuleName(),
38 $this->getModulePath(),
39 AuthManager::ACTION_LINK,
40 $this->needsToken(),
41 );
42 return $msgs;
43 }
44
45 public function execute() {
46 if ( !$this->getUser()->isNamed() ) {
47 $this->dieWithError( 'apierror-mustbeloggedin-linkaccounts', 'notloggedin' );
48 }
49
50 $this->checkUserRightsAny( 'editmyprivateinfo' );
51
52 $params = $this->extractRequestParams();
53
54 $this->requireAtLeastOneParameter( $params, 'continue', 'returnurl' );
55
56 if ( $params['returnurl'] !== null ) {
57 $bits = $this->urlUtils->parse( $params['returnurl'] );
58 if ( !$bits || $bits['scheme'] === '' ) {
59 $encParamName = $this->encodeParamName( 'returnurl' );
60 $this->dieWithError(
61 [ 'apierror-badurl', $encParamName, wfEscapeWikiText( $params['returnurl'] ) ],
62 "badurl_{$encParamName}"
63 );
64 }
65 }
66
67 $helper = new ApiAuthManagerHelper( $this, $this->authManager );
68
69 // Check security-sensitive operation status
70 $helper->securitySensitiveOperation( 'LinkAccounts' );
71
72 // Make sure it's possible to link accounts
73 if ( !$this->authManager->canLinkAccounts() ) {
74 $this->getResult()->addValue( null, 'linkaccount', $helper->formatAuthenticationResponse(
75 AuthenticationResponse::newFail( $this->msg( 'userlogin-cannot-' . AuthManager::ACTION_LINK ) )
76 ) );
77 return;
78 }
79
80 // Perform the link step
81 if ( $params['continue'] ) {
82 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LINK_CONTINUE );
83 $res = $this->authManager->continueAccountLink( $reqs );
84 } else {
85 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LINK );
86 $res = $this->authManager->beginAccountLink( $this->getUser(), $reqs, $params['returnurl'] );
87 }
88
89 $this->getResult()->addValue( null, 'linkaccount',
90 $helper->formatAuthenticationResponse( $res ) );
91 }
92
94 public function isReadMode() {
95 return false;
96 }
97
99 public function isWriteMode() {
100 return true;
101 }
102
104 public function needsToken() {
105 return 'csrf';
106 }
107
109 public function getAllowedParams() {
110 return ApiAuthManagerHelper::getStandardParams( AuthManager::ACTION_LINK,
111 'requests', 'messageformat', 'mergerequestfields', 'returnurl', 'continue'
112 );
113 }
114
117 return [ 'api-help-authmanagerhelper-additional-params', AuthManager::ACTION_LINK ];
118 }
119
121 protected function getExamplesMessages() {
122 return [
123 'action=linkaccount&provider=Example&linkreturnurl=http://example.org/&linktoken=123ABC'
124 => 'apihelp-linkaccount-example-link',
125 ];
126 }
127
129 public function getHelpUrls() {
130 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Linkaccount';
131 }
132}
133
135class_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:60
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
Definition ApiBase.php:1522
checkUserRightsAny( $rights)
Helper function for permission-denied errors.
Definition ApiBase.php:1631
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
Definition ApiBase.php:566
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:557
requireAtLeastOneParameter( $params,... $required)
Die if 0 of a certain set of parameters is set and not false.
Definition ApiBase.php:1039
getModulePath()
Get the path to this module.
Definition ApiBase.php:636
getResult()
Get the result object.
Definition ApiBase.php:696
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
Definition ApiBase.php:815
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:837
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...
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.
__construct(ApiMain $main, string $action, private readonly AuthManager $authManager, private readonly UrlUtils $urlUtils,)
This is the main API class, used for both external and internal processing.
Definition ApiMain.php:66
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