Merge "Add a hook into LanguageConverter#getPreferredVariant() to allow extensions...
[lhc/web/wiklou.git] / includes / api / ApiQueryBacklinksprop.php
1 <?php
2 /**
3 * API module to handle links table back-queries
4 *
5 * Created on Aug 19, 2014
6 *
7 * Copyright © 2014 Wikimedia Foundation and contributors
8 *
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.
13 *
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.
18 *
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
23 *
24 * @file
25 * @since 1.24
26 */
27
28 /**
29 * This implements prop=redirects, prop=linkshere, prop=catmembers,
30 * prop=transcludedin, and prop=fileusage
31 *
32 * @ingroup API
33 * @since 1.24
34 */
35 class ApiQueryBacklinksprop extends ApiQueryGeneratorBase {
36
37 // Data for the various modules implemented by this class
38 private static $settings = [
39 'redirects' => [
40 'code' => 'rd',
41 'prefix' => 'rd',
42 'linktable' => 'redirect',
43 'props' => [
44 'fragment',
45 ],
46 'showredirects' => false,
47 'show' => [
48 'fragment',
49 '!fragment',
50 ],
51 ],
52 'linkshere' => [
53 'code' => 'lh',
54 'prefix' => 'pl',
55 'linktable' => 'pagelinks',
56 'indexes' => [ 'pl_namespace', 'pl_backlinks_namespace' ],
57 'from_namespace' => true,
58 'showredirects' => true,
59 ],
60 'transcludedin' => [
61 'code' => 'ti',
62 'prefix' => 'tl',
63 'linktable' => 'templatelinks',
64 'indexes' => [ 'tl_namespace', 'tl_backlinks_namespace' ],
65 'from_namespace' => true,
66 'showredirects' => true,
67 ],
68 'fileusage' => [
69 'code' => 'fu',
70 'prefix' => 'il',
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,
77 ],
78 ];
79
80 public function __construct( ApiQuery $query, $moduleName ) {
81 parent::__construct( $query, $moduleName, self::$settings[$moduleName]['code'] );
82 }
83
84 public function execute() {
85 $this->run();
86 }
87
88 public function executeGenerator( $resultPageSet ) {
89 $this->run( $resultPageSet );
90 }
91
92 /**
93 * @param ApiPageSet $resultPageSet
94 */
95 private function run( ApiPageSet $resultPageSet = null ) {
96 $settings = self::$settings[$this->getModuleName()];
97
98 $db = $this->getDB();
99 $params = $this->extractRequestParams();
100 $prop = array_flip( $params['prop'] );
101 $emptyString = $db->addQuotes( '' );
102
103 $pageSet = $this->getPageSet();
104 $titles = $pageSet->getGoodAndMissingTitles();
105 $map = $pageSet->getGoodAndMissingTitlesByNamespace();
106
107 // Add in special pages, they can theoretically have backlinks too.
108 // (although currently they only do for prop=redirects)
109 foreach ( $pageSet->getSpecialTitles() as $id => $title ) {
110 $titles[] = $title;
111 $map[$title->getNamespace()][$title->getDBkey()] = $id;
112 }
113
114 // Determine our fields to query on
115 $p = $settings['prefix'];
116 $hasNS = !isset( $settings['to_namespace'] );
117 if ( $hasNS ) {
118 $bl_namespace = "{$p}_namespace";
119 $bl_title = "{$p}_title";
120 } else {
121 $bl_namespace = $settings['to_namespace'];
122 $bl_title = "{$p}_to";
123
124 $titles = array_filter( $titles, function ( $t ) use ( $bl_namespace ) {
125 return $t->getNamespace() === $bl_namespace;
126 } );
127 $map = array_intersect_key( $map, [ $bl_namespace => true ] );
128 }
129 $bl_from = "{$p}_from";
130
131 if ( !$titles ) {
132 return; // nothing to do
133 }
134
135 // Figure out what we're sorting by, and add associated WHERE clauses.
136 // MySQL's query planner screws up if we include a field in ORDER BY
137 // when it's constant in WHERE, so we have to test that for each field.
138 $sortby = [];
139 if ( $hasNS && count( $map ) > 1 ) {
140 $sortby[$bl_namespace] = 'ns';
141 }
142 $theTitle = null;
143 foreach ( $map as $nsTitles ) {
144 reset( $nsTitles );
145 $key = key( $nsTitles );
146 if ( $theTitle === null ) {
147 $theTitle = $key;
148 }
149 if ( count( $nsTitles ) > 1 || $key !== $theTitle ) {
150 $sortby[$bl_title] = 'title';
151 break;
152 }
153 }
154 $miser_ns = null;
155 if ( $params['namespace'] !== null ) {
156 if ( empty( $settings['from_namespace'] ) ) {
157 if ( $this->getConfig()->get( 'MiserMode' ) ) {
158 $miser_ns = $params['namespace'];
159 } else {
160 $this->addWhereFld( 'page_namespace', $params['namespace'] );
161 }
162 } else {
163 $this->addWhereFld( "{$p}_from_namespace", $params['namespace'] );
164 if ( !empty( $settings['from_namespace'] )
165 && $params['namespace'] !== null && count( $params['namespace'] ) > 1
166 ) {
167 $sortby["{$p}_from_namespace"] = 'int';
168 }
169 }
170 }
171 $sortby[$bl_from] = 'int';
172
173 // Now use the $sortby to figure out the continuation
174 if ( !is_null( $params['continue'] ) ) {
175 $cont = explode( '|', $params['continue'] );
176 $this->dieContinueUsageIf( count( $cont ) != count( $sortby ) );
177 $where = '';
178 $i = count( $sortby ) - 1;
179 foreach ( array_reverse( $sortby, true ) as $field => $type ) {
180 $v = $cont[$i];
181 switch ( $type ) {
182 case 'ns':
183 case 'int':
184 $v = (int)$v;
185 $this->dieContinueUsageIf( $v != $cont[$i] );
186 break;
187 default:
188 $v = $db->addQuotes( $v );
189 break;
190 }
191
192 if ( $where === '' ) {
193 $where = "$field >= $v";
194 } else {
195 $where = "$field > $v OR ($field = $v AND ($where))";
196 }
197
198 $i--;
199 }
200 $this->addWhere( $where );
201 }
202
203 // Populate the rest of the query
204 $this->addTables( [ $settings['linktable'], 'page' ] );
205 $this->addWhere( "$bl_from = page_id" );
206
207 if ( $this->getModuleName() === 'redirects' ) {
208 $this->addWhere( "rd_interwiki = $emptyString OR rd_interwiki IS NULL" );
209 }
210
211 $this->addFields( array_keys( $sortby ) );
212 $this->addFields( [ 'bl_namespace' => $bl_namespace, 'bl_title' => $bl_title ] );
213 if ( is_null( $resultPageSet ) ) {
214 $fld_pageid = isset( $prop['pageid'] );
215 $fld_title = isset( $prop['title'] );
216 $fld_redirect = isset( $prop['redirect'] );
217
218 $this->addFieldsIf( 'page_id', $fld_pageid );
219 $this->addFieldsIf( [ 'page_title', 'page_namespace' ], $fld_title );
220 $this->addFieldsIf( 'page_is_redirect', $fld_redirect );
221
222 // prop=redirects
223 $fld_fragment = isset( $prop['fragment'] );
224 $this->addFieldsIf( 'rd_fragment', $fld_fragment );
225 } else {
226 $this->addFields( $resultPageSet->getPageTableFields() );
227 }
228
229 $this->addFieldsIf( 'page_namespace', $miser_ns !== null );
230
231 if ( $hasNS ) {
232 // Can't use LinkBatch because it throws away Special titles.
233 // And we already have the needed data structure anyway.
234 $this->addWhere( $db->makeWhereFrom2d( $map, $bl_namespace, $bl_title ) );
235 } else {
236 $where = [];
237 foreach ( $titles as $t ) {
238 if ( $t->getNamespace() == $bl_namespace ) {
239 $where[] = "$bl_title = " . $db->addQuotes( $t->getDBkey() );
240 }
241 }
242 $this->addWhere( $db->makeList( $where, LIST_OR ) );
243 }
244
245 if ( $params['show'] !== null ) {
246 // prop=redirects only
247 $show = array_flip( $params['show'] );
248 if ( isset( $show['fragment'] ) && isset( $show['!fragment'] ) ||
249 isset( $show['redirect'] ) && isset( $show['!redirect'] )
250 ) {
251 $this->dieWithError( 'apierror-show' );
252 }
253 $this->addWhereIf( "rd_fragment != $emptyString", isset( $show['fragment'] ) );
254 $this->addWhereIf(
255 "rd_fragment = $emptyString OR rd_fragment IS NULL",
256 isset( $show['!fragment'] )
257 );
258 $this->addWhereIf( [ 'page_is_redirect' => 1 ], isset( $show['redirect'] ) );
259 $this->addWhereIf( [ 'page_is_redirect' => 0 ], isset( $show['!redirect'] ) );
260 }
261
262 // Override any ORDER BY from above with what we calculated earlier.
263 $this->addOption( 'ORDER BY', array_keys( $sortby ) );
264
265 // MySQL's optimizer chokes if we have too many values in "$bl_title IN
266 // (...)" and chooses the wrong index, so specify the correct index to
267 // use for the query. See T139056 for details.
268 if ( !empty( $settings['indexes'] ) ) {
269 list( $idxNoFromNS, $idxWithFromNS ) = $settings['indexes'];
270 if ( $params['namespace'] !== null && !empty( $settings['from_namespace'] ) ) {
271 $this->addOption( 'USE INDEX', [ $settings['linktable'] => $idxWithFromNS ] );
272 } else {
273 $this->addOption( 'USE INDEX', [ $settings['linktable'] => $idxNoFromNS ] );
274 }
275 }
276
277 // MySQL (or at least 5.5.5-10.0.23-MariaDB) chooses a really bad query
278 // plan if it thinks there will be more matching rows in the linktable
279 // than are in page. Use STRAIGHT_JOIN here to force it to use the
280 // intended, fast plan. See T145079 for details.
281 $this->addOption( 'STRAIGHT_JOIN' );
282
283 $this->addOption( 'LIMIT', $params['limit'] + 1 );
284
285 $res = $this->select( __METHOD__ );
286
287 if ( is_null( $resultPageSet ) ) {
288 $count = 0;
289 foreach ( $res as $row ) {
290 if ( ++$count > $params['limit'] ) {
291 // We've reached the one extra which shows that
292 // there are additional pages to be had. Stop here...
293 $this->setContinue( $row, $sortby );
294 break;
295 }
296
297 if ( $miser_ns !== null && !in_array( $row->page_namespace, $miser_ns ) ) {
298 // Miser mode namespace check
299 continue;
300 }
301
302 // Get the ID of the current page
303 $id = $map[$row->bl_namespace][$row->bl_title];
304
305 $vals = [];
306 if ( $fld_pageid ) {
307 $vals['pageid'] = (int)$row->page_id;
308 }
309 if ( $fld_title ) {
310 ApiQueryBase::addTitleInfo( $vals,
311 Title::makeTitle( $row->page_namespace, $row->page_title )
312 );
313 }
314 if ( $fld_fragment && $row->rd_fragment !== null && $row->rd_fragment !== '' ) {
315 $vals['fragment'] = $row->rd_fragment;
316 }
317 if ( $fld_redirect ) {
318 $vals['redirect'] = (bool)$row->page_is_redirect;
319 }
320 $fit = $this->addPageSubItem( $id, $vals );
321 if ( !$fit ) {
322 $this->setContinue( $row, $sortby );
323 break;
324 }
325 }
326 } else {
327 $titles = [];
328 $count = 0;
329 foreach ( $res as $row ) {
330 if ( ++$count > $params['limit'] ) {
331 // We've reached the one extra which shows that
332 // there are additional pages to be had. Stop here...
333 $this->setContinue( $row, $sortby );
334 break;
335 }
336 $titles[] = Title::makeTitle( $row->page_namespace, $row->page_title );
337 }
338 $resultPageSet->populateFromTitles( $titles );
339 }
340 }
341
342 private function setContinue( $row, $sortby ) {
343 $cont = [];
344 foreach ( $sortby as $field => $v ) {
345 $cont[] = $row->$field;
346 }
347 $this->setContinueEnumParameter( 'continue', implode( '|', $cont ) );
348 }
349
350 public function getCacheMode( $params ) {
351 return 'public';
352 }
353
354 public function getAllowedParams() {
355 $settings = self::$settings[$this->getModuleName()];
356
357 $ret = [
358 'prop' => [
359 ApiBase::PARAM_TYPE => [
360 'pageid',
361 'title',
362 ],
363 ApiBase::PARAM_ISMULTI => true,
364 ApiBase::PARAM_DFLT => 'pageid|title',
365 ApiBase::PARAM_HELP_MSG_PER_VALUE => [],
366 ],
367 'namespace' => [
368 ApiBase::PARAM_ISMULTI => true,
369 ApiBase::PARAM_TYPE => 'namespace',
370 ],
371 'show' => null, // Will be filled/removed below
372 'limit' => [
373 ApiBase::PARAM_DFLT => 10,
374 ApiBase::PARAM_TYPE => 'limit',
375 ApiBase::PARAM_MIN => 1,
376 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
377 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
378 ],
379 'continue' => [
380 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
381 ],
382 ];
383
384 if ( empty( $settings['from_namespace'] ) && $this->getConfig()->get( 'MiserMode' ) ) {
385 $ret['namespace'][ApiBase::PARAM_HELP_MSG_APPEND] = [
386 'api-help-param-limited-in-miser-mode',
387 ];
388 }
389
390 if ( !empty( $settings['showredirects'] ) ) {
391 $ret['prop'][ApiBase::PARAM_TYPE][] = 'redirect';
392 $ret['prop'][ApiBase::PARAM_DFLT] .= '|redirect';
393 }
394 if ( isset( $settings['props'] ) ) {
395 $ret['prop'][ApiBase::PARAM_TYPE] = array_merge(
396 $ret['prop'][ApiBase::PARAM_TYPE], $settings['props']
397 );
398 }
399
400 $show = [];
401 if ( !empty( $settings['showredirects'] ) ) {
402 $show[] = 'redirect';
403 $show[] = '!redirect';
404 }
405 if ( isset( $settings['show'] ) ) {
406 $show = array_merge( $show, $settings['show'] );
407 }
408 if ( $show ) {
409 $ret['show'] = [
410 ApiBase::PARAM_TYPE => $show,
411 ApiBase::PARAM_ISMULTI => true,
412 ];
413 } else {
414 unset( $ret['show'] );
415 }
416
417 return $ret;
418 }
419
420 protected function getExamplesMessages() {
421 $settings = self::$settings[$this->getModuleName()];
422 $name = $this->getModuleName();
423 $path = $this->getModulePath();
424 $title = isset( $settings['exampletitle'] ) ? $settings['exampletitle'] : 'Main Page';
425 $etitle = rawurlencode( $title );
426
427 return [
428 "action=query&prop={$name}&titles={$etitle}"
429 => "apihelp-$path-example-simple",
430 "action=query&generator={$name}&titles={$etitle}&prop=info"
431 => "apihelp-$path-example-generator",
432 ];
433 }
434
435 public function getHelpUrls() {
436 $name = ucfirst( $this->getModuleName() );
437 return "https://www.mediawiki.org/wiki/Special:MyLanguage/API:{$name}";
438 }
439 }