57 'linktbl' =>
'pagelinks',
58 'helpurl' =>
'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Backlinks',
63 'linktbl' =>
'templatelinks',
64 'helpurl' =>
'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Embeddedin',
69 'linktbl' =>
'imagelinks',
70 'helpurl' =>
'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Imageusage',
75 $settings = $this->backlinksSettings[$moduleName];
76 $prefix = $settings[
'prefix'];
77 $code = $settings[
'code'];
78 $this->resultArr = [];
81 $this->bl_ns = $prefix .
'_namespace';
82 $this->bl_from = $prefix .
'_from';
83 $this->bl_from_ns = $prefix .
'_from_namespace';
84 $this->bl_table = $settings[
'linktbl'];
85 $this->bl_code =
$code;
86 $this->helpUrl = $settings[
'helpurl'];
88 $this->hasNS = $moduleName !==
'imageusage';
90 $this->bl_title = $prefix .
'_title';
96 $this->bl_title = $prefix .
'_to';
112 $this->
run( $resultPageSet );
120 $this->
addTables( [ $this->bl_table,
'page' ] );
121 $this->
addWhere(
"{$this->bl_from}=page_id" );
122 if ( is_null( $resultPageSet ) ) {
123 $this->
addFields( [
'page_id',
'page_title',
'page_namespace' ] );
125 $this->
addFields( $resultPageSet->getPageTableFields() );
127 $this->
addFields( [
'page_is_redirect',
'from_ns' =>
'page_namespace' ] );
129 $this->
addWhereFld( $this->bl_title, $this->rootTitle->getDBkey() );
130 if ( $this->hasNS ) {
131 $this->
addWhereFld( $this->bl_ns, $this->rootTitle->getNamespace() );
133 $this->
addWhereFld( $this->bl_from_ns, $this->params[
'namespace'] );
135 if (
count( $this->cont ) >= 2 ) {
136 $op = $this->params[
'dir'] ==
'descending' ?
'<' :
'>';
137 if ( $this->params[
'namespace'] !==
null &&
count( $this->params[
'namespace'] ) > 1 ) {
139 "{$this->bl_from_ns} $op {$this->cont[0]} OR " .
140 "({$this->bl_from_ns} = {$this->cont[0]} AND " .
141 "{$this->bl_from} $op= {$this->cont[1]})"
144 $this->
addWhere(
"{$this->bl_from} $op= {$this->cont[1]}" );
148 if ( $this->params[
'filterredir'] ==
'redirects' ) {
150 } elseif ( $this->params[
'filterredir'] ==
'nonredirects' && !$this->
redirect ) {
156 $this->
addOption(
'LIMIT', $this->params[
'limit'] + 1 );
157 $sort = ( $this->params[
'dir'] ==
'descending' ?
' DESC' :
'' );
159 if ( $this->params[
'namespace'] !==
null &&
count( $this->params[
'namespace'] ) > 1 ) {
160 $orderBy[] = $this->bl_from_ns .
$sort;
162 $orderBy[] = $this->bl_from .
$sort;
163 $this->
addOption(
'ORDER BY', $orderBy );
168 foreach (
$res as $row ) {
169 if ( ++$count > $this->params[
'limit'] ) {
173 $this->continueStr =
"{$row->from_ns}|{$row->page_id}";
178 if (
count( $this->cont ) < 2 ) {
179 $this->cont[] = $row->from_ns;
180 $this->cont[] = $row->page_id;
183 $this->pageMap[$row->page_namespace][$row->page_title] = $row->page_id;
185 if ( $row->page_is_redirect ) {
186 $this->redirTitles[] =
$t;
189 if ( is_null( $resultPageSet ) ) {
190 $a = [
'pageid' => (int)$row->page_id ];
192 if ( $row->page_is_redirect ) {
193 $a[
'redirect'] =
true;
196 $this->resultArr[$a[
'pageid']] = $a;
198 $resultPageSet->processDbRow( $row );
208 $db = $this->
getDB();
209 $this->
addTables( [
'page', $this->bl_table ] );
210 $this->
addWhere(
"{$this->bl_from}=page_id" );
212 if ( is_null( $resultPageSet ) ) {
213 $this->
addFields( [
'page_id',
'page_title',
'page_namespace',
'page_is_redirect' ] );
215 $this->
addFields( $resultPageSet->getPageTableFields() );
218 $this->
addFields( [ $this->bl_title,
'from_ns' =>
'page_namespace' ] );
219 if ( $this->hasNS ) {
228 foreach ( $this->redirTitles
as $t ) {
229 $redirNs =
$t->getNamespace();
230 $redirDBkey =
$t->getDBkey();
231 $titleWhere[] =
"{$this->bl_title} = " . $db->addQuotes( $redirDBkey ) .
232 ( $this->hasNS ?
" AND {$this->bl_ns} = {$redirNs}" :
'' );
233 $allRedirNs[$redirNs] =
true;
234 $allRedirDBkey[$redirDBkey] =
true;
237 $this->
addWhereFld(
'page_namespace', $this->params[
'namespace'] );
239 if (
count( $this->cont ) >= 6 ) {
240 $op = $this->params[
'dir'] ==
'descending' ?
'<' :
'>';
242 $where =
"{$this->bl_from} $op= {$this->cont[5]}";
245 if ( $this->params[
'namespace'] !==
null &&
count( $this->params[
'namespace'] ) > 1 ) {
246 $where =
"{$this->bl_from_ns} $op {$this->cont[4]} OR " .
247 "({$this->bl_from_ns} = {$this->cont[4]} AND ($where))";
249 if (
count( $allRedirDBkey ) > 1 ) {
250 $title = $db->addQuotes( $this->cont[3] );
251 $where =
"{$this->bl_title} $op $title OR " .
252 "({$this->bl_title} = $title AND ($where))";
254 if ( $this->hasNS &&
count( $allRedirNs ) > 1 ) {
255 $where =
"{$this->bl_ns} $op {$this->cont[2]} OR " .
256 "({$this->bl_ns} = {$this->cont[2]} AND ($where))";
261 if ( $this->params[
'filterredir'] ==
'redirects' ) {
263 } elseif ( $this->params[
'filterredir'] ==
'nonredirects' ) {
267 $this->
addOption(
'LIMIT', $this->params[
'limit'] + 1 );
269 $sort = ( $this->params[
'dir'] ==
'descending' ?
' DESC' :
'' );
271 if ( $this->hasNS &&
count( $allRedirNs ) > 1 ) {
272 $orderBy[] = $this->bl_ns .
$sort;
274 if (
count( $allRedirDBkey ) > 1 ) {
275 $orderBy[] = $this->bl_title .
$sort;
277 if ( $this->params[
'namespace'] !==
null &&
count( $this->params[
'namespace'] ) > 1 ) {
278 $orderBy[] = $this->bl_from_ns .
$sort;
280 $orderBy[] = $this->bl_from .
$sort;
281 $this->
addOption(
'ORDER BY', $orderBy );
282 $this->
addOption(
'USE INDEX', [
'page' =>
'PRIMARY' ] );
286 foreach (
$res as $row ) {
287 $ns = $this->hasNS ? $row->{$this->bl_ns} :
NS_FILE;
289 if ( ++$count > $this->params[
'limit'] ) {
294 $title = $row->{$this->bl_title};
295 $this->continueStr = implode(
'|', array_slice( $this->cont, 0, 2 ) ) .
296 "|$ns|$title|{$row->from_ns}|{$row->page_id}";
301 if (
count( $this->cont ) < 6 ) {
303 $this->cont[] = $row->{$this->bl_title};
304 $this->cont[] = $row->from_ns;
305 $this->cont[] = $row->page_id;
308 if ( is_null( $resultPageSet ) ) {
309 $a[
'pageid'] = (int)$row->page_id;
311 if ( $row->page_is_redirect ) {
312 $a[
'redirect'] =
true;
314 $parentID = $this->pageMap[$ns][$row->{$this->bl_title}];
316 $this->resultArr[$parentID][
'redirlinks'][$row->page_id] = $a;
318 $resultPageSet->processDbRow( $row );
327 private function run( $resultPageSet =
null ) {
328 $this->params = $this->extractRequestParams(
false );
329 $this->
redirect = isset( $this->params[
'redirect'] ) && $this->params[
'redirect'];
335 if ( $this->params[
'limit'] ==
'max' ) {
336 $this->params[
'limit'] = $this->getMain()->canApiHighLimits() ? $botMax : $userMax;
337 $result->addParsedLimit( $this->getModuleName(), $this->params[
'limit'] );
339 $this->params[
'limit'] = (int)$this->params[
'limit'];
340 $this->validateLimit(
'limit', $this->params[
'limit'], 1, $userMax, $botMax );
343 $this->rootTitle = $this->getTitleFromTitleOrPageId( $this->params );
346 if ( !$this->hasNS && $this->rootTitle->getNamespace() !==
NS_FILE ) {
348 [
'apierror-imageusage-badtitle', $this->getModuleName() ],
355 if ( $this->params[
'continue'] !==
null ) {
356 $cont = explode(
'|', $this->params[
'continue'] );
358 switch (
count( $cont ) ) {
361 $this->cont[7] = (int)$cont[7];
362 $this->dieContinueUsageIf( $cont[7] !== (
string)$this->cont[7] );
368 $this->cont[6] = (int)$cont[6];
369 $this->dieContinueUsageIf( $cont[6] !== (
string)$this->cont[6] );
375 $this->cont[2] = (int)$cont[2];
376 $this->dieContinueUsageIf( $cont[2] !== (
string)$this->cont[2] );
379 $this->cont[3] = $cont[3];
382 $this->cont[4] = (int)$cont[4];
383 $this->dieContinueUsageIf( $cont[4] !== (
string)$this->cont[4] );
386 $this->cont[5] = (int)$cont[5];
387 $this->dieContinueUsageIf( $cont[5] !== (
string)$this->cont[5] );
393 $this->cont[0] = (int)$cont[0];
394 $this->dieContinueUsageIf( $cont[0] !== (
string)$this->cont[0] );
397 $this->cont[1] = (int)$cont[1];
398 $this->dieContinueUsageIf( $cont[1] !== (
string)$this->cont[1] );
403 $this->dieContinueUsageIf(
true );
406 ksort( $this->cont );
409 $this->runFirstQuery( $resultPageSet );
411 $this->resetQueryParams();
412 $this->runSecondQuery( $resultPageSet );
416 $this->cont += [ 0, 0, 0,
'', 0, 0, 0 ];
418 if ( is_null( $resultPageSet ) ) {
420 $code = $this->bl_code;
422 if ( isset( $arr[
'redirlinks'] ) ) {
423 $arr[
'redirlinks'] = array_values( $arr[
'redirlinks'] );
427 }, array_values( $this->resultArr ) );
428 $fit =
$result->addValue(
'query', $this->getModuleName(),
$data );
432 ksort( $this->resultArr );
433 if (
count( $this->cont ) >= 7 ) {
434 $startAt = $this->cont[6];
436 reset( $this->resultArr );
437 $startAt =
key( $this->resultArr );
440 foreach ( $this->resultArr
as $pageID => $arr ) {
441 if ( $pageID < $startAt ) {
447 [
'query', $this->getModuleName() ],
448 $idx, array_diff_key( $arr, [
'redirlinks' =>
'' ] ) );
450 $this->continueStr = implode(
'|', array_slice( $this->cont, 0, 6 ) ) .
456 $redirLinks = isset( $arr[
'redirlinks'] ) ? (
array)$arr[
'redirlinks'] : [];
457 ksort( $redirLinks );
458 if (
count( $this->cont ) >= 8 && $pageID == $startAt ) {
459 $redirStartAt = $this->cont[7];
461 reset( $redirLinks );
462 $redirStartAt =
key( $redirLinks );
464 foreach ( $redirLinks
as $key => $redir ) {
465 if ( $key < $redirStartAt ) {
470 [
'query', $this->getModuleName(), $idx,
'redirlinks' ],
473 $this->continueStr = implode(
'|', array_slice( $this->cont, 0, 6 ) ) .
481 [
'query', $this->getModuleName(), $idx,
'redirlinks' ],
493 [
'query', $this->getModuleName() ],
497 if ( !is_null( $this->continueStr ) ) {
498 $this->setContinueEnumParameter(
'continue', $this->continueStr );
540 if ( $this->getModuleName() ==
'embeddedin' ) {
543 $retval[
'redirect'] =
false;
551 'action=query&list=backlinks&bltitle=Main%20Page'
552 =>
'apihelp-query+backlinks-example-simple',
553 'action=query&generator=backlinks&gbltitle=Main%20Page&prop=info'
554 =>
'apihelp-query+backlinks-example-generator',
557 'action=query&list=embeddedin&eititle=Template:Stub'
558 =>
'apihelp-query+embeddedin-example-simple',
559 'action=query&generator=embeddedin&geititle=Template:Stub&prop=info'
560 =>
'apihelp-query+embeddedin-example-generator',
563 'action=query&list=imageusage&iutitle=File:Albert%20Einstein%20Head.jpg'
564 =>
'apihelp-query+imageusage-example-simple',
565 'action=query&generator=imageusage&giutitle=File:Albert%20Einstein%20Head.jpg&prop=info'
566 =>
'apihelp-query+imageusage-example-generator',
570 return $examples[$this->getModuleName()];
574 return $this->helpUrl;