5 * Created on July 7, 2007
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 * Query module to enumerate links from all pages together.
32 class ApiQueryAllLinks
extends ApiQueryGeneratorBase
{
34 public function __construct( $query, $moduleName ) {
35 switch ( $moduleName ) {
38 $this->table
= 'pagelinks';
39 $this->tablePrefix
= 'pl_';
40 $this->dfltNamespace
= NS_MAIN
;
41 $this->indexTag
= 'l';
42 $this->description
= 'Enumerate all links that point to a given namespace';
43 $this->descriptionWhat
= 'link';
44 $this->descriptionTargets
= 'linked titles';
45 $this->descriptionLinking
= 'linking';
47 case 'alltransclusions':
49 $this->table
= 'templatelinks';
50 $this->tablePrefix
= 'tl_';
51 $this->dfltNamespace
= NS_TEMPLATE
;
52 $this->indexTag
= 't';
53 $this->description
= 'List all transclusions (pages embedded using {{x}}), including non-existing';
54 $this->descriptionWhat
= 'transclusion';
55 $this->descriptionTargets
= 'transcluded titles';
56 $this->descriptionLinking
= 'transcluding';
59 ApiBase
::dieDebug( __METHOD__
, 'Unknown module name' );
62 parent
::__construct( $query, $moduleName, $prefix );
65 public function execute() {
69 public function getCacheMode( $params ) {
73 public function executeGenerator( $resultPageSet ) {
74 $this->run( $resultPageSet );
78 * @param $resultPageSet ApiPageSet
81 private function run( $resultPageSet = null ) {
83 $params = $this->extractRequestParams();
85 $pfx = $this->tablePrefix
;
86 $prop = array_flip( $params['prop'] );
87 $fld_ids = isset( $prop['ids'] );
88 $fld_title = isset( $prop['title'] );
90 if ( $params['unique'] ) {
93 "{$this->getModuleName()} cannot return corresponding page ids in unique {$this->descriptionWhat}s mode",
96 $this->addOption( 'DISTINCT' );
99 $this->addTables( $this->table
);
100 $this->addWhereFld( $pfx . 'namespace', $params['namespace'] );
102 $continue = !is_null( $params['continue'] );
104 $continueArr = explode( '|', $params['continue'] );
105 $op = $params['dir'] == 'descending' ?
'<' : '>';
106 if ( $params['unique'] ) {
107 $this->dieContinueUsageIf( count( $continueArr ) != 1 );
108 $continueTitle = $db->addQuotes( $continueArr[0] );
109 $this->addWhere( "{$pfx}title $op= $continueTitle" );
111 $this->dieContinueUsageIf( count( $continueArr ) != 2 );
112 $continueTitle = $db->addQuotes( $continueArr[0] );
113 $continueFrom = intval( $continueArr[1] );
115 "{$pfx}title $op $continueTitle OR " .
116 "({$pfx}title = $continueTitle AND " .
117 "{$pfx}from $op= $continueFrom)"
122 // 'continue' always overrides 'from'
123 $from = ( $continue ||
is_null( $params['from'] ) ?
null : $this->titlePartToKey( $params['from'] ) );
124 $to = ( is_null( $params['to'] ) ?
null : $this->titlePartToKey( $params['to'] ) );
125 $this->addWhereRange( $pfx . 'title', 'newer', $from, $to );
127 if ( isset( $params['prefix'] ) ) {
128 $this->addWhere( $pfx . 'title' . $db->buildLike( $this->titlePartToKey( $params['prefix'] ), $db->anyString() ) );
131 $this->addFields( array( 'pl_title' => $pfx . 'title' ) );
132 $this->addFieldsIf( array( 'pl_from' => $pfx . 'from' ), !$params['unique'] );
134 $this->addOption( 'USE INDEX', $pfx . 'namespace' );
135 $limit = $params['limit'];
136 $this->addOption( 'LIMIT', $limit +
1 );
138 $sort = ( $params['dir'] == 'descending' ?
' DESC' : '' );
140 $orderBy[] = $pfx . 'title' . $sort;
141 if ( !$params['unique'] ) {
142 $orderBy[] = $pfx . 'from' . $sort;
144 $this->addOption( 'ORDER BY', $orderBy );
146 $res = $this->select( __METHOD__
);
151 $result = $this->getResult();
152 foreach ( $res as $row ) {
153 if ( ++
$count > $limit ) {
154 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
155 if ( $params['unique'] ) {
156 $this->setContinueEnumParameter( 'continue', $row->pl_title
);
158 $this->setContinueEnumParameter( 'continue', $row->pl_title
. '|' . $row->pl_from
);
163 if ( is_null( $resultPageSet ) ) {
166 $vals['fromid'] = intval( $row->pl_from
);
169 $title = Title
::makeTitle( $params['namespace'], $row->pl_title
);
170 ApiQueryBase
::addTitleInfo( $vals, $title );
172 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $vals );
174 if ( $params['unique'] ) {
175 $this->setContinueEnumParameter( 'continue', $row->pl_title
);
177 $this->setContinueEnumParameter( 'continue', $row->pl_title
. '|' . $row->pl_from
);
181 } elseif ( $params['unique'] ) {
182 $titles[] = Title
::makeTitle( $params['namespace'], $row->pl_title
);
184 $pageids[] = $row->pl_from
;
188 if ( is_null( $resultPageSet ) ) {
189 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), $this->indexTag
);
190 } elseif ( $params['unique'] ) {
191 $resultPageSet->populateFromTitles( $titles );
193 $resultPageSet->populateFromPageIDs( $pageids );
197 public function getAllowedParams() {
205 ApiBase
::PARAM_ISMULTI
=> true,
206 ApiBase
::PARAM_DFLT
=> 'title',
207 ApiBase
::PARAM_TYPE
=> array(
212 'namespace' => array(
213 ApiBase
::PARAM_DFLT
=> $this->dfltNamespace
,
214 ApiBase
::PARAM_TYPE
=> 'namespace'
217 ApiBase
::PARAM_DFLT
=> 10,
218 ApiBase
::PARAM_TYPE
=> 'limit',
219 ApiBase
::PARAM_MIN
=> 1,
220 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
221 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
224 ApiBase
::PARAM_DFLT
=> 'ascending',
225 ApiBase
::PARAM_TYPE
=> array(
233 public function getParamDescription() {
234 $p = $this->getModulePrefix();
235 $what = $this->descriptionWhat
;
236 $targets = $this->descriptionTargets
;
237 $linking = $this->descriptionLinking
;
239 'from' => "The title of the $what to start enumerating from",
240 'to' => "The title of the $what to stop enumerating at",
241 'prefix' => "Search for all $targets that begin with this value",
243 "Only show distinct $targets. Cannot be used with {$p}prop=ids.",
244 'When used as a generator, yields target pages instead of source pages.',
247 'What pieces of information to include',
248 " ids - Adds the pageid of the $linking page (Cannot be used with {$p}unique)",
249 " title - Adds the title of the $what",
251 'namespace' => 'The namespace to enumerate',
252 'limit' => 'How many total items to return',
253 'continue' => 'When more results are available, use this to continue',
254 'dir' => 'The direction in which to list',
258 public function getResultProperties() {
261 'fromid' => 'integer'
270 public function getDescription() {
271 return $this->description
;
274 public function getPossibleErrors() {
275 $m = $this->getModuleName();
276 $what = $this->descriptionWhat
;
277 return array_merge( parent
::getPossibleErrors(), array(
278 array( 'code' => 'params', 'info' => "{$m} cannot return corresponding page ids in unique {$what}s mode" ),
282 public function getExamples() {
283 $p = $this->getModulePrefix();
284 $name = $this->getModuleName();
285 $what = $this->descriptionWhat
;
286 $targets = $this->descriptionTargets
;
288 "api.php?action=query&list={$name}&{$p}from=B&{$p}prop=ids|title"
289 => "List $targets with page ids they are from, including missing ones. Start at B",
290 "api.php?action=query&list={$name}&{$p}unique=&{$p}from=B"
291 => "List unique $targets",
292 "api.php?action=query&generator={$name}&g{$p}unique=&g{$p}from=B"
293 => "Gets all $targets, marking the missing ones",
294 "api.php?action=query&generator={$name}&g{$p}from=B"
295 => "Gets pages containing the {$what}s",
299 public function getHelpUrls() {
300 $name = ucfirst( $this->getModuleName() );
301 return "https://www.mediawiki.org/wiki/API:{$name}";