3 * API module to handle links table back-queries
5 * Created on Aug 19, 2014
7 * Copyright © 2014 Brad Jorsch <bjorsch@wikimedia.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
29 * This implements prop=redirects, prop=linkshere, prop=catmembers,
30 * prop=transcludedin, and prop=fileusage
35 class ApiQueryBacklinksprop
extends ApiQueryGeneratorBase
{
37 // Data for the various modules implemented by this class
38 private static $settings = [
42 'linktable' => 'redirect',
46 'showredirects' => false,
55 'linktable' => 'pagelinks',
56 'indexes' => [ 'pl_namespace', 'pl_backlinks_namespace' ],
57 'from_namespace' => true,
58 'showredirects' => true,
63 'linktable' => 'templatelinks',
64 'indexes' => [ 'tl_namespace', 'tl_backlinks_namespace' ],
65 'from_namespace' => true,
66 'showredirects' => true,
71 'linktable' => 'imagelinks',
72 'indexes' => [ 'il_to', 'il_backlinks_namespace' ],
73 'from_namespace' => true,
74 'to_namespace' => NS_FILE
,
75 'exampletitle' => 'File:Example.jpg',
76 'showredirects' => true,
80 public function __construct( ApiQuery
$query, $moduleName ) {
81 parent
::__construct( $query, $moduleName, self
::$settings[$moduleName]['code'] );
84 public function execute() {
88 public function executeGenerator( $resultPageSet ) {
89 $this->run( $resultPageSet );
93 * @param ApiPageSet $resultPageSet
95 private function run( ApiPageSet
$resultPageSet = null ) {
96 $settings = self
::$settings[$this->getModuleName()];
99 $params = $this->extractRequestParams();
100 $prop = array_flip( $params['prop'] );
101 $emptyString = $db->addQuotes( '' );
103 $pageSet = $this->getPageSet();
104 $titles = $pageSet->getGoodAndMissingTitles();
105 $map = $pageSet->getGoodAndMissingTitlesByNamespace();
107 // Determine our fields to query on
108 $p = $settings['prefix'];
109 $hasNS = !isset( $settings['to_namespace'] );
111 $bl_namespace = "{$p}_namespace";
112 $bl_title = "{$p}_title";
114 $bl_namespace = $settings['to_namespace'];
115 $bl_title = "{$p}_to";
117 $titles = array_filter( $titles, function ( $t ) use ( $bl_namespace ) {
118 return $t->getNamespace() === $bl_namespace;
120 $map = array_intersect_key( $map, [ $bl_namespace => true ] );
122 $bl_from = "{$p}_from";
125 return; // nothing to do
128 // Figure out what we're sorting by, and add associated WHERE clauses.
129 // MySQL's query planner screws up if we include a field in ORDER BY
130 // when it's constant in WHERE, so we have to test that for each field.
132 if ( $hasNS && count( $map ) > 1 ) {
133 $sortby[$bl_namespace] = 'ns';
136 foreach ( $map as $nsTitles ) {
138 $key = key( $nsTitles );
139 if ( $theTitle === null ) {
142 if ( count( $nsTitles ) > 1 ||
$key !== $theTitle ) {
143 $sortby[$bl_title] = 'title';
148 if ( $params['namespace'] !== null ) {
149 if ( empty( $settings['from_namespace'] ) ) {
150 if ( $this->getConfig()->get( 'MiserMode' ) ) {
151 $miser_ns = $params['namespace'];
153 $this->addWhereFld( 'page_namespace', $params['namespace'] );
156 $this->addWhereFld( "{$p}_from_namespace", $params['namespace'] );
157 if ( !empty( $settings['from_namespace'] ) && count( $params['namespace'] ) > 1 ) {
158 $sortby["{$p}_from_namespace"] = 'int';
162 $sortby[$bl_from] = 'int';
164 // Now use the $sortby to figure out the continuation
165 if ( !is_null( $params['continue'] ) ) {
166 $cont = explode( '|', $params['continue'] );
167 $this->dieContinueUsageIf( count( $cont ) != count( $sortby ) );
169 $i = count( $sortby ) - 1;
170 foreach ( array_reverse( $sortby, true ) as $field => $type ) {
176 $this->dieContinueUsageIf( $v != $cont[$i] );
179 $v = $db->addQuotes( $v );
183 if ( $where === '' ) {
184 $where = "$field >= $v";
186 $where = "$field > $v OR ($field = $v AND ($where))";
191 $this->addWhere( $where );
194 // Populate the rest of the query
195 $this->addTables( [ $settings['linktable'], 'page' ] );
196 $this->addWhere( "$bl_from = page_id" );
198 if ( $this->getModuleName() === 'redirects' ) {
199 $this->addWhere( "rd_interwiki = $emptyString OR rd_interwiki IS NULL" );
202 $this->addFields( array_keys( $sortby ) );
203 $this->addFields( [ 'bl_namespace' => $bl_namespace, 'bl_title' => $bl_title ] );
204 if ( is_null( $resultPageSet ) ) {
205 $fld_pageid = isset( $prop['pageid'] );
206 $fld_title = isset( $prop['title'] );
207 $fld_redirect = isset( $prop['redirect'] );
209 $this->addFieldsIf( 'page_id', $fld_pageid );
210 $this->addFieldsIf( [ 'page_title', 'page_namespace' ], $fld_title );
211 $this->addFieldsIf( 'page_is_redirect', $fld_redirect );
214 $fld_fragment = isset( $prop['fragment'] );
215 $this->addFieldsIf( 'rd_fragment', $fld_fragment );
217 $this->addFields( $resultPageSet->getPageTableFields() );
220 $this->addFieldsIf( 'page_namespace', $miser_ns !== null );
223 $lb = new LinkBatch( $titles );
224 $this->addWhere( $lb->constructSet( $p, $db ) );
227 foreach ( $titles as $t ) {
228 if ( $t->getNamespace() == $bl_namespace ) {
229 $where[] = "$bl_title = " . $db->addQuotes( $t->getDBkey() );
232 $this->addWhere( $db->makeList( $where, LIST_OR
) );
235 if ( $params['show'] !== null ) {
236 // prop=redirects only
237 $show = array_flip( $params['show'] );
238 if ( isset( $show['fragment'] ) && isset( $show['!fragment'] ) ||
239 isset( $show['redirect'] ) && isset( $show['!redirect'] )
241 $this->dieUsageMsg( 'show' );
243 $this->addWhereIf( "rd_fragment != $emptyString", isset( $show['fragment'] ) );
245 "rd_fragment = $emptyString OR rd_fragment IS NULL",
246 isset( $show['!fragment'] )
248 $this->addWhereIf( [ 'page_is_redirect' => 1 ], isset( $show['redirect'] ) );
249 $this->addWhereIf( [ 'page_is_redirect' => 0 ], isset( $show['!redirect'] ) );
252 // Override any ORDER BY from above with what we calculated earlier.
253 $this->addOption( 'ORDER BY', array_keys( $sortby ) );
255 // MySQL's optimizer chokes if we have too many values in "$bl_title IN
256 // (...)" and chooses the wrong index, so specify the correct index to
257 // use for the query. See T139056 for details.
258 if ( !empty( $settings['indexes'] ) ) {
259 list( $idxNoFromNS, $idxWithFromNS ) = $settings['indexes'];
260 if ( $params['namespace'] !== null && !empty( $settings['from_namespace'] ) ) {
261 $this->addOption( 'USE INDEX', [ $settings['linktable'] => $idxWithFromNS ] );
263 $this->addOption( 'USE INDEX', [ $settings['linktable'] => $idxNoFromNS ] );
267 // MySQL (or at least 5.5.5-10.0.23-MariaDB) chooses a really bad query
268 // plan if it thinks there will be more matching rows in the linktable
269 // than are in page. Use STRAIGHT_JOIN here to force it to use the
270 // intended, fast plan. See T145079 for details.
271 $this->addOption( 'STRAIGHT_JOIN' );
273 $this->addOption( 'LIMIT', $params['limit'] +
1 );
275 $res = $this->select( __METHOD__
);
277 if ( is_null( $resultPageSet ) ) {
279 foreach ( $res as $row ) {
280 if ( ++
$count > $params['limit'] ) {
281 // We've reached the one extra which shows that
282 // there are additional pages to be had. Stop here...
283 $this->setContinue( $row, $sortby );
287 if ( $miser_ns !== null && !in_array( $row->page_namespace
, $miser_ns ) ) {
288 // Miser mode namespace check
292 // Get the ID of the current page
293 $id = $map[$row->bl_namespace
][$row->bl_title
];
297 $vals['pageid'] = (int)$row->page_id
;
300 ApiQueryBase
::addTitleInfo( $vals,
301 Title
::makeTitle( $row->page_namespace
, $row->page_title
)
304 if ( $fld_fragment && $row->rd_fragment
!== null && $row->rd_fragment
!== '' ) {
305 $vals['fragment'] = $row->rd_fragment
;
307 if ( $fld_redirect ) {
308 $vals['redirect'] = (bool)$row->page_is_redirect
;
310 $fit = $this->addPageSubItem( $id, $vals );
312 $this->setContinue( $row, $sortby );
319 foreach ( $res as $row ) {
320 if ( ++
$count > $params['limit'] ) {
321 // We've reached the one extra which shows that
322 // there are additional pages to be had. Stop here...
323 $this->setContinue( $row, $sortby );
326 $titles[] = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
328 $resultPageSet->populateFromTitles( $titles );
332 private function setContinue( $row, $sortby ) {
334 foreach ( $sortby as $field => $v ) {
335 $cont[] = $row->$field;
337 $this->setContinueEnumParameter( 'continue', implode( '|', $cont ) );
340 public function getCacheMode( $params ) {
344 public function getAllowedParams() {
345 $settings = self
::$settings[$this->getModuleName()];
349 ApiBase
::PARAM_TYPE
=> [
353 ApiBase
::PARAM_ISMULTI
=> true,
354 ApiBase
::PARAM_DFLT
=> 'pageid|title',
355 ApiBase
::PARAM_HELP_MSG_PER_VALUE
=> [],
358 ApiBase
::PARAM_ISMULTI
=> true,
359 ApiBase
::PARAM_TYPE
=> 'namespace',
361 'show' => null, // Will be filled/removed below
363 ApiBase
::PARAM_DFLT
=> 10,
364 ApiBase
::PARAM_TYPE
=> 'limit',
365 ApiBase
::PARAM_MIN
=> 1,
366 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
367 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
370 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
374 if ( empty( $settings['from_namespace'] ) && $this->getConfig()->get( 'MiserMode' ) ) {
375 $ret['namespace'][ApiBase
::PARAM_HELP_MSG_APPEND
] = [
376 'api-help-param-limited-in-miser-mode',
380 if ( !empty( $settings['showredirects'] ) ) {
381 $ret['prop'][ApiBase
::PARAM_TYPE
][] = 'redirect';
382 $ret['prop'][ApiBase
::PARAM_DFLT
] .= '|redirect';
384 if ( isset( $settings['props'] ) ) {
385 $ret['prop'][ApiBase
::PARAM_TYPE
] = array_merge(
386 $ret['prop'][ApiBase
::PARAM_TYPE
], $settings['props']
391 if ( !empty( $settings['showredirects'] ) ) {
392 $show[] = 'redirect';
393 $show[] = '!redirect';
395 if ( isset( $settings['show'] ) ) {
396 $show = array_merge( $show, $settings['show'] );
400 ApiBase
::PARAM_TYPE
=> $show,
401 ApiBase
::PARAM_ISMULTI
=> true,
404 unset( $ret['show'] );
410 protected function getExamplesMessages() {
411 $settings = self
::$settings[$this->getModuleName()];
412 $name = $this->getModuleName();
413 $path = $this->getModulePath();
414 $title = isset( $settings['exampletitle'] ) ?
$settings['exampletitle'] : 'Main Page';
415 $etitle = rawurlencode( $title );
418 "action=query&prop={$name}&titles={$etitle}"
419 => "apihelp-$path-example-simple",
420 "action=query&generator={$name}&titles={$etitle}&prop=info"
421 => "apihelp-$path-example-generator",
425 public function getHelpUrls() {
426 $name = ucfirst( $this->getModuleName() );
427 return "https://www.mediawiki.org/wiki/API:{$name}";