API: Document the behavior added in r61447
[lhc/web/wiklou.git] / includes / api / ApiQueryBacklinks.php
1 <?php
2
3 /*
4 * Created on Oct 16, 2006
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * http://www.gnu.org/copyleft/gpl.html
24 */
25
26 if ( !defined( 'MEDIAWIKI' ) ) {
27 // Eclipse helper - will be ignored in production
28 require_once ( "ApiQueryBase.php" );
29 }
30
31 /**
32 * This is a three-in-one module to query:
33 * * backlinks - links pointing to the given page,
34 * * embeddedin - what pages transclude the given page within themselves,
35 * * imageusage - what pages use the given image
36 *
37 * @ingroup API
38 */
39 class ApiQueryBacklinks extends ApiQueryGeneratorBase {
40
41 private $params, $rootTitle, $contRedirs, $contLevel, $contTitle, $contID, $redirID, $redirect;
42 private $bl_ns, $bl_from, $bl_table, $bl_code, $bl_title, $bl_sort, $bl_fields, $hasNS;
43 private $pageMap, $resultArr;
44
45 // output element name, database column field prefix, database table
46 private $backlinksSettings = array (
47 'backlinks' => array (
48 'code' => 'bl',
49 'prefix' => 'pl',
50 'linktbl' => 'pagelinks'
51 ),
52 'embeddedin' => array (
53 'code' => 'ei',
54 'prefix' => 'tl',
55 'linktbl' => 'templatelinks'
56 ),
57 'imageusage' => array (
58 'code' => 'iu',
59 'prefix' => 'il',
60 'linktbl' => 'imagelinks'
61 )
62 );
63
64 public function __construct( $query, $moduleName ) {
65 extract( $this->backlinksSettings[$moduleName] );
66 $this->resultArr = array();
67
68 parent :: __construct( $query, $moduleName, $code );
69 $this->bl_ns = $prefix . '_namespace';
70 $this->bl_from = $prefix . '_from';
71 $this->bl_table = $linktbl;
72 $this->bl_code = $code;
73
74 $this->hasNS = $moduleName !== 'imageusage';
75 if ( $this->hasNS ) {
76 $this->bl_title = $prefix . '_title';
77 $this->bl_sort = "{$this->bl_ns}, {$this->bl_title}, {$this->bl_from}";
78 $this->bl_fields = array (
79 $this->bl_ns,
80 $this->bl_title
81 );
82 } else {
83 $this->bl_title = $prefix . '_to';
84 $this->bl_sort = "{$this->bl_title}, {$this->bl_from}";
85 $this->bl_fields = array (
86 $this->bl_title
87 );
88 }
89 }
90
91 public function execute() {
92 $this->run();
93 }
94
95 public function executeGenerator( $resultPageSet ) {
96 $this->run( $resultPageSet );
97 }
98
99 private function prepareFirstQuery( $resultPageSet = null ) {
100 /* SELECT page_id, page_title, page_namespace, page_is_redirect
101 * FROM pagelinks, page WHERE pl_from=page_id
102 * AND pl_title='Foo' AND pl_namespace=0
103 * LIMIT 11 ORDER BY pl_from
104 */
105 $db = $this->getDB();
106 $this->addTables( array( $this->bl_table, 'page' ) );
107 $this->addWhere( "{$this->bl_from}=page_id" );
108 if ( is_null( $resultPageSet ) )
109 $this->addFields( array( 'page_id', 'page_title', 'page_namespace' ) );
110 else
111 $this->addFields( $resultPageSet->getPageTableFields() );
112
113 $this->addFields( 'page_is_redirect' );
114 $this->addWhereFld( $this->bl_title, $this->rootTitle->getDBkey() );
115
116 if ( $this->hasNS )
117 $this->addWhereFld( $this->bl_ns, $this->rootTitle->getNamespace() );
118 $this->addWhereFld( 'page_namespace', $this->params['namespace'] );
119
120 if ( !is_null( $this->contID ) )
121 $this->addWhere( "{$this->bl_from}>={$this->contID}" );
122
123 if ( $this->params['filterredir'] == 'redirects' )
124 $this->addWhereFld( 'page_is_redirect', 1 );
125 else if ( $this->params['filterredir'] == 'nonredirects' && !$this->redirect )
126 //bug 22245 - Check for !redirect, as filtering nonredirects, when getting what links to them is contradictory
127 $this->addWhereFld( 'page_is_redirect', 0 );
128
129 $this->addOption( 'LIMIT', $this->params['limit'] + 1 );
130 $this->addOption( 'ORDER BY', $this->bl_from );
131 $this->addOption( 'STRAIGHT_JOIN' );
132 }
133
134 private function prepareSecondQuery( $resultPageSet = null ) {
135 /* SELECT page_id, page_title, page_namespace, page_is_redirect, pl_title, pl_namespace
136 FROM pagelinks, page WHERE pl_from=page_id
137 AND (pl_title='Foo' AND pl_namespace=0) OR (pl_title='Bar' AND pl_namespace=1)
138 ORDER BY pl_namespace, pl_title, pl_from LIMIT 11
139 */
140 $db = $this->getDB();
141 $this->addTables( array( 'page', $this->bl_table ) );
142 $this->addWhere( "{$this->bl_from}=page_id" );
143
144 if ( is_null( $resultPageSet ) )
145 $this->addFields( array( 'page_id', 'page_title', 'page_namespace', 'page_is_redirect' ) );
146 else
147 $this->addFields( $resultPageSet->getPageTableFields() );
148
149 $this->addFields( $this->bl_title );
150 if ( $this->hasNS )
151 $this->addFields( $this->bl_ns );
152
153 // We can't use LinkBatch here because $this->hasNS may be false
154 $titleWhere = array();
155 foreach ( $this->redirTitles as $t )
156 $titleWhere[] = "{$this->bl_title} = " . $db->addQuotes( $t->getDBkey() ) .
157 ( $this->hasNS ? " AND {$this->bl_ns} = '{$t->getNamespace()}'" : "" );
158 $this->addWhere( $db->makeList( $titleWhere, LIST_OR ) );
159 $this->addWhereFld( 'page_namespace', $this->params['namespace'] );
160
161 if ( !is_null( $this->redirID ) )
162 {
163 $first = $this->redirTitles[0];
164 $title = $db->strencode( $first->getDBkey() );
165 $ns = $first->getNamespace();
166 $from = $this->redirID;
167 if ( $this->hasNS )
168 $this->addWhere( "{$this->bl_ns} > $ns OR " .
169 "({$this->bl_ns} = $ns AND " .
170 "({$this->bl_title} > '$title' OR " .
171 "({$this->bl_title} = '$title' AND " .
172 "{$this->bl_from} >= $from)))" );
173 else
174 $this->addWhere( "{$this->bl_title} > '$title' OR " .
175 "({$this->bl_title} = '$title' AND " .
176 "{$this->bl_from} >= $from)" );
177
178 }
179 if ( $this->params['filterredir'] == 'redirects' )
180 $this->addWhereFld( 'page_is_redirect', 1 );
181 else if ( $this->params['filterredir'] == 'nonredirects' )
182 $this->addWhereFld( 'page_is_redirect', 0 );
183
184 $this->addOption( 'LIMIT', $this->params['limit'] + 1 );
185 $this->addOption( 'ORDER BY', $this->bl_sort );
186 $this->addOption( 'USE INDEX', array( 'page' => 'PRIMARY' ) );
187 }
188
189 private function run( $resultPageSet = null ) {
190 $this->params = $this->extractRequestParams( false );
191 $this->redirect = isset( $this->params['redirect'] ) && $this->params['redirect'];
192 $userMax = ( $this->redirect ? ApiBase::LIMIT_BIG1 / 2 : ApiBase::LIMIT_BIG1 );
193 $botMax = ( $this->redirect ? ApiBase::LIMIT_BIG2 / 2 : ApiBase::LIMIT_BIG2 );
194 if ( $this->params['limit'] == 'max' ) {
195 $this->params['limit'] = $this->getMain()->canApiHighLimits() ? $botMax : $userMax;
196 $this->getResult()->addValue( 'limits', $this->getModuleName(), $this->params['limit'] );
197 }
198
199 $this->processContinue();
200 $this->prepareFirstQuery( $resultPageSet );
201
202 $db = $this->getDB();
203 $res = $this->select( __METHOD__ . '::firstQuery' );
204
205 $count = 0;
206 $this->pageMap = array(); // Maps ns and title to pageid
207 $this->continueStr = null;
208 $this->redirTitles = array();
209 while ( $row = $db->fetchObject( $res ) ) {
210 if ( ++ $count > $this->params['limit'] ) {
211 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
212 // Continue string preserved in case the redirect query doesn't pass the limit
213 $this->continueStr = $this->getContinueStr( $row->page_id );
214 break;
215 }
216
217 if ( is_null( $resultPageSet ) )
218 $this->extractRowInfo( $row );
219 else
220 {
221 $this->pageMap[$row->page_namespace][$row->page_title] = $row->page_id;
222 if ( $row->page_is_redirect )
223 $this->redirTitles[] = Title::makeTitle( $row->page_namespace, $row->page_title );
224 $resultPageSet->processDbRow( $row );
225 }
226 }
227 $db->freeResult( $res );
228
229 if ( $this->redirect && count( $this->redirTitles ) )
230 {
231 $this->resetQueryParams();
232 $this->prepareSecondQuery( $resultPageSet );
233 $res = $this->select( __METHOD__ . '::secondQuery' );
234 $count = 0;
235 while ( $row = $db->fetchObject( $res ) )
236 {
237 if ( ++$count > $this->params['limit'] )
238 {
239 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
240 // We need to keep the parent page of this redir in
241 if ( $this->hasNS )
242 $parentID = $this->pageMap[$row-> { $this->bl_ns } ][$row-> { $this->bl_title } ];
243 else
244 $parentID = $this->pageMap[NS_IMAGE][$row-> { $this->bl_title } ];
245 $this->continueStr = $this->getContinueRedirStr( $parentID, $row->page_id );
246 break;
247 }
248
249 if ( is_null( $resultPageSet ) )
250 $this->extractRedirRowInfo( $row );
251 else
252 $resultPageSet->processDbRow( $row );
253 }
254 $db->freeResult( $res );
255 }
256 if ( is_null( $resultPageSet ) ) {
257 // Try to add the result data in one go and pray that it fits
258 $fit = $this->getResult()->addValue( 'query', $this->getModuleName(), array_values( $this->resultArr ) );
259 if ( !$fit )
260 {
261 // It didn't fit. Add elements one by one until the
262 // result is full.
263 foreach ( $this->resultArr as $pageID => $arr )
264 {
265 // Add the basic entry without redirlinks first
266 $fit = $this->getResult()->addValue(
267 array( 'query', $this->getModuleName() ),
268 null, array_diff_key( $arr, array( 'redirlinks' => '' ) ) );
269 if ( !$fit )
270 {
271 $this->continueStr = $this->getContinueStr( $pageID );
272 break;
273 }
274
275 $hasRedirs = false;
276 foreach ( (array)@$arr['redirlinks'] as $key => $redir )
277 {
278 $fit = $this->getResult()->addValue(
279 array( 'query', $this->getModuleName(), $pageID, 'redirlinks' ),
280 $key, $redir );
281 if ( !$fit )
282 {
283 $this->continueStr = $this->getContinueRedirStr( $pageID, $redir['pageid'] );
284 break;
285 }
286 $hasRedirs = true;
287 }
288 if ( $hasRedirs )
289 $this->getResult()->setIndexedTagName_internal(
290 array( 'query', $this->getModuleName(), $pageID, 'redirlinks' ),
291 $this->bl_code );
292 if ( !$fit )
293 break;
294 }
295 }
296
297 $this->getResult()->setIndexedTagName_internal(
298 array( 'query', $this->getModuleName() ),
299 $this->bl_code );
300 }
301 if ( !is_null( $this->continueStr ) )
302 $this->setContinueEnumParameter( 'continue', $this->continueStr );
303 }
304
305 private function extractRowInfo( $row ) {
306 $this->pageMap[$row->page_namespace][$row->page_title] = $row->page_id;
307 $t = Title::makeTitle( $row->page_namespace, $row->page_title );
308 $a = array( 'pageid' => intval( $row->page_id ) );
309 ApiQueryBase::addTitleInfo( $a, $t );
310 if ( $row->page_is_redirect )
311 {
312 $a['redirect'] = '';
313 $this->redirTitles[] = $t;
314 }
315 // Put all the results in an array first
316 $this->resultArr[$a['pageid']] = $a;
317 }
318
319 private function extractRedirRowInfo( $row )
320 {
321 $a['pageid'] = intval( $row->page_id );
322 ApiQueryBase::addTitleInfo( $a, Title::makeTitle( $row->page_namespace, $row->page_title ) );
323 if ( $row->page_is_redirect )
324 $a['redirect'] = '';
325 $ns = $this->hasNS ? $row-> { $this->bl_ns } : NS_FILE;
326 $parentID = $this->pageMap[$ns][$row-> { $this->bl_title } ];
327 // Put all the results in an array first
328 $this->resultArr[$parentID]['redirlinks'][] = $a;
329 $this->getResult()->setIndexedTagName( $this->resultArr[$parentID]['redirlinks'], $this->bl_code );
330 }
331
332 protected function processContinue() {
333 if ( !is_null( $this->params['continue'] ) )
334 $this->parseContinueParam();
335 else {
336 if ( $this->params['title'] !== "" ) {
337 $title = Title::newFromText( $this->params['title'] );
338 if ( !$title ) {
339 $this->dieUsageMsg( array( 'invalidtitle', $this->params['title'] ) );
340 } else {
341 $this->rootTitle = $title;
342 }
343 } else {
344 $this->dieUsageMsg( array( 'missingparam', 'title' ) );
345 }
346 }
347
348 // only image titles are allowed for the root in imageinfo mode
349 if ( !$this->hasNS && $this->rootTitle->getNamespace() !== NS_FILE )
350 $this->dieUsage( "The title for {$this->getModuleName()} query must be an image", 'bad_image_title' );
351 }
352
353 protected function parseContinueParam() {
354 $continueList = explode( '|', $this->params['continue'] );
355 // expected format:
356 // ns | key | id1 [| id2]
357 // ns+key: root title
358 // id1: first-level page ID to continue from
359 // id2: second-level page ID to continue from
360
361 // null stuff out now so we know what's set and what isn't
362 $this->rootTitle = $this->contID = $this->redirID = null;
363 $rootNs = intval( $continueList[0] );
364 if ( $rootNs === 0 && $continueList[0] !== '0' )
365 // Illegal continue parameter
366 $this->dieUsage( "Invalid continue param. You should pass the original value returned by the previous query", "_badcontinue" );
367 $this->rootTitle = Title::makeTitleSafe( $rootNs, $continueList[1] );
368
369 if ( !$this->rootTitle )
370 $this->dieUsage( "Invalid continue param. You should pass the original value returned by the previous query", "_badcontinue" );
371 $contID = intval( $continueList[2] );
372
373 if ( $contID === 0 && $continueList[2] !== '0' )
374 $this->dieUsage( "Invalid continue param. You should pass the original value returned by the previous query", "_badcontinue" );
375 $this->contID = $contID;
376 $redirID = intval( @$continueList[3] );
377
378 if ( $redirID === 0 && @$continueList[3] !== '0' )
379 // This one isn't required
380 return;
381 $this->redirID = $redirID;
382
383 }
384
385 protected function getContinueStr( $lastPageID ) {
386 return $this->rootTitle->getNamespace() .
387 '|' . $this->rootTitle->getDBkey() .
388 '|' . $lastPageID;
389 }
390
391 protected function getContinueRedirStr( $lastPageID, $lastRedirID ) {
392 return $this->getContinueStr( $lastPageID ) . '|' . $lastRedirID;
393 }
394
395 public function getAllowedParams() {
396 $retval = array (
397 'title' => null,
398 'continue' => null,
399 'namespace' => array (
400 ApiBase :: PARAM_ISMULTI => true,
401 ApiBase :: PARAM_TYPE => 'namespace'
402 ),
403 'filterredir' => array(
404 ApiBase :: PARAM_DFLT => 'all',
405 ApiBase :: PARAM_TYPE => array(
406 'all',
407 'redirects',
408 'nonredirects'
409 )
410 ),
411 'limit' => array (
412 ApiBase :: PARAM_DFLT => 10,
413 ApiBase :: PARAM_TYPE => 'limit',
414 ApiBase :: PARAM_MIN => 1,
415 ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1,
416 ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
417 )
418 );
419 if ( $this->getModuleName() == 'embeddedin' )
420 return $retval;
421 $retval['redirect'] = false;
422 return $retval;
423 }
424
425 public function getParamDescription() {
426 $retval = array (
427 'title' => 'Title to search.',
428 'continue' => 'When more results are available, use this to continue.',
429 'namespace' => 'The namespace to enumerate.',
430 );
431 if ( $this->getModuleName() != 'embeddedin' )
432 return array_merge( $retval, array(
433 'redirect' => 'If linking page is a redirect, find all pages that link to that redirect as well. Maximum limit is halved.',
434 'filterredir' => "How to filter for redirects. If set to nonredirects when {$this->bl_code}redirect is enabled, this is only applied to the second level",
435 'limit' => "How many total pages to return. If {$this->bl_code}redirect is enabled, limit applies to each level separately (which means you may get up to 2 * limit results)."
436 ) );
437 return array_merge( $retval, array(
438 'filterredir' => 'How to filter for redirects',
439 'limit' => 'How many total pages to return.'
440 ) );
441 }
442
443 public function getDescription() {
444 switch ( $this->getModuleName() ) {
445 case 'backlinks' :
446 return 'Find all pages that link to the given page';
447 case 'embeddedin' :
448 return 'Find all pages that embed (transclude) the given title';
449 case 'imageusage' :
450 return 'Find all pages that use the given image title.';
451 default :
452 ApiBase :: dieDebug( __METHOD__, 'Unknown module name' );
453 }
454 }
455
456 protected function getExamples() {
457 static $examples = array (
458 'backlinks' => array (
459 "api.php?action=query&list=backlinks&bltitle=Main%20Page",
460 "api.php?action=query&generator=backlinks&gbltitle=Main%20Page&prop=info"
461 ),
462 'embeddedin' => array (
463 "api.php?action=query&list=embeddedin&eititle=Template:Stub",
464 "api.php?action=query&generator=embeddedin&geititle=Template:Stub&prop=info"
465 ),
466 'imageusage' => array (
467 "api.php?action=query&list=imageusage&iutitle=File:Albert%20Einstein%20Head.jpg",
468 "api.php?action=query&generator=imageusage&giutitle=File:Albert%20Einstein%20Head.jpg&prop=info"
469 )
470 );
471
472 return $examples[$this->getModuleName()];
473 }
474
475 public function getVersion() {
476 return __CLASS__ . ': $Id$';
477 }
478 }