35 parent::__construct( $query, $moduleName,
'ami' );
40 $manager = MediaWikiServices::getInstance()->getAuthManager();
43 'canauthenticatenow' => $manager->canAuthenticateNow(),
44 'cancreateaccounts' => $manager->canCreateAccounts(),
45 'canlinkaccounts' => $manager->canLinkAccounts(),
48 if ( $params[
'securitysensitiveoperation'] !==
null ) {
49 $ret[
'securitysensitiveoperationstatus'] = $manager->securitySensitiveOperationStatus(
50 $params[
'securitysensitiveoperation']
54 if ( $params[
'requestsfor'] ) {
55 $action = $params[
'requestsfor'];
57 $preservedReq = $helper->getPreservedRequest();
58 if ( $preservedReq ) {
60 'haspreservedstate' => $preservedReq->hasStateForAction( $action ),
61 'hasprimarypreservedstate' => $preservedReq->hasPrimaryStateForAction( $action ),
62 'preservedusername' => (string)$preservedReq->username,
66 'haspreservedstate' =>
false,
67 'hasprimarypreservedstate' =>
false,
68 'preservedusername' =>
'',
72 $reqs = $manager->getAuthenticationRequests( $action, $this->
getUser() );
76 case AuthManager::ACTION_CHANGE:
78 $reqs, $this->
getConfig()->
get(
'ChangeCredentialsBlacklist' )
81 case AuthManager::ACTION_REMOVE:
83 $reqs, $this->
getConfig()->
get(
'RemoveCredentialsBlacklist' )
88 $ret += $helper->formatRequests( $reqs );
100 'securitysensitiveoperation' =>
null,
103 AuthManager::ACTION_LOGIN,
104 AuthManager::ACTION_LOGIN_CONTINUE,
105 AuthManager::ACTION_CREATE,
106 AuthManager::ACTION_CREATE_CONTINUE,
107 AuthManager::ACTION_LINK,
108 AuthManager::ACTION_LINK_CONTINUE,
109 AuthManager::ACTION_CHANGE,
110 AuthManager::ACTION_REMOVE,
111 AuthManager::ACTION_UNLINK,
119 'action=query&meta=authmanagerinfo&amirequestsfor=' . urlencode( AuthManager::ACTION_LOGIN )
120 =>
'apihelp-query+authmanagerinfo-example-login',
121 'action=query&meta=authmanagerinfo&amirequestsfor=' . urlencode( AuthManager::ACTION_LOGIN ) .
122 '&amimergerequestfields=1'
123 =>
'apihelp-query+authmanagerinfo-example-login-merged',
124 'action=query&meta=authmanagerinfo&amisecuritysensitiveoperation=foo'
125 =>
'apihelp-query+authmanagerinfo-example-securitysensitiveoperation',
130 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Authmanagerinfo';
Helper class for AuthManager-using API modules.
static getStandardParams( $action,... $wantedParams)
Fetch the standard parameters this helper recognizes.
static blacklistAuthenticationRequests(array $reqs, array $blacklist)
Filter out authentication requests by class name.
getResult()
Get the result object.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
getModuleName()
Get the name of the module being executed by this instance.
A query action to return meta information about AuthManager state.
getHelpUrls()
Return links to more detailed help pages about the module.
getExamplesMessages()
Returns usage examples for this module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
__construct(ApiQuery $query, $moduleName)
isReadMode()
Indicates whether this module requires read rights Stable to override.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
This is a base class for all Query modules.
This is the main query class.
getUser()
Stable to override.