34 parent::__construct( $main, $action,
'link' );
39 $msgs = parent::getFinalDescription();
44 AuthManager::ACTION_LINK,
51 if ( !$this->
getUser()->isLoggedIn() ) {
52 $this->
dieUsage(
'Must be logged in to link accounts',
'notloggedin' );
59 if (
$params[
'returnurl'] !== null ) {
61 if ( !$bits || $bits[
'scheme'] ===
'' ) {
64 "Invalid value '{$params['returnurl']}' for url parameter $encParamName",
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/API:Linkaccount';
static getStandardParams($action, $param)
Fetch the standard parameters this helper recognizes.
getResult()
Get the result object.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
__construct(ApiMain $main, $action)
extractRequestParams($parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user...
static makeMessage($msg, IContextSource $context, array $params=null)
Create a Message from a string or array.
dynamicParameterDocumentation()
getModulePath()
Get the path to this module.
getContext()
Get the base IContextSource object.
This is the main API class, used for both external and internal processing.
getModuleName()
Get the name of the module being executed by this instance.
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
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
Link an account with AuthManager.
requireAtLeastOneParameter($params, $required)
Die if none of a certain set of parameters is set and not false.
dieUsage($description, $errorCode, $httpRespCode=0, $extradata=null)
Throw a UsageException, which will (if uncaught) call the main module's error handler and die with an...
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.
encodeParamName($paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
Helper class for AuthManager-using API modules.
getUser()
Get the User object.