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'] ===
'' ) {
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 ) )
86 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LINK_CONTINUE );
87 $res = $manager->continueAccountLink( $reqs );
89 $reqs = $helper->loadAuthenticationRequests( AuthManager::ACTION_LINK );
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.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
static makeMessage( $msg, IContextSource $context, array $params=null)
Create a Message from a string or array.
Link an account with AuthManager.
getUser()
Get the User object.
static getStandardParams( $action, $param)
Fetch the standard parameters this helper recognizes.
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
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.
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).
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
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...