46 parent::__construct( $main, $action,
'link' );
47 $this->authManager = $authManager;
52 $msgs = parent::getFinalDescription();
57 AuthManager::ACTION_LINK,
64 if ( !$this->
getUser()->isRegistered() ) {
65 $this->
dieWithError(
'apierror-mustbeloggedin-linkaccounts',
'notloggedin' );
72 if ( $params[
'returnurl'] !==
null ) {
74 if ( !$bits || $bits[
'scheme'] ===
'' ) {
77 [
'apierror-badurl', $encParamName,
wfEscapeWikiText( $params[
'returnurl'] ) ],
78 "badurl_{$encParamName}"
86 $helper->securitySensitiveOperation(
'LinkAccounts' );
89 if ( !$this->authManager->canLinkAccounts() ) {
90 $this->
getResult()->addValue(
null,
'linkaccount', $helper->formatAuthenticationResponse(
91 AuthenticationResponse::newFail( $this->msg(
'userlogin-cannot-' . AuthManager::ACTION_LINK ) )
97 if ( $params[
'continue'] ) {
98 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LINK_CONTINUE );
99 $res = $this->authManager->continueAccountLink( $reqs );
101 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LINK );
102 $res = $this->authManager->beginAccountLink( $this->
getUser(), $reqs, $params[
'returnurl'] );
105 $this->
getResult()->addValue(
null,
'linkaccount',
106 $helper->formatAuthenticationResponse(
$res ) );
123 'requests',
'messageformat',
'mergerequestfields',
'returnurl',
'continue'
128 return [
'api-help-authmanagerhelper-additional-params', AuthManager::ACTION_LINK ];
133 'action=linkaccount&provider=Example&linkreturnurl=http://example.org/&linktoken=123ABC'
134 =>
'apihelp-linkaccount-example-link',
139 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Linkaccount';
wfParseUrl( $url)
parse_url() work-alike, but non-broken.
wfEscapeWikiText( $text)
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.
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
static makeMessage( $msg, IContextSource $context, array $params=null)
Create a Message from a string or array.
requireAtLeastOneParameter( $params,... $required)
Die if none of a certain set of parameters is set and not false.
getResult()
Get the result object.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
getModulePath()
Get the path to this module.
getModuleName()
Get the name of the module being executed by this instance.
Link an account with AuthManager.
isWriteMode()
Indicates whether this module requires write mode.
isReadMode()
Indicates whether this module requires read rights.
__construct(ApiMain $main, $action, AuthManager $authManager)
dynamicParameterDocumentation()
Indicate if the module supports dynamically-determined parameters that cannot be included in self::ge...
getHelpUrls()
Return links to more detailed help pages about the module.
getFinalDescription()
Get 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.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getExamplesMessages()
Returns usage examples for this module.
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.
getContext()
Get the base IContextSource object.