5 * Created on Oct 16, 2006
7 * Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
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
28 * This is a three-in-one module to query:
29 * * backlinks - links pointing to the given page,
30 * * embeddedin - what pages transclude the given page within themselves,
31 * * imageusage - what pages use the given image
35 class ApiQueryBacklinks
extends ApiQueryGeneratorBase
{
42 private $params, $contID, $redirID, $redirect;
43 private $bl_ns, $bl_from, $bl_table, $bl_code, $bl_title, $bl_fields, $hasNS;
46 * Maps ns and title to pageid
50 private $pageMap = array();
53 private $redirTitles = array();
54 private $continueStr = null;
56 // output element name, database column field prefix, database table
57 private $backlinksSettings = array(
61 'linktbl' => 'pagelinks',
62 'helpurl' => 'https://www.mediawiki.org/wiki/API:Backlinks',
64 'embeddedin' => array(
67 'linktbl' => 'templatelinks',
68 'helpurl' => 'https://www.mediawiki.org/wiki/API:Embeddedin',
70 'imageusage' => array(
73 'linktbl' => 'imagelinks',
74 'helpurl' => 'https://www.mediawiki.org/wiki/API:Imageusage',
78 public function __construct( $query, $moduleName ) {
79 $settings = $this->backlinksSettings
[$moduleName];
80 $prefix = $settings['prefix'];
81 $code = $settings['code'];
82 $this->resultArr
= array();
84 parent
::__construct( $query, $moduleName, $code );
85 $this->bl_ns
= $prefix . '_namespace';
86 $this->bl_from
= $prefix . '_from';
87 $this->bl_table
= $settings['linktbl'];
88 $this->bl_code
= $code;
89 $this->helpUrl
= $settings['helpurl'];
91 $this->hasNS
= $moduleName !== 'imageusage';
93 $this->bl_title
= $prefix . '_title';
94 $this->bl_fields
= array(
99 $this->bl_title
= $prefix . '_to';
100 $this->bl_fields
= array(
106 public function execute() {
110 public function getCacheMode( $params ) {
114 public function executeGenerator( $resultPageSet ) {
115 $this->run( $resultPageSet );
119 * @param $resultPageSet ApiPageSet
122 private function prepareFirstQuery( $resultPageSet = null ) {
123 /* SELECT page_id, page_title, page_namespace, page_is_redirect
124 * FROM pagelinks, page WHERE pl_from=page_id
125 * AND pl_title='Foo' AND pl_namespace=0
126 * LIMIT 11 ORDER BY pl_from
128 $this->addTables( array( $this->bl_table
, 'page' ) );
129 $this->addWhere( "{$this->bl_from}=page_id" );
130 if ( is_null( $resultPageSet ) ) {
131 $this->addFields( array( 'page_id', 'page_title', 'page_namespace' ) );
133 $this->addFields( $resultPageSet->getPageTableFields() );
136 $this->addFields( 'page_is_redirect' );
137 $this->addWhereFld( $this->bl_title
, $this->rootTitle
->getDBkey() );
139 if ( $this->hasNS
) {
140 $this->addWhereFld( $this->bl_ns
, $this->rootTitle
->getNamespace() );
142 $this->addWhereFld( 'page_namespace', $this->params
['namespace'] );
144 if ( !is_null( $this->contID
) ) {
145 $op = $this->params
['dir'] == 'descending' ?
'<' : '>';
146 $this->addWhere( "{$this->bl_from}$op={$this->contID}" );
149 if ( $this->params
['filterredir'] == 'redirects' ) {
150 $this->addWhereFld( 'page_is_redirect', 1 );
151 } elseif ( $this->params
['filterredir'] == 'nonredirects' && !$this->redirect
) {
152 // bug 22245 - Check for !redirect, as filtering nonredirects, when getting what links to them is contradictory
153 $this->addWhereFld( 'page_is_redirect', 0 );
156 $this->addOption( 'LIMIT', $this->params
['limit'] +
1 );
157 $sort = ( $this->params
['dir'] == 'descending' ?
' DESC' : '' );
158 $this->addOption( 'ORDER BY', $this->bl_from
. $sort );
159 $this->addOption( 'STRAIGHT_JOIN' );
163 * @param $resultPageSet ApiPageSet
166 private function prepareSecondQuery( $resultPageSet = null ) {
167 /* SELECT page_id, page_title, page_namespace, page_is_redirect, pl_title, pl_namespace
168 FROM pagelinks, page WHERE pl_from=page_id
169 AND (pl_title='Foo' AND pl_namespace=0) OR (pl_title='Bar' AND pl_namespace=1)
170 ORDER BY pl_namespace, pl_title, pl_from LIMIT 11
172 $db = $this->getDB();
173 $this->addTables( array( 'page', $this->bl_table
) );
174 $this->addWhere( "{$this->bl_from}=page_id" );
176 if ( is_null( $resultPageSet ) ) {
177 $this->addFields( array( 'page_id', 'page_title', 'page_namespace', 'page_is_redirect' ) );
179 $this->addFields( $resultPageSet->getPageTableFields() );
182 $this->addFields( $this->bl_title
);
183 if ( $this->hasNS
) {
184 $this->addFields( $this->bl_ns
);
187 // We can't use LinkBatch here because $this->hasNS may be false
188 $titleWhere = array();
189 $allRedirNs = array();
190 $allRedirDBkey = array();
192 foreach ( $this->redirTitles
as $t ) {
193 $redirNs = $t->getNamespace();
194 $redirDBkey = $t->getDBkey();
195 $titleWhere[] = "{$this->bl_title} = " . $db->addQuotes( $redirDBkey ) .
196 ( $this->hasNS ?
" AND {$this->bl_ns} = {$redirNs}" : '' );
197 $allRedirNs[] = $redirNs;
198 $allRedirDBkey[] = $redirDBkey;
200 $this->addWhere( $db->makeList( $titleWhere, LIST_OR
) );
201 $this->addWhereFld( 'page_namespace', $this->params
['namespace'] );
203 if ( !is_null( $this->redirID
) ) {
204 $op = $this->params
['dir'] == 'descending' ?
'<' : '>';
205 /** @var $first Title */
206 $first = $this->redirTitles
[0];
207 $title = $db->addQuotes( $first->getDBkey() );
208 $ns = $first->getNamespace();
209 $from = $this->redirID
;
210 if ( $this->hasNS
) {
211 $this->addWhere( "{$this->bl_ns} $op $ns OR " .
212 "({$this->bl_ns} = $ns AND " .
213 "({$this->bl_title} $op $title OR " .
214 "({$this->bl_title} = $title AND " .
215 "{$this->bl_from} $op= $from)))" );
217 $this->addWhere( "{$this->bl_title} $op $title OR " .
218 "({$this->bl_title} = $title AND " .
219 "{$this->bl_from} $op= $from)" );
222 if ( $this->params
['filterredir'] == 'redirects' ) {
223 $this->addWhereFld( 'page_is_redirect', 1 );
224 } elseif ( $this->params
['filterredir'] == 'nonredirects' ) {
225 $this->addWhereFld( 'page_is_redirect', 0 );
228 $this->addOption( 'LIMIT', $this->params
['limit'] +
1 );
230 $sort = ( $this->params
['dir'] == 'descending' ?
' DESC' : '' );
231 // Don't order by namespace/title if it's constant in the WHERE clause
232 if ( $this->hasNS
&& count( array_unique( $allRedirNs ) ) != 1 ) {
233 $orderBy[] = $this->bl_ns
. $sort;
235 if ( count( array_unique( $allRedirDBkey ) ) != 1 ) {
236 $orderBy[] = $this->bl_title
. $sort;
238 $orderBy[] = $this->bl_from
. $sort;
239 $this->addOption( 'ORDER BY', $orderBy );
240 $this->addOption( 'USE INDEX', array( 'page' => 'PRIMARY' ) );
244 * @param $resultPageSet ApiPageSet
247 private function run( $resultPageSet = null ) {
248 $this->params
= $this->extractRequestParams( false );
249 $this->redirect
= isset( $this->params
['redirect'] ) && $this->params
['redirect'];
250 $userMax = ( $this->redirect ? ApiBase
::LIMIT_BIG1
/ 2 : ApiBase
::LIMIT_BIG1
);
251 $botMax = ( $this->redirect ? ApiBase
::LIMIT_BIG2
/ 2 : ApiBase
::LIMIT_BIG2
);
253 $result = $this->getResult();
255 if ( $this->params
['limit'] == 'max' ) {
256 $this->params
['limit'] = $this->getMain()->canApiHighLimits() ?
$botMax : $userMax;
257 $result->setParsedLimit( $this->getModuleName(), $this->params
['limit'] );
260 $this->processContinue();
261 $this->prepareFirstQuery( $resultPageSet );
263 $res = $this->select( __METHOD__
. '::firstQuery' );
267 foreach ( $res as $row ) {
268 if ( ++
$count > $this->params
['limit'] ) {
269 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
270 // Continue string preserved in case the redirect query doesn't pass the limit
271 $this->continueStr
= $this->getContinueStr( $row->page_id
);
275 if ( is_null( $resultPageSet ) ) {
276 $this->extractRowInfo( $row );
278 $this->pageMap
[$row->page_namespace
][$row->page_title
] = $row->page_id
;
279 if ( $row->page_is_redirect
) {
280 $this->redirTitles
[] = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
283 $resultPageSet->processDbRow( $row );
287 if ( $this->redirect
&& count( $this->redirTitles
) ) {
288 $this->resetQueryParams();
289 $this->prepareSecondQuery( $resultPageSet );
290 $res = $this->select( __METHOD__
. '::secondQuery' );
292 foreach ( $res as $row ) {
293 if ( ++
$count > $this->params
['limit'] ) {
294 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
295 // We need to keep the parent page of this redir in
296 if ( $this->hasNS
) {
297 $parentID = $this->pageMap
[$row->{$this->bl_ns
}][$row->{$this->bl_title
}];
299 $parentID = $this->pageMap
[NS_FILE
][$row->{$this->bl_title
}];
301 $this->continueStr
= $this->getContinueRedirStr( $parentID, $row->page_id
);
305 if ( is_null( $resultPageSet ) ) {
306 $this->extractRedirRowInfo( $row );
308 $resultPageSet->processDbRow( $row );
312 if ( is_null( $resultPageSet ) ) {
313 // Try to add the result data in one go and pray that it fits
314 $fit = $result->addValue( 'query', $this->getModuleName(), array_values( $this->resultArr
) );
316 // It didn't fit. Add elements one by one until the
318 foreach ( $this->resultArr
as $pageID => $arr ) {
319 // Add the basic entry without redirlinks first
320 $fit = $result->addValue(
321 array( 'query', $this->getModuleName() ),
322 null, array_diff_key( $arr, array( 'redirlinks' => '' ) ) );
324 $this->continueStr
= $this->getContinueStr( $pageID );
329 $redirLinks = isset( $arr['redirlinks'] ) ?
$arr['redirlinks'] : array();
330 foreach ( (array)$redirLinks as $key => $redir ) {
331 $fit = $result->addValue(
332 array( 'query', $this->getModuleName(), $pageID, 'redirlinks' ),
335 $this->continueStr
= $this->getContinueRedirStr( $pageID, $redir['pageid'] );
341 $result->setIndexedTagName_internal(
342 array( 'query', $this->getModuleName(), $pageID, 'redirlinks' ),
351 $result->setIndexedTagName_internal(
352 array( 'query', $this->getModuleName() ),
356 if ( !is_null( $this->continueStr
) ) {
357 $this->setContinueEnumParameter( 'continue', $this->continueStr
);
361 private function extractRowInfo( $row ) {
362 $this->pageMap
[$row->page_namespace
][$row->page_title
] = $row->page_id
;
363 $t = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
364 $a = array( 'pageid' => intval( $row->page_id
) );
365 ApiQueryBase
::addTitleInfo( $a, $t );
366 if ( $row->page_is_redirect
) {
368 $this->redirTitles
[] = $t;
370 // Put all the results in an array first
371 $this->resultArr
[$a['pageid']] = $a;
374 private function extractRedirRowInfo( $row ) {
375 $a['pageid'] = intval( $row->page_id
);
376 ApiQueryBase
::addTitleInfo( $a, Title
::makeTitle( $row->page_namespace
, $row->page_title
) );
377 if ( $row->page_is_redirect
) {
380 $ns = $this->hasNS ?
$row->{$this->bl_ns
} : NS_FILE
;
381 $parentID = $this->pageMap
[$ns][$row->{$this->bl_title
}];
382 // Put all the results in an array first
383 $this->resultArr
[$parentID]['redirlinks'][] = $a;
384 $this->getResult()->setIndexedTagName( $this->resultArr
[$parentID]['redirlinks'], $this->bl_code
);
387 protected function processContinue() {
388 if ( !is_null( $this->params
['continue'] ) ) {
389 $this->parseContinueParam();
391 $this->rootTitle
= $this->getTitleOrPageId( $this->params
)->getTitle();
394 // only image titles are allowed for the root in imageinfo mode
395 if ( !$this->hasNS
&& $this->rootTitle
->getNamespace() !== NS_FILE
) {
396 $this->dieUsage( "The title for {$this->getModuleName()} query must be an image", 'bad_image_title' );
400 protected function parseContinueParam() {
401 $continueList = explode( '|', $this->params
['continue'] );
403 // ns | key | id1 [| id2]
404 // ns+key: root title
405 // id1: first-level page ID to continue from
406 // id2: second-level page ID to continue from
408 // null stuff out now so we know what's set and what isn't
409 $this->rootTitle
= $this->contID
= $this->redirID
= null;
410 $rootNs = intval( $continueList[0] );
411 $this->dieContinueUsageIf( $rootNs === 0 && $continueList[0] !== '0' );
413 $this->rootTitle
= Title
::makeTitleSafe( $rootNs, $continueList[1] );
414 $this->dieContinueUsageIf( !$this->rootTitle
);
416 $contID = intval( $continueList[2] );
417 $this->dieContinueUsageIf( $contID === 0 && $continueList[2] !== '0' );
419 $this->contID
= $contID;
420 $id2 = isset( $continueList[3] ) ?
$continueList[3] : null;
421 $redirID = intval( $id2 );
423 if ( $redirID === 0 && $id2 !== '0' ) {
424 // This one isn't required
427 $this->redirID
= $redirID;
431 protected function getContinueStr( $lastPageID ) {
432 return $this->rootTitle
->getNamespace() .
433 '|' . $this->rootTitle
->getDBkey() .
437 protected function getContinueRedirStr( $lastPageID, $lastRedirID ) {
438 return $this->getContinueStr( $lastPageID ) . '|' . $lastRedirID;
441 public function getAllowedParams() {
444 ApiBase
::PARAM_TYPE
=> 'string',
447 ApiBase
::PARAM_TYPE
=> 'integer',
450 'namespace' => array(
451 ApiBase
::PARAM_ISMULTI
=> true,
452 ApiBase
::PARAM_TYPE
=> 'namespace'
455 ApiBase
::PARAM_DFLT
=> 'ascending',
456 ApiBase
::PARAM_TYPE
=> array(
461 'filterredir' => array(
462 ApiBase
::PARAM_DFLT
=> 'all',
463 ApiBase
::PARAM_TYPE
=> array(
470 ApiBase
::PARAM_DFLT
=> 10,
471 ApiBase
::PARAM_TYPE
=> 'limit',
472 ApiBase
::PARAM_MIN
=> 1,
473 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
474 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
477 if ( $this->getModuleName() == 'embeddedin' ) {
480 $retval['redirect'] = false;
484 public function getParamDescription() {
486 'title' => "Title to search. Cannot be used together with {$this->bl_code}pageid",
487 'pageid' => "Pageid to search. Cannot be used together with {$this->bl_code}title",
488 'continue' => 'When more results are available, use this to continue',
489 'namespace' => 'The namespace to enumerate',
490 'dir' => 'The direction in which to list',
492 if ( $this->getModuleName() != 'embeddedin' ) {
493 return array_merge( $retval, array(
494 'redirect' => 'If linking page is a redirect, find all pages that link to that redirect as well. Maximum limit is halved.',
495 '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",
496 '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)."
499 return array_merge( $retval, array(
500 'filterredir' => 'How to filter for redirects',
501 'limit' => 'How many total pages to return'
505 public function getResultProperties() {
508 'pageid' => 'integer',
511 'redirect' => 'boolean'
516 public function getDescription() {
517 switch ( $this->getModuleName() ) {
519 return 'Find all pages that link to the given page';
521 return 'Find all pages that embed (transclude) the given title';
523 return 'Find all pages that use the given image title.';
525 ApiBase
::dieDebug( __METHOD__
, 'Unknown module name' );
529 public function getPossibleErrors() {
530 return array_merge( parent
::getPossibleErrors(),
531 $this->getTitleOrPageIdErrorMessage(),
533 array( 'code' => 'bad_image_title', 'info' => "The title for {$this->getModuleName()} query must be an image" ),
538 public function getExamples() {
539 static $examples = array(
540 'backlinks' => array(
541 'api.php?action=query&list=backlinks&bltitle=Main%20Page',
542 'api.php?action=query&generator=backlinks&gbltitle=Main%20Page&prop=info'
544 'embeddedin' => array(
545 'api.php?action=query&list=embeddedin&eititle=Template:Stub',
546 'api.php?action=query&generator=embeddedin&geititle=Template:Stub&prop=info'
548 'imageusage' => array(
549 'api.php?action=query&list=imageusage&iutitle=File:Albert%20Einstein%20Head.jpg',
550 'api.php?action=query&generator=imageusage&giutitle=File:Albert%20Einstein%20Head.jpg&prop=info'
554 return $examples[$this->getModuleName()];
557 public function getHelpUrls() {
558 return $this->helpUrl
;