36 parent::__construct( $main, $action );
43 $this->helpFormat =
$params[
'helpformat'];
48 if ( is_array(
$params[
'modules'] ) ) {
51 if ( $path ===
'*' || $path ===
'**' ) {
54 if ( substr( $path, -2 ) ===
'+*' || substr( $path, -2 ) ===
' *' ) {
56 $path = substr( $path, 0, -2 );
58 } elseif ( substr( $path, -3 ) ===
'+**' || substr( $path, -3 ) ===
' **' ) {
60 $path = substr( $path, 0, -3 );
76 $this->
setWarning(
"Module $path has no submodules" );
86 if ( is_array(
$params[
'querymodules'] ) ) {
87 $queryModules =
$params[
'querymodules'];
88 foreach ( $queryModules
as $m ) {
95 if ( is_array(
$params[
'formatmodules'] ) ) {
96 $formatModules =
$params[
'formatmodules'];
97 foreach ( $formatModules
as $m ) {
119 if ( $module->getParent() && $module->getParent()->getModuleName() ==
'query' &&
120 in_array( $module->getModuleName(), $queryModules )
123 $key =
'querymodules';
125 if ( in_array( $module->getModuleName(), $formatModules ) ) {
126 $key =
'formatmodules';
131 $item[
'querytype'] = $item[
'group'];
133 $res[$key][] = $item;
139 foreach (
$res as $key => $stuff ) {
147 if (
$params[
'pagesetmodule'] ) {
150 unset(
$res[
'pagesetmodule'][
'name'] );
151 unset(
$res[
'pagesetmodule'][
'path'] );
152 unset(
$res[
'pagesetmodule'][
'group'] );
168 $names = $manager->getNames();
171 $submodule = $manager->getModule( $name );
172 $paths[] = $submodule->getModulePath();
173 if ( $recursive && $submodule->getModuleManager() ) {
174 $paths = array_merge( $paths, $this->
listAllSubmodules( $submodule, $recursive ) );
188 switch ( $this->helpFormat ) {
194 foreach ( $msgs
as $m ) {
195 $ret[] = $m->setContext( $this->context )->text();
197 $res[$key] = implode(
"\n\n",
$ret );
199 $res[$key] = preg_replace(
'!^(([*#:;])[^\n]*)\n\n(?=\2)!m',
"$1\n", $res[$key] );
205 foreach ( $msgs
as $m ) {
206 $ret[] = $m->setContext( $this->context )->parseAsBlock();
210 $ret = preg_replace(
'!\s*</([oud]l)>\s*<\1>\s*!',
"\n",
$ret );
217 foreach ( $msgs
as $m ) {
219 'key' => $m->getKey(),
220 'params' => $m->getParams(),
224 $a[
'forvalue'] = $m->getParamValue();
239 $path = $module->getModulePath();
241 $ret[
'name'] = $module->getModuleName();
242 $ret[
'classname'] = get_class( $module );
244 if ( !$module->isMain() ) {
245 $ret[
'group'] = $module->getParent()->getModuleManager()->getModuleGroup(
246 $module->getModuleName()
249 $ret[
'prefix'] = $module->getModulePrefix();
251 $sourceInfo = $module->getModuleSourceInfo();
253 $ret[
'source'] = $sourceInfo[
'name'];
254 if ( isset( $sourceInfo[
'namemsg'] ) ) {
255 $ret[
'sourcename'] = $this->context->msg( $sourceInfo[
'namemsg'] )->text();
257 $ret[
'sourcename'] =
$ret[
'source'];
261 if ( isset( $sourceInfo[
'license-name'] ) ) {
262 $ret[
'licensetag'] = $sourceInfo[
'license-name'];
271 foreach ( $module->getHelpFlags()
as $flag ) {
275 $ret[
'helpurls'] = (
array)$module->getHelpUrls();
276 if ( isset(
$ret[
'helpurls'][0] ) &&
$ret[
'helpurls'][0] ===
false ) {
277 $ret[
'helpurls'] = [];
281 if ( $this->helpFormat !==
'none' ) {
282 $ret[
'examples'] = [];
283 $examples = $module->getExamplesMessages();
284 foreach ( $examples
as $qs => $msg ) {
289 $module->getModulePrefix(),
290 $module->getModuleName(),
291 $module->getModulePath()
294 if ( isset( $item[
'description'] ) ) {
295 if ( is_array( $item[
'description'] ) ) {
296 $item[
'description'] = $item[
'description'][0];
301 $ret[
'examples'][] = $item;
306 $ret[
'parameters'] = [];
308 $paramDesc = $module->getFinalParamDescription();
310 if ( !is_array( $settings ) ) {
317 if ( isset( $paramDesc[
$name] ) ) {
324 $item[
'deprecated'] =
true;
327 if ( $name ===
'token' && $module->needsToken() ) {
328 $item[
'tokentype'] = $module->needsToken();
335 if ( is_bool( $dflt ) ) {
337 } elseif ( is_string( $dflt ) || is_null( $dflt ) ) {
339 } elseif ( is_int( $dflt ) ) {
345 switch ( $settings[ApiBase::PARAM_TYPE] ) {
347 $item[
'default'] = (bool)$settings[ApiBase::PARAM_DFLT];
352 $item[
'default'] = strval( $settings[ApiBase::PARAM_DFLT] );
356 $item[
'default'] = intval( $settings[ApiBase::PARAM_DFLT] );
368 if ( $item[
'multi'] ) {
369 $item[
'limit'] = $this->
getMain()->canApiHighLimits() ?
377 $item[
'allowsduplicates'] =
true;
380 if ( isset( $settings[ApiBase::PARAM_TYPE] ) ) {
381 if ( $settings[ApiBase::PARAM_TYPE] ===
'submodule' ) {
383 ksort( $settings[ApiBase::PARAM_SUBMODULE_MAP] );
384 $item[
'type'] = array_keys( $settings[ApiBase::PARAM_SUBMODULE_MAP] );
387 $item[
'type'] = $module->getModuleManager()->getNames( $name );
388 sort( $item[
'type'] );
389 $prefix = $module->isMain()
390 ?
'' : ( $module->getModulePath() .
'+' );
391 $item[
'submodules'] = [];
392 foreach ( $item[
'type']
as $v ) {
393 $item[
'submodules'][$v] = $prefix . $v;
399 } elseif ( $settings[ApiBase::PARAM_TYPE] ===
'tags' ) {
404 if ( is_array( $item[
'type'] ) ) {
406 $item[
'type'] = array_values( $item[
'type'] );
420 $item[
'enforcerange'] =
true;
425 foreach ( $settings[ApiBase::PARAM_HELP_MSG_INFO]
as $i ) {
426 $tag = array_shift( $i );
431 $info[
'values'] = $i;
435 $this->context->msg(
"apihelp-{$path}-paraminfo-{$tag}" )
436 ->numParams( count( $i ) )
437 ->params( $this->context->getLanguage()->commaList( $i ) )
438 ->params( $module->getModulePrefix() )
441 $item[
'info'][] = $info;
446 $ret[
'parameters'][] = $item;
450 $dynamicParams = $module->dynamicParameterDocumentation();
451 if ( $dynamicParams !== null ) {
452 if ( $this->helpFormat ===
'none' ) {
453 $ret[
'dynamicparameters'] =
true;
456 $module->getModulePrefix(),
457 $module->getModuleName(),
458 $module->getModulePath()
473 $querymodules = $this->
getMain()->getModuleManager()
474 ->getModule(
'query' )->getModuleManager()->getNames();
475 sort( $querymodules );
476 $formatmodules = $this->
getMain()->getModuleManager()->getNames(
'format' );
477 sort( $formatmodules );
509 'action=paraminfo&modules=parse|phpfm|query%2Ballpages|query%2Bsiteinfo'
510 =>
'apihelp-paraminfo-example-1',
511 'action=paraminfo&modules=query%2B*'
512 =>
'apihelp-paraminfo-example-2',
517 return 'https://www.mediawiki.org/wiki/API:Parameter_information';
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below...
the array() calling protocol came about after MediaWiki 1.4rc1.
getResult()
Get the result object.
getLanguage()
Get the Language object.
Message subclass that prepends wikitext for API help.
Group all the pieces relevant to the context of a request into one instance.
This class contains a list of pages that the client has requested.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
__construct(ApiMain $main, $action)
static getTitleFor($name, $subpage=false, $fragment= '')
Get a localised Title object for a specified special page name If you don't need a full Title object...
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
getMain()
Get the main module.
const GET_VALUES_FOR_HELP
getAllowedParams() flag: When set, the result could take longer to generate, but should be more thoro...
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
const PARAM_REQUIRED
(boolean) Is the parameter required?
const PARAM_HELP_MSG_INFO
(array) Specify additional information tags for the parameter.
extractRequestParams($parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user...
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
static makeMessage($msg, IContextSource $context, array $params=null)
Create a Message from a string or array.
const TS_ISO_8601
ISO 8601 format with no timezone: 1986-02-09T20:00:00Z.
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED!Use HtmlPageLinkRendererBegin instead.Used when generating internal and interwiki links in Linker::link(), before processing starts.Return false to skip default processing and return $ret.See documentation for Linker::link() for details on the expected meanings of parameters.$skin:the Skin object $target:the Title that the link is pointing to &$html:the contents that the< a > tag should have(raw HTML) $result
usually copyright or history_copyright This message must be in HTML not wikitext & $link
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
const PARAM_SUBMODULE_PARAM_PREFIX
(string) When PARAM_TYPE is 'submodule', used to indicate the 'g' prefix added by ApiQueryGeneratorBa...
static stripOuterParagraph($html)
Strip outer.
const PARAM_RANGE_ENFORCE
(boolean) For PARAM_TYPE 'integer', enforce PARAM_MIN and PARAM_MAX?
formatHelpMessages(array &$res, $key, array $msgs, $joinLists=false)
const LIMIT_SML2
Slow query, apihighlimits limit.
const PARAM_SUBMODULE_MAP
(string[]) When PARAM_TYPE is 'submodule', map parameter values to submodule paths.
This is the main API class, used for both external and internal processing.
static getExtLicenseFileName($extDir)
Obtains the full path of an extensions copying or license file if one exists.
getModuleName()
Get the name of the module being executed by this instance.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books $tag
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right, for PARAM_TYPE 'limit'.
setWarning($warning)
Set warning section for this module.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static setSubelementsList(array &$arr, $names)
Causes the elements with the specified names to be output as subelements rather than attributes...
const LIMIT_SML1
Slow query, standard limit.
getModuleManager()
Get the module manager, or null if this module has no sub-modules.
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
setUser(User $u)
Set the User object.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
This abstract class implements many basic API functions, and is the base of all API classes...
const PARAM_DEPRECATED
(boolean) Is the parameter deprecated (will show a warning)?
listAllSubmodules(ApiBase $module, $recursive)
List all submodules of a module.
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
const PARAM_ALLOW_DUPLICATES
(boolean) Allow the same value to be set more than once when PARAM_ISMULTI is true?
getModuleFromPath($path)
Get a module from its module path.
This exception will be thrown when dieUsage is called to stop module execution.
Allows to change the fields on the form that will be generated $name