(bug 28952) Add tofragment to the redirect resolution info.
[lhc/web/wiklou.git] / includes / api / ApiQuery.php
1 <?php
2 /**
3 *
4 *
5 * Created on Sep 7, 2006
6 *
7 * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
8 *
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.
13 *
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.
18 *
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
23 *
24 * @file
25 */
26
27 if ( !defined( 'MEDIAWIKI' ) ) {
28 // Eclipse helper - will be ignored in production
29 require_once( 'ApiBase.php' );
30 }
31
32 /**
33 * This is the main query class. It behaves similar to ApiMain: based on the
34 * parameters given, it will create a list of titles to work on (an ApiPageSet
35 * object), instantiate and execute various property/list/meta modules, and
36 * assemble all resulting data into a single ApiResult object.
37 *
38 * In generator mode, a generator will be executed first to populate a second
39 * ApiPageSet object, and that object will be used for all subsequent modules.
40 *
41 * @ingroup API
42 */
43 class ApiQuery extends ApiBase {
44
45 private $mPropModuleNames, $mListModuleNames, $mMetaModuleNames;
46
47 /**
48 * @var ApiPageSet
49 */
50 private $mPageSet;
51
52 private $params, $redirects, $convertTitles;
53
54 private $mQueryPropModules = array(
55 'info' => 'ApiQueryInfo',
56 'revisions' => 'ApiQueryRevisions',
57 'links' => 'ApiQueryLinks',
58 'iwlinks' => 'ApiQueryIWLinks',
59 'langlinks' => 'ApiQueryLangLinks',
60 'images' => 'ApiQueryImages',
61 'imageinfo' => 'ApiQueryImageInfo',
62 'stashimageinfo' => 'ApiQueryStashImageInfo',
63 'templates' => 'ApiQueryLinks',
64 'categories' => 'ApiQueryCategories',
65 'extlinks' => 'ApiQueryExternalLinks',
66 'categoryinfo' => 'ApiQueryCategoryInfo',
67 'duplicatefiles' => 'ApiQueryDuplicateFiles',
68 'pageprops' => 'ApiQueryPageProps',
69 );
70
71 private $mQueryListModules = array(
72 'allimages' => 'ApiQueryAllimages',
73 'allpages' => 'ApiQueryAllpages',
74 'alllinks' => 'ApiQueryAllLinks',
75 'allcategories' => 'ApiQueryAllCategories',
76 'allusers' => 'ApiQueryAllUsers',
77 'backlinks' => 'ApiQueryBacklinks',
78 'blocks' => 'ApiQueryBlocks',
79 'categorymembers' => 'ApiQueryCategoryMembers',
80 'deletedrevs' => 'ApiQueryDeletedrevs',
81 'embeddedin' => 'ApiQueryBacklinks',
82 'filearchive' => 'ApiQueryFilearchive',
83 'imageusage' => 'ApiQueryBacklinks',
84 'iwbacklinks' => 'ApiQueryIWBacklinks',
85 'langbacklinks' => 'ApiQueryLangBacklinks',
86 'logevents' => 'ApiQueryLogEvents',
87 'recentchanges' => 'ApiQueryRecentChanges',
88 'search' => 'ApiQuerySearch',
89 'tags' => 'ApiQueryTags',
90 'usercontribs' => 'ApiQueryContributions',
91 'watchlist' => 'ApiQueryWatchlist',
92 'watchlistraw' => 'ApiQueryWatchlistRaw',
93 'exturlusage' => 'ApiQueryExtLinksUsage',
94 'users' => 'ApiQueryUsers',
95 'random' => 'ApiQueryRandom',
96 'protectedtitles' => 'ApiQueryProtectedTitles',
97 'querypage' => 'ApiQueryQueryPage',
98 );
99
100 private $mQueryMetaModules = array(
101 'siteinfo' => 'ApiQuerySiteinfo',
102 'userinfo' => 'ApiQueryUserInfo',
103 'allmessages' => 'ApiQueryAllmessages',
104 );
105
106 private $mSlaveDB = null;
107 private $mNamedDB = array();
108
109 public function __construct( $main, $action ) {
110 parent::__construct( $main, $action );
111
112 // Allow custom modules to be added in LocalSettings.php
113 global $wgAPIPropModules, $wgAPIListModules, $wgAPIMetaModules;
114 self::appendUserModules( $this->mQueryPropModules, $wgAPIPropModules );
115 self::appendUserModules( $this->mQueryListModules, $wgAPIListModules );
116 self::appendUserModules( $this->mQueryMetaModules, $wgAPIMetaModules );
117
118 $this->mPropModuleNames = array_keys( $this->mQueryPropModules );
119 $this->mListModuleNames = array_keys( $this->mQueryListModules );
120 $this->mMetaModuleNames = array_keys( $this->mQueryMetaModules );
121
122 // Allow the entire list of modules at first,
123 // but during module instantiation check if it can be used as a generator.
124 $this->mAllowedGenerators = array_merge( $this->mListModuleNames, $this->mPropModuleNames );
125 }
126
127 /**
128 * Helper function to append any add-in modules to the list
129 * @param $modules array Module array
130 * @param $newModules array Module array to add to $modules
131 */
132 private static function appendUserModules( &$modules, $newModules ) {
133 if ( is_array( $newModules ) ) {
134 foreach ( $newModules as $moduleName => $moduleClass ) {
135 $modules[$moduleName] = $moduleClass;
136 }
137 }
138 }
139
140 /**
141 * Gets a default slave database connection object
142 * @return Database
143 */
144 public function getDB() {
145 if ( !isset( $this->mSlaveDB ) ) {
146 $this->profileDBIn();
147 $this->mSlaveDB = wfGetDB( DB_SLAVE, 'api' );
148 $this->profileDBOut();
149 }
150 return $this->mSlaveDB;
151 }
152
153 /**
154 * Get the query database connection with the given name.
155 * If no such connection has been requested before, it will be created.
156 * Subsequent calls with the same $name will return the same connection
157 * as the first, regardless of the values of $db and $groups
158 * @param $name string Name to assign to the database connection
159 * @param $db int One of the DB_* constants
160 * @param $groups array Query groups
161 * @return Database
162 */
163 public function getNamedDB( $name, $db, $groups ) {
164 if ( !array_key_exists( $name, $this->mNamedDB ) ) {
165 $this->profileDBIn();
166 $this->mNamedDB[$name] = wfGetDB( $db, $groups );
167 $this->profileDBOut();
168 }
169 return $this->mNamedDB[$name];
170 }
171
172 /**
173 * Gets the set of pages the user has requested (or generated)
174 * @return ApiPageSet
175 */
176 public function getPageSet() {
177 return $this->mPageSet;
178 }
179
180 /**
181 * Get the array mapping module names to class names
182 * @return array(modulename => classname)
183 */
184 function getModules() {
185 return array_merge( $this->mQueryPropModules, $this->mQueryListModules, $this->mQueryMetaModules );
186 }
187
188 /**
189 * Get whether the specified module is a prop, list or a meta query module
190 * @param $moduleName string Name of the module to find type for
191 * @return mixed string or null
192 */
193 function getModuleType( $moduleName ) {
194 if ( isset( $this->mQueryPropModules[$moduleName] ) ) {
195 return 'prop';
196 }
197
198 if ( isset( $this->mQueryListModules[$moduleName] ) ) {
199 return 'list';
200 }
201
202 if ( isset( $this->mQueryMetaModules[$moduleName] ) ) {
203 return 'meta';
204 }
205
206 return null;
207 }
208
209 public function getCustomPrinter() {
210 // If &exportnowrap is set, use the raw formatter
211 if ( $this->getParameter( 'export' ) &&
212 $this->getParameter( 'exportnowrap' ) )
213 {
214 return new ApiFormatRaw( $this->getMain(),
215 $this->getMain()->createPrinterByName( 'xml' ) );
216 } else {
217 return null;
218 }
219 }
220
221 /**
222 * Query execution happens in the following steps:
223 * #1 Create a PageSet object with any pages requested by the user
224 * #2 If using a generator, execute it to get a new ApiPageSet object
225 * #3 Instantiate all requested modules.
226 * This way the PageSet object will know what shared data is required,
227 * and minimize DB calls.
228 * #4 Output all normalization and redirect resolution information
229 * #5 Execute all requested modules
230 */
231 public function execute() {
232 $this->params = $this->extractRequestParams();
233 $this->redirects = $this->params['redirects'];
234 $this->convertTitles = $this->params['converttitles'];
235
236 // Create PageSet
237 $this->mPageSet = new ApiPageSet( $this, $this->redirects, $this->convertTitles );
238
239 // Instantiate requested modules
240 $modules = array();
241 $this->instantiateModules( $modules, 'prop', $this->mQueryPropModules );
242 $this->instantiateModules( $modules, 'list', $this->mQueryListModules );
243 $this->instantiateModules( $modules, 'meta', $this->mQueryMetaModules );
244
245 $cacheMode = 'public';
246
247 // If given, execute generator to substitute user supplied data with generated data.
248 if ( isset( $this->params['generator'] ) ) {
249 $generator = $this->newGenerator( $this->params['generator'] );
250 $params = $generator->extractRequestParams();
251 $cacheMode = $this->mergeCacheMode( $cacheMode,
252 $generator->getCacheMode( $params ) );
253 $this->executeGeneratorModule( $generator, $modules );
254 } else {
255 // Append custom fields and populate page/revision information
256 $this->addCustomFldsToPageSet( $modules, $this->mPageSet );
257 $this->mPageSet->execute();
258 }
259
260 // Record page information (title, namespace, if exists, etc)
261 $this->outputGeneralPageInfo();
262
263 // Execute all requested modules.
264 foreach ( $modules as $module ) {
265 $params = $module->extractRequestParams();
266 $cacheMode = $this->mergeCacheMode(
267 $cacheMode, $module->getCacheMode( $params ) );
268 $module->profileIn();
269 $module->execute();
270 wfRunHooks( 'APIQueryAfterExecute', array( &$module ) );
271 $module->profileOut();
272 }
273
274 // Set the cache mode
275 $this->getMain()->setCacheMode( $cacheMode );
276 }
277
278 /**
279 * Update a cache mode string, applying the cache mode of a new module to it.
280 * The cache mode may increase in the level of privacy, but public modules
281 * added to private data do not decrease the level of privacy.
282 *
283 * @return string
284 */
285 protected function mergeCacheMode( $cacheMode, $modCacheMode ) {
286 if ( $modCacheMode === 'anon-public-user-private' ) {
287 if ( $cacheMode !== 'private' ) {
288 $cacheMode = 'anon-public-user-private';
289 }
290 } elseif ( $modCacheMode === 'public' ) {
291 // do nothing, if it's public already it will stay public
292 } else { // private
293 $cacheMode = 'private';
294 }
295 return $cacheMode;
296 }
297
298 /**
299 * Query modules may optimize data requests through the $this->getPageSet() object
300 * by adding extra fields from the page table.
301 * This function will gather all the extra request fields from the modules.
302 * @param $modules array of module objects
303 * @param $pageSet ApiPageSet
304 */
305 private function addCustomFldsToPageSet( $modules, $pageSet ) {
306 // Query all requested modules.
307 foreach ( $modules as $module ) {
308 $module->requestExtraData( $pageSet );
309 }
310 }
311
312 /**
313 * Create instances of all modules requested by the client
314 * @param $modules Array to append instantiated modules to
315 * @param $param string Parameter name to read modules from
316 * @param $moduleList Array array(modulename => classname)
317 */
318 private function instantiateModules( &$modules, $param, $moduleList ) {
319 $list = @$this->params[$param];
320 if ( !is_null ( $list ) ) {
321 foreach ( $list as $moduleName ) {
322 $modules[] = new $moduleList[$moduleName] ( $this, $moduleName );
323 }
324 }
325 }
326
327 /**
328 * Appends an element for each page in the current pageSet with the
329 * most general information (id, title), plus any title normalizations
330 * and missing or invalid title/pageids/revids.
331 */
332 private function outputGeneralPageInfo() {
333 $pageSet = $this->getPageSet();
334 $result = $this->getResult();
335
336 // We don't check for a full result set here because we can't be adding
337 // more than 380K. The maximum revision size is in the megabyte range,
338 // and the maximum result size must be even higher than that.
339
340 // Title normalizations
341 $normValues = array();
342 foreach ( $pageSet->getNormalizedTitles() as $rawTitleStr => $titleStr ) {
343 $normValues[] = array(
344 'from' => $rawTitleStr,
345 'to' => $titleStr
346 );
347 }
348
349 if ( count( $normValues ) ) {
350 $result->setIndexedTagName( $normValues, 'n' );
351 $result->addValue( 'query', 'normalized', $normValues );
352 }
353
354 // Title conversions
355 $convValues = array();
356 foreach ( $pageSet->getConvertedTitles() as $rawTitleStr => $titleStr ) {
357 $convValues[] = array(
358 'from' => $rawTitleStr,
359 'to' => $titleStr
360 );
361 }
362
363 if ( count( $convValues ) ) {
364 $result->setIndexedTagName( $convValues, 'c' );
365 $result->addValue( 'query', 'converted', $convValues );
366 }
367
368 // Interwiki titles
369 $intrwValues = array();
370 foreach ( $pageSet->getInterwikiTitles() as $rawTitleStr => $interwikiStr ) {
371 $intrwValues[] = array(
372 'title' => $rawTitleStr,
373 'iw' => $interwikiStr
374 );
375 }
376
377 if ( count( $intrwValues ) ) {
378 $result->setIndexedTagName( $intrwValues, 'i' );
379 $result->addValue( 'query', 'interwiki', $intrwValues );
380 }
381
382 // Show redirect information
383 $redirValues = array();
384 foreach ( $pageSet->getRedirectTitles() as $titleStrFrom => $titleTo ) {
385 $r = array(
386 'from' => strval( $titleStrFrom ),
387 'to' => $titleTo->getPrefixedText(),
388 );
389 if ( $titleTo->getFragment() !== '' ) {
390 $r['tofragment'] = $titleTo->getFragment();
391 }
392 $redirValues[] = $r;
393 }
394
395 if ( count( $redirValues ) ) {
396 $result->setIndexedTagName( $redirValues, 'r' );
397 $result->addValue( 'query', 'redirects', $redirValues );
398 }
399
400 // Missing revision elements
401 $missingRevIDs = $pageSet->getMissingRevisionIDs();
402 if ( count( $missingRevIDs ) ) {
403 $revids = array();
404 foreach ( $missingRevIDs as $revid ) {
405 $revids[$revid] = array(
406 'revid' => $revid
407 );
408 }
409 $result->setIndexedTagName( $revids, 'rev' );
410 $result->addValue( 'query', 'badrevids', $revids );
411 }
412
413 // Page elements
414 $pages = array();
415
416 // Report any missing titles
417 foreach ( $pageSet->getMissingTitles() as $fakeId => $title ) {
418 $vals = array();
419 ApiQueryBase::addTitleInfo( $vals, $title );
420 $vals['missing'] = '';
421 $pages[$fakeId] = $vals;
422 }
423 // Report any invalid titles
424 foreach ( $pageSet->getInvalidTitles() as $fakeId => $title ) {
425 $pages[$fakeId] = array( 'title' => $title, 'invalid' => '' );
426 }
427 // Report any missing page ids
428 foreach ( $pageSet->getMissingPageIDs() as $pageid ) {
429 $pages[$pageid] = array(
430 'pageid' => $pageid,
431 'missing' => ''
432 );
433 }
434 // Report special pages
435 foreach ( $pageSet->getSpecialTitles() as $fakeId => $title ) {
436 $vals = array();
437 ApiQueryBase::addTitleInfo( $vals, $title );
438 $vals['special'] = '';
439 if ( $title->getNamespace() == NS_SPECIAL &&
440 !SpecialPageFactory::exists( $title->getDbKey() ) ) {
441 $vals['missing'] = '';
442 } elseif ( $title->getNamespace() == NS_MEDIA &&
443 !wfFindFile( $title ) ) {
444 $vals['missing'] = '';
445 }
446 $pages[$fakeId] = $vals;
447 }
448
449 // Output general page information for found titles
450 foreach ( $pageSet->getGoodTitles() as $pageid => $title ) {
451 $vals = array();
452 $vals['pageid'] = $pageid;
453 ApiQueryBase::addTitleInfo( $vals, $title );
454 $pages[$pageid] = $vals;
455 }
456
457 if ( count( $pages ) ) {
458 if ( $this->params['indexpageids'] ) {
459 $pageIDs = array_keys( $pages );
460 // json treats all map keys as strings - converting to match
461 $pageIDs = array_map( 'strval', $pageIDs );
462 $result->setIndexedTagName( $pageIDs, 'id' );
463 $result->addValue( 'query', 'pageids', $pageIDs );
464 }
465
466 $result->setIndexedTagName( $pages, 'page' );
467 $result->addValue( 'query', 'pages', $pages );
468 }
469 if ( $this->params['export'] ) {
470 $this->doExport( $pageSet, $result );
471 }
472 }
473
474 /**
475 * @param $pageSet ApiPageSet Pages to be exported
476 * @param $result ApiResult Result to output to
477 */
478 private function doExport( $pageSet, $result ) {
479 $exportTitles = array();
480 $titles = $pageSet->getGoodTitles();
481 if ( count( $titles ) ) {
482 foreach ( $titles as $title ) {
483 if ( $title->userCanRead() ) {
484 $exportTitles[] = $title;
485 }
486 }
487 }
488 // only export when there are titles
489 if ( !count( $exportTitles ) ) {
490 return;
491 }
492
493 $exporter = new WikiExporter( $this->getDB() );
494 // WikiExporter writes to stdout, so catch its
495 // output with an ob
496 ob_start();
497 $exporter->openStream();
498 foreach ( $exportTitles as $title ) {
499 $exporter->pageByTitle( $title );
500 }
501 $exporter->closeStream();
502 $exportxml = ob_get_contents();
503 ob_end_clean();
504
505 // Don't check the size of exported stuff
506 // It's not continuable, so it would cause more
507 // problems than it'd solve
508 $result->disableSizeCheck();
509 if ( $this->params['exportnowrap'] ) {
510 $result->reset();
511 // Raw formatter will handle this
512 $result->addValue( null, 'text', $exportxml );
513 $result->addValue( null, 'mime', 'text/xml' );
514 } else {
515 $r = array();
516 ApiResult::setContent( $r, $exportxml );
517 $result->addValue( 'query', 'export', $r );
518 }
519 $result->enableSizeCheck();
520 }
521
522 /**
523 * Create a generator object of the given type and return it
524 * @param $generatorName string Module name
525 * @return ApiQueryGeneratorBase
526 */
527 public function newGenerator( $generatorName ) {
528 // Find class that implements requested generator
529 if ( isset( $this->mQueryListModules[$generatorName] ) ) {
530 $className = $this->mQueryListModules[$generatorName];
531 } elseif ( isset( $this->mQueryPropModules[$generatorName] ) ) {
532 $className = $this->mQueryPropModules[$generatorName];
533 } else {
534 ApiBase::dieDebug( __METHOD__, "Unknown generator=$generatorName" );
535 }
536 $generator = new $className ( $this, $generatorName );
537 if ( !$generator instanceof ApiQueryGeneratorBase ) {
538 $this->dieUsage( "Module $generatorName cannot be used as a generator", 'badgenerator' );
539 }
540 $generator->setGeneratorMode();
541 return $generator;
542 }
543
544 /**
545 * For generator mode, execute generator, and use its output as new
546 * ApiPageSet
547 * @param $generator ApiQueryGeneratorBase Generator Module
548 * @param $modules array of module objects
549 */
550 protected function executeGeneratorModule( $generator, $modules ) {
551 // Generator results
552 $resultPageSet = new ApiPageSet( $this, $this->redirects, $this->convertTitles );
553
554 // Add any additional fields modules may need
555 $generator->requestExtraData( $this->mPageSet );
556 $this->addCustomFldsToPageSet( $modules, $resultPageSet );
557
558 // Populate page information with the original user input
559 $this->mPageSet->execute();
560
561 // populate resultPageSet with the generator output
562 $generator->profileIn();
563 $generator->executeGenerator( $resultPageSet );
564 wfRunHooks( 'APIQueryGeneratorAfterExecute', array( &$generator, &$resultPageSet ) );
565 $resultPageSet->finishPageSetGeneration();
566 $generator->profileOut();
567
568 // Swap the resulting pageset back in
569 $this->mPageSet = $resultPageSet;
570 }
571
572 public function getAllowedParams() {
573 return array(
574 'prop' => array(
575 ApiBase::PARAM_ISMULTI => true,
576 ApiBase::PARAM_TYPE => $this->mPropModuleNames
577 ),
578 'list' => array(
579 ApiBase::PARAM_ISMULTI => true,
580 ApiBase::PARAM_TYPE => $this->mListModuleNames
581 ),
582 'meta' => array(
583 ApiBase::PARAM_ISMULTI => true,
584 ApiBase::PARAM_TYPE => $this->mMetaModuleNames
585 ),
586 'generator' => array(
587 ApiBase::PARAM_TYPE => $this->mAllowedGenerators
588 ),
589 'redirects' => false,
590 'converttitles' => false,
591 'indexpageids' => false,
592 'export' => false,
593 'exportnowrap' => false,
594 );
595 }
596
597 /**
598 * Override the parent to generate help messages for all available query modules.
599 * @return string
600 */
601 public function makeHelpMsg() {
602 $msg = '';
603
604 // Make sure the internal object is empty
605 // (just in case a sub-module decides to optimize during instantiation)
606 $this->mPageSet = null;
607 $this->mAllowedGenerators = array(); // Will be repopulated
608
609 $querySeparator = str_repeat( '--- ', 12 );
610 $moduleSeparator = str_repeat( '*** ', 14 );
611 $msg .= "\n$querySeparator Query: Prop $querySeparator\n\n";
612 $msg .= $this->makeHelpMsgHelper( $this->mQueryPropModules, 'prop' );
613 $msg .= "\n$querySeparator Query: List $querySeparator\n\n";
614 $msg .= $this->makeHelpMsgHelper( $this->mQueryListModules, 'list' );
615 $msg .= "\n$querySeparator Query: Meta $querySeparator\n\n";
616 $msg .= $this->makeHelpMsgHelper( $this->mQueryMetaModules, 'meta' );
617 $msg .= "\n\n$moduleSeparator Modules: continuation $moduleSeparator\n\n";
618
619 // Perform the base call last because the $this->mAllowedGenerators
620 // will be updated inside makeHelpMsgHelper()
621 // Use parent to make default message for the query module
622 $msg = parent::makeHelpMsg() . $msg;
623
624 return $msg;
625 }
626
627 /**
628 * For all modules in $moduleList, generate help messages and join them together
629 * @param $moduleList Array array(modulename => classname)
630 * @param $paramName string Parameter name
631 * @return string
632 */
633 private function makeHelpMsgHelper( $moduleList, $paramName ) {
634 $moduleDescriptions = array();
635
636 foreach ( $moduleList as $moduleName => $moduleClass ) {
637 $module = new $moduleClass( $this, $moduleName, null );
638
639 $msg = ApiMain::makeHelpMsgHeader( $module, $paramName );
640 $msg2 = $module->makeHelpMsg();
641 if ( $msg2 !== false ) {
642 $msg .= $msg2;
643 }
644 if ( $module instanceof ApiQueryGeneratorBase ) {
645 $this->mAllowedGenerators[] = $moduleName;
646 $msg .= "Generator:\n This module may be used as a generator\n";
647 }
648 $moduleDescriptions[] = $msg;
649 }
650
651 return implode( "\n", $moduleDescriptions );
652 }
653
654 /**
655 * Override to add extra parameters from PageSet
656 * @return string
657 */
658 public function makeHelpMsgParameters() {
659 $psModule = new ApiPageSet( $this );
660 return $psModule->makeHelpMsgParameters() . parent::makeHelpMsgParameters();
661 }
662
663 public function shouldCheckMaxlag() {
664 return true;
665 }
666
667 public function getParamDescription() {
668 return array(
669 'prop' => 'Which properties to get for the titles/revisions/pageids. Module help is available below',
670 'list' => 'Which lists to get. Module help is available below',
671 'meta' => 'Which metadata to get about the site. Module help is available below',
672 'generator' => array( 'Use the output of a list as the input for other prop/list/meta items',
673 'NOTE: generator parameter names must be prefixed with a \'g\', see examples' ),
674 'redirects' => 'Automatically resolve redirects',
675 'converttitles' => array( "Convert titles to other variants if necessary. Only works if the wiki's content language supports variant conversion.",
676 'Languages that support variant conversion include kk, ku, gan, tg, sr, zh' ),
677 'indexpageids' => 'Include an additional pageids section listing all returned page IDs',
678 'export' => 'Export the current revisions of all given or generated pages',
679 'exportnowrap' => 'Return the export XML without wrapping it in an XML result (same format as Special:Export). Can only be used with export',
680 );
681 }
682
683 public function getDescription() {
684 return array(
685 'Query API module allows applications to get needed pieces of data from the MediaWiki databases,',
686 'and is loosely based on the old query.php interface.',
687 'All data modifications will first have to use query to acquire a token to prevent abuse from malicious sites'
688 );
689 }
690
691 public function getPossibleErrors() {
692 return array_merge( parent::getPossibleErrors(), array(
693 array( 'code' => 'badgenerator', 'info' => 'Module $generatorName cannot be used as a generator' ),
694 ) );
695 }
696
697 protected function getExamples() {
698 return array(
699 'api.php?action=query&prop=revisions&meta=siteinfo&titles=Main%20Page&rvprop=user|comment',
700 'api.php?action=query&generator=allpages&gapprefix=API/&prop=revisions',
701 );
702 }
703
704 public function getVersion() {
705 $psModule = new ApiPageSet( $this );
706 $vers = array();
707 $vers[] = __CLASS__ . ': $Id$';
708 $vers[] = $psModule->getVersion();
709 return $vers;
710 }
711 }