5 * Created on Sep 25, 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 * Query module to enumerate all available pages.
32 class ApiQueryAllPages
extends ApiQueryGeneratorBase
{
34 public function __construct( ApiQuery
$query, $moduleName ) {
35 parent
::__construct( $query, $moduleName, 'ap' );
38 public function execute() {
42 public function getCacheMode( $params ) {
47 * @param ApiPageSet $resultPageSet
50 public function executeGenerator( $resultPageSet ) {
51 if ( $resultPageSet->isResolvingRedirects() ) {
53 'Use "gapfilterredir=nonredirects" option instead of "redirects" ' .
54 'when using allpages as a generator',
59 $this->run( $resultPageSet );
63 * @param ApiPageSet $resultPageSet
66 private function run( $resultPageSet = null ) {
69 $params = $this->extractRequestParams();
72 $this->addTables( 'page' );
74 if ( !is_null( $params['continue'] ) ) {
75 $cont = explode( '|', $params['continue'] );
76 $this->dieContinueUsageIf( count( $cont ) != 1 );
77 $op = $params['dir'] == 'descending' ?
'<' : '>';
78 $cont_from = $db->addQuotes( $cont[0] );
79 $this->addWhere( "page_title $op= $cont_from" );
82 if ( $params['filterredir'] == 'redirects' ) {
83 $this->addWhereFld( 'page_is_redirect', 1 );
84 } elseif ( $params['filterredir'] == 'nonredirects' ) {
85 $this->addWhereFld( 'page_is_redirect', 0 );
88 $this->addWhereFld( 'page_namespace', $params['namespace'] );
89 $dir = ( $params['dir'] == 'descending' ?
'older' : 'newer' );
90 $from = ( $params['from'] === null
92 : $this->titlePartToKey( $params['from'], $params['namespace'] ) );
93 $to = ( $params['to'] === null
95 : $this->titlePartToKey( $params['to'], $params['namespace'] ) );
96 $this->addWhereRange( 'page_title', $dir, $from, $to );
98 if ( isset( $params['prefix'] ) ) {
99 $this->addWhere( 'page_title' . $db->buildLike(
100 $this->titlePartToKey( $params['prefix'], $params['namespace'] ),
101 $db->anyString() ) );
104 if ( is_null( $resultPageSet ) ) {
105 $selectFields = array(
111 $selectFields = $resultPageSet->getPageTableFields();
114 $this->addFields( $selectFields );
115 $forceNameTitleIndex = true;
116 if ( isset( $params['minsize'] ) ) {
117 $this->addWhere( 'page_len>=' . intval( $params['minsize'] ) );
118 $forceNameTitleIndex = false;
121 if ( isset( $params['maxsize'] ) ) {
122 $this->addWhere( 'page_len<=' . intval( $params['maxsize'] ) );
123 $forceNameTitleIndex = false;
126 // Page protection filtering
127 if ( count( $params['prtype'] ) ||
$params['prexpiry'] != 'all' ) {
128 $this->addTables( 'page_restrictions' );
129 $this->addWhere( 'page_id=pr_page' );
130 $this->addWhere( "pr_expiry > {$db->addQuotes( $db->timestamp() )} OR pr_expiry IS NULL" );
132 if ( count( $params['prtype'] ) ) {
133 $this->addWhereFld( 'pr_type', $params['prtype'] );
135 if ( isset( $params['prlevel'] ) ) {
136 // Remove the empty string and '*' from the prlevel array
137 $prlevel = array_diff( $params['prlevel'], array( '', '*' ) );
139 if ( count( $prlevel ) ) {
140 $this->addWhereFld( 'pr_level', $prlevel );
143 if ( $params['prfiltercascade'] == 'cascading' ) {
144 $this->addWhereFld( 'pr_cascade', 1 );
145 } elseif ( $params['prfiltercascade'] == 'noncascading' ) {
146 $this->addWhereFld( 'pr_cascade', 0 );
149 $forceNameTitleIndex = false;
151 if ( $params['prexpiry'] == 'indefinite' ) {
152 $this->addWhere( "pr_expiry = {$db->addQuotes( $db->getInfinity() )} OR pr_expiry IS NULL" );
153 } elseif ( $params['prexpiry'] == 'definite' ) {
154 $this->addWhere( "pr_expiry != {$db->addQuotes( $db->getInfinity() )}" );
157 $this->addOption( 'DISTINCT' );
158 } elseif ( isset( $params['prlevel'] ) ) {
159 $this->dieUsage( 'prlevel may not be used without prtype', 'params' );
162 if ( $params['filterlanglinks'] == 'withoutlanglinks' ) {
163 $this->addTables( 'langlinks' );
164 $this->addJoinConds( array( 'langlinks' => array( 'LEFT JOIN', 'page_id=ll_from' ) ) );
165 $this->addWhere( 'll_from IS NULL' );
166 $forceNameTitleIndex = false;
167 } elseif ( $params['filterlanglinks'] == 'withlanglinks' ) {
168 $this->addTables( 'langlinks' );
169 $this->addWhere( 'page_id=ll_from' );
170 $this->addOption( 'STRAIGHT_JOIN' );
172 // MySQL filesorts if we use a GROUP BY that works with the rules
173 // in the 1992 SQL standard (it doesn't like having the
174 // constant-in-WHERE page_namespace column in there). Using the
175 // 1999 rules works fine, but that breaks other DBs. Sigh.
176 /// @todo Once we drop support for 1992-rule DBs, we can simplify this.
177 $dbType = $db->getType();
178 if ( $dbType === 'mysql' ||
$dbType === 'sqlite' ) {
179 // Ignore the rules, or 1999 rules if you count unique keys
180 // over non-NULL columns as satisfying the requirement for
181 // "functional dependency" and don't require including
182 // constant-in-WHERE columns in the GROUP BY.
183 $this->addOption( 'GROUP BY', array( 'page_title' ) );
184 } elseif ( $dbType === 'postgres' && $db->getServerVersion() >= 9.1 ) {
185 // 1999 rules only counting primary keys
186 $this->addOption( 'GROUP BY', array( 'page_title', 'page_id' ) );
189 $this->addOption( 'GROUP BY', $selectFields );
192 $forceNameTitleIndex = false;
195 if ( $forceNameTitleIndex ) {
196 $this->addOption( 'USE INDEX', 'name_title' );
199 $limit = $params['limit'];
200 $this->addOption( 'LIMIT', $limit +
1 );
201 $res = $this->select( __METHOD__
);
203 // Get gender information
204 if ( MWNamespace
::hasGenderDistinction( $params['namespace'] ) ) {
206 foreach ( $res as $row ) {
207 $users[] = $row->page_title
;
209 GenderCache
::singleton()->doQuery( $users, __METHOD__
);
210 $res->rewind(); // reset
214 $result = $this->getResult();
215 foreach ( $res as $row ) {
216 if ( ++
$count > $limit ) {
217 // We've reached the one extra which shows that there are
218 // additional pages to be had. Stop here...
219 $this->setContinueEnumParameter( 'continue', $row->page_title
);
223 if ( is_null( $resultPageSet ) ) {
224 $title = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
226 'pageid' => intval( $row->page_id
),
227 'ns' => intval( $title->getNamespace() ),
228 'title' => $title->getPrefixedText()
230 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $vals );
232 $this->setContinueEnumParameter( 'continue', $row->page_title
);
236 $resultPageSet->processDbRow( $row );
240 if ( is_null( $resultPageSet ) ) {
241 $result->addIndexedTagName( array( 'query', $this->getModuleName() ), 'p' );
245 public function getAllowedParams() {
249 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
253 'namespace' => array(
254 ApiBase
::PARAM_DFLT
=> NS_MAIN
,
255 ApiBase
::PARAM_TYPE
=> 'namespace',
257 'filterredir' => array(
258 ApiBase
::PARAM_DFLT
=> 'all',
259 ApiBase
::PARAM_TYPE
=> array(
266 ApiBase
::PARAM_TYPE
=> 'integer',
269 ApiBase
::PARAM_TYPE
=> 'integer',
272 ApiBase
::PARAM_TYPE
=> Title
::getFilteredRestrictionTypes( true ),
273 ApiBase
::PARAM_ISMULTI
=> true
276 ApiBase
::PARAM_TYPE
=> $this->getConfig()->get( 'RestrictionLevels' ),
277 ApiBase
::PARAM_ISMULTI
=> true
279 'prfiltercascade' => array(
280 ApiBase
::PARAM_DFLT
=> 'all',
281 ApiBase
::PARAM_TYPE
=> array(
288 ApiBase
::PARAM_DFLT
=> 10,
289 ApiBase
::PARAM_TYPE
=> 'limit',
290 ApiBase
::PARAM_MIN
=> 1,
291 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
292 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
295 ApiBase
::PARAM_DFLT
=> 'ascending',
296 ApiBase
::PARAM_TYPE
=> array(
301 'filterlanglinks' => array(
302 ApiBase
::PARAM_TYPE
=> array(
307 ApiBase
::PARAM_DFLT
=> 'all'
310 ApiBase
::PARAM_TYPE
=> array(
315 ApiBase
::PARAM_DFLT
=> 'all'
320 protected function getExamplesMessages() {
322 'action=query&list=allpages&apfrom=B'
323 => 'apihelp-query+allpages-example-B',
324 'action=query&generator=allpages&gaplimit=4&gapfrom=T&prop=info'
325 => 'apihelp-query+allpages-example-generator',
326 'action=query&generator=allpages&gaplimit=2&' .
327 'gapfilterredir=nonredirects&gapfrom=Re&prop=revisions&rvprop=content'
328 => 'apihelp-query+allpages-example-generator-revisions',
332 public function getHelpUrls() {
333 return 'https://www.mediawiki.org/wiki/API:Allpages';