Go to the documentation of this file.
40 'linktable' =>
'redirect',
44 'showredirects' =>
false,
53 'linktable' =>
'pagelinks',
54 'indexes' => [
'pl_namespace',
'pl_backlinks_namespace' ],
55 'from_namespace' =>
true,
56 'showredirects' =>
true,
61 'linktable' =>
'templatelinks',
62 'indexes' => [
'tl_namespace',
'tl_backlinks_namespace' ],
63 'from_namespace' =>
true,
64 'showredirects' =>
true,
69 'linktable' =>
'imagelinks',
70 'indexes' => [
'il_to',
'il_backlinks_namespace' ],
71 'from_namespace' =>
true,
73 'exampletitle' =>
'File:Example.jpg',
74 'showredirects' =>
true,
79 parent::__construct(
$query, $moduleName, self::$settings[$moduleName][
'code'] );
87 $this->
run( $resultPageSet );
98 $prop = array_flip(
$params[
'prop'] );
99 $emptyString = $db->addQuotes(
'' );
102 $titles = $pageSet->getGoodAndMissingTitles();
103 $map = $pageSet->getGoodAndMissingTitlesByNamespace();
107 foreach ( $pageSet->getSpecialTitles()
as $id =>
$title ) {
114 $hasNS = !isset(
$settings[
'to_namespace'] );
116 $bl_namespace =
"{$p}_namespace";
117 $bl_title =
"{$p}_title";
119 $bl_namespace =
$settings[
'to_namespace'];
120 $bl_title =
"{$p}_to";
123 return $t->getNamespace() === $bl_namespace;
125 $map = array_intersect_key( $map, [ $bl_namespace =>
true ] );
127 $bl_from =
"{$p}_from";
140 if ( $hasNS &&
count( $map ) > 1 ) {
141 $sortby[$bl_namespace] =
'ns';
144 foreach ( $map
as $nsTitles ) {
146 $key =
key( $nsTitles );
147 if ( $theTitle ===
null ) {
150 if (
count( $nsTitles ) > 1 || $key !== $theTitle ) {
151 $sortby[$bl_title] =
'title';
156 if (
$params[
'namespace'] !==
null ) {
157 if ( empty(
$settings[
'from_namespace'] ) ) {
158 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
159 $miser_ns =
$params[
'namespace'];
165 if ( !empty(
$settings[
'from_namespace'] )
168 $sortby[
"{$p}_from_namespace"] =
'int';
172 $sortby[$bl_from] =
'int';
175 if ( !is_null(
$params[
'continue'] ) ) {
176 $cont = explode(
'|',
$params[
'continue'] );
179 $i =
count( $sortby ) - 1;
180 foreach ( array_reverse( $sortby,
true )
as $field =>
$type ) {
189 $v = $db->addQuotes( $v );
196 $where =
"$field > $v OR ($field = $v AND ($where))";
206 $this->
addWhere(
"$bl_from = page_id" );
209 $this->
addWhere(
"rd_interwiki = $emptyString OR rd_interwiki IS NULL" );
212 $this->
addFields( array_keys( $sortby ) );
213 $this->
addFields( [
'bl_namespace' => $bl_namespace,
'bl_title' => $bl_title ] );
214 if ( is_null( $resultPageSet ) ) {
215 $fld_pageid = isset( $prop[
'pageid'] );
216 $fld_title = isset( $prop[
'title'] );
217 $fld_redirect = isset( $prop[
'redirect'] );
220 $this->
addFieldsIf( [
'page_title',
'page_namespace' ], $fld_title );
221 $this->
addFieldsIf(
'page_is_redirect', $fld_redirect );
224 $fld_fragment = isset( $prop[
'fragment'] );
225 $this->
addFieldsIf(
'rd_fragment', $fld_fragment );
227 $this->
addFields( $resultPageSet->getPageTableFields() );
230 $this->
addFieldsIf(
'page_namespace', $miser_ns !==
null );
235 $this->
addWhere( $db->makeWhereFrom2d( $map, $bl_namespace, $bl_title ) );
239 if (
$t->getNamespace() == $bl_namespace ) {
240 $where[] =
"$bl_title = " . $db->addQuotes(
$t->getDBkey() );
246 if (
$params[
'show'] !==
null ) {
248 $show = array_flip(
$params[
'show'] );
249 if ( isset( $show[
'fragment'] ) && isset( $show[
'!fragment'] ) ||
250 isset( $show[
'redirect'] ) && isset( $show[
'!redirect'] )
254 $this->
addWhereIf(
"rd_fragment != $emptyString", isset( $show[
'fragment'] ) );
256 "rd_fragment = $emptyString OR rd_fragment IS NULL",
257 isset( $show[
'!fragment'] )
259 $this->
addWhereIf( [
'page_is_redirect' => 1 ], isset( $show[
'redirect'] ) );
260 $this->
addWhereIf( [
'page_is_redirect' => 0 ], isset( $show[
'!redirect'] ) );
264 $this->
addOption(
'ORDER BY', array_keys( $sortby ) );
271 if (
$params[
'namespace'] !==
null && !empty(
$settings[
'from_namespace'] ) ) {
288 if ( is_null( $resultPageSet ) ) {
290 foreach (
$res as $row ) {
291 if ( ++$count >
$params[
'limit'] ) {
298 if ( $miser_ns !==
null && !in_array( $row->page_namespace, $miser_ns ) ) {
304 $id = $map[$row->bl_namespace][$row->bl_title];
308 $vals[
'pageid'] = (int)$row->page_id;
315 if ( $fld_fragment && $row->rd_fragment !==
null && $row->rd_fragment !==
'' ) {
316 $vals[
'fragment'] = $row->rd_fragment;
318 if ( $fld_redirect ) {
319 $vals[
'redirect'] = (bool)$row->page_is_redirect;
330 foreach (
$res as $row ) {
331 if ( ++$count >
$params[
'limit'] ) {
339 $resultPageSet->populateFromTitles(
$titles );
345 foreach ( $sortby
as $field => $v ) {
346 $cont[] = $row->$field;
385 if ( empty(
$settings[
'from_namespace'] ) && $this->
getConfig()->
get(
'MiserMode' ) ) {
387 'api-help-param-limited-in-miser-mode',
391 if ( !empty(
$settings[
'showredirects'] ) ) {
402 if ( !empty(
$settings[
'showredirects'] ) ) {
403 $show[] =
'redirect';
404 $show[] =
'!redirect';
407 $show = array_merge( $show,
$settings[
'show'] );
415 unset(
$ret[
'show'] );
426 $etitle = rawurlencode(
$title );
429 "action=query&prop={$name}&titles={$etitle}"
430 =>
"apihelp-$path-example-simple",
431 "action=query&generator={$name}&titles={$etitle}&prop=info"
432 =>
"apihelp-$path-example-generator",
438 return "https://www.mediawiki.org/wiki/Special:MyLanguage/API:{$name}";
addFields( $value)
Add a set of fields to select to the internal array.
This is the main query class.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
getExamplesMessages()
Returns usage examples for this module.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
run(ApiPageSet $resultPageSet=null)
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
executeGenerator( $resultPageSet)
Execute this module as a generator.
setContinue( $row, $sortby)
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
addFieldsIf( $value, $condition)
Same as addFields(), but add the fields only if a condition is met.
This class contains a list of pages that the client has requested.
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
__construct(ApiQuery $query, $moduleName)
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
getPageSet()
Get the PageSet object to work on.
namespace and then decline to actually register it file or subcat img or subcat $title
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
getModulePath()
Get the path to this module.
const LIMIT_BIG1
Fast query, standard limit.
getDB()
Get the Query database connection (read-only)
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
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
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
getCacheMode( $params)
Get the cache mode for the data generated by this module.
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
getHelpUrls()
Return links to more detailed help pages about the module.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Allows to change the fields on the form that will be generated $name
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message key
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
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
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
const LIMIT_BIG2
Fast query, apihighlimits limit.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
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
This implements prop=redirects, prop=linkshere, prop=catmembers, prop=transcludedin,...
getModuleName()
Get the name of the module being executed by this instance.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
addWhere( $value)
Add a set of WHERE clauses to the internal array.
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
addWhereIf( $value, $condition)
Same as addWhere(), but add the WHERE clauses only if a condition is met.
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.