8d083ce272a6e9c8aff7ea25a04df173b6948e5f
[lhc/web/wiklou.git] / includes / api / ApiMain.php
1 <?php
2
3 /*
4 * Created on Sep 4, 2006
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * http://www.gnu.org/copyleft/gpl.html
24 */
25
26 if ( !defined( 'MEDIAWIKI' ) ) {
27 // Eclipse helper - will be ignored in production
28 require_once ( 'ApiBase.php' );
29 }
30
31 /**
32 * @defgroup API API
33 */
34
35 /**
36 * This is the main API class, used for both external and internal processing.
37 * When executed, it will create the requested formatter object,
38 * instantiate and execute an object associated with the needed action,
39 * and use formatter to print results.
40 * In case of an exception, an error message will be printed using the same formatter.
41 *
42 * To use API from another application, run it using FauxRequest object, in which
43 * case any internal exceptions will not be handled but passed up to the caller.
44 * After successful execution, use getResult() for the resulting data.
45 *
46 * @ingroup API
47 */
48 class ApiMain extends ApiBase {
49
50 /**
51 * When no format parameter is given, this format will be used
52 */
53 const API_DEFAULT_FORMAT = 'xmlfm';
54
55 /**
56 * List of available modules: action name => module class
57 */
58 private static $Modules = array (
59 'login' => 'ApiLogin',
60 'logout' => 'ApiLogout',
61 'query' => 'ApiQuery',
62 'expandtemplates' => 'ApiExpandTemplates',
63 'parse' => 'ApiParse',
64 'opensearch' => 'ApiOpenSearch',
65 'feedwatchlist' => 'ApiFeedWatchlist',
66 'help' => 'ApiHelp',
67 'paraminfo' => 'ApiParamInfo',
68
69 // Write modules
70 'purge' => 'ApiPurge',
71 'rollback' => 'ApiRollback',
72 'delete' => 'ApiDelete',
73 'undelete' => 'ApiUndelete',
74 'protect' => 'ApiProtect',
75 'block' => 'ApiBlock',
76 'unblock' => 'ApiUnblock',
77 'move' => 'ApiMove',
78 'edit' => 'ApiEditPage',
79 'upload' => 'ApiUpload',
80 'emailuser' => 'ApiEmailUser',
81 'watch' => 'ApiWatch',
82 'patrol' => 'ApiPatrol',
83 'import' => 'ApiImport',
84 'userrights' => 'ApiUserrights',
85 );
86
87 /**
88 * List of available formats: format name => format class
89 */
90 private static $Formats = array (
91 'json' => 'ApiFormatJson',
92 'jsonfm' => 'ApiFormatJson',
93 'php' => 'ApiFormatPhp',
94 'phpfm' => 'ApiFormatPhp',
95 'wddx' => 'ApiFormatWddx',
96 'wddxfm' => 'ApiFormatWddx',
97 'xml' => 'ApiFormatXml',
98 'xmlfm' => 'ApiFormatXml',
99 'yaml' => 'ApiFormatYaml',
100 'yamlfm' => 'ApiFormatYaml',
101 'rawfm' => 'ApiFormatJson',
102 'txt' => 'ApiFormatTxt',
103 'txtfm' => 'ApiFormatTxt',
104 'dbg' => 'ApiFormatDbg',
105 'dbgfm' => 'ApiFormatDbg'
106 );
107
108 /**
109 * List of user roles that are specifically relevant to the API.
110 * array( 'right' => array ( 'msg' => 'Some message with a $1',
111 * 'params' => array ( $someVarToSubst ) ),
112 * );
113 */
114 private static $mRights = array( 'writeapi' => array(
115 'msg' => 'Use of the write API',
116 'params' => array()
117 ),
118 'apihighlimits' => array(
119 'msg' => 'Use higher limits in API queries (Slow queries: $1 results; Fast queries: $2 results). The limits for slow queries also apply to multivalue parameters.',
120 'params' => array ( ApiMain::LIMIT_SML2, ApiMain::LIMIT_BIG2 )
121 )
122 );
123
124
125 private $mPrinter, $mModules, $mModuleNames, $mFormats, $mFormatNames;
126 private $mResult, $mAction, $mShowVersions, $mEnableWrite, $mRequest;
127 private $mInternalMode, $mSquidMaxage, $mModule;
128
129 /**
130 * Constructs an instance of ApiMain that utilizes the module and format specified by $request.
131 *
132 * @param $request object - if this is an instance of FauxRequest, errors are thrown and no printing occurs
133 * @param $enableWrite bool should be set to true if the api may modify data
134 */
135 public function __construct( $request, $enableWrite = false ) {
136
137 $this->mInternalMode = ( $request instanceof FauxRequest );
138
139 // Special handling for the main module: $parent === $this
140 parent :: __construct( $this, $this->mInternalMode ? 'main_int' : 'main' );
141
142 if ( !$this->mInternalMode ) {
143
144 // Impose module restrictions.
145 // If the current user cannot read,
146 // Remove all modules other than login
147 global $wgUser;
148
149 if ( $request->getVal( 'callback' ) !== null ) {
150 // JSON callback allows cross-site reads.
151 // For safety, strip user credentials.
152 wfDebug( "API: stripping user credentials for JSON callback\n" );
153 $wgUser = new User();
154 }
155 }
156
157 global $wgAPIModules; // extension modules
158 $this->mModules = $wgAPIModules + self :: $Modules;
159
160 $this->mModuleNames = array_keys( $this->mModules );
161 $this->mFormats = self :: $Formats;
162 $this->mFormatNames = array_keys( $this->mFormats );
163
164 $this->mResult = new ApiResult( $this );
165 $this->mShowVersions = false;
166 $this->mEnableWrite = $enableWrite;
167
168 $this->mRequest = & $request;
169
170 $this->mSquidMaxage = - 1; // flag for executeActionWithErrorHandling()
171 $this->mCommit = false;
172 }
173
174 /**
175 * Return true if the API was started by other PHP code using FauxRequest
176 */
177 public function isInternalMode() {
178 return $this->mInternalMode;
179 }
180
181 /**
182 * Return the request object that contains client's request
183 */
184 public function getRequest() {
185 return $this->mRequest;
186 }
187
188 /**
189 * Get the ApiResult object associated with current request
190 */
191 public function getResult() {
192 return $this->mResult;
193 }
194
195 /**
196 * Get the API module object. Only works after executeAction()
197 */
198 public function getModule() {
199 return $this->mModule;
200 }
201
202 /**
203 * Only kept for backwards compatibility
204 * @deprecated Use isWriteMode() instead
205 */
206 public function requestWriteMode() {
207 if ( !$this->mEnableWrite )
208 $this->dieUsageMsg( array( 'writedisabled' ) );
209 if ( wfReadOnly() )
210 $this->dieUsageMsg( array( 'readonlytext' ) );
211 }
212
213 /**
214 * Set how long the response should be cached.
215 */
216 public function setCacheMaxAge( $maxage ) {
217 $this->mSquidMaxage = $maxage;
218 }
219
220 /**
221 * Create an instance of an output formatter by its name
222 */
223 public function createPrinterByName( $format ) {
224 if ( !isset( $this->mFormats[$format] ) )
225 $this->dieUsage( "Unrecognized format: {$format}", 'unknown_format' );
226 return new $this->mFormats[$format] ( $this, $format );
227 }
228
229 /**
230 * Execute api request. Any errors will be handled if the API was called by the remote client.
231 */
232 public function execute() {
233 $this->profileIn();
234 if ( $this->mInternalMode )
235 $this->executeAction();
236 else
237 $this->executeActionWithErrorHandling();
238
239 $this->profileOut();
240 }
241
242 /**
243 * Execute an action, and in case of an error, erase whatever partial results
244 * have been accumulated, and replace it with an error message and a help screen.
245 */
246 protected function executeActionWithErrorHandling() {
247
248 // In case an error occurs during data output,
249 // clear the output buffer and print just the error information
250 ob_start();
251
252 try {
253 $this->executeAction();
254 } catch ( Exception $e ) {
255 // Log it
256 if ( $e instanceof MWException ) {
257 wfDebugLog( 'exception', $e->getLogMessage() );
258 }
259
260 //
261 // Handle any kind of exception by outputing properly formatted error message.
262 // If this fails, an unhandled exception should be thrown so that global error
263 // handler will process and log it.
264 //
265
266 $errCode = $this->substituteResultWithError( $e );
267
268 // Error results should not be cached
269 $this->setCacheMaxAge( 0 );
270
271 $headerStr = 'MediaWiki-API-Error: ' . $errCode;
272 if ( $e->getCode() === 0 )
273 header( $headerStr );
274 else
275 header( $headerStr, true, $e->getCode() );
276
277 // Reset and print just the error message
278 ob_clean();
279
280 // If the error occured during printing, do a printer->profileOut()
281 $this->mPrinter->safeProfileOut();
282 $this->printResult( true );
283 }
284
285 if ( $this->mSquidMaxage == - 1 )
286 {
287 // Nobody called setCacheMaxAge(), use the (s)maxage parameters
288 $smaxage = $this->getParameter( 'smaxage' );
289 $maxage = $this->getParameter( 'maxage' );
290 }
291 else
292 $smaxage = $maxage = $this->mSquidMaxage;
293
294 // Set the cache expiration at the last moment, as any errors may change the expiration.
295 // if $this->mSquidMaxage == 0, the expiry time is set to the first second of unix epoch
296 $exp = min( $smaxage, $maxage );
297 $expires = ( $exp == 0 ? 1 : time() + $exp );
298 header( 'Expires: ' . wfTimestamp( TS_RFC2822, $expires ) );
299 header( 'Cache-Control: s-maxage=' . $smaxage . ', must-revalidate, max-age=' . $maxage );
300
301 if ( $this->mPrinter->getIsHtml() )
302 echo wfReportTime();
303
304 ob_end_flush();
305 }
306
307 /**
308 * Replace the result data with the information about an exception.
309 * Returns the error code
310 */
311 protected function substituteResultWithError( $e ) {
312
313 // Printer may not be initialized if the extractRequestParams() fails for the main module
314 if ( !isset ( $this->mPrinter ) ) {
315 // The printer has not been created yet. Try to manually get formatter value.
316 $value = $this->getRequest()->getVal( 'format', self::API_DEFAULT_FORMAT );
317 if ( !in_array( $value, $this->mFormatNames ) )
318 $value = self::API_DEFAULT_FORMAT;
319
320 $this->mPrinter = $this->createPrinterByName( $value );
321 if ( $this->mPrinter->getNeedsRawData() )
322 $this->getResult()->setRawMode();
323 }
324
325 if ( $e instanceof UsageException ) {
326 //
327 // User entered incorrect parameters - print usage screen
328 //
329 $errMessage = $e->getMessageArray();
330
331 // Only print the help message when this is for the developer, not runtime
332 if ( $this->mPrinter->getWantsHelp() || $this->mAction == 'help' )
333 ApiResult :: setContent( $errMessage, $this->makeHelpMsg() );
334
335 } else {
336 global $wgShowSQLErrors, $wgShowExceptionDetails;
337 //
338 // Something is seriously wrong
339 //
340 if ( ( $e instanceof DBQueryError ) && !$wgShowSQLErrors ) {
341 $info = "Database query error";
342 } else {
343 $info = "Exception Caught: {$e->getMessage()}";
344 }
345
346 $errMessage = array (
347 'code' => 'internal_api_error_' . get_class( $e ),
348 'info' => $info,
349 );
350 ApiResult :: setContent( $errMessage, $wgShowExceptionDetails ? "\n\n{$e->getTraceAsString()}\n\n" : "" );
351 }
352
353 $this->getResult()->reset();
354 $this->getResult()->disableSizeCheck();
355 // Re-add the id
356 $requestid = $this->getParameter( 'requestid' );
357 if ( !is_null( $requestid ) )
358 $this->getResult()->addValue( null, 'requestid', $requestid );
359 $this->getResult()->addValue( null, 'error', $errMessage );
360
361 return $errMessage['code'];
362 }
363
364 /**
365 * Execute the actual module, without any error handling
366 */
367 protected function executeAction() {
368 // First add the id to the top element
369 $requestid = $this->getParameter( 'requestid' );
370 if ( !is_null( $requestid ) )
371 $this->getResult()->addValue( null, 'requestid', $requestid );
372
373 $params = $this->extractRequestParams();
374
375 $this->mShowVersions = $params['version'];
376 $this->mAction = $params['action'];
377
378 if ( !is_string( $this->mAction ) ) {
379 $this->dieUsage( "The API requires a valid action parameter", 'unknown_action' );
380 }
381
382 // Instantiate the module requested by the user
383 $module = new $this->mModules[$this->mAction] ( $this, $this->mAction );
384 $this->mModule = $module;
385
386 //Die if token required, but not provided (unless there is a gettoken parameter)
387 if ( $module->requiresToken() && is_null( $params['token'] ) && !is_null( $params['gettoken'] ) )
388 $this->dieUsageMsg( array( 'missingparam', 'token' ) );
389
390 if ( $module->shouldCheckMaxlag() && isset( $params['maxlag'] ) ) {
391 // Check for maxlag
392 global $wgShowHostnames;
393 $maxLag = $params['maxlag'];
394 list( $host, $lag ) = wfGetLB()->getMaxLag();
395 if ( $lag > $maxLag ) {
396 header( 'Retry-After: ' . max( intval( $maxLag ), 5 ) );
397 header( 'X-Database-Lag: ' . intval( $lag ) );
398 if ( $wgShowHostnames ) {
399 $this->dieUsage( "Waiting for $host: $lag seconds lagged", 'maxlag' );
400 } else {
401 $this->dieUsage( "Waiting for a database server: $lag seconds lagged", 'maxlag' );
402 }
403 return;
404 }
405 }
406
407 global $wgUser;
408 if ( $module->isReadMode() && !$wgUser->isAllowed( 'read' ) )
409 $this->dieUsageMsg( array( 'readrequired' ) );
410 if ( $module->isWriteMode() ) {
411 if ( !$this->mEnableWrite )
412 $this->dieUsageMsg( array( 'writedisabled' ) );
413 if ( !$wgUser->isAllowed( 'writeapi' ) )
414 $this->dieUsageMsg( array( 'writerequired' ) );
415 if ( wfReadOnly() )
416 $this->dieReadOnly();
417 }
418
419 if ( !$this->mInternalMode ) {
420 // Ignore mustBePosted() for internal calls
421 if ( $module->mustBePosted() && !$this->mRequest->wasPosted() )
422 $this->dieUsageMsg( array ( 'mustbeposted', $this->mAction ) );
423
424 // See if custom printer is used
425 $this->mPrinter = $module->getCustomPrinter();
426 if ( is_null( $this->mPrinter ) ) {
427 // Create an appropriate printer
428 $this->mPrinter = $this->createPrinterByName( $params['format'] );
429 }
430
431 if ( $this->mPrinter->getNeedsRawData() )
432 $this->getResult()->setRawMode();
433 }
434
435 // Execute
436 $module->profileIn();
437 $module->execute();
438 wfRunHooks( 'APIAfterExecute', array( &$module ) );
439 $module->profileOut();
440
441 if ( !$this->mInternalMode ) {
442 // Print result data
443 $this->printResult( false );
444 }
445 }
446
447 /**
448 * Print results using the current printer
449 */
450 protected function printResult( $isError ) {
451 $this->getResult()->cleanUpUTF8();
452 $printer = $this->mPrinter;
453 $printer->profileIn();
454
455 /* If the help message is requested in the default (xmlfm) format,
456 * tell the printer not to escape ampersands so that our links do
457 * not break. */
458 $printer->setUnescapeAmps ( ( $this->mAction == 'help' || $isError )
459 && $printer->getFormat() == 'XML' && $printer->getIsHtml() );
460
461 $printer->initPrinter( $isError );
462
463 $printer->execute();
464 $printer->closePrinter();
465 $printer->profileOut();
466 }
467
468 public function isReadMode() {
469 return false;
470 }
471
472 /**
473 * See ApiBase for description.
474 */
475 public function getAllowedParams() {
476 return array (
477 'format' => array (
478 ApiBase :: PARAM_DFLT => ApiMain :: API_DEFAULT_FORMAT,
479 ApiBase :: PARAM_TYPE => $this->mFormatNames
480 ),
481 'action' => array (
482 ApiBase :: PARAM_DFLT => 'help',
483 ApiBase :: PARAM_TYPE => $this->mModuleNames
484 ),
485 'version' => false,
486 'maxlag' => array (
487 ApiBase :: PARAM_TYPE => 'integer'
488 ),
489 'smaxage' => array (
490 ApiBase :: PARAM_TYPE => 'integer',
491 ApiBase :: PARAM_DFLT => 0
492 ),
493 'maxage' => array (
494 ApiBase :: PARAM_TYPE => 'integer',
495 ApiBase :: PARAM_DFLT => 0
496 ),
497 'requestid' => null,
498 );
499 }
500
501 /**
502 * See ApiBase for description.
503 */
504 public function getParamDescription() {
505 return array (
506 'format' => 'The format of the output',
507 'action' => 'What action you would like to perform',
508 'version' => 'When showing help, include version for each module',
509 'maxlag' => 'Maximum lag',
510 'smaxage' => 'Set the s-maxage header to this many seconds. Errors are never cached',
511 'maxage' => 'Set the max-age header to this many seconds. Errors are never cached',
512 'requestid' => 'Request ID to distinguish requests. This will just be output back to you',
513 );
514 }
515
516 /**
517 * See ApiBase for description.
518 */
519 public function getDescription() {
520 return array (
521 '',
522 '',
523 '******************************************************************',
524 '** **',
525 '** This is an auto-generated MediaWiki API documentation page **',
526 '** **',
527 '** Documentation and Examples: **',
528 '** http://www.mediawiki.org/wiki/API **',
529 '** **',
530 '******************************************************************',
531 '',
532 'Status: All features shown on this page should be working, but the API',
533 ' is still in active development, and may change at any time.',
534 ' Make sure to monitor our mailing list for any updates.',
535 '',
536 'Documentation: http://www.mediawiki.org/wiki/API',
537 'Mailing list: http://lists.wikimedia.org/mailman/listinfo/mediawiki-api',
538 'Bugs & Requests: http://bugzilla.wikimedia.org/buglist.cgi?component=API&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&order=bugs.delta_ts',
539 '',
540 '',
541 '',
542 '',
543 '',
544 );
545 }
546
547 public function getPossibleErrors() {
548 return array_merge( parent::getPossibleErrors(), array(
549 array( 'readonlytext' ),
550 array( 'code' => 'unknown_format', 'info' => 'Unrecognized format: format' ),
551 array( 'code' => 'unknown_action', 'info' => 'The API requires a valid action parameter' ),
552 array( 'code' => 'maxlag', 'info' => 'Waiting for host: x seconds lagged' ),
553 array( 'code' => 'maxlag', 'info' => 'Waiting for a database server: x seconds lagged' ),
554 ) );
555 }
556
557 /**
558 * Returns an array of strings with credits for the API
559 */
560 protected function getCredits() {
561 return array(
562 'API developers:',
563 ' Roan Kattouw <Firstname>.<Lastname>@home.nl (lead developer Sep 2007-present)',
564 ' Victor Vasiliev - vasilvv at gee mail dot com',
565 ' Bryan Tong Minh - bryan . tongminh @ gmail . com',
566 ' Sam Reed - sam @ reedyboy . net',
567 ' Yuri Astrakhan <Firstname><Lastname>@gmail.com (creator, lead developer Sep 2006-Sep 2007)',
568 '',
569 'Please send your comments, suggestions and questions to mediawiki-api@lists.wikimedia.org',
570 'or file a bug report at http://bugzilla.wikimedia.org/'
571 );
572 }
573
574 /**
575 * Override the parent to generate help messages for all available modules.
576 */
577 public function makeHelpMsg() {
578 global $wgMemc, $wgAPICacheHelp, $wgAPICacheHelpTimeout;
579 $this->mPrinter->setHelp();
580 // Get help text from cache if present
581 $key = wfMemcKey( 'apihelp', $this->getModuleName(),
582 SpecialVersion::getVersion( 'nodb' ) .
583 $this->getMain()->getShowVersions() );
584 if ( $wgAPICacheHelp ) {
585 $cached = $wgMemc->get( $key );
586 if ( $cached )
587 return $cached;
588 }
589 $retval = $this->reallyMakeHelpMsg();
590 if ( $wgAPICacheHelp )
591 $wgMemc->set( $key, $retval, $wgAPICacheHelpTimeout );
592 return $retval;
593 }
594
595 public function reallyMakeHelpMsg() {
596
597 $this->mPrinter->setHelp();
598
599 // Use parent to make default message for the main module
600 $msg = parent :: makeHelpMsg();
601
602 $astriks = str_repeat( '*** ', 10 );
603 $msg .= "\n\n$astriks Modules $astriks\n\n";
604 foreach ( $this->mModules as $moduleName => $unused ) {
605 $module = new $this->mModules[$moduleName] ( $this, $moduleName );
606 $msg .= self::makeHelpMsgHeader( $module, 'action' );
607 $msg2 = $module->makeHelpMsg();
608 if ( $msg2 !== false )
609 $msg .= $msg2;
610 $msg .= "\n";
611 }
612
613 $msg .= "\n$astriks Permissions $astriks\n\n";
614 foreach ( self :: $mRights as $right => $rightMsg ) {
615 $groups = User::getGroupsWithPermission( $right );
616 $msg .= "* " . $right . " *\n " . wfMsgReplaceArgs( $rightMsg[ 'msg' ], $rightMsg[ 'params' ] ) .
617 "\nGranted to:\n " . str_replace( "*", "all", implode( ", ", $groups ) ) . "\n";
618
619 }
620
621 $msg .= "\n$astriks Formats $astriks\n\n";
622 foreach ( $this->mFormats as $formatName => $unused ) {
623 $module = $this->createPrinterByName( $formatName );
624 $msg .= self::makeHelpMsgHeader( $module, 'format' );
625 $msg2 = $module->makeHelpMsg();
626 if ( $msg2 !== false )
627 $msg .= $msg2;
628 $msg .= "\n";
629 }
630
631 $msg .= "\n*** Credits: ***\n " . implode( "\n ", $this->getCredits() ) . "\n";
632
633
634 return $msg;
635 }
636
637 public static function makeHelpMsgHeader( $module, $paramName ) {
638 $modulePrefix = $module->getModulePrefix();
639 if ( strval( $modulePrefix ) !== '' )
640 $modulePrefix = "($modulePrefix) ";
641
642 return "* $paramName={$module->getModuleName()} $modulePrefix*";
643 }
644
645 private $mIsBot = null;
646 private $mIsSysop = null;
647 private $mCanApiHighLimits = null;
648
649 /**
650 * Returns true if the currently logged in user is a bot, false otherwise
651 * OBSOLETE, use canApiHighLimits() instead
652 */
653 public function isBot() {
654 if ( !isset ( $this->mIsBot ) ) {
655 global $wgUser;
656 $this->mIsBot = $wgUser->isAllowed( 'bot' );
657 }
658 return $this->mIsBot;
659 }
660
661 /**
662 * Similar to isBot(), this method returns true if the logged in user is
663 * a sysop, and false if not.
664 * OBSOLETE, use canApiHighLimits() instead
665 */
666 public function isSysop() {
667 if ( !isset ( $this->mIsSysop ) ) {
668 global $wgUser;
669 $this->mIsSysop = in_array( 'sysop', $wgUser->getGroups() );
670 }
671
672 return $this->mIsSysop;
673 }
674
675 /**
676 * Check whether the current user is allowed to use high limits
677 * @return bool
678 */
679 public function canApiHighLimits() {
680 if ( !isset( $this->mCanApiHighLimits ) ) {
681 global $wgUser;
682 $this->mCanApiHighLimits = $wgUser->isAllowed( 'apihighlimits' );
683 }
684
685 return $this->mCanApiHighLimits;
686 }
687
688 /**
689 * Check whether the user wants us to show version information in the API help
690 * @return bool
691 */
692 public function getShowVersions() {
693 return $this->mShowVersions;
694 }
695
696 /**
697 * Returns the version information of this file, plus it includes
698 * the versions for all files that are not callable proper API modules
699 */
700 public function getVersion() {
701 $vers = array ();
702 $vers[] = 'MediaWiki: ' . SpecialVersion::getVersion() . "\n http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/";
703 $vers[] = __CLASS__ . ': $Id$';
704 $vers[] = ApiBase :: getBaseVersion();
705 $vers[] = ApiFormatBase :: getBaseVersion();
706 $vers[] = ApiQueryBase :: getBaseVersion();
707 return $vers;
708 }
709
710 /**
711 * Add or overwrite a module in this ApiMain instance. Intended for use by extending
712 * classes who wish to add their own modules to their lexicon or override the
713 * behavior of inherent ones.
714 *
715 * @access protected
716 * @param $mdlName String The identifier for this module.
717 * @param $mdlClass String The class where this module is implemented.
718 */
719 protected function addModule( $mdlName, $mdlClass ) {
720 $this->mModules[$mdlName] = $mdlClass;
721 }
722
723 /**
724 * Add or overwrite an output format for this ApiMain. Intended for use by extending
725 * classes who wish to add to or modify current formatters.
726 *
727 * @access protected
728 * @param $fmtName The identifier for this format.
729 * @param $fmtClass The class implementing this format.
730 */
731 protected function addFormat( $fmtName, $fmtClass ) {
732 $this->mFormats[$fmtName] = $fmtClass;
733 }
734
735 /**
736 * Get the array mapping module names to class names
737 */
738 function getModules() {
739 return $this->mModules;
740 }
741 }
742
743 /**
744 * This exception will be thrown when dieUsage is called to stop module execution.
745 * The exception handling code will print a help screen explaining how this API may be used.
746 *
747 * @ingroup API
748 */
749 class UsageException extends Exception {
750
751 private $mCodestr;
752 private $mExtraData;
753
754 public function __construct( $message, $codestr, $code = 0, $extradata = null ) {
755 parent :: __construct( $message, $code );
756 $this->mCodestr = $codestr;
757 $this->mExtraData = $extradata;
758 }
759 public function getCodeString() {
760 return $this->mCodestr;
761 }
762 public function getMessageArray() {
763 $result = array (
764 'code' => $this->mCodestr,
765 'info' => $this->getMessage()
766 );
767 if ( is_array( $this->mExtraData ) )
768 $result = array_merge( $result, $this->mExtraData );
769 return $result;
770 }
771 public function __toString() {
772 return "{$this->getCodeString()}: {$this->getMessage()}";
773 }
774 }