MediaWiki REL1_30
ApiQueryAllPages.php
Go to the documentation of this file.
1<?php
27
34
35 public function __construct( ApiQuery $query, $moduleName ) {
36 parent::__construct( $query, $moduleName, 'ap' );
37 }
38
39 public function execute() {
40 $this->run();
41 }
42
43 public function getCacheMode( $params ) {
44 return 'public';
45 }
46
51 public function executeGenerator( $resultPageSet ) {
52 if ( $resultPageSet->isResolvingRedirects() ) {
53 $this->dieWithError( 'apierror-allpages-generator-redirects', 'params' );
54 }
55
56 $this->run( $resultPageSet );
57 }
58
63 private function run( $resultPageSet = null ) {
64 $db = $this->getDB();
65
67
68 // Page filters
69 $this->addTables( 'page' );
70
71 if ( !is_null( $params['continue'] ) ) {
72 $cont = explode( '|', $params['continue'] );
73 $this->dieContinueUsageIf( count( $cont ) != 1 );
74 $op = $params['dir'] == 'descending' ? '<' : '>';
75 $cont_from = $db->addQuotes( $cont[0] );
76 $this->addWhere( "page_title $op= $cont_from" );
77 }
78
79 $miserMode = $this->getConfig()->get( 'MiserMode' );
80 if ( !$miserMode ) {
81 if ( $params['filterredir'] == 'redirects' ) {
82 $this->addWhereFld( 'page_is_redirect', 1 );
83 } elseif ( $params['filterredir'] == 'nonredirects' ) {
84 $this->addWhereFld( 'page_is_redirect', 0 );
85 }
86 }
87
88 $this->addWhereFld( 'page_namespace', $params['namespace'] );
89 $dir = ( $params['dir'] == 'descending' ? 'older' : 'newer' );
90 $from = ( $params['from'] === null
91 ? null
92 : $this->titlePartToKey( $params['from'], $params['namespace'] ) );
93 $to = ( $params['to'] === null
94 ? null
95 : $this->titlePartToKey( $params['to'], $params['namespace'] ) );
96 $this->addWhereRange( 'page_title', $dir, $from, $to );
97
98 if ( isset( $params['prefix'] ) ) {
99 $this->addWhere( 'page_title' . $db->buildLike(
100 $this->titlePartToKey( $params['prefix'], $params['namespace'] ),
101 $db->anyString() ) );
102 }
103
104 if ( is_null( $resultPageSet ) ) {
105 $selectFields = [
106 'page_namespace',
107 'page_title',
108 'page_id'
109 ];
110 } else {
111 $selectFields = $resultPageSet->getPageTableFields();
112 }
113
114 $miserModeFilterRedirValue = null;
115 $miserModeFilterRedir = $miserMode && $params['filterredir'] !== 'all';
116 if ( $miserModeFilterRedir ) {
117 $selectFields[] = 'page_is_redirect';
118
119 if ( $params['filterredir'] == 'redirects' ) {
120 $miserModeFilterRedirValue = 1;
121 } elseif ( $params['filterredir'] == 'nonredirects' ) {
122 $miserModeFilterRedirValue = 0;
123 }
124 }
125
126 $this->addFields( $selectFields );
127 $forceNameTitleIndex = true;
128 if ( isset( $params['minsize'] ) ) {
129 $this->addWhere( 'page_len>=' . intval( $params['minsize'] ) );
130 $forceNameTitleIndex = false;
131 }
132
133 if ( isset( $params['maxsize'] ) ) {
134 $this->addWhere( 'page_len<=' . intval( $params['maxsize'] ) );
135 $forceNameTitleIndex = false;
136 }
137
138 // Page protection filtering
139 if ( count( $params['prtype'] ) || $params['prexpiry'] != 'all' ) {
140 $this->addTables( 'page_restrictions' );
141 $this->addWhere( 'page_id=pr_page' );
142 $this->addWhere( "pr_expiry > {$db->addQuotes( $db->timestamp() )} OR pr_expiry IS NULL" );
143
144 if ( count( $params['prtype'] ) ) {
145 $this->addWhereFld( 'pr_type', $params['prtype'] );
146
147 if ( isset( $params['prlevel'] ) ) {
148 // Remove the empty string and '*' from the prlevel array
149 $prlevel = array_diff( $params['prlevel'], [ '', '*' ] );
150
151 if ( count( $prlevel ) ) {
152 $this->addWhereFld( 'pr_level', $prlevel );
153 }
154 }
155 if ( $params['prfiltercascade'] == 'cascading' ) {
156 $this->addWhereFld( 'pr_cascade', 1 );
157 } elseif ( $params['prfiltercascade'] == 'noncascading' ) {
158 $this->addWhereFld( 'pr_cascade', 0 );
159 }
160 }
161 $forceNameTitleIndex = false;
162
163 if ( $params['prexpiry'] == 'indefinite' ) {
164 $this->addWhere( "pr_expiry = {$db->addQuotes( $db->getInfinity() )} OR pr_expiry IS NULL" );
165 } elseif ( $params['prexpiry'] == 'definite' ) {
166 $this->addWhere( "pr_expiry != {$db->addQuotes( $db->getInfinity() )}" );
167 }
168
169 $this->addOption( 'DISTINCT' );
170 } elseif ( isset( $params['prlevel'] ) ) {
171 $this->dieWithError(
172 [ 'apierror-invalidparammix-mustusewith', 'prlevel', 'prtype' ], 'invalidparammix'
173 );
174 }
175
176 if ( $params['filterlanglinks'] == 'withoutlanglinks' ) {
177 $this->addTables( 'langlinks' );
178 $this->addJoinConds( [ 'langlinks' => [ 'LEFT JOIN', 'page_id=ll_from' ] ] );
179 $this->addWhere( 'll_from IS NULL' );
180 $forceNameTitleIndex = false;
181 } elseif ( $params['filterlanglinks'] == 'withlanglinks' ) {
182 $this->addTables( 'langlinks' );
183 $this->addWhere( 'page_id=ll_from' );
184 $this->addOption( 'STRAIGHT_JOIN' );
185
186 // MySQL filesorts if we use a GROUP BY that works with the rules
187 // in the 1992 SQL standard (it doesn't like having the
188 // constant-in-WHERE page_namespace column in there). Using the
189 // 1999 rules works fine, but that breaks other DBs. Sigh.
191 $dbType = $db->getType();
192 if ( $dbType === 'mysql' || $dbType === 'sqlite' ) {
193 // Ignore the rules, or 1999 rules if you count unique keys
194 // over non-NULL columns as satisfying the requirement for
195 // "functional dependency" and don't require including
196 // constant-in-WHERE columns in the GROUP BY.
197 $this->addOption( 'GROUP BY', [ 'page_title' ] );
198 } elseif ( $dbType === 'postgres' && $db->getServerVersion() >= 9.1 ) {
199 // 1999 rules only counting primary keys
200 $this->addOption( 'GROUP BY', [ 'page_title', 'page_id' ] );
201 } else {
202 // 1992 rules
203 $this->addOption( 'GROUP BY', $selectFields );
204 }
205
206 $forceNameTitleIndex = false;
207 }
208
209 if ( $forceNameTitleIndex ) {
210 $this->addOption( 'USE INDEX', 'name_title' );
211 }
212
213 $limit = $params['limit'];
214 $this->addOption( 'LIMIT', $limit + 1 );
215 $res = $this->select( __METHOD__ );
216
217 // Get gender information
218 if ( MWNamespace::hasGenderDistinction( $params['namespace'] ) ) {
219 $users = [];
220 foreach ( $res as $row ) {
221 $users[] = $row->page_title;
222 }
223 MediaWikiServices::getInstance()->getGenderCache()->doQuery( $users, __METHOD__ );
224 $res->rewind(); // reset
225 }
226
227 $count = 0;
228 $result = $this->getResult();
229 foreach ( $res as $row ) {
230 if ( ++$count > $limit ) {
231 // We've reached the one extra which shows that there are
232 // additional pages to be had. Stop here...
233 $this->setContinueEnumParameter( 'continue', $row->page_title );
234 break;
235 }
236
237 if ( $miserModeFilterRedir && (int)$row->page_is_redirect !== $miserModeFilterRedirValue ) {
238 // Filter implemented in PHP due to being in Miser Mode
239 continue;
240 }
241
242 if ( is_null( $resultPageSet ) ) {
243 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
244 $vals = [
245 'pageid' => intval( $row->page_id ),
246 'ns' => intval( $title->getNamespace() ),
247 'title' => $title->getPrefixedText()
248 ];
249 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $vals );
250 if ( !$fit ) {
251 $this->setContinueEnumParameter( 'continue', $row->page_title );
252 break;
253 }
254 } else {
255 $resultPageSet->processDbRow( $row );
256 }
257 }
258
259 if ( is_null( $resultPageSet ) ) {
260 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'p' );
261 }
262 }
263
264 public function getAllowedParams() {
265 $ret = [
266 'from' => null,
267 'continue' => [
268 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
269 ],
270 'to' => null,
271 'prefix' => null,
272 'namespace' => [
274 ApiBase::PARAM_TYPE => 'namespace',
275 ],
276 'filterredir' => [
277 ApiBase::PARAM_DFLT => 'all',
278 ApiBase::PARAM_TYPE => [
279 'all',
280 'redirects',
281 'nonredirects'
282 ]
283 ],
284 'minsize' => [
285 ApiBase::PARAM_TYPE => 'integer',
286 ],
287 'maxsize' => [
288 ApiBase::PARAM_TYPE => 'integer',
289 ],
290 'prtype' => [
291 ApiBase::PARAM_TYPE => Title::getFilteredRestrictionTypes( true ),
293 ],
294 'prlevel' => [
295 ApiBase::PARAM_TYPE => $this->getConfig()->get( 'RestrictionLevels' ),
297 ],
298 'prfiltercascade' => [
299 ApiBase::PARAM_DFLT => 'all',
300 ApiBase::PARAM_TYPE => [
301 'cascading',
302 'noncascading',
303 'all'
304 ],
305 ],
306 'limit' => [
308 ApiBase::PARAM_TYPE => 'limit',
312 ],
313 'dir' => [
314 ApiBase::PARAM_DFLT => 'ascending',
316 'ascending',
317 'descending'
318 ]
319 ],
320 'filterlanglinks' => [
322 'withlanglinks',
323 'withoutlanglinks',
324 'all'
325 ],
326 ApiBase::PARAM_DFLT => 'all'
327 ],
328 'prexpiry' => [
330 'indefinite',
331 'definite',
332 'all'
333 ],
334 ApiBase::PARAM_DFLT => 'all'
335 ],
336 ];
337
338 if ( $this->getConfig()->get( 'MiserMode' ) ) {
339 $ret['filterredir'][ApiBase::PARAM_HELP_MSG_APPEND] = [ 'api-help-param-limited-in-miser-mode' ];
340 }
341
342 return $ret;
343 }
344
345 protected function getExamplesMessages() {
346 return [
347 'action=query&list=allpages&apfrom=B'
348 => 'apihelp-query+allpages-example-B',
349 'action=query&generator=allpages&gaplimit=4&gapfrom=T&prop=info'
350 => 'apihelp-query+allpages-example-generator',
351 'action=query&generator=allpages&gaplimit=2&' .
352 'gapfilterredir=nonredirects&gapfrom=Re&prop=revisions&rvprop=content'
353 => 'apihelp-query+allpages-example-generator-revisions',
354 ];
355 }
356
357 public function getHelpUrls() {
358 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Allpages';
359 }
360}
$dir
Definition Autoload.php:8
and give any other recipients of the Program a copy of this License along with the Program You may charge a fee for the physical act of transferring a and you may at your option offer warranty protection in exchange for a fee You may modify your copy or copies of the Program or any portion of thus forming a work based on the and copy and distribute such modifications or work under the terms of Section provided that you also meet all of these that in whole or in part contains or is derived from the Program or any part to be licensed as a whole at no charge to all third parties under the terms of this License c If the modified program normally reads commands interactively when run
Definition COPYING.txt:104
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
Definition ApiBase.php:100
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition ApiBase.php:94
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition ApiBase.php:1855
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition ApiBase.php:2026
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:91
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition ApiBase.php:52
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
Definition ApiBase.php:135
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:740
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition ApiBase.php:103
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:225
getResult()
Get the result object.
Definition ApiBase.php:632
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:128
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:227
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:512
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition ApiBase.php:55
Query module to enumerate all available pages.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getCacheMode( $params)
Get the cache mode for the data generated by this module.
executeGenerator( $resultPageSet)
run( $resultPageSet=null)
__construct(ApiQuery $query, $moduleName)
getHelpUrls()
Return links to more detailed help pages about the module.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getExamplesMessages()
Returns usage examples for this module.
addWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, and an ORDER BY clause to sort in the right direction.
addFields( $value)
Add a set of fields to select to the internal array.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
getDB()
Get the Query database connection (read-only)
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
titlePartToKey( $titlePart, $namespace=NS_MAIN)
Convert an input title or title prefix into a dbkey.
addWhere( $value)
Add a set of WHERE clauses to the internal array.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
This is the main query class.
Definition ApiQuery.php:40
getConfig()
Get the Config object.
MediaWikiServices is the service locator for the application scope of MediaWiki.
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like select() and insert() are usually more convenient. They take care of things like table prefixes and escaping for you. If you really need to make your own SQL
$res
Definition database.txt:21
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition hooks.txt:1976
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:1975
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition hooks.txt:1610
const NS_MAIN
Definition Defines.php:65
$params