Tidy up the class
[mediawiki.git] / includes / api / ApiMain.php
blob944f96cb4a65abfa7c3f922b82732ba800422cfe
1 <?php
3 /**
4 * Created on Sep 4, 2006
6 * API for MediaWiki 1.8+
8 * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
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.
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.
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
26 if ( !defined( 'MEDIAWIKI' ) ) {
27 // Eclipse helper - will be ignored in production
28 require_once( 'ApiBase.php' );
31 /**
32 * @defgroup API API
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.
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.
46 * @ingroup API
48 class ApiMain extends ApiBase {
50 /**
51 * When no format parameter is given, this format will be used
53 const API_DEFAULT_FORMAT = 'xmlfm';
55 /**
56 * List of available modules: action name => module class
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',
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',
87 /**
88 * List of available formats: format name => format class
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'
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 * );
114 private static $mRights = array(
115 'writeapi' => array(
116 'msg' => 'Use of the write API',
117 'params' => array()
119 'apihighlimits' => array(
120 '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.',
121 'params' => array( ApiMain::LIMIT_SML2, ApiMain::LIMIT_BIG2 )
125 private $mPrinter, $mModules, $mModuleNames, $mFormats, $mFormatNames;
126 private $mResult, $mAction, $mShowVersions, $mEnableWrite, $mRequest;
127 private $mInternalMode, $mSquidMaxage, $mModule;
129 private $mCacheControl = array( 'must-revalidate' => true );
132 * Constructs an instance of ApiMain that utilizes the module and format specified by $request.
134 * @param $request object - if this is an instance of FauxRequest, errors are thrown and no printing occurs
135 * @param $enableWrite bool should be set to true if the api may modify data
137 public function __construct( $request, $enableWrite = false ) {
138 $this->mInternalMode = ( $request instanceof FauxRequest );
140 // Special handling for the main module: $parent === $this
141 parent::__construct( $this, $this->mInternalMode ? 'main_int' : 'main' );
143 if ( !$this->mInternalMode ) {
144 // Impose module restrictions.
145 // If the current user cannot read,
146 // Remove all modules other than login
147 global $wgUser;
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();
157 global $wgAPIModules; // extension modules
158 $this->mModules = $wgAPIModules + self::$Modules;
160 $this->mModuleNames = array_keys( $this->mModules );
161 $this->mFormats = self::$Formats;
162 $this->mFormatNames = array_keys( $this->mFormats );
164 $this->mResult = new ApiResult( $this );
165 $this->mShowVersions = false;
166 $this->mEnableWrite = $enableWrite;
168 $this->mRequest = &$request;
170 $this->mSquidMaxage = -1; // flag for executeActionWithErrorHandling()
171 $this->mCommit = false;
175 * Return true if the API was started by other PHP code using FauxRequest
177 public function isInternalMode() {
178 return $this->mInternalMode;
182 * Return the request object that contains client's request
184 public function getRequest() {
185 return $this->mRequest;
189 * Get the ApiResult object associated with current request
191 public function getResult() {
192 return $this->mResult;
196 * Get the API module object. Only works after executeAction()
198 public function getModule() {
199 return $this->mModule;
203 * Only kept for backwards compatibility
204 * @deprecated Use isWriteMode() instead
206 public function requestWriteMode() {
207 if ( !$this->mEnableWrite ) {
208 $this->dieUsageMsg( array( 'writedisabled' ) );
210 if ( wfReadOnly() ) {
211 $this->dieUsageMsg( array( 'readonlytext' ) );
216 * Set how long the response should be cached.
218 public function setCacheMaxAge( $maxage ) {
219 $this->setCacheControl( array(
220 'max-age' => $maxage,
221 's-maxage' => $maxage
222 ) );
226 * Set directives (key/value pairs) for the Cache-Control header.
227 * Boolean values will be formatted as such, by including or omitting
228 * without an equals sign.
230 public function setCacheControl( $directives ) {
231 $this->mCacheControl = $directives + $this->mCacheControl;
235 * Create an instance of an output formatter by its name
237 public function createPrinterByName( $format ) {
238 if ( !isset( $this->mFormats[$format] ) ) {
239 $this->dieUsage( "Unrecognized format: {$format}", 'unknown_format' );
241 return new $this->mFormats[$format] ( $this, $format );
245 * Execute api request. Any errors will be handled if the API was called by the remote client.
247 public function execute() {
248 $this->profileIn();
249 if ( $this->mInternalMode ) {
250 $this->executeAction();
251 } else {
252 $this->executeActionWithErrorHandling();
255 $this->profileOut();
259 * Execute an action, and in case of an error, erase whatever partial results
260 * have been accumulated, and replace it with an error message and a help screen.
262 protected function executeActionWithErrorHandling() {
263 // In case an error occurs during data output,
264 // clear the output buffer and print just the error information
265 ob_start();
267 try {
268 $this->executeAction();
269 } catch ( Exception $e ) {
270 // Log it
271 if ( $e instanceof MWException ) {
272 wfDebugLog( 'exception', $e->getLogMessage() );
276 // Handle any kind of exception by outputing properly formatted error message.
277 // If this fails, an unhandled exception should be thrown so that global error
278 // handler will process and log it.
281 $errCode = $this->substituteResultWithError( $e );
283 // Error results should not be cached
284 $this->setCacheMaxAge( 0 );
286 $headerStr = 'MediaWiki-API-Error: ' . $errCode;
287 if ( $e->getCode() === 0 ) {
288 header( $headerStr );
289 } else {
290 header( $headerStr, true, $e->getCode() );
293 // Reset and print just the error message
294 ob_clean();
296 // If the error occured during printing, do a printer->profileOut()
297 $this->mPrinter->safeProfileOut();
298 $this->printResult( true );
301 // If nobody called setCacheMaxAge(), use the (s)maxage parameters
302 if ( !isset( $this->mCacheControl['s-maxage'] ) ) {
303 $this->mCacheControl['s-maxage'] = $this->getParameter( 'smaxage' );
305 if ( !isset( $this->mCacheControl['max-age'] ) ) {
306 $this->mCacheControl['max-age'] = $this->getParameter( 'maxage' );
309 // Set the cache expiration at the last moment, as any errors may change the expiration.
310 // if $this->mSquidMaxage == 0, the expiry time is set to the first second of unix epoch
311 $exp = min( $this->mCacheControl['s-maxage'], $this->mCacheControl['max-age'] );
312 $expires = ( $exp == 0 ? 1 : time() + $exp );
313 header( 'Expires: ' . wfTimestamp( TS_RFC2822, $expires ) );
315 // Construct the Cache-Control header
316 $ccHeader = '';
317 $separator = '';
318 foreach ( $this->mCacheControl as $name => $value ) {
319 if ( is_bool( $value ) ) {
320 if ( $value ) {
321 $ccHeader .= $separator . $name;
322 $separator = ', ';
324 } else {
325 $ccHeader .= $separator . "$name=$value";
326 $separator = ', ';
330 header( "Cache-Control: $ccHeader" );
332 if ( $this->mPrinter->getIsHtml() ) {
333 echo wfReportTime();
336 ob_end_flush();
340 * Replace the result data with the information about an exception.
341 * Returns the error code
343 protected function substituteResultWithError( $e ) {
344 // Printer may not be initialized if the extractRequestParams() fails for the main module
345 if ( !isset ( $this->mPrinter ) ) {
346 // The printer has not been created yet. Try to manually get formatter value.
347 $value = $this->getRequest()->getVal( 'format', self::API_DEFAULT_FORMAT );
348 if ( !in_array( $value, $this->mFormatNames ) ) {
349 $value = self::API_DEFAULT_FORMAT;
352 $this->mPrinter = $this->createPrinterByName( $value );
353 if ( $this->mPrinter->getNeedsRawData() ) {
354 $this->getResult()->setRawMode();
358 if ( $e instanceof UsageException ) {
360 // User entered incorrect parameters - print usage screen
362 $errMessage = $e->getMessageArray();
364 // Only print the help message when this is for the developer, not runtime
365 if ( $this->mPrinter->getWantsHelp() || $this->mAction == 'help' ) {
366 ApiResult::setContent( $errMessage, $this->makeHelpMsg() );
369 } else {
370 global $wgShowSQLErrors, $wgShowExceptionDetails;
372 // Something is seriously wrong
374 if ( ( $e instanceof DBQueryError ) && !$wgShowSQLErrors ) {
375 $info = 'Database query error';
376 } else {
377 $info = "Exception Caught: {$e->getMessage()}";
380 $errMessage = array(
381 'code' => 'internal_api_error_' . get_class( $e ),
382 'info' => $info,
384 ApiResult::setContent( $errMessage, $wgShowExceptionDetails ? "\n\n{$e->getTraceAsString()}\n\n" : '' );
387 $this->getResult()->reset();
388 $this->getResult()->disableSizeCheck();
389 // Re-add the id
390 $requestid = $this->getParameter( 'requestid' );
391 if ( !is_null( $requestid ) ) {
392 $this->getResult()->addValue( null, 'requestid', $requestid );
394 $this->getResult()->addValue( null, 'error', $errMessage );
396 return $errMessage['code'];
400 * Execute the actual module, without any error handling
402 protected function executeAction() {
403 // First add the id to the top element
404 $requestid = $this->getParameter( 'requestid' );
405 if ( !is_null( $requestid ) ) {
406 $this->getResult()->addValue( null, 'requestid', $requestid );
409 $params = $this->extractRequestParams();
411 $this->mShowVersions = $params['version'];
412 $this->mAction = $params['action'];
414 if ( !is_string( $this->mAction ) ) {
415 $this->dieUsage( 'The API requires a valid action parameter', 'unknown_action' );
418 // Instantiate the module requested by the user
419 $module = new $this->mModules[$this->mAction] ( $this, $this->mAction );
420 $this->mModule = $module;
422 $moduleParams = $module->extractRequestParams();
424 // Die if token required, but not provided (unless there is a gettoken parameter)
425 $salt = $module->getTokenSalt();
426 if ( $salt !== false && !isset( $moduleParams['gettoken'] ) ) {
427 if ( !isset( $moduleParams['token'] ) ) {
428 $this->dieUsageMsg( array( 'missingparam', 'token' ) );
429 } else {
430 global $wgUser;
431 if ( !$wgUser->matchEditToken( $moduleParams['token'], $salt ) ) {
432 $this->dieUsageMsg( array( 'sessionfailure' ) );
437 if ( $module->shouldCheckMaxlag() && isset( $params['maxlag'] ) ) {
438 // Check for maxlag
439 global $wgShowHostnames;
440 $maxLag = $params['maxlag'];
441 list( $host, $lag ) = wfGetLB()->getMaxLag();
442 if ( $lag > $maxLag ) {
443 header( 'Retry-After: ' . max( intval( $maxLag ), 5 ) );
444 header( 'X-Database-Lag: ' . intval( $lag ) );
445 if ( $wgShowHostnames ) {
446 $this->dieUsage( "Waiting for $host: $lag seconds lagged", 'maxlag' );
447 } else {
448 $this->dieUsage( "Waiting for a database server: $lag seconds lagged", 'maxlag' );
450 return;
454 global $wgUser, $wgGroupPermissions;
455 if ( $module->isReadMode() && !$wgGroupPermissions['*']['read'] && !$wgUser->isAllowed( 'read' ) )
457 $this->dieUsageMsg( array( 'readrequired' ) );
459 if ( $module->isWriteMode() ) {
460 if ( !$this->mEnableWrite ) {
461 $this->dieUsageMsg( array( 'writedisabled' ) );
463 if ( !$wgUser->isAllowed( 'writeapi' ) ) {
464 $this->dieUsageMsg( array( 'writerequired' ) );
466 if ( wfReadOnly() ) {
467 $this->dieReadOnly();
471 if ( !$this->mInternalMode ) {
472 // Ignore mustBePosted() for internal calls
473 if ( $module->mustBePosted() && !$this->mRequest->wasPosted() ) {
474 $this->dieUsageMsg( array( 'mustbeposted', $this->mAction ) );
477 // See if custom printer is used
478 $this->mPrinter = $module->getCustomPrinter();
479 if ( is_null( $this->mPrinter ) ) {
480 // Create an appropriate printer
481 $this->mPrinter = $this->createPrinterByName( $params['format'] );
484 if ( $this->mPrinter->getNeedsRawData() ) {
485 $this->getResult()->setRawMode();
489 // Execute
490 $module->profileIn();
491 $module->execute();
492 wfRunHooks( 'APIAfterExecute', array( &$module ) );
493 $module->profileOut();
495 if ( !$this->mInternalMode ) {
496 // Print result data
497 $this->printResult( false );
502 * Print results using the current printer
504 protected function printResult( $isError ) {
505 $this->getResult()->cleanUpUTF8();
506 $printer = $this->mPrinter;
507 $printer->profileIn();
510 * If the help message is requested in the default (xmlfm) format,
511 * tell the printer not to escape ampersands so that our links do
512 * not break.
514 $printer->setUnescapeAmps( ( $this->mAction == 'help' || $isError )
515 && $printer->getFormat() == 'XML' && $printer->getIsHtml() );
517 $printer->initPrinter( $isError );
519 $printer->execute();
520 $printer->closePrinter();
521 $printer->profileOut();
524 public function isReadMode() {
525 return false;
529 * See ApiBase for description.
531 public function getAllowedParams() {
532 return array(
533 'format' => array(
534 ApiBase::PARAM_DFLT => ApiMain::API_DEFAULT_FORMAT,
535 ApiBase::PARAM_TYPE => $this->mFormatNames
537 'action' => array(
538 ApiBase::PARAM_DFLT => 'help',
539 ApiBase::PARAM_TYPE => $this->mModuleNames
541 'version' => false,
542 'maxlag' => array(
543 ApiBase::PARAM_TYPE => 'integer'
545 'smaxage' => array(
546 ApiBase::PARAM_TYPE => 'integer',
547 ApiBase::PARAM_DFLT => 0
549 'maxage' => array(
550 ApiBase::PARAM_TYPE => 'integer',
551 ApiBase::PARAM_DFLT => 0
553 'requestid' => null,
558 * See ApiBase for description.
560 public function getParamDescription() {
561 return array(
562 'format' => 'The format of the output',
563 'action' => 'What action you would like to perform',
564 'version' => 'When showing help, include version for each module',
565 'maxlag' => 'Maximum lag',
566 'smaxage' => 'Set the s-maxage header to this many seconds. Errors are never cached',
567 'maxage' => 'Set the max-age header to this many seconds. Errors are never cached',
568 'requestid' => 'Request ID to distinguish requests. This will just be output back to you',
573 * See ApiBase for description.
575 public function getDescription() {
576 return array(
579 '******************************************************************',
580 '** **',
581 '** This is an auto-generated MediaWiki API documentation page **',
582 '** **',
583 '** Documentation and Examples: **',
584 '** http://www.mediawiki.org/wiki/API **',
585 '** **',
586 '******************************************************************',
588 'Status: All features shown on this page should be working, but the API',
589 ' is still in active development, and may change at any time.',
590 ' Make sure to monitor our mailing list for any updates.',
592 'Documentation: http://www.mediawiki.org/wiki/API',
593 'Mailing list: http://lists.wikimedia.org/mailman/listinfo/mediawiki-api',
594 'Bugs & Requests: http://bugzilla.wikimedia.org/buglist.cgi?component=API&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&order=bugs.delta_ts',
603 public function getPossibleErrors() {
604 return array_merge( parent::getPossibleErrors(), array(
605 array( 'readonlytext' ),
606 array( 'code' => 'unknown_format', 'info' => 'Unrecognized format: format' ),
607 array( 'code' => 'unknown_action', 'info' => 'The API requires a valid action parameter' ),
608 array( 'code' => 'maxlag', 'info' => 'Waiting for host: x seconds lagged' ),
609 array( 'code' => 'maxlag', 'info' => 'Waiting for a database server: x seconds lagged' ),
610 ) );
614 * Returns an array of strings with credits for the API
616 protected function getCredits() {
617 return array(
618 'API developers:',
619 ' Roan Kattouw <Firstname>.<Lastname>@home.nl (lead developer Sep 2007-present)',
620 ' Victor Vasiliev - vasilvv at gee mail dot com',
621 ' Bryan Tong Minh - bryan . tongminh @ gmail . com',
622 ' Sam Reed - sam @ reedyboy . net',
623 ' Yuri Astrakhan <Firstname><Lastname>@gmail.com (creator, lead developer Sep 2006-Sep 2007)',
625 'Please send your comments, suggestions and questions to mediawiki-api@lists.wikimedia.org',
626 'or file a bug report at http://bugzilla.wikimedia.org/'
631 * Override the parent to generate help messages for all available modules.
633 public function makeHelpMsg() {
634 global $wgMemc, $wgAPICacheHelp, $wgAPICacheHelpTimeout;
635 $this->mPrinter->setHelp();
636 // Get help text from cache if present
637 $key = wfMemcKey( 'apihelp', $this->getModuleName(),
638 SpecialVersion::getVersion( 'nodb' ) .
639 $this->getMain()->getShowVersions() );
640 if ( $wgAPICacheHelp ) {
641 $cached = $wgMemc->get( $key );
642 if ( $cached ) {
643 return $cached;
646 $retval = $this->reallyMakeHelpMsg();
647 if ( $wgAPICacheHelp ) {
648 $wgMemc->set( $key, $retval, $wgAPICacheHelpTimeout );
650 return $retval;
653 public function reallyMakeHelpMsg() {
654 $this->mPrinter->setHelp();
656 // Use parent to make default message for the main module
657 $msg = parent::makeHelpMsg();
659 $astriks = str_repeat( '*** ', 10 );
660 $msg .= "\n\n$astriks Modules $astriks\n\n";
661 foreach ( $this->mModules as $moduleName => $unused ) {
662 $module = new $this->mModules[$moduleName] ( $this, $moduleName );
663 $msg .= self::makeHelpMsgHeader( $module, 'action' );
664 $msg2 = $module->makeHelpMsg();
665 if ( $msg2 !== false ) {
666 $msg .= $msg2;
668 $msg .= "\n";
671 $msg .= "\n$astriks Permissions $astriks\n\n";
672 foreach ( self::$mRights as $right => $rightMsg ) {
673 $groups = User::getGroupsWithPermission( $right );
674 $msg .= "* " . $right . " *\n " . wfMsgReplaceArgs( $rightMsg[ 'msg' ], $rightMsg[ 'params' ] ) .
675 "\nGranted to:\n " . str_replace( '*', 'all', implode( ', ', $groups ) ) . "\n";
679 $msg .= "\n$astriks Formats $astriks\n\n";
680 foreach ( $this->mFormats as $formatName => $unused ) {
681 $module = $this->createPrinterByName( $formatName );
682 $msg .= self::makeHelpMsgHeader( $module, 'format' );
683 $msg2 = $module->makeHelpMsg();
684 if ( $msg2 !== false ) {
685 $msg .= $msg2;
687 $msg .= "\n";
690 $msg .= "\n*** Credits: ***\n " . implode( "\n ", $this->getCredits() ) . "\n";
693 return $msg;
696 public static function makeHelpMsgHeader( $module, $paramName ) {
697 $modulePrefix = $module->getModulePrefix();
698 if ( strval( $modulePrefix ) !== '' ) {
699 $modulePrefix = "($modulePrefix) ";
702 return "* $paramName={$module->getModuleName()} $modulePrefix*";
705 private $mIsBot = null;
706 private $mIsSysop = null;
707 private $mCanApiHighLimits = null;
710 * Returns true if the currently logged in user is a bot, false otherwise
711 * OBSOLETE, use canApiHighLimits() instead
713 public function isBot() {
714 if ( !isset( $this->mIsBot ) ) {
715 global $wgUser;
716 $this->mIsBot = $wgUser->isAllowed( 'bot' );
718 return $this->mIsBot;
722 * Similar to isBot(), this method returns true if the logged in user is
723 * a sysop, and false if not.
724 * OBSOLETE, use canApiHighLimits() instead
726 public function isSysop() {
727 if ( !isset( $this->mIsSysop ) ) {
728 global $wgUser;
729 $this->mIsSysop = in_array( 'sysop', $wgUser->getGroups() );
732 return $this->mIsSysop;
736 * Check whether the current user is allowed to use high limits
737 * @return bool
739 public function canApiHighLimits() {
740 if ( !isset( $this->mCanApiHighLimits ) ) {
741 global $wgUser;
742 $this->mCanApiHighLimits = $wgUser->isAllowed( 'apihighlimits' );
745 return $this->mCanApiHighLimits;
749 * Check whether the user wants us to show version information in the API help
750 * @return bool
752 public function getShowVersions() {
753 return $this->mShowVersions;
757 * Returns the version information of this file, plus it includes
758 * the versions for all files that are not callable proper API modules
760 public function getVersion() {
761 $vers = array ();
762 $vers[] = 'MediaWiki: ' . SpecialVersion::getVersion() . "\n http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/";
763 $vers[] = __CLASS__ . ': $Id$';
764 $vers[] = ApiBase::getBaseVersion();
765 $vers[] = ApiFormatBase::getBaseVersion();
766 $vers[] = ApiQueryBase::getBaseVersion();
767 return $vers;
771 * Add or overwrite a module in this ApiMain instance. Intended for use by extending
772 * classes who wish to add their own modules to their lexicon or override the
773 * behavior of inherent ones.
775 * @param $mdlName String The identifier for this module.
776 * @param $mdlClass String The class where this module is implemented.
778 protected function addModule( $mdlName, $mdlClass ) {
779 $this->mModules[$mdlName] = $mdlClass;
783 * Add or overwrite an output format for this ApiMain. Intended for use by extending
784 * classes who wish to add to or modify current formatters.
786 * @param $fmtName The identifier for this format.
787 * @param $fmtClass The class implementing this format.
789 protected function addFormat( $fmtName, $fmtClass ) {
790 $this->mFormats[$fmtName] = $fmtClass;
794 * Get the array mapping module names to class names
796 function getModules() {
797 return $this->mModules;
802 * This exception will be thrown when dieUsage is called to stop module execution.
803 * The exception handling code will print a help screen explaining how this API may be used.
805 * @ingroup API
807 class UsageException extends Exception {
809 private $mCodestr;
810 private $mExtraData;
812 public function __construct( $message, $codestr, $code = 0, $extradata = null ) {
813 parent::__construct( $message, $code );
814 $this->mCodestr = $codestr;
815 $this->mExtraData = $extradata;
818 public function getCodeString() {
819 return $this->mCodestr;
822 public function getMessageArray() {
823 $result = array(
824 'code' => $this->mCodestr,
825 'info' => $this->getMessage()
827 if ( is_array( $this->mExtraData ) ) {
828 $result = array_merge( $result, $this->mExtraData );
830 return $result;
833 public function __toString() {
834 return "{$this->getCodeString()}: {$this->getMessage()}";