Merge "Remove SpecialPage::getFile"
[mediawiki.git] / includes / api / ApiMain.php
blob84db9edc170f8dd91034c8816c631b18245b0093
1 <?php
2 /**
5 * Created on Sep 4, 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
24 * @file
25 * @defgroup API API
28 /**
29 * This is the main API class, used for both external and internal processing.
30 * When executed, it will create the requested formatter object,
31 * instantiate and execute an object associated with the needed action,
32 * and use formatter to print results.
33 * In case of an exception, an error message will be printed using the same formatter.
35 * To use API from another application, run it using FauxRequest object, in which
36 * case any internal exceptions will not be handled but passed up to the caller.
37 * After successful execution, use getResult() for the resulting data.
39 * @ingroup API
41 class ApiMain extends ApiBase {
42 /**
43 * When no format parameter is given, this format will be used
45 const API_DEFAULT_FORMAT = 'xmlfm';
47 /**
48 * List of available modules: action name => module class
50 private static $Modules = array(
51 'login' => 'ApiLogin',
52 'logout' => 'ApiLogout',
53 'createaccount' => 'ApiCreateAccount',
54 'query' => 'ApiQuery',
55 'expandtemplates' => 'ApiExpandTemplates',
56 'parse' => 'ApiParse',
57 'opensearch' => 'ApiOpenSearch',
58 'feedcontributions' => 'ApiFeedContributions',
59 'feedrecentchanges' => 'ApiFeedRecentChanges',
60 'feedwatchlist' => 'ApiFeedWatchlist',
61 'help' => 'ApiHelp',
62 'paraminfo' => 'ApiParamInfo',
63 'rsd' => 'ApiRsd',
64 'compare' => 'ApiComparePages',
65 'tokens' => 'ApiTokens',
67 // Write modules
68 'purge' => 'ApiPurge',
69 'setnotificationtimestamp' => 'ApiSetNotificationTimestamp',
70 'rollback' => 'ApiRollback',
71 'delete' => 'ApiDelete',
72 'undelete' => 'ApiUndelete',
73 'protect' => 'ApiProtect',
74 'block' => 'ApiBlock',
75 'unblock' => 'ApiUnblock',
76 'move' => 'ApiMove',
77 'edit' => 'ApiEditPage',
78 'upload' => 'ApiUpload',
79 'filerevert' => 'ApiFileRevert',
80 'emailuser' => 'ApiEmailUser',
81 'watch' => 'ApiWatch',
82 'patrol' => 'ApiPatrol',
83 'import' => 'ApiImport',
84 'userrights' => 'ApiUserrights',
85 'options' => 'ApiOptions',
86 'imagerotate' => 'ApiImageRotate',
87 'revisiondelete' => 'ApiRevisionDelete',
90 /**
91 * List of available formats: format name => format class
93 private static $Formats = array(
94 'json' => 'ApiFormatJson',
95 'jsonfm' => 'ApiFormatJson',
96 'php' => 'ApiFormatPhp',
97 'phpfm' => 'ApiFormatPhp',
98 'wddx' => 'ApiFormatWddx',
99 'wddxfm' => 'ApiFormatWddx',
100 'xml' => 'ApiFormatXml',
101 'xmlfm' => 'ApiFormatXml',
102 'yaml' => 'ApiFormatYaml',
103 'yamlfm' => 'ApiFormatYaml',
104 'rawfm' => 'ApiFormatJson',
105 'txt' => 'ApiFormatTxt',
106 'txtfm' => 'ApiFormatTxt',
107 'dbg' => 'ApiFormatDbg',
108 'dbgfm' => 'ApiFormatDbg',
109 'dump' => 'ApiFormatDump',
110 'dumpfm' => 'ApiFormatDump',
111 'none' => 'ApiFormatNone',
114 // @codingStandardsIgnoreStart String contenation on "msg" not allowed to break long line
116 * List of user roles that are specifically relevant to the API.
117 * array( 'right' => array ( 'msg' => 'Some message with a $1',
118 * 'params' => array ( $someVarToSubst ) ),
119 * );
121 private static $mRights = array(
122 'writeapi' => array(
123 'msg' => 'Use of the write API',
124 'params' => array()
126 'apihighlimits' => array(
127 '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.',
128 'params' => array( ApiBase::LIMIT_SML2, ApiBase::LIMIT_BIG2 )
131 // @codingStandardsIgnoreEnd
134 * @var ApiFormatBase
136 private $mPrinter;
138 private $mModuleMgr, $mResult;
139 private $mAction;
140 private $mEnableWrite;
141 private $mInternalMode, $mSquidMaxage, $mModule;
143 private $mCacheMode = 'private';
144 private $mCacheControl = array();
145 private $mParamsUsed = array();
148 * Constructs an instance of ApiMain that utilizes the module and format specified by $request.
150 * @param IContextSource|WebRequest $context If this is an instance of
151 * FauxRequest, errors are thrown and no printing occurs
152 * @param bool $enableWrite Should be set to true if the api may modify data
154 public function __construct( $context = null, $enableWrite = false ) {
155 if ( $context === null ) {
156 $context = RequestContext::getMain();
157 } elseif ( $context instanceof WebRequest ) {
158 // BC for pre-1.19
159 $request = $context;
160 $context = RequestContext::getMain();
162 // We set a derivative context so we can change stuff later
163 $this->setContext( new DerivativeContext( $context ) );
165 if ( isset( $request ) ) {
166 $this->getContext()->setRequest( $request );
169 $this->mInternalMode = ( $this->getRequest() instanceof FauxRequest );
171 // Special handling for the main module: $parent === $this
172 parent::__construct( $this, $this->mInternalMode ? 'main_int' : 'main' );
174 if ( !$this->mInternalMode ) {
175 // Impose module restrictions.
176 // If the current user cannot read,
177 // Remove all modules other than login
178 global $wgUser;
180 if ( $this->getVal( 'callback' ) !== null ) {
181 // JSON callback allows cross-site reads.
182 // For safety, strip user credentials.
183 wfDebug( "API: stripping user credentials for JSON callback\n" );
184 $wgUser = new User();
185 $this->getContext()->setUser( $wgUser );
189 $config = $this->getConfig();
190 $this->mModuleMgr = new ApiModuleManager( $this );
191 $this->mModuleMgr->addModules( self::$Modules, 'action' );
192 $this->mModuleMgr->addModules( $config->get( 'APIModules' ), 'action' );
193 $this->mModuleMgr->addModules( self::$Formats, 'format' );
194 $this->mModuleMgr->addModules( $config->get( 'APIFormatModules' ), 'format' );
196 $this->mResult = new ApiResult( $this );
197 $this->mEnableWrite = $enableWrite;
199 $this->mSquidMaxage = -1; // flag for executeActionWithErrorHandling()
200 $this->mCommit = false;
204 * Return true if the API was started by other PHP code using FauxRequest
205 * @return bool
207 public function isInternalMode() {
208 return $this->mInternalMode;
212 * Get the ApiResult object associated with current request
214 * @return ApiResult
216 public function getResult() {
217 return $this->mResult;
221 * Get the API module object. Only works after executeAction()
223 * @return ApiBase
225 public function getModule() {
226 return $this->mModule;
230 * Get the result formatter object. Only works after setupExecuteAction()
232 * @return ApiFormatBase
234 public function getPrinter() {
235 return $this->mPrinter;
239 * Set how long the response should be cached.
241 * @param int $maxage
243 public function setCacheMaxAge( $maxage ) {
244 $this->setCacheControl( array(
245 'max-age' => $maxage,
246 's-maxage' => $maxage
247 ) );
251 * Set the type of caching headers which will be sent.
253 * @param string $mode One of:
254 * - 'public': Cache this object in public caches, if the maxage or smaxage
255 * parameter is set, or if setCacheMaxAge() was called. If a maximum age is
256 * not provided by any of these means, the object will be private.
257 * - 'private': Cache this object only in private client-side caches.
258 * - 'anon-public-user-private': Make this object cacheable for logged-out
259 * users, but private for logged-in users. IMPORTANT: If this is set, it must be
260 * set consistently for a given URL, it cannot be set differently depending on
261 * things like the contents of the database, or whether the user is logged in.
263 * If the wiki does not allow anonymous users to read it, the mode set here
264 * will be ignored, and private caching headers will always be sent. In other words,
265 * the "public" mode is equivalent to saying that the data sent is as public as a page
266 * view.
268 * For user-dependent data, the private mode should generally be used. The
269 * anon-public-user-private mode should only be used where there is a particularly
270 * good performance reason for caching the anonymous response, but where the
271 * response to logged-in users may differ, or may contain private data.
273 * If this function is never called, then the default will be the private mode.
275 public function setCacheMode( $mode ) {
276 if ( !in_array( $mode, array( 'private', 'public', 'anon-public-user-private' ) ) ) {
277 wfDebug( __METHOD__ . ": unrecognised cache mode \"$mode\"\n" );
279 // Ignore for forwards-compatibility
280 return;
283 if ( !User::isEveryoneAllowed( 'read' ) ) {
284 // Private wiki, only private headers
285 if ( $mode !== 'private' ) {
286 wfDebug( __METHOD__ . ": ignoring request for $mode cache mode, private wiki\n" );
288 return;
292 wfDebug( __METHOD__ . ": setting cache mode $mode\n" );
293 $this->mCacheMode = $mode;
297 * Set directives (key/value pairs) for the Cache-Control header.
298 * Boolean values will be formatted as such, by including or omitting
299 * without an equals sign.
301 * Cache control values set here will only be used if the cache mode is not
302 * private, see setCacheMode().
304 * @param array $directives
306 public function setCacheControl( $directives ) {
307 $this->mCacheControl = $directives + $this->mCacheControl;
311 * Create an instance of an output formatter by its name
313 * @param string $format
315 * @return ApiFormatBase
317 public function createPrinterByName( $format ) {
318 $printer = $this->mModuleMgr->getModule( $format, 'format' );
319 if ( $printer === null ) {
320 $this->dieUsage( "Unrecognized format: {$format}", 'unknown_format' );
323 return $printer;
327 * Execute api request. Any errors will be handled if the API was called by the remote client.
329 public function execute() {
330 $this->profileIn();
331 if ( $this->mInternalMode ) {
332 $this->executeAction();
333 } else {
334 $this->executeActionWithErrorHandling();
337 $this->profileOut();
341 * Execute an action, and in case of an error, erase whatever partial results
342 * have been accumulated, and replace it with an error message and a help screen.
344 protected function executeActionWithErrorHandling() {
345 // Verify the CORS header before executing the action
346 if ( !$this->handleCORS() ) {
347 // handleCORS() has sent a 403, abort
348 return;
351 // Exit here if the request method was OPTIONS
352 // (assume there will be a followup GET or POST)
353 if ( $this->getRequest()->getMethod() === 'OPTIONS' ) {
354 return;
357 // In case an error occurs during data output,
358 // clear the output buffer and print just the error information
359 ob_start();
361 $t = microtime( true );
362 try {
363 $this->executeAction();
364 } catch ( Exception $e ) {
365 $this->handleException( $e );
368 // Log the request whether or not there was an error
369 $this->logRequest( microtime( true ) - $t );
371 // Send cache headers after any code which might generate an error, to
372 // avoid sending public cache headers for errors.
373 $this->sendCacheHeaders();
375 if ( $this->mPrinter->getIsHtml() && !$this->mPrinter->isDisabled() ) {
376 echo wfReportTime();
379 ob_end_flush();
383 * Handle an exception as an API response
385 * @since 1.23
386 * @param Exception $e
388 protected function handleException( Exception $e ) {
389 // Bug 63145: Rollback any open database transactions
390 if ( !( $e instanceof UsageException ) ) {
391 // UsageExceptions are intentional, so don't rollback if that's the case
392 MWExceptionHandler::rollbackMasterChangesAndLog( $e );
395 // Allow extra cleanup and logging
396 wfRunHooks( 'ApiMain::onException', array( $this, $e ) );
398 // Log it
399 if ( !( $e instanceof UsageException ) ) {
400 MWExceptionHandler::logException( $e );
403 // Handle any kind of exception by outputting properly formatted error message.
404 // If this fails, an unhandled exception should be thrown so that global error
405 // handler will process and log it.
407 $errCode = $this->substituteResultWithError( $e );
409 // Error results should not be cached
410 $this->setCacheMode( 'private' );
412 $response = $this->getRequest()->response();
413 $headerStr = 'MediaWiki-API-Error: ' . $errCode;
414 if ( $e->getCode() === 0 ) {
415 $response->header( $headerStr );
416 } else {
417 $response->header( $headerStr, true, $e->getCode() );
420 // Reset and print just the error message
421 ob_clean();
423 // If the error occurred during printing, do a printer->profileOut()
424 $this->mPrinter->safeProfileOut();
425 $this->printResult( true );
429 * Handle an exception from the ApiBeforeMain hook.
431 * This tries to print the exception as an API response, to be more
432 * friendly to clients. If it fails, it will rethrow the exception.
434 * @since 1.23
435 * @param Exception $e
437 public static function handleApiBeforeMainException( Exception $e ) {
438 ob_start();
440 try {
441 $main = new self( RequestContext::getMain(), false );
442 $main->handleException( $e );
443 } catch ( Exception $e2 ) {
444 // Nope, even that didn't work. Punt.
445 throw $e;
448 // Log the request and reset cache headers
449 $main->logRequest( 0 );
450 $main->sendCacheHeaders();
452 ob_end_flush();
456 * Check the &origin= query parameter against the Origin: HTTP header and respond appropriately.
458 * If no origin parameter is present, nothing happens.
459 * If an origin parameter is present but doesn't match the Origin header, a 403 status code
460 * is set and false is returned.
461 * If the parameter and the header do match, the header is checked against $wgCrossSiteAJAXdomains
462 * and $wgCrossSiteAJAXdomainExceptions, and if the origin qualifies, the appropriate CORS
463 * headers are set.
465 * @return bool False if the caller should abort (403 case), true otherwise (all other cases)
467 protected function handleCORS() {
468 $originParam = $this->getParameter( 'origin' ); // defaults to null
469 if ( $originParam === null ) {
470 // No origin parameter, nothing to do
471 return true;
474 $request = $this->getRequest();
475 $response = $request->response();
476 // Origin: header is a space-separated list of origins, check all of them
477 $originHeader = $request->getHeader( 'Origin' );
478 if ( $originHeader === false ) {
479 $origins = array();
480 } else {
481 $origins = explode( ' ', $originHeader );
484 if ( !in_array( $originParam, $origins ) ) {
485 // origin parameter set but incorrect
486 // Send a 403 response
487 $message = HttpStatus::getMessage( 403 );
488 $response->header( "HTTP/1.1 403 $message", true, 403 );
489 $response->header( 'Cache-Control: no-cache' );
490 echo "'origin' parameter does not match Origin header\n";
492 return false;
495 $config = $this->getConfig();
496 $matchOrigin = self::matchOrigin(
497 $originParam,
498 $config->get( 'CrossSiteAJAXdomains' ),
499 $config->get( 'CrossSiteAJAXdomainExceptions' )
502 if ( $matchOrigin ) {
503 $response->header( "Access-Control-Allow-Origin: $originParam" );
504 $response->header( 'Access-Control-Allow-Credentials: true' );
505 $this->getOutput()->addVaryHeader( 'Origin' );
508 return true;
512 * Attempt to match an Origin header against a set of rules and a set of exceptions
513 * @param string $value Origin header
514 * @param array $rules Set of wildcard rules
515 * @param array $exceptions Set of wildcard rules
516 * @return bool True if $value matches a rule in $rules and doesn't match
517 * any rules in $exceptions, false otherwise
519 protected static function matchOrigin( $value, $rules, $exceptions ) {
520 foreach ( $rules as $rule ) {
521 if ( preg_match( self::wildcardToRegex( $rule ), $value ) ) {
522 // Rule matches, check exceptions
523 foreach ( $exceptions as $exc ) {
524 if ( preg_match( self::wildcardToRegex( $exc ), $value ) ) {
525 return false;
529 return true;
533 return false;
537 * Helper function to convert wildcard string into a regex
538 * '*' => '.*?'
539 * '?' => '.'
541 * @param string $wildcard String with wildcards
542 * @return string Regular expression
544 protected static function wildcardToRegex( $wildcard ) {
545 $wildcard = preg_quote( $wildcard, '/' );
546 $wildcard = str_replace(
547 array( '\*', '\?' ),
548 array( '.*?', '.' ),
549 $wildcard
552 return "/https?:\/\/$wildcard/";
555 protected function sendCacheHeaders() {
556 $response = $this->getRequest()->response();
557 $out = $this->getOutput();
559 $config = $this->getConfig();
561 if ( $config->get( 'VaryOnXFP' ) ) {
562 $out->addVaryHeader( 'X-Forwarded-Proto' );
565 if ( $this->mCacheMode == 'private' ) {
566 $response->header( 'Cache-Control: private' );
567 return;
570 $useXVO = $config->get( 'UseXVO' );
571 if ( $this->mCacheMode == 'anon-public-user-private' ) {
572 $out->addVaryHeader( 'Cookie' );
573 $response->header( $out->getVaryHeader() );
574 if ( $useXVO ) {
575 $response->header( $out->getXVO() );
576 if ( $out->haveCacheVaryCookies() ) {
577 // Logged in, mark this request private
578 $response->header( 'Cache-Control: private' );
579 return;
581 // Logged out, send normal public headers below
582 } elseif ( session_id() != '' ) {
583 // Logged in or otherwise has session (e.g. anonymous users who have edited)
584 // Mark request private
585 $response->header( 'Cache-Control: private' );
587 return;
588 } // else no XVO and anonymous, send public headers below
591 // Send public headers
592 $response->header( $out->getVaryHeader() );
593 if ( $useXVO ) {
594 $response->header( $out->getXVO() );
597 // If nobody called setCacheMaxAge(), use the (s)maxage parameters
598 if ( !isset( $this->mCacheControl['s-maxage'] ) ) {
599 $this->mCacheControl['s-maxage'] = $this->getParameter( 'smaxage' );
601 if ( !isset( $this->mCacheControl['max-age'] ) ) {
602 $this->mCacheControl['max-age'] = $this->getParameter( 'maxage' );
605 if ( !$this->mCacheControl['s-maxage'] && !$this->mCacheControl['max-age'] ) {
606 // Public cache not requested
607 // Sending a Vary header in this case is harmless, and protects us
608 // against conditional calls of setCacheMaxAge().
609 $response->header( 'Cache-Control: private' );
611 return;
614 $this->mCacheControl['public'] = true;
616 // Send an Expires header
617 $maxAge = min( $this->mCacheControl['s-maxage'], $this->mCacheControl['max-age'] );
618 $expiryUnixTime = ( $maxAge == 0 ? 1 : time() + $maxAge );
619 $response->header( 'Expires: ' . wfTimestamp( TS_RFC2822, $expiryUnixTime ) );
621 // Construct the Cache-Control header
622 $ccHeader = '';
623 $separator = '';
624 foreach ( $this->mCacheControl as $name => $value ) {
625 if ( is_bool( $value ) ) {
626 if ( $value ) {
627 $ccHeader .= $separator . $name;
628 $separator = ', ';
630 } else {
631 $ccHeader .= $separator . "$name=$value";
632 $separator = ', ';
636 $response->header( "Cache-Control: $ccHeader" );
640 * Replace the result data with the information about an exception.
641 * Returns the error code
642 * @param Exception $e
643 * @return string
645 protected function substituteResultWithError( $e ) {
646 $result = $this->getResult();
648 // Printer may not be initialized if the extractRequestParams() fails for the main module
649 if ( !isset( $this->mPrinter ) ) {
650 // The printer has not been created yet. Try to manually get formatter value.
651 $value = $this->getRequest()->getVal( 'format', self::API_DEFAULT_FORMAT );
652 if ( !$this->mModuleMgr->isDefined( $value, 'format' ) ) {
653 $value = self::API_DEFAULT_FORMAT;
656 $this->mPrinter = $this->createPrinterByName( $value );
659 // Printer may not be able to handle errors. This is particularly
660 // likely if the module returns something for getCustomPrinter().
661 if ( !$this->mPrinter->canPrintErrors() ) {
662 $this->mPrinter->safeProfileOut();
663 $this->mPrinter = $this->createPrinterByName( self::API_DEFAULT_FORMAT );
666 // Update raw mode flag for the selected printer.
667 $result->setRawMode( $this->mPrinter->getNeedsRawData() );
669 $config = $this->getConfig();
671 if ( $e instanceof UsageException ) {
672 // User entered incorrect parameters - print usage screen
673 $errMessage = $e->getMessageArray();
675 // Only print the help message when this is for the developer, not runtime
676 if ( $this->mPrinter->getWantsHelp() || $this->mAction == 'help' ) {
677 ApiResult::setContent( $errMessage, $this->makeHelpMsg() );
679 } else {
680 // Something is seriously wrong
681 if ( ( $e instanceof DBQueryError ) && !$config->get( 'ShowSQLErrors' ) ) {
682 $info = 'Database query error';
683 } else {
684 $info = "Exception Caught: {$e->getMessage()}";
687 $errMessage = array(
688 'code' => 'internal_api_error_' . get_class( $e ),
689 'info' => $info,
691 ApiResult::setContent(
692 $errMessage,
693 $config->get( 'ShowExceptionDetails' ) ? "\n\n{$e->getTraceAsString()}\n\n" : ''
697 // Remember all the warnings to re-add them later
698 $oldResult = $result->getData();
699 $warnings = isset( $oldResult['warnings'] ) ? $oldResult['warnings'] : null;
701 $result->reset();
702 $result->disableSizeCheck();
703 // Re-add the id
704 $requestid = $this->getParameter( 'requestid' );
705 if ( !is_null( $requestid ) ) {
706 $result->addValue( null, 'requestid', $requestid );
708 if ( $config->get( 'ShowHostnames' ) ) {
709 // servedby is especially useful when debugging errors
710 $result->addValue( null, 'servedby', wfHostName() );
712 if ( $warnings !== null ) {
713 $result->addValue( null, 'warnings', $warnings );
716 $result->addValue( null, 'error', $errMessage );
718 return $errMessage['code'];
722 * Set up for the execution.
723 * @return array
725 protected function setupExecuteAction() {
726 // First add the id to the top element
727 $result = $this->getResult();
728 $requestid = $this->getParameter( 'requestid' );
729 if ( !is_null( $requestid ) ) {
730 $result->addValue( null, 'requestid', $requestid );
733 if ( $this->getConfig()->get( 'ShowHostnames' ) ) {
734 $servedby = $this->getParameter( 'servedby' );
735 if ( $servedby ) {
736 $result->addValue( null, 'servedby', wfHostName() );
740 $params = $this->extractRequestParams();
742 $this->mAction = $params['action'];
744 if ( !is_string( $this->mAction ) ) {
745 $this->dieUsage( 'The API requires a valid action parameter', 'unknown_action' );
748 return $params;
752 * Set up the module for response
753 * @return ApiBase The module that will handle this action
755 protected function setupModule() {
756 // Instantiate the module requested by the user
757 $module = $this->mModuleMgr->getModule( $this->mAction, 'action' );
758 if ( $module === null ) {
759 $this->dieUsage( 'The API requires a valid action parameter', 'unknown_action' );
761 $moduleParams = $module->extractRequestParams();
763 // Die if token required, but not provided
764 $salt = $module->getTokenSalt();
765 if ( $salt !== false ) {
766 if ( !isset( $moduleParams['token'] ) ) {
767 $this->dieUsageMsg( array( 'missingparam', 'token' ) );
770 if ( !$this->getUser()->matchEditToken(
771 $moduleParams['token'],
772 $salt,
773 $this->getContext()->getRequest() )
775 $this->dieUsageMsg( 'sessionfailure' );
779 return $module;
783 * Check the max lag if necessary
784 * @param ApiBase $module Api module being used
785 * @param array $params Array an array containing the request parameters.
786 * @return bool True on success, false should exit immediately
788 protected function checkMaxLag( $module, $params ) {
789 if ( $module->shouldCheckMaxlag() && isset( $params['maxlag'] ) ) {
790 // Check for maxlag
791 $maxLag = $params['maxlag'];
792 list( $host, $lag ) = wfGetLB()->getMaxLag();
793 if ( $lag > $maxLag ) {
794 $response = $this->getRequest()->response();
796 $response->header( 'Retry-After: ' . max( intval( $maxLag ), 5 ) );
797 $response->header( 'X-Database-Lag: ' . intval( $lag ) );
799 if ( $this->getConfig()->get( 'ShowHostnames' ) ) {
800 $this->dieUsage( "Waiting for $host: $lag seconds lagged", 'maxlag' );
803 $this->dieUsage( "Waiting for a database server: $lag seconds lagged", 'maxlag' );
807 return true;
811 * Check for sufficient permissions to execute
812 * @param ApiBase $module An Api module
814 protected function checkExecutePermissions( $module ) {
815 $user = $this->getUser();
816 if ( $module->isReadMode() && !User::isEveryoneAllowed( 'read' ) &&
817 !$user->isAllowed( 'read' )
819 $this->dieUsageMsg( 'readrequired' );
821 if ( $module->isWriteMode() ) {
822 if ( !$this->mEnableWrite ) {
823 $this->dieUsageMsg( 'writedisabled' );
825 if ( !$user->isAllowed( 'writeapi' ) ) {
826 $this->dieUsageMsg( 'writerequired' );
828 if ( wfReadOnly() ) {
829 $this->dieReadOnly();
833 // Allow extensions to stop execution for arbitrary reasons.
834 $message = false;
835 if ( !wfRunHooks( 'ApiCheckCanExecute', array( $module, $user, &$message ) ) ) {
836 $this->dieUsageMsg( $message );
841 * Check asserts of the user's rights
842 * @param array $params
844 protected function checkAsserts( $params ) {
845 if ( isset( $params['assert'] ) ) {
846 $user = $this->getUser();
847 switch ( $params['assert'] ) {
848 case 'user':
849 if ( $user->isAnon() ) {
850 $this->dieUsage( 'Assertion that the user is logged in failed', 'assertuserfailed' );
852 break;
853 case 'bot':
854 if ( !$user->isAllowed( 'bot' ) ) {
855 $this->dieUsage( 'Assertion that the user has the bot right failed', 'assertbotfailed' );
857 break;
863 * Check POST for external response and setup result printer
864 * @param ApiBase $module An Api module
865 * @param array $params an array with the request parameters
867 protected function setupExternalResponse( $module, $params ) {
868 if ( !$this->getRequest()->wasPosted() && $module->mustBePosted() ) {
869 // Module requires POST. GET request might still be allowed
870 // if $wgDebugApi is true, otherwise fail.
871 $this->dieUsageMsgOrDebug( array( 'mustbeposted', $this->mAction ) );
874 // See if custom printer is used
875 $this->mPrinter = $module->getCustomPrinter();
876 if ( is_null( $this->mPrinter ) ) {
877 // Create an appropriate printer
878 $this->mPrinter = $this->createPrinterByName( $params['format'] );
881 if ( $this->mPrinter->getNeedsRawData() ) {
882 $this->getResult()->setRawMode();
887 * Execute the actual module, without any error handling
889 protected function executeAction() {
890 $params = $this->setupExecuteAction();
891 $module = $this->setupModule();
892 $this->mModule = $module;
894 $this->checkExecutePermissions( $module );
896 if ( !$this->checkMaxLag( $module, $params ) ) {
897 return;
900 if ( !$this->mInternalMode ) {
901 $this->setupExternalResponse( $module, $params );
904 $this->checkAsserts( $params );
906 // Execute
907 $module->profileIn();
908 $module->execute();
909 wfRunHooks( 'APIAfterExecute', array( &$module ) );
910 $module->profileOut();
912 $this->reportUnusedParams();
914 if ( !$this->mInternalMode ) {
915 //append Debug information
916 MWDebug::appendDebugInfoToApiResult( $this->getContext(), $this->getResult() );
918 // Print result data
919 $this->printResult( false );
924 * Log the preceding request
925 * @param int $time Time in seconds
927 protected function logRequest( $time ) {
928 $request = $this->getRequest();
929 $milliseconds = $time === null ? '?' : round( $time * 1000 );
930 $s = 'API' .
931 ' ' . $request->getMethod() .
932 ' ' . wfUrlencode( str_replace( ' ', '_', $this->getUser()->getName() ) ) .
933 ' ' . $request->getIP() .
934 ' T=' . $milliseconds . 'ms';
935 foreach ( $this->getParamsUsed() as $name ) {
936 $value = $request->getVal( $name );
937 if ( $value === null ) {
938 continue;
940 $s .= ' ' . $name . '=';
941 if ( strlen( $value ) > 256 ) {
942 $encValue = $this->encodeRequestLogValue( substr( $value, 0, 256 ) );
943 $s .= $encValue . '[...]';
944 } else {
945 $s .= $this->encodeRequestLogValue( $value );
948 $s .= "\n";
949 wfDebugLog( 'api', $s, 'private' );
953 * Encode a value in a format suitable for a space-separated log line.
954 * @param string $s
955 * @return string
957 protected function encodeRequestLogValue( $s ) {
958 static $table;
959 if ( !$table ) {
960 $chars = ';@$!*(),/:';
961 $numChars = strlen( $chars );
962 for ( $i = 0; $i < $numChars; $i++ ) {
963 $table[rawurlencode( $chars[$i] )] = $chars[$i];
967 return strtr( rawurlencode( $s ), $table );
971 * Get the request parameters used in the course of the preceding execute() request
972 * @return array
974 protected function getParamsUsed() {
975 return array_keys( $this->mParamsUsed );
979 * Get a request value, and register the fact that it was used, for logging.
980 * @param string $name
981 * @param mixed $default
982 * @return mixed
984 public function getVal( $name, $default = null ) {
985 $this->mParamsUsed[$name] = true;
987 $ret = $this->getRequest()->getVal( $name );
988 if ( $ret === null ) {
989 if ( $this->getRequest()->getArray( $name ) !== null ) {
990 // See bug 10262 for why we don't just join( '|', ... ) the
991 // array.
992 $this->setWarning(
993 "Parameter '$name' uses unsupported PHP array syntax"
996 $ret = $default;
998 return $ret;
1002 * Get a boolean request value, and register the fact that the parameter
1003 * was used, for logging.
1004 * @param string $name
1005 * @return bool
1007 public function getCheck( $name ) {
1008 return $this->getVal( $name, null ) !== null;
1012 * Get a request upload, and register the fact that it was used, for logging.
1014 * @since 1.21
1015 * @param string $name Parameter name
1016 * @return WebRequestUpload
1018 public function getUpload( $name ) {
1019 $this->mParamsUsed[$name] = true;
1021 return $this->getRequest()->getUpload( $name );
1025 * Report unused parameters, so the client gets a hint in case it gave us parameters we don't know,
1026 * for example in case of spelling mistakes or a missing 'g' prefix for generators.
1028 protected function reportUnusedParams() {
1029 $paramsUsed = $this->getParamsUsed();
1030 $allParams = $this->getRequest()->getValueNames();
1032 if ( !$this->mInternalMode ) {
1033 // Printer has not yet executed; don't warn that its parameters are unused
1034 $printerParams = array_map(
1035 array( $this->mPrinter, 'encodeParamName' ),
1036 array_keys( $this->mPrinter->getFinalParams() ?: array() )
1038 $unusedParams = array_diff( $allParams, $paramsUsed, $printerParams );
1039 } else {
1040 $unusedParams = array_diff( $allParams, $paramsUsed );
1043 if ( count( $unusedParams ) ) {
1044 $s = count( $unusedParams ) > 1 ? 's' : '';
1045 $this->setWarning( "Unrecognized parameter$s: '" . implode( $unusedParams, "', '" ) . "'" );
1050 * Print results using the current printer
1052 * @param bool $isError
1054 protected function printResult( $isError ) {
1055 if ( $this->getConfig()->get( 'DebugAPI' ) !== false ) {
1056 $this->setWarning( 'SECURITY WARNING: $wgDebugAPI is enabled' );
1059 $this->getResult()->cleanUpUTF8();
1060 $printer = $this->mPrinter;
1061 $printer->profileIn();
1064 * If the help message is requested in the default (xmlfm) format,
1065 * tell the printer not to escape ampersands so that our links do
1066 * not break.
1068 $isHelp = $isError || $this->mAction == 'help';
1069 $printer->setUnescapeAmps( $isHelp && $printer->getFormat() == 'XML' && $printer->getIsHtml() );
1071 $printer->initPrinter( $isHelp );
1073 $printer->execute();
1074 $printer->closePrinter();
1075 $printer->profileOut();
1079 * @return bool
1081 public function isReadMode() {
1082 return false;
1086 * See ApiBase for description.
1088 * @return array
1090 public function getAllowedParams() {
1091 return array(
1092 'format' => array(
1093 ApiBase::PARAM_DFLT => ApiMain::API_DEFAULT_FORMAT,
1094 ApiBase::PARAM_TYPE => $this->mModuleMgr->getNames( 'format' )
1096 'action' => array(
1097 ApiBase::PARAM_DFLT => 'help',
1098 ApiBase::PARAM_TYPE => $this->mModuleMgr->getNames( 'action' )
1100 'maxlag' => array(
1101 ApiBase::PARAM_TYPE => 'integer'
1103 'smaxage' => array(
1104 ApiBase::PARAM_TYPE => 'integer',
1105 ApiBase::PARAM_DFLT => 0
1107 'maxage' => array(
1108 ApiBase::PARAM_TYPE => 'integer',
1109 ApiBase::PARAM_DFLT => 0
1111 'assert' => array(
1112 ApiBase::PARAM_TYPE => array( 'user', 'bot' )
1114 'requestid' => null,
1115 'servedby' => false,
1116 'origin' => null,
1121 * See ApiBase for description.
1123 * @return array
1125 public function getParamDescription() {
1126 return array(
1127 'format' => 'The format of the output',
1128 'action' => 'What action you would like to perform. See below for module help',
1129 'maxlag' => array(
1130 'Maximum lag can be used when MediaWiki is installed on a database replicated cluster.',
1131 'To save actions causing any more site replication lag, this parameter can make the client',
1132 'wait until the replication lag is less than the specified value.',
1133 'In case of a replag error, error code "maxlag" is returned, with the message like',
1134 '"Waiting for $host: $lag seconds lagged\n".',
1135 'See https://www.mediawiki.org/wiki/Manual:Maxlag_parameter for more information',
1137 'smaxage' => 'Set the s-maxage header to this many seconds. Errors are never cached',
1138 'maxage' => 'Set the max-age header to this many seconds. Errors are never cached',
1139 'assert' => 'Verify the user is logged in if set to "user", or has the bot userright if "bot"',
1140 'requestid' => 'Request ID to distinguish requests. This will just be output back to you',
1141 'servedby' => 'Include the hostname that served the request in the ' .
1142 'results. Unconditionally shown on error',
1143 'origin' => array(
1144 'When accessing the API using a cross-domain AJAX request (CORS), set this to the',
1145 'originating domain. This must be included in any pre-flight request, and',
1146 'therefore must be part of the request URI (not the POST body). This must match',
1147 'one of the origins in the Origin: header exactly, so it has to be set to ',
1148 'something like http://en.wikipedia.org or https://meta.wikimedia.org . If this',
1149 'parameter does not match the Origin: header, a 403 response will be returned. If',
1150 'this parameter matches the Origin: header and the origin is whitelisted, an',
1151 'Access-Control-Allow-Origin header will be set.',
1157 * See ApiBase for description.
1159 * @return array
1161 public function getDescription() {
1162 return array(
1165 '**********************************************************************************************',
1166 '** **',
1167 '** This is an auto-generated MediaWiki API documentation page **',
1168 '** **',
1169 '** Documentation and Examples: **',
1170 '** https://www.mediawiki.org/wiki/API **',
1171 '** **',
1172 '**********************************************************************************************',
1174 'Status: All features shown on this page should be working, but the API',
1175 ' is still in active development, and may change at any time.',
1176 ' Make sure to monitor our mailing list for any updates.',
1178 'Erroneous requests: When erroneous requests are sent to the API, a HTTP header will be sent',
1179 ' with the key "MediaWiki-API-Error" and then both the value of the',
1180 ' header and the error code sent back will be set to the same value.',
1182 ' In the case of an invalid action being passed, these will have a value',
1183 ' of "unknown_action".',
1185 ' For more information see https://www.mediawiki.org' .
1186 '/wiki/API:Errors_and_warnings',
1188 'Documentation: https://www.mediawiki.org/wiki/API:Main_page',
1189 'FAQ https://www.mediawiki.org/wiki/API:FAQ',
1190 'Mailing list: https://lists.wikimedia.org/mailman/listinfo/mediawiki-api',
1191 'Api Announcements: https://lists.wikimedia.org/mailman/listinfo/mediawiki-api-announce',
1192 'Bugs & Requests: https://bugzilla.wikimedia.org/buglist.cgi?component=API&' .
1193 'bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&order=bugs.delta_ts',
1203 * @return array
1205 public function getPossibleErrors() {
1206 return array_merge( parent::getPossibleErrors(), array(
1207 array( 'readonlytext' ),
1208 array( 'code' => 'unknown_format', 'info' => 'Unrecognized format: format' ),
1209 array( 'code' => 'unknown_action', 'info' => 'The API requires a valid action parameter' ),
1210 array( 'code' => 'maxlag', 'info' => 'Waiting for host: x seconds lagged' ),
1211 array( 'code' => 'maxlag', 'info' => 'Waiting for a database server: x seconds lagged' ),
1212 array( 'code' => 'assertuserfailed', 'info' => 'Assertion that the user is logged in failed' ),
1213 array(
1214 'code' => 'assertbotfailed',
1215 'info' => 'Assertion that the user has the bot right failed'
1217 ) );
1221 * Returns an array of strings with credits for the API
1222 * @return array
1224 protected function getCredits() {
1225 return array(
1226 'API developers:',
1227 ' Roan Kattouw (lead developer Sep 2007-2009)',
1228 ' Victor Vasiliev',
1229 ' Bryan Tong Minh',
1230 ' Sam Reed',
1231 ' Yuri Astrakhan (creator, lead developer Sep 2006-Sep 2007, 2012-2013)',
1232 ' Brad Jorsch (lead developer 2013-now)',
1234 'Please send your comments, suggestions and questions to mediawiki-api@lists.wikimedia.org',
1235 'or file a bug report at https://bugzilla.wikimedia.org/'
1240 * Sets whether the pretty-printer should format *bold* and $italics$
1242 * @param bool $help
1244 public function setHelp( $help = true ) {
1245 $this->mPrinter->setHelp( $help );
1249 * Override the parent to generate help messages for all available modules.
1251 * @return string
1253 public function makeHelpMsg() {
1254 global $wgMemc;
1255 $this->setHelp();
1256 // Get help text from cache if present
1257 $key = wfMemcKey( 'apihelp', $this->getModuleName(),
1258 str_replace( ' ', '_', SpecialVersion::getVersion( 'nodb' ) ) );
1260 $cacheHelpTimeout = $this->getConfig()->get( 'APICacheHelpTimeout' );
1261 if ( $cacheHelpTimeout > 0 ) {
1262 $cached = $wgMemc->get( $key );
1263 if ( $cached ) {
1264 return $cached;
1267 $retval = $this->reallyMakeHelpMsg();
1268 if ( $cacheHelpTimeout > 0 ) {
1269 $wgMemc->set( $key, $retval, $cacheHelpTimeout );
1272 return $retval;
1276 * @return mixed|string
1278 public function reallyMakeHelpMsg() {
1279 $this->setHelp();
1281 // Use parent to make default message for the main module
1282 $msg = parent::makeHelpMsg();
1284 $astriks = str_repeat( '*** ', 14 );
1285 $msg .= "\n\n$astriks Modules $astriks\n\n";
1287 foreach ( $this->mModuleMgr->getNames( 'action' ) as $name ) {
1288 $module = $this->mModuleMgr->getModule( $name );
1289 $msg .= self::makeHelpMsgHeader( $module, 'action' );
1291 $msg2 = $module->makeHelpMsg();
1292 if ( $msg2 !== false ) {
1293 $msg .= $msg2;
1295 $msg .= "\n";
1298 $msg .= "\n$astriks Permissions $astriks\n\n";
1299 foreach ( self::$mRights as $right => $rightMsg ) {
1300 $groups = User::getGroupsWithPermission( $right );
1301 $msg .= "* " . $right . " *\n " . wfMsgReplaceArgs( $rightMsg['msg'], $rightMsg['params'] ) .
1302 "\nGranted to:\n " . str_replace( '*', 'all', implode( ', ', $groups ) ) . "\n\n";
1305 $msg .= "\n$astriks Formats $astriks\n\n";
1306 foreach ( $this->mModuleMgr->getNames( 'format' ) as $name ) {
1307 $module = $this->mModuleMgr->getModule( $name );
1308 $msg .= self::makeHelpMsgHeader( $module, 'format' );
1309 $msg2 = $module->makeHelpMsg();
1310 if ( $msg2 !== false ) {
1311 $msg .= $msg2;
1313 $msg .= "\n";
1316 $msg .= "\n*** Credits: ***\n " . implode( "\n ", $this->getCredits() ) . "\n";
1318 return $msg;
1322 * @param ApiBase $module
1323 * @param string $paramName What type of request is this? e.g. action,
1324 * query, list, prop, meta, format
1325 * @return string
1327 public static function makeHelpMsgHeader( $module, $paramName ) {
1328 $modulePrefix = $module->getModulePrefix();
1329 if ( strval( $modulePrefix ) !== '' ) {
1330 $modulePrefix = "($modulePrefix) ";
1333 return "* $paramName={$module->getModuleName()} $modulePrefix*";
1336 private $mCanApiHighLimits = null;
1339 * Check whether the current user is allowed to use high limits
1340 * @return bool
1342 public function canApiHighLimits() {
1343 if ( !isset( $this->mCanApiHighLimits ) ) {
1344 $this->mCanApiHighLimits = $this->getUser()->isAllowed( 'apihighlimits' );
1347 return $this->mCanApiHighLimits;
1351 * Check whether the user wants us to show version information in the API help
1352 * @return bool
1353 * @deprecated since 1.21, always returns false
1355 public function getShowVersions() {
1356 wfDeprecated( __METHOD__, '1.21' );
1358 return false;
1362 * Overrides to return this instance's module manager.
1363 * @return ApiModuleManager
1365 public function getModuleManager() {
1366 return $this->mModuleMgr;
1370 * Add or overwrite a module in this ApiMain instance. Intended for use by extending
1371 * classes who wish to add their own modules to their lexicon or override the
1372 * behavior of inherent ones.
1374 * @deprecated since 1.21, Use getModuleManager()->addModule() instead.
1375 * @param string $name The identifier for this module.
1376 * @param ApiBase $class The class where this module is implemented.
1378 protected function addModule( $name, $class ) {
1379 $this->getModuleManager()->addModule( $name, 'action', $class );
1383 * Add or overwrite an output format for this ApiMain. Intended for use by extending
1384 * classes who wish to add to or modify current formatters.
1386 * @deprecated since 1.21, Use getModuleManager()->addModule() instead.
1387 * @param string $name The identifier for this format.
1388 * @param ApiFormatBase $class The class implementing this format.
1390 protected function addFormat( $name, $class ) {
1391 $this->getModuleManager()->addModule( $name, 'format', $class );
1395 * Get the array mapping module names to class names
1396 * @deprecated since 1.21, Use getModuleManager()'s methods instead.
1397 * @return array
1399 function getModules() {
1400 return $this->getModuleManager()->getNamesWithClasses( 'action' );
1404 * Returns the list of supported formats in form ( 'format' => 'ClassName' )
1406 * @since 1.18
1407 * @deprecated since 1.21, Use getModuleManager()'s methods instead.
1408 * @return array
1410 public function getFormats() {
1411 return $this->getModuleManager()->getNamesWithClasses( 'format' );
1416 * This exception will be thrown when dieUsage is called to stop module execution.
1417 * The exception handling code will print a help screen explaining how this API may be used.
1419 * @ingroup API
1421 class UsageException extends MWException {
1423 private $mCodestr;
1426 * @var null|array
1428 private $mExtraData;
1431 * @param string $message
1432 * @param string $codestr
1433 * @param int $code
1434 * @param array|null $extradata
1436 public function __construct( $message, $codestr, $code = 0, $extradata = null ) {
1437 parent::__construct( $message, $code );
1438 $this->mCodestr = $codestr;
1439 $this->mExtraData = $extradata;
1443 * @return string
1445 public function getCodeString() {
1446 return $this->mCodestr;
1450 * @return array
1452 public function getMessageArray() {
1453 $result = array(
1454 'code' => $this->mCodestr,
1455 'info' => $this->getMessage()
1457 if ( is_array( $this->mExtraData ) ) {
1458 $result = array_merge( $result, $this->mExtraData );
1461 return $result;
1465 * @return string
1467 public function __toString() {
1468 return "{$this->getCodeString()}: {$this->getMessage()}";