Go to the documentation of this file.
34 parent::__construct( $main, $action,
'link' );
39 $msgs = parent::getFinalDescription();
44 AuthManager::ACTION_LINK,
51 if ( !$this->
getUser()->isLoggedIn() ) {
52 $this->
dieWithError(
'apierror-mustbeloggedin-linkaccounts',
'notloggedin' );
59 if ( $params[
'returnurl'] !==
null ) {
61 if ( !$bits || $bits[
'scheme'] ===
'' ) {
64 [
'apierror-badurl', $encParamName,
wfEscapeWikiText( $params[
'returnurl'] ) ],
65 "badurl_{$encParamName}"
71 $manager = AuthManager::singleton();
74 $helper->securitySensitiveOperation(
'LinkAccounts' );
77 if ( !$manager->canLinkAccounts() ) {
78 $this->
getResult()->addValue(
null,
'linkaccount', $helper->formatAuthenticationResponse(
79 AuthenticationResponse::newFail( $this->msg(
'userlogin-cannot-' . AuthManager::ACTION_LINK ) )
85 if ( $params[
'continue'] ) {
86 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LINK_CONTINUE );
87 $res = $manager->continueAccountLink( $reqs );
89 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LINK );
90 $res = $manager->beginAccountLink( $this->
getUser(), $reqs, $params[
'returnurl'] );
93 $this->
getResult()->addValue(
null,
'linkaccount',
94 $helper->formatAuthenticationResponse(
$res ) );
111 'requests',
'messageformat',
'mergerequestfields',
'returnurl',
'continue'
116 return [
'api-help-authmanagerhelper-additional-params', AuthManager::ACTION_LINK ];
121 'action=linkaccount&provider=Example&linkreturnurl=http://example.org/&linktoken=123ABC'
122 =>
'apihelp-linkaccount-example-link',
127 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Linkaccount';
isReadMode()
Indicates whether this module requires read rights.
This is the main API class, used for both external and internal processing.
__construct(ApiMain $main, $action)
getContext()
Get the base IContextSource object.
getExamplesMessages()
Returns usage examples for this module.
needsToken()
Returns the token type this module requires in order to execute.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
getHelpUrls()
Return links to more detailed help pages about the module.
getResult()
Get the result object.
static makeMessage( $msg, IContextSource $context, array $params=null)
Create a Message from a string or array.
Link an account with AuthManager.
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.
wfParseUrl( $url)
parse_url() work-alike, but non-broken.
getModulePath()
Get the path to this module.
Helper class for AuthManager-using API modules.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
dynamicParameterDocumentation()
Indicate if the module supports dynamically-determined parameters that cannot be included in self::ge...
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.
getFinalDescription()
Get final module description, after hooks have had a chance to tweak it as needed.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
requireAtLeastOneParameter( $params, $required)
Die if none of a certain set of parameters is set and not false.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
isWriteMode()
Indicates whether this module requires write mode.
getModuleName()
Get the name of the module being executed by this instance.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...