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";
122 $titles = array_filter( $titles,
function (
$t ) use ( $bl_namespace ) {
123 return $t->getNamespace() === $bl_namespace;
125 $map = array_intersect_key( $map, [ $bl_namespace =>
true ] );
127 $bl_from =
"{$p}_from";
132 if ( $params[
'namespace'] !==
null && count( $params[
'namespace'] ) === 0 ) {
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'];
161 $this->
addWhereFld(
'page_namespace', $params[
'namespace'] );
164 $this->
addWhereFld(
"{$p}_from_namespace", $params[
'namespace'] );
165 if ( !empty(
$settings[
'from_namespace'] )
166 && $params[
'namespace'] !==
null && count( $params[
'namespace'] ) > 1
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 ) );
238 foreach ( $titles as
$t ) {
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 ) );
270 list( $idxNoFromNS, $idxWithFromNS ) =
$settings[
'indexes'];
271 if ( $params[
'namespace'] !==
null && !empty(
$settings[
'from_namespace'] ) ) {
284 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
288 if ( is_null( $resultPageSet ) ) {
294 foreach (
$res as $row ) {
295 if ( ++$count > $params[
'limit'] ) {
302 if ( $miser_ns !==
null && !in_array( $row->page_namespace, $miser_ns ) ) {
308 $id = $map[$row->bl_namespace][$row->bl_title];
312 $vals[
'pageid'] = (int)$row->page_id;
319 if ( $fld_fragment && $row->rd_fragment !==
null && $row->rd_fragment !==
'' ) {
320 $vals[
'fragment'] = $row->rd_fragment;
322 if ( $fld_redirect ) {
323 $vals[
'redirect'] = (bool)$row->page_is_redirect;
334 foreach (
$res as $row ) {
335 if ( ++$count > $params[
'limit'] ) {
342 if ( $miser_ns !==
null && !in_array( $row->page_namespace, $miser_ns ) ) {
349 $resultPageSet->populateFromTitles( $titles );
355 foreach ( $sortby as $field => $v ) {
356 $cont[] = $row->$field;
395 if ( empty(
$settings[
'from_namespace'] ) && $this->
getConfig()->
get(
'MiserMode' ) ) {
397 'api-help-param-limited-in-miser-mode',
401 if ( !empty(
$settings[
'showredirects'] ) ) {
412 if ( !empty(
$settings[
'showredirects'] ) ) {
413 $show[] =
'redirect';
414 $show[] =
'!redirect';
417 $show = array_merge( $show,
$settings[
'show'] );
425 unset( $ret[
'show'] );
436 $etitle = rawurlencode(
$title );
439 "action=query&prop={$name}&titles={$etitle}"
440 =>
"apihelp-$path-example-simple",
441 "action=query&generator={$name}&titles={$etitle}&prop=info"
442 =>
"apihelp-$path-example-generator",
448 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.
__construct(ApiQuery $query, $moduleName)
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
executeGenderCacheFromResultWrapper(IResultWrapper $res, $fname=__METHOD__, $fieldPrefix='page')
Preprocess the result set to fill the GenderCache with the necessary information before using self::a...
getPageSet()
Get the PageSet object to work on.
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.
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.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $field => $value ] )
const LIMIT_BIG2
Fast query, apihighlimits limit.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
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.