5 * Created on Sep 7, 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 the main query class. It behaves similar to ApiMain: based on the
29 * parameters given, it will create a list of titles to work on (an ApiPageSet
30 * object), instantiate and execute various property/list/meta modules, and
31 * assemble all resulting data into a single ApiResult object.
33 * In generator mode, a generator will be executed first to populate a second
34 * ApiPageSet object, and that object will be used for all subsequent modules.
38 class ApiQuery
extends ApiBase
{
41 * List of Api Query prop modules
44 private static $QueryPropModules = [
45 'categories' => 'ApiQueryCategories',
46 'categoryinfo' => 'ApiQueryCategoryInfo',
47 'contributors' => 'ApiQueryContributors',
48 'deletedrevisions' => 'ApiQueryDeletedRevisions',
49 'duplicatefiles' => 'ApiQueryDuplicateFiles',
50 'extlinks' => 'ApiQueryExternalLinks',
51 'fileusage' => 'ApiQueryBacklinksprop',
52 'images' => 'ApiQueryImages',
53 'imageinfo' => 'ApiQueryImageInfo',
54 'info' => 'ApiQueryInfo',
55 'links' => 'ApiQueryLinks',
56 'linkshere' => 'ApiQueryBacklinksprop',
57 'iwlinks' => 'ApiQueryIWLinks',
58 'langlinks' => 'ApiQueryLangLinks',
59 'pageprops' => 'ApiQueryPageProps',
60 'redirects' => 'ApiQueryBacklinksprop',
61 'revisions' => 'ApiQueryRevisions',
62 'stashimageinfo' => 'ApiQueryStashImageInfo',
63 'templates' => 'ApiQueryLinks',
64 'transcludedin' => 'ApiQueryBacklinksprop',
68 * List of Api Query list modules
71 private static $QueryListModules = [
72 'allcategories' => 'ApiQueryAllCategories',
73 'alldeletedrevisions' => 'ApiQueryAllDeletedRevisions',
74 'allfileusages' => 'ApiQueryAllLinks',
75 'allimages' => 'ApiQueryAllImages',
76 'alllinks' => 'ApiQueryAllLinks',
77 'allpages' => 'ApiQueryAllPages',
78 'allredirects' => 'ApiQueryAllLinks',
79 'allrevisions' => 'ApiQueryAllRevisions',
80 'mystashedfiles' => 'ApiQueryMyStashedFiles',
81 'alltransclusions' => 'ApiQueryAllLinks',
82 'allusers' => 'ApiQueryAllUsers',
83 'backlinks' => 'ApiQueryBacklinks',
84 'blocks' => 'ApiQueryBlocks',
85 'categorymembers' => 'ApiQueryCategoryMembers',
86 'deletedrevs' => 'ApiQueryDeletedrevs',
87 'embeddedin' => 'ApiQueryBacklinks',
88 'exturlusage' => 'ApiQueryExtLinksUsage',
89 'filearchive' => 'ApiQueryFilearchive',
90 'imageusage' => 'ApiQueryBacklinks',
91 'iwbacklinks' => 'ApiQueryIWBacklinks',
92 'langbacklinks' => 'ApiQueryLangBacklinks',
93 'logevents' => 'ApiQueryLogEvents',
94 'pageswithprop' => 'ApiQueryPagesWithProp',
95 'pagepropnames' => 'ApiQueryPagePropNames',
96 'prefixsearch' => 'ApiQueryPrefixSearch',
97 'protectedtitles' => 'ApiQueryProtectedTitles',
98 'querypage' => 'ApiQueryQueryPage',
99 'random' => 'ApiQueryRandom',
100 'recentchanges' => 'ApiQueryRecentChanges',
101 'search' => 'ApiQuerySearch',
102 'tags' => 'ApiQueryTags',
103 'usercontribs' => 'ApiQueryContributions',
104 'users' => 'ApiQueryUsers',
105 'watchlist' => 'ApiQueryWatchlist',
106 'watchlistraw' => 'ApiQueryWatchlistRaw',
110 * List of Api Query meta modules
113 private static $QueryMetaModules = [
114 'allmessages' => 'ApiQueryAllMessages',
115 'authmanagerinfo' => 'ApiQueryAuthManagerInfo',
116 'siteinfo' => 'ApiQuerySiteinfo',
117 'userinfo' => 'ApiQueryUserInfo',
118 'filerepoinfo' => 'ApiQueryFileRepoInfo',
119 'tokens' => 'ApiQueryTokens',
128 private $mNamedDB = [];
132 * @param ApiMain $main
133 * @param string $action
135 public function __construct( ApiMain
$main, $action ) {
136 parent
::__construct( $main, $action );
138 $this->mModuleMgr
= new ApiModuleManager( $this );
140 // Allow custom modules to be added in LocalSettings.php
141 $config = $this->getConfig();
142 $this->mModuleMgr
->addModules( self
::$QueryPropModules, 'prop' );
143 $this->mModuleMgr
->addModules( $config->get( 'APIPropModules' ), 'prop' );
144 $this->mModuleMgr
->addModules( self
::$QueryListModules, 'list' );
145 $this->mModuleMgr
->addModules( $config->get( 'APIListModules' ), 'list' );
146 $this->mModuleMgr
->addModules( self
::$QueryMetaModules, 'meta' );
147 $this->mModuleMgr
->addModules( $config->get( 'APIMetaModules' ), 'meta' );
149 Hooks
::run( 'ApiQuery::moduleManager', [ $this->mModuleMgr
] );
151 // Create PageSet that will process titles/pageids/revids/generator
152 $this->mPageSet
= new ApiPageSet( $this );
156 * Overrides to return this instance's module manager.
157 * @return ApiModuleManager
159 public function getModuleManager() {
160 return $this->mModuleMgr
;
164 * Get the query database connection with the given name.
165 * If no such connection has been requested before, it will be created.
166 * Subsequent calls with the same $name will return the same connection
167 * as the first, regardless of the values of $db and $groups
168 * @param string $name Name to assign to the database connection
169 * @param int $db One of the DB_* constants
170 * @param array $groups Query groups
173 public function getNamedDB( $name, $db, $groups ) {
174 if ( !array_key_exists( $name, $this->mNamedDB
) ) {
175 $this->mNamedDB
[$name] = wfGetDB( $db, $groups );
178 return $this->mNamedDB
[$name];
182 * Gets the set of pages the user has requested (or generated)
185 public function getPageSet() {
186 return $this->mPageSet
;
190 * @return ApiFormatRaw|null
192 public function getCustomPrinter() {
193 // If &exportnowrap is set, use the raw formatter
194 if ( $this->getParameter( 'export' ) &&
195 $this->getParameter( 'exportnowrap' )
197 return new ApiFormatRaw( $this->getMain(),
198 $this->getMain()->createPrinterByName( 'xml' ) );
205 * Query execution happens in the following steps:
206 * #1 Create a PageSet object with any pages requested by the user
207 * #2 If using a generator, execute it to get a new ApiPageSet object
208 * #3 Instantiate all requested modules.
209 * This way the PageSet object will know what shared data is required,
210 * and minimize DB calls.
211 * #4 Output all normalization and redirect resolution information
212 * #5 Execute all requested modules
214 public function execute() {
215 $this->mParams
= $this->extractRequestParams();
217 // Instantiate requested modules
219 $this->instantiateModules( $allModules, 'prop' );
220 $propModules = array_keys( $allModules );
221 $this->instantiateModules( $allModules, 'list' );
222 $this->instantiateModules( $allModules, 'meta' );
224 // Filter modules based on continue parameter
225 $continuationManager = new ApiContinuationManager( $this, $allModules, $propModules );
226 $this->setContinuationManager( $continuationManager );
227 $modules = $continuationManager->getRunModules();
229 if ( !$continuationManager->isGeneratorDone() ) {
230 // Query modules may optimize data requests through the $this->getPageSet()
231 // object by adding extra fields from the page table.
232 foreach ( $modules as $module ) {
233 $module->requestExtraData( $this->mPageSet
);
235 // Populate page/revision information
236 $this->mPageSet
->execute();
237 // Record page information (title, namespace, if exists, etc)
238 $this->outputGeneralPageInfo();
240 $this->mPageSet
->executeDryRun();
243 $cacheMode = $this->mPageSet
->getCacheMode();
245 // Execute all unfinished modules
246 /** @var $module ApiQueryBase */
247 foreach ( $modules as $module ) {
248 $params = $module->extractRequestParams();
249 $cacheMode = $this->mergeCacheMode(
250 $cacheMode, $module->getCacheMode( $params ) );
252 Hooks
::run( 'APIQueryAfterExecute', [ &$module ] );
255 // Set the cache mode
256 $this->getMain()->setCacheMode( $cacheMode );
258 // Write the continuation data into the result
259 $this->setContinuationManager( null );
260 if ( $this->mParams
['rawcontinue'] ) {
261 $data = $continuationManager->getRawNonContinuation();
263 $this->getResult()->addValue( null, 'query-noncontinue', $data,
264 ApiResult
::ADD_ON_TOP | ApiResult
::NO_SIZE_CHECK
);
266 $data = $continuationManager->getRawContinuation();
268 $this->getResult()->addValue( null, 'query-continue', $data,
269 ApiResult
::ADD_ON_TOP | ApiResult
::NO_SIZE_CHECK
);
272 $continuationManager->setContinuationIntoResult( $this->getResult() );
277 * Update a cache mode string, applying the cache mode of a new module to it.
278 * The cache mode may increase in the level of privacy, but public modules
279 * added to private data do not decrease the level of privacy.
281 * @param string $cacheMode
282 * @param string $modCacheMode
285 protected function mergeCacheMode( $cacheMode, $modCacheMode ) {
286 if ( $modCacheMode === 'anon-public-user-private' ) {
287 if ( $cacheMode !== 'private' ) {
288 $cacheMode = 'anon-public-user-private';
290 } elseif ( $modCacheMode === 'public' ) {
291 // do nothing, if it's public already it will stay public
293 $cacheMode = 'private';
300 * Create instances of all modules requested by the client
301 * @param array $modules To append instantiated modules to
302 * @param string $param Parameter name to read modules from
304 private function instantiateModules( &$modules, $param ) {
305 $wasPosted = $this->getRequest()->wasPosted();
306 if ( isset( $this->mParams
[$param] ) ) {
307 foreach ( $this->mParams
[$param] as $moduleName ) {
308 $instance = $this->mModuleMgr
->getModule( $moduleName, $param );
309 if ( $instance === null ) {
310 ApiBase
::dieDebug( __METHOD__
, 'Error instantiating module' );
312 if ( !$wasPosted && $instance->mustBePosted() ) {
313 $this->dieWithErrorOrDebug( [ 'apierror-mustbeposted', $moduleName ] );
315 // Ignore duplicates. TODO 2.0: die()?
316 if ( !array_key_exists( $moduleName, $modules ) ) {
317 $modules[$moduleName] = $instance;
324 * Appends an element for each page in the current pageSet with the
325 * most general information (id, title), plus any title normalizations
326 * and missing or invalid title/pageids/revids.
328 private function outputGeneralPageInfo() {
329 $pageSet = $this->getPageSet();
330 $result = $this->getResult();
332 // We can't really handle max-result-size failure here, but we need to
333 // check anyway in case someone set the limit stupidly low.
336 $values = $pageSet->getNormalizedTitlesAsResult( $result );
338 $fit = $fit && $result->addValue( 'query', 'normalized', $values );
340 $values = $pageSet->getConvertedTitlesAsResult( $result );
342 $fit = $fit && $result->addValue( 'query', 'converted', $values );
344 $values = $pageSet->getInterwikiTitlesAsResult( $result, $this->mParams
['iwurl'] );
346 $fit = $fit && $result->addValue( 'query', 'interwiki', $values );
348 $values = $pageSet->getRedirectTitlesAsResult( $result );
350 $fit = $fit && $result->addValue( 'query', 'redirects', $values );
352 $values = $pageSet->getMissingRevisionIDsAsResult( $result );
354 $fit = $fit && $result->addValue( 'query', 'badrevids', $values );
360 // Report any missing titles
361 foreach ( $pageSet->getMissingTitles() as $fakeId => $title ) {
363 ApiQueryBase
::addTitleInfo( $vals, $title );
364 $vals['missing'] = true;
365 if ( $title->isKnown() ) {
366 $vals['known'] = true;
368 $pages[$fakeId] = $vals;
370 // Report any invalid titles
371 foreach ( $pageSet->getInvalidTitlesAndReasons() as $fakeId => $data ) {
372 $pages[$fakeId] = $data +
[ 'invalid' => true ];
374 // Report any missing page ids
375 foreach ( $pageSet->getMissingPageIDs() as $pageid ) {
381 // Report special pages
382 /** @var $title Title */
383 foreach ( $pageSet->getSpecialTitles() as $fakeId => $title ) {
385 ApiQueryBase
::addTitleInfo( $vals, $title );
386 $vals['special'] = true;
387 if ( !$title->isKnown() ) {
388 $vals['missing'] = true;
390 $pages[$fakeId] = $vals;
393 // Output general page information for found titles
394 foreach ( $pageSet->getGoodTitles() as $pageid => $title ) {
396 $vals['pageid'] = $pageid;
397 ApiQueryBase
::addTitleInfo( $vals, $title );
398 $pages[$pageid] = $vals;
401 if ( count( $pages ) ) {
402 $pageSet->populateGeneratorData( $pages );
403 ApiResult
::setArrayType( $pages, 'BCarray' );
405 if ( $this->mParams
['indexpageids'] ) {
406 $pageIDs = array_keys( ApiResult
::stripMetadataNonRecursive( $pages ) );
407 // json treats all map keys as strings - converting to match
408 $pageIDs = array_map( 'strval', $pageIDs );
409 ApiResult
::setIndexedTagName( $pageIDs, 'id' );
410 $fit = $fit && $result->addValue( 'query', 'pageids', $pageIDs );
413 ApiResult
::setIndexedTagName( $pages, 'page' );
414 $fit = $fit && $result->addValue( 'query', 'pages', $pages );
418 $this->dieWithError( 'apierror-badconfig-resulttoosmall', 'badconfig' );
421 if ( $this->mParams
['export'] ) {
422 $this->doExport( $pageSet, $result );
427 * @param ApiPageSet $pageSet Pages to be exported
428 * @param ApiResult $result Result to output to
430 private function doExport( $pageSet, $result ) {
432 $titles = $pageSet->getGoodTitles();
433 if ( count( $titles ) ) {
434 $user = $this->getUser();
435 /** @var $title Title */
436 foreach ( $titles as $title ) {
437 if ( $title->userCan( 'read', $user ) ) {
438 $exportTitles[] = $title;
443 $exporter = new WikiExporter( $this->getDB() );
444 $sink = new DumpStringOutput
;
445 $exporter->setOutputSink( $sink );
446 $exporter->openStream();
447 foreach ( $exportTitles as $title ) {
448 $exporter->pageByTitle( $title );
450 $exporter->closeStream();
452 // Don't check the size of exported stuff
453 // It's not continuable, so it would cause more
454 // problems than it'd solve
455 if ( $this->mParams
['exportnowrap'] ) {
457 // Raw formatter will handle this
458 $result->addValue( null, 'text', $sink, ApiResult
::NO_SIZE_CHECK
);
459 $result->addValue( null, 'mime', 'text/xml', ApiResult
::NO_SIZE_CHECK
);
461 $result->addValue( 'query', 'export', $sink, ApiResult
::NO_SIZE_CHECK
);
462 $result->addValue( 'query', ApiResult
::META_BC_SUBELEMENTS
, [ 'export' ] );
466 public function getAllowedParams( $flags = 0 ) {
469 ApiBase
::PARAM_ISMULTI
=> true,
470 ApiBase
::PARAM_TYPE
=> 'submodule',
473 ApiBase
::PARAM_ISMULTI
=> true,
474 ApiBase
::PARAM_TYPE
=> 'submodule',
477 ApiBase
::PARAM_ISMULTI
=> true,
478 ApiBase
::PARAM_TYPE
=> 'submodule',
480 'indexpageids' => false,
482 'exportnowrap' => false,
485 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
487 'rawcontinue' => false,
490 $result +
= $this->getPageSet()->getFinalParams( $flags );
496 public function isReadMode() {
497 // We need to make an exception for certain meta modules that should be
498 // accessible even without the 'read' right. Restrict the exception as
499 // much as possible: no other modules allowed, and no pageset
500 // parameters either. We do allow the 'rawcontinue' and 'indexpageids'
501 // parameters since frameworks might add these unconditionally and they
502 // can't expose anything here.
503 $this->mParams
= $this->extractRequestParams();
504 $params = array_filter(
506 $this->mParams +
$this->getPageSet()->extractRequestParams(),
507 [ 'rawcontinue' => 1, 'indexpageids' => 1 ]
510 if ( array_keys( $params ) !== [ 'meta' ] ) {
514 // Ask each module if it requires read mode. Any true => this returns
517 $this->instantiateModules( $modules, 'meta' );
518 foreach ( $modules as $module ) {
519 if ( $module->isReadMode() ) {
527 protected function getExamplesMessages() {
529 'action=query&prop=revisions&meta=siteinfo&' .
530 'titles=Main%20Page&rvprop=user|comment&continue='
531 => 'apihelp-query-example-revisions',
532 'action=query&generator=allpages&gapprefix=API/&prop=revisions&continue='
533 => 'apihelp-query-example-allpages',
537 public function getHelpUrls() {
539 'https://www.mediawiki.org/wiki/API:Query',
540 'https://www.mediawiki.org/wiki/API:Meta',
541 'https://www.mediawiki.org/wiki/API:Properties',
542 'https://www.mediawiki.org/wiki/API:Lists',