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
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.
41 class ApiMain
extends ApiBase
{
43 * When no format parameter is given, this format will be used
45 const API_DEFAULT_FORMAT
= 'jsonfm';
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 'stashedit' => 'ApiStashEdit',
58 'opensearch' => 'ApiOpenSearch',
59 'feedcontributions' => 'ApiFeedContributions',
60 'feedrecentchanges' => 'ApiFeedRecentChanges',
61 'feedwatchlist' => 'ApiFeedWatchlist',
63 'paraminfo' => 'ApiParamInfo',
65 'compare' => 'ApiComparePages',
66 'tokens' => 'ApiTokens',
67 'checktoken' => 'ApiCheckToken',
70 'purge' => 'ApiPurge',
71 'setnotificationtimestamp' => 'ApiSetNotificationTimestamp',
72 'rollback' => 'ApiRollback',
73 'delete' => 'ApiDelete',
74 'undelete' => 'ApiUndelete',
75 'protect' => 'ApiProtect',
76 'block' => 'ApiBlock',
77 'unblock' => 'ApiUnblock',
79 'edit' => 'ApiEditPage',
80 'upload' => 'ApiUpload',
81 'filerevert' => 'ApiFileRevert',
82 'emailuser' => 'ApiEmailUser',
83 'watch' => 'ApiWatch',
84 'patrol' => 'ApiPatrol',
85 'import' => 'ApiImport',
86 'clearhasmsg' => 'ApiClearHasMsg',
87 'userrights' => 'ApiUserrights',
88 'options' => 'ApiOptions',
89 'imagerotate' => 'ApiImageRotate',
90 'revisiondelete' => 'ApiRevisionDelete',
91 'managetags' => 'ApiManageTags',
96 * List of available formats: format name => format class
98 private static $Formats = array(
99 'json' => 'ApiFormatJson',
100 'jsonfm' => 'ApiFormatJson',
101 'php' => 'ApiFormatPhp',
102 'phpfm' => 'ApiFormatPhp',
103 'xml' => 'ApiFormatXml',
104 'xmlfm' => 'ApiFormatXml',
105 'rawfm' => 'ApiFormatJson',
106 'none' => 'ApiFormatNone',
109 // @codingStandardsIgnoreStart String contenation on "msg" not allowed to break long line
111 * List of user roles that are specifically relevant to the API.
112 * array( 'right' => array ( 'msg' => 'Some message with a $1',
113 * 'params' => array ( $someVarToSubst ) ),
116 private static $mRights = array(
118 'msg' => 'right-writeapi',
121 'apihighlimits' => array(
122 'msg' => 'api-help-right-apihighlimits',
123 'params' => array( ApiBase
::LIMIT_SML2
, ApiBase
::LIMIT_BIG2
)
126 // @codingStandardsIgnoreEnd
133 private $mModuleMgr, $mResult, $mErrorFormatter, $mContinuationManager;
135 private $mEnableWrite;
136 private $mInternalMode, $mSquidMaxage, $mModule;
138 private $mCacheMode = 'private';
139 private $mCacheControl = array();
140 private $mParamsUsed = array();
143 * Constructs an instance of ApiMain that utilizes the module and format specified by $request.
145 * @param IContextSource|WebRequest $context If this is an instance of
146 * FauxRequest, errors are thrown and no printing occurs
147 * @param bool $enableWrite Should be set to true if the api may modify data
149 public function __construct( $context = null, $enableWrite = false ) {
150 if ( $context === null ) {
151 $context = RequestContext
::getMain();
152 } elseif ( $context instanceof WebRequest
) {
155 $context = RequestContext
::getMain();
157 // We set a derivative context so we can change stuff later
158 $this->setContext( new DerivativeContext( $context ) );
160 if ( isset( $request ) ) {
161 $this->getContext()->setRequest( $request );
164 $this->mInternalMode
= ( $this->getRequest() instanceof FauxRequest
);
166 // Special handling for the main module: $parent === $this
167 parent
::__construct( $this, $this->mInternalMode ?
'main_int' : 'main' );
169 if ( !$this->mInternalMode
) {
170 // Impose module restrictions.
171 // If the current user cannot read,
172 // Remove all modules other than login
175 if ( $this->lacksSameOriginSecurity() ) {
176 // If we're in a mode that breaks the same-origin policy, strip
177 // user credentials for security.
178 wfDebug( "API: stripping user credentials when the same-origin policy is not applied\n" );
179 $wgUser = new User();
180 $this->getContext()->setUser( $wgUser );
184 $uselang = $this->getParameter( 'uselang' );
185 if ( $uselang === 'user' ) {
186 // Assume the parent context is going to return the user language
187 // for uselang=user (see T85635).
189 if ( $uselang === 'content' ) {
191 $uselang = $wgContLang->getCode();
193 $code = RequestContext
::sanitizeLangCode( $uselang );
194 $this->getContext()->setLanguage( $code );
195 if ( !$this->mInternalMode
) {
197 $wgLang = $this->getContext()->getLanguage();
198 RequestContext
::getMain()->setLanguage( $wgLang );
202 $config = $this->getConfig();
203 $this->mModuleMgr
= new ApiModuleManager( $this );
204 $this->mModuleMgr
->addModules( self
::$Modules, 'action' );
205 $this->mModuleMgr
->addModules( $config->get( 'APIModules' ), 'action' );
206 $this->mModuleMgr
->addModules( self
::$Formats, 'format' );
207 $this->mModuleMgr
->addModules( $config->get( 'APIFormatModules' ), 'format' );
209 Hooks
::run( 'ApiMain::moduleManager', array( $this->mModuleMgr
) );
211 $this->mResult
= new ApiResult( $this->getConfig()->get( 'APIMaxResultSize' ) );
212 $this->mErrorFormatter
= new ApiErrorFormatter_BackCompat( $this->mResult
);
213 $this->mResult
->setErrorFormatter( $this->mErrorFormatter
);
214 $this->mResult
->setMainForContinuation( $this );
215 $this->mContinuationManager
= null;
216 $this->mEnableWrite
= $enableWrite;
218 $this->mSquidMaxage
= -1; // flag for executeActionWithErrorHandling()
219 $this->mCommit
= false;
223 * Return true if the API was started by other PHP code using FauxRequest
226 public function isInternalMode() {
227 return $this->mInternalMode
;
231 * Get the ApiResult object associated with current request
235 public function getResult() {
236 return $this->mResult
;
240 * Get the ApiErrorFormatter object associated with current request
241 * @return ApiErrorFormatter
243 public function getErrorFormatter() {
244 return $this->mErrorFormatter
;
248 * Get the continuation manager
249 * @return ApiContinuationManager|null
251 public function getContinuationManager() {
252 return $this->mContinuationManager
;
256 * Set the continuation manager
257 * @param ApiContinuationManager|null
259 public function setContinuationManager( $manager ) {
260 if ( $manager !== null ) {
261 if ( !$manager instanceof ApiContinuationManager
) {
262 throw new InvalidArgumentException( __METHOD__
. ': Was passed ' .
263 is_object( $manager ) ?
get_class( $manager ) : gettype( $manager )
266 if ( $this->mContinuationManager
!== null ) {
267 throw new UnexpectedValueException(
268 __METHOD__
. ': tried to set manager from ' . $manager->getSource() .
269 ' when a manager is already set from ' . $this->mContinuationManager
->getSource()
273 $this->mContinuationManager
= $manager;
277 * Get the API module object. Only works after executeAction()
281 public function getModule() {
282 return $this->mModule
;
286 * Get the result formatter object. Only works after setupExecuteAction()
288 * @return ApiFormatBase
290 public function getPrinter() {
291 return $this->mPrinter
;
295 * Set how long the response should be cached.
299 public function setCacheMaxAge( $maxage ) {
300 $this->setCacheControl( array(
301 'max-age' => $maxage,
302 's-maxage' => $maxage
307 * Set the type of caching headers which will be sent.
309 * @param string $mode One of:
310 * - 'public': Cache this object in public caches, if the maxage or smaxage
311 * parameter is set, or if setCacheMaxAge() was called. If a maximum age is
312 * not provided by any of these means, the object will be private.
313 * - 'private': Cache this object only in private client-side caches.
314 * - 'anon-public-user-private': Make this object cacheable for logged-out
315 * users, but private for logged-in users. IMPORTANT: If this is set, it must be
316 * set consistently for a given URL, it cannot be set differently depending on
317 * things like the contents of the database, or whether the user is logged in.
319 * If the wiki does not allow anonymous users to read it, the mode set here
320 * will be ignored, and private caching headers will always be sent. In other words,
321 * the "public" mode is equivalent to saying that the data sent is as public as a page
324 * For user-dependent data, the private mode should generally be used. The
325 * anon-public-user-private mode should only be used where there is a particularly
326 * good performance reason for caching the anonymous response, but where the
327 * response to logged-in users may differ, or may contain private data.
329 * If this function is never called, then the default will be the private mode.
331 public function setCacheMode( $mode ) {
332 if ( !in_array( $mode, array( 'private', 'public', 'anon-public-user-private' ) ) ) {
333 wfDebug( __METHOD__
. ": unrecognised cache mode \"$mode\"\n" );
335 // Ignore for forwards-compatibility
339 if ( !User
::isEveryoneAllowed( 'read' ) ) {
340 // Private wiki, only private headers
341 if ( $mode !== 'private' ) {
342 wfDebug( __METHOD__
. ": ignoring request for $mode cache mode, private wiki\n" );
348 if ( $mode === 'public' && $this->getParameter( 'uselang' ) === 'user' ) {
349 // User language is used for i18n, so we don't want to publicly
350 // cache. Anons are ok, because if they have non-default language
351 // then there's an appropriate Vary header set by whatever set
352 // their non-default language.
353 wfDebug( __METHOD__
. ": downgrading cache mode 'public' to " .
354 "'anon-public-user-private' due to uselang=user\n" );
355 $mode = 'anon-public-user-private';
358 wfDebug( __METHOD__
. ": setting cache mode $mode\n" );
359 $this->mCacheMode
= $mode;
363 * Set directives (key/value pairs) for the Cache-Control header.
364 * Boolean values will be formatted as such, by including or omitting
365 * without an equals sign.
367 * Cache control values set here will only be used if the cache mode is not
368 * private, see setCacheMode().
370 * @param array $directives
372 public function setCacheControl( $directives ) {
373 $this->mCacheControl
= $directives +
$this->mCacheControl
;
377 * Create an instance of an output formatter by its name
379 * @param string $format
381 * @return ApiFormatBase
383 public function createPrinterByName( $format ) {
384 $printer = $this->mModuleMgr
->getModule( $format, 'format' );
385 if ( $printer === null ) {
386 $this->dieUsage( "Unrecognized format: {$format}", 'unknown_format' );
393 * Execute api request. Any errors will be handled if the API was called by the remote client.
395 public function execute() {
396 if ( $this->mInternalMode
) {
397 $this->executeAction();
399 $this->executeActionWithErrorHandling();
404 * Execute an action, and in case of an error, erase whatever partial results
405 * have been accumulated, and replace it with an error message and a help screen.
407 protected function executeActionWithErrorHandling() {
408 // Verify the CORS header before executing the action
409 if ( !$this->handleCORS() ) {
410 // handleCORS() has sent a 403, abort
414 // Exit here if the request method was OPTIONS
415 // (assume there will be a followup GET or POST)
416 if ( $this->getRequest()->getMethod() === 'OPTIONS' ) {
420 // In case an error occurs during data output,
421 // clear the output buffer and print just the error information
422 $obLevel = ob_get_level();
425 $t = microtime( true );
427 $this->executeAction();
429 } catch ( Exception
$e ) {
430 $this->handleException( $e );
434 // Log the request whether or not there was an error
435 $this->logRequest( microtime( true ) - $t );
437 // Commit DBs and send any related cookies and headers
438 MediaWiki
::preOutputCommit( $this->getContext() );
440 // Send cache headers after any code which might generate an error, to
441 // avoid sending public cache headers for errors.
442 $this->sendCacheHeaders( $isError );
444 // Executing the action might have already messed with the output
446 while ( ob_get_level() > $obLevel ) {
452 * Handle an exception as an API response
455 * @param Exception $e
457 protected function handleException( Exception
$e ) {
458 // Bug 63145: Rollback any open database transactions
459 if ( !( $e instanceof UsageException
) ) {
460 // UsageExceptions are intentional, so don't rollback if that's the case
462 MWExceptionHandler
::rollbackMasterChangesAndLog( $e );
463 } catch ( DBError
$e2 ) {
464 // Rollback threw an exception too. Log it, but don't interrupt
465 // our regularly scheduled exception handling.
466 MWExceptionHandler
::logException( $e2 );
470 // Allow extra cleanup and logging
471 Hooks
::run( 'ApiMain::onException', array( $this, $e ) );
474 if ( !( $e instanceof UsageException
) ) {
475 MWExceptionHandler
::logException( $e );
478 // Handle any kind of exception by outputting properly formatted error message.
479 // If this fails, an unhandled exception should be thrown so that global error
480 // handler will process and log it.
482 $errCode = $this->substituteResultWithError( $e );
484 // Error results should not be cached
485 $this->setCacheMode( 'private' );
487 $response = $this->getRequest()->response();
488 $headerStr = 'MediaWiki-API-Error: ' . $errCode;
489 if ( $e->getCode() === 0 ) {
490 $response->header( $headerStr );
492 $response->header( $headerStr, true, $e->getCode() );
495 // Reset and print just the error message
498 // Printer may not be initialized if the extractRequestParams() fails for the main module
499 $this->createErrorPrinter();
502 $this->printResult( true );
503 } catch ( UsageException
$ex ) {
504 // The error printer itself is failing. Try suppressing its request
505 // parameters and redo.
507 'Error printer failed (will retry without params): ' . $ex->getMessage()
509 $this->mPrinter
= null;
510 $this->createErrorPrinter();
511 $this->mPrinter
->forceDefaultParams();
512 $this->printResult( true );
517 * Handle an exception from the ApiBeforeMain hook.
519 * This tries to print the exception as an API response, to be more
520 * friendly to clients. If it fails, it will rethrow the exception.
523 * @param Exception $e
526 public static function handleApiBeforeMainException( Exception
$e ) {
530 $main = new self( RequestContext
::getMain(), false );
531 $main->handleException( $e );
532 } catch ( Exception
$e2 ) {
533 // Nope, even that didn't work. Punt.
537 // Log the request and reset cache headers
538 $main->logRequest( 0 );
539 $main->sendCacheHeaders( true );
545 * Check the &origin= query parameter against the Origin: HTTP header and respond appropriately.
547 * If no origin parameter is present, nothing happens.
548 * If an origin parameter is present but doesn't match the Origin header, a 403 status code
549 * is set and false is returned.
550 * If the parameter and the header do match, the header is checked against $wgCrossSiteAJAXdomains
551 * and $wgCrossSiteAJAXdomainExceptions, and if the origin qualifies, the appropriate CORS
553 * http://www.w3.org/TR/cors/#resource-requests
554 * http://www.w3.org/TR/cors/#resource-preflight-requests
556 * @return bool False if the caller should abort (403 case), true otherwise (all other cases)
558 protected function handleCORS() {
559 $originParam = $this->getParameter( 'origin' ); // defaults to null
560 if ( $originParam === null ) {
561 // No origin parameter, nothing to do
565 $request = $this->getRequest();
566 $response = $request->response();
568 // Origin: header is a space-separated list of origins, check all of them
569 $originHeader = $request->getHeader( 'Origin' );
570 if ( $originHeader === false ) {
573 $originHeader = trim( $originHeader );
574 $origins = preg_split( '/\s+/', $originHeader );
577 if ( !in_array( $originParam, $origins ) ) {
578 // origin parameter set but incorrect
579 // Send a 403 response
580 $response->statusHeader( 403 );
581 $response->header( 'Cache-Control: no-cache' );
582 echo "'origin' parameter does not match Origin header\n";
587 $config = $this->getConfig();
588 $matchOrigin = count( $origins ) === 1 && self
::matchOrigin(
590 $config->get( 'CrossSiteAJAXdomains' ),
591 $config->get( 'CrossSiteAJAXdomainExceptions' )
594 if ( $matchOrigin ) {
595 $requestedMethod = $request->getHeader( 'Access-Control-Request-Method' );
596 $preflight = $request->getMethod() === 'OPTIONS' && $requestedMethod !== false;
598 // This is a CORS preflight request
599 if ( $requestedMethod !== 'POST' && $requestedMethod !== 'GET' ) {
600 // If method is not a case-sensitive match, do not set any additional headers and terminate.
603 // We allow the actual request to send the following headers
604 $requestedHeaders = $request->getHeader( 'Access-Control-Request-Headers' );
605 if ( $requestedHeaders !== false ) {
606 if ( !self
::matchRequestedHeaders( $requestedHeaders ) ) {
609 $response->header( 'Access-Control-Allow-Headers: ' . $requestedHeaders );
612 // We only allow the actual request to be GET or POST
613 $response->header( 'Access-Control-Allow-Methods: POST, GET' );
616 $response->header( "Access-Control-Allow-Origin: $originHeader" );
617 $response->header( 'Access-Control-Allow-Credentials: true' );
618 // http://www.w3.org/TR/resource-timing/#timing-allow-origin
619 $response->header( "Timing-Allow-Origin: $originHeader" );
623 'Access-Control-Expose-Headers: MediaWiki-API-Error, Retry-After, X-Database-Lag'
628 $this->getOutput()->addVaryHeader( 'Origin' );
633 * Attempt to match an Origin header against a set of rules and a set of exceptions
634 * @param string $value Origin header
635 * @param array $rules Set of wildcard rules
636 * @param array $exceptions Set of wildcard rules
637 * @return bool True if $value matches a rule in $rules and doesn't match
638 * any rules in $exceptions, false otherwise
640 protected static function matchOrigin( $value, $rules, $exceptions ) {
641 foreach ( $rules as $rule ) {
642 if ( preg_match( self
::wildcardToRegex( $rule ), $value ) ) {
643 // Rule matches, check exceptions
644 foreach ( $exceptions as $exc ) {
645 if ( preg_match( self
::wildcardToRegex( $exc ), $value ) ) {
658 * Attempt to validate the value of Access-Control-Request-Headers against a list
659 * of headers that we allow the follow up request to send.
661 * @param string $requestedHeaders Comma seperated list of HTTP headers
662 * @return bool True if all requested headers are in the list of allowed headers
664 protected static function matchRequestedHeaders( $requestedHeaders ) {
665 if ( trim( $requestedHeaders ) === '' ) {
668 $requestedHeaders = explode( ',', $requestedHeaders );
669 $allowedAuthorHeaders = array_flip( array(
670 /* simple headers (see spec) */
675 /* non-authorable headers in XHR, which are however requested by some UAs */
679 /* MediaWiki whitelist */
682 foreach ( $requestedHeaders as $rHeader ) {
683 $rHeader = strtolower( trim( $rHeader ) );
684 if ( !isset( $allowedAuthorHeaders[$rHeader] ) ) {
685 wfDebugLog( 'api', 'CORS preflight failed on requested header: ' . $rHeader );
693 * Helper function to convert wildcard string into a regex
697 * @param string $wildcard String with wildcards
698 * @return string Regular expression
700 protected static function wildcardToRegex( $wildcard ) {
701 $wildcard = preg_quote( $wildcard, '/' );
702 $wildcard = str_replace(
708 return "/^https?:\/\/$wildcard$/";
712 * Send caching headers
713 * @param boolean $isError Whether an error response is being output
714 * @since 1.26 added $isError parameter
716 protected function sendCacheHeaders( $isError ) {
717 $response = $this->getRequest()->response();
718 $out = $this->getOutput();
720 $config = $this->getConfig();
722 if ( $config->get( 'VaryOnXFP' ) ) {
723 $out->addVaryHeader( 'X-Forwarded-Proto' );
726 if ( !$isError && $this->mModule
&&
727 ( $this->getRequest()->getMethod() === 'GET' ||
$this->getRequest()->getMethod() === 'HEAD' )
729 $etag = $this->mModule
->getConditionalRequestData( 'etag' );
730 if ( $etag !== null ) {
731 $response->header( "ETag: $etag" );
733 $lastMod = $this->mModule
->getConditionalRequestData( 'last-modified' );
734 if ( $lastMod !== null ) {
735 $response->header( 'Last-Modified: ' . wfTimestamp( TS_RFC2822
, $lastMod ) );
739 // The logic should be:
740 // $this->mCacheControl['max-age'] is set?
741 // Use it, the module knows better than our guess.
742 // !$this->mModule || $this->mModule->isWriteMode(), and mCacheMode is private?
743 // Use 0 because we can guess caching is probably the wrong thing to do.
744 // Use $this->getParameter( 'maxage' ), which already defaults to 0.
746 if ( isset( $this->mCacheControl
['max-age'] ) ) {
747 $maxage = $this->mCacheControl
['max-age'];
748 } elseif ( ( $this->mModule
&& !$this->mModule
->isWriteMode() ) ||
749 $this->mCacheMode
!== 'private'
751 $maxage = $this->getParameter( 'maxage' );
753 $privateCache = 'private, must-revalidate, max-age=' . $maxage;
755 if ( $this->mCacheMode
== 'private' ) {
756 $response->header( "Cache-Control: $privateCache" );
760 $useKeyHeader = $config->get( 'UseKeyHeader' );
761 if ( $this->mCacheMode
== 'anon-public-user-private' ) {
762 $out->addVaryHeader( 'Cookie' );
763 $response->header( $out->getVaryHeader() );
764 if ( $useKeyHeader ) {
765 $response->header( $out->getKeyHeader() );
766 if ( $out->haveCacheVaryCookies() ) {
767 // Logged in, mark this request private
768 $response->header( "Cache-Control: $privateCache" );
771 // Logged out, send normal public headers below
772 } elseif ( session_id() != '' ) {
773 // Logged in or otherwise has session (e.g. anonymous users who have edited)
774 // Mark request private
775 $response->header( "Cache-Control: $privateCache" );
778 } // else no Key and anonymous, send public headers below
781 // Send public headers
782 $response->header( $out->getVaryHeader() );
783 if ( $useKeyHeader ) {
784 $response->header( $out->getKeyHeader() );
787 // If nobody called setCacheMaxAge(), use the (s)maxage parameters
788 if ( !isset( $this->mCacheControl
['s-maxage'] ) ) {
789 $this->mCacheControl
['s-maxage'] = $this->getParameter( 'smaxage' );
791 if ( !isset( $this->mCacheControl
['max-age'] ) ) {
792 $this->mCacheControl
['max-age'] = $this->getParameter( 'maxage' );
795 if ( !$this->mCacheControl
['s-maxage'] && !$this->mCacheControl
['max-age'] ) {
796 // Public cache not requested
797 // Sending a Vary header in this case is harmless, and protects us
798 // against conditional calls of setCacheMaxAge().
799 $response->header( "Cache-Control: $privateCache" );
804 $this->mCacheControl
['public'] = true;
806 // Send an Expires header
807 $maxAge = min( $this->mCacheControl
['s-maxage'], $this->mCacheControl
['max-age'] );
808 $expiryUnixTime = ( $maxAge == 0 ?
1 : time() +
$maxAge );
809 $response->header( 'Expires: ' . wfTimestamp( TS_RFC2822
, $expiryUnixTime ) );
811 // Construct the Cache-Control header
814 foreach ( $this->mCacheControl
as $name => $value ) {
815 if ( is_bool( $value ) ) {
817 $ccHeader .= $separator . $name;
821 $ccHeader .= $separator . "$name=$value";
826 $response->header( "Cache-Control: $ccHeader" );
830 * Create the printer for error output
832 private function createErrorPrinter() {
833 if ( !isset( $this->mPrinter
) ) {
834 $value = $this->getRequest()->getVal( 'format', self
::API_DEFAULT_FORMAT
);
835 if ( !$this->mModuleMgr
->isDefined( $value, 'format' ) ) {
836 $value = self
::API_DEFAULT_FORMAT
;
838 $this->mPrinter
= $this->createPrinterByName( $value );
841 // Printer may not be able to handle errors. This is particularly
842 // likely if the module returns something for getCustomPrinter().
843 if ( !$this->mPrinter
->canPrintErrors() ) {
844 $this->mPrinter
= $this->createPrinterByName( self
::API_DEFAULT_FORMAT
);
849 * Replace the result data with the information about an exception.
850 * Returns the error code
851 * @param Exception $e
854 protected function substituteResultWithError( $e ) {
855 $result = $this->getResult();
856 $config = $this->getConfig();
858 if ( $e instanceof UsageException
) {
859 // User entered incorrect parameters - generate error response
860 $errMessage = $e->getMessageArray();
861 $link = wfExpandUrl( wfScript( 'api' ) );
862 ApiResult
::setContentValue( $errMessage, 'docref', "See $link for API usage" );
864 // Something is seriously wrong
865 if ( ( $e instanceof DBQueryError
) && !$config->get( 'ShowSQLErrors' ) ) {
866 $info = 'Database query error';
868 $info = "Exception Caught: {$e->getMessage()}";
872 'code' => 'internal_api_error_' . get_class( $e ),
873 'info' => '[' . MWExceptionHandler
::getLogId( $e ) . '] ' . $info,
875 if ( $config->get( 'ShowExceptionDetails' ) ) {
876 ApiResult
::setContentValue(
879 MWExceptionHandler
::getRedactedTraceAsString( $e )
884 // Remember all the warnings to re-add them later
885 $warnings = $result->getResultData( array( 'warnings' ) );
889 $requestid = $this->getParameter( 'requestid' );
890 if ( !is_null( $requestid ) ) {
891 $result->addValue( null, 'requestid', $requestid, ApiResult
::NO_SIZE_CHECK
);
893 if ( $config->get( 'ShowHostnames' ) ) {
894 // servedby is especially useful when debugging errors
895 $result->addValue( null, 'servedby', wfHostname(), ApiResult
::NO_SIZE_CHECK
);
897 if ( $warnings !== null ) {
898 $result->addValue( null, 'warnings', $warnings, ApiResult
::NO_SIZE_CHECK
);
901 $result->addValue( null, 'error', $errMessage, ApiResult
::NO_SIZE_CHECK
);
903 return $errMessage['code'];
907 * Set up for the execution.
910 protected function setupExecuteAction() {
911 // First add the id to the top element
912 $result = $this->getResult();
913 $requestid = $this->getParameter( 'requestid' );
914 if ( !is_null( $requestid ) ) {
915 $result->addValue( null, 'requestid', $requestid );
918 if ( $this->getConfig()->get( 'ShowHostnames' ) ) {
919 $servedby = $this->getParameter( 'servedby' );
921 $result->addValue( null, 'servedby', wfHostName() );
925 if ( $this->getParameter( 'curtimestamp' ) ) {
926 $result->addValue( null, 'curtimestamp', wfTimestamp( TS_ISO_8601
, time() ),
927 ApiResult
::NO_SIZE_CHECK
);
930 $params = $this->extractRequestParams();
932 $this->mAction
= $params['action'];
934 if ( !is_string( $this->mAction
) ) {
935 $this->dieUsage( 'The API requires a valid action parameter', 'unknown_action' );
942 * Set up the module for response
943 * @return ApiBase The module that will handle this action
944 * @throws MWException
945 * @throws UsageException
947 protected function setupModule() {
948 // Instantiate the module requested by the user
949 $module = $this->mModuleMgr
->getModule( $this->mAction
, 'action' );
950 if ( $module === null ) {
951 $this->dieUsage( 'The API requires a valid action parameter', 'unknown_action' );
953 $moduleParams = $module->extractRequestParams();
955 // Check token, if necessary
956 if ( $module->needsToken() === true ) {
957 throw new MWException(
958 "Module '{$module->getModuleName()}' must be updated for the new token handling. " .
959 "See documentation for ApiBase::needsToken for details."
962 if ( $module->needsToken() ) {
963 if ( !$module->mustBePosted() ) {
964 throw new MWException(
965 "Module '{$module->getModuleName()}' must require POST to use tokens."
969 if ( !isset( $moduleParams['token'] ) ) {
970 $this->dieUsageMsg( array( 'missingparam', 'token' ) );
973 if ( !$this->getConfig()->get( 'DebugAPI' ) &&
975 $module->encodeParamName( 'token' ),
976 $this->getRequest()->getQueryValues()
980 "The '{$module->encodeParamName( 'token' )}' parameter was " .
981 'found in the query string, but must be in the POST body',
986 if ( !$module->validateToken( $moduleParams['token'], $moduleParams ) ) {
987 $this->dieUsageMsg( 'sessionfailure' );
995 * Check the max lag if necessary
996 * @param ApiBase $module Api module being used
997 * @param array $params Array an array containing the request parameters.
998 * @return bool True on success, false should exit immediately
1000 protected function checkMaxLag( $module, $params ) {
1001 if ( $module->shouldCheckMaxlag() && isset( $params['maxlag'] ) ) {
1002 $maxLag = $params['maxlag'];
1003 list( $host, $lag ) = wfGetLB()->getMaxLag();
1004 if ( $lag > $maxLag ) {
1005 $response = $this->getRequest()->response();
1007 $response->header( 'Retry-After: ' . max( intval( $maxLag ), 5 ) );
1008 $response->header( 'X-Database-Lag: ' . intval( $lag ) );
1010 if ( $this->getConfig()->get( 'ShowHostnames' ) ) {
1011 $this->dieUsage( "Waiting for $host: $lag seconds lagged", 'maxlag' );
1014 $this->dieUsage( "Waiting for a database server: $lag seconds lagged", 'maxlag' );
1022 * Check selected RFC 7232 precondition headers
1024 * RFC 7232 envisions a particular model where you send your request to "a
1025 * resource", and for write requests that you can read "the resource" by
1026 * changing the method to GET. When the API receives a GET request, it
1027 * works out even though "the resource" from RFC 7232's perspective might
1028 * be many resources from MediaWiki's perspective. But it totally fails for
1029 * a POST, since what HTTP sees as "the resource" is probably just
1030 * "/api.php" with all the interesting bits in the body.
1032 * Therefore, we only support RFC 7232 precondition headers for GET (and
1033 * HEAD). That means we don't need to bother with If-Match and
1034 * If-Unmodified-Since since they only apply to modification requests.
1036 * And since we don't support Range, If-Range is ignored too.
1039 * @param ApiBase $module Api module being used
1040 * @return bool True on success, false should exit immediately
1042 protected function checkConditionalRequestHeaders( $module ) {
1043 if ( $this->mInternalMode
) {
1044 // No headers to check in internal mode
1048 if ( $this->getRequest()->getMethod() !== 'GET' && $this->getRequest()->getMethod() !== 'HEAD' ) {
1049 // Don't check POSTs
1055 $ifNoneMatch = array_diff(
1056 $this->getRequest()->getHeader( 'If-None-Match', WebRequest
::GETHEADER_LIST
) ?
: array(),
1059 if ( $ifNoneMatch ) {
1060 if ( $ifNoneMatch === array( '*' ) ) {
1061 // API responses always "exist"
1064 $etag = $module->getConditionalRequestData( 'etag' );
1067 if ( $ifNoneMatch && $etag !== null ) {
1068 $test = substr( $etag, 0, 2 ) === 'W/' ?
substr( $etag, 2 ) : $etag;
1069 $match = array_map( function ( $s ) {
1070 return substr( $s, 0, 2 ) === 'W/' ?
substr( $s, 2 ) : $s;
1072 $return304 = in_array( $test, $match, true );
1074 $value = trim( $this->getRequest()->getHeader( 'If-Modified-Since' ) );
1076 // Some old browsers sends sizes after the date, like this:
1077 // Wed, 20 Aug 2003 06:51:19 GMT; length=5202
1079 $i = strpos( $value, ';' );
1080 if ( $i !== false ) {
1081 $value = trim( substr( $value, 0, $i ) );
1084 if ( $value !== '' ) {
1086 $ts = new MWTimestamp( $value );
1088 // RFC 7231 IMF-fixdate
1089 $ts->getTimestamp( TS_RFC2822
) === $value ||
1091 $ts->format( 'l, d-M-y H:i:s' ) . ' GMT' === $value ||
1092 // asctime (with and without space-padded day)
1093 $ts->format( 'D M j H:i:s Y' ) === $value ||
1094 $ts->format( 'D M j H:i:s Y' ) === $value
1096 $lastMod = $module->getConditionalRequestData( 'last-modified' );
1097 if ( $lastMod !== null ) {
1098 // Mix in some MediaWiki modification times
1099 $modifiedTimes = array(
1101 'user' => $this->getUser()->getTouched(),
1102 'epoch' => $this->getConfig()->get( 'CacheEpoch' ),
1104 if ( $this->getConfig()->get( 'UseSquid' ) ) {
1105 // T46570: the core page itself may not change, but resources might
1106 $modifiedTimes['sepoch'] = wfTimestamp(
1107 TS_MW
, time() - $this->getConfig()->get( 'SquidMaxage' )
1110 Hooks
::run( 'OutputPageCheckLastModified', array( &$modifiedTimes ) );
1111 $lastMod = max( $modifiedTimes );
1112 $return304 = wfTimestamp( TS_MW
, $lastMod ) <= $ts->getTimestamp( TS_MW
);
1115 } catch ( TimestampException
$e ) {
1116 // Invalid timestamp, ignore it
1122 $this->getRequest()->response()->statusHeader( 304 );
1124 // Avoid outputting the compressed representation of a zero-length body
1125 MediaWiki\
suppressWarnings();
1126 ini_set( 'zlib.output_compression', 0 );
1127 MediaWiki\restoreWarnings
();
1128 wfClearOutputBuffers();
1137 * Check for sufficient permissions to execute
1138 * @param ApiBase $module An Api module
1140 protected function checkExecutePermissions( $module ) {
1141 $user = $this->getUser();
1142 if ( $module->isReadMode() && !User
::isEveryoneAllowed( 'read' ) &&
1143 !$user->isAllowed( 'read' )
1145 $this->dieUsageMsg( 'readrequired' );
1148 if ( $module->isWriteMode() ) {
1149 if ( !$this->mEnableWrite
) {
1150 $this->dieUsageMsg( 'writedisabled' );
1151 } elseif ( !$user->isAllowed( 'writeapi' ) ) {
1152 $this->dieUsageMsg( 'writerequired' );
1153 } elseif ( $this->getRequest()->getHeader( 'Promise-Non-Write-API-Action' ) ) {
1155 "Promise-Non-Write-API-Action HTTP header cannot be sent to write API modules",
1156 'promised-nonwrite-api'
1160 $this->checkReadOnly( $module );
1163 // Allow extensions to stop execution for arbitrary reasons.
1165 if ( !Hooks
::run( 'ApiCheckCanExecute', array( $module, $user, &$message ) ) ) {
1166 $this->dieUsageMsg( $message );
1171 * Check if the DB is read-only for this user
1172 * @param ApiBase $module An Api module
1174 protected function checkReadOnly( $module ) {
1175 if ( wfReadOnly() ) {
1176 $this->dieReadOnly();
1179 if ( $module->isWriteMode()
1180 && in_array( 'bot', $this->getUser()->getGroups() )
1181 && wfGetLB()->getServerCount() > 1
1183 // Figure out how many servers have passed the lag threshold
1185 $lagLimit = $this->getConfig()->get( 'APIMaxLagThreshold' );
1186 foreach ( wfGetLB()->getLagTimes() as $lag ) {
1187 if ( $lag > $lagLimit ) {
1191 // If a majority of slaves are too lagged then disallow writes
1192 $slaveCount = wfGetLB()->getServerCount() - 1;
1193 if ( $numLagged >= ceil( $slaveCount / 2 ) ) {
1194 $parsed = $this->parseMsg( array( 'readonlytext' ) );
1200 array( 'readonlyreason' => "Waiting for $numLagged lagged database(s)" )
1207 * Check asserts of the user's rights
1208 * @param array $params
1210 protected function checkAsserts( $params ) {
1211 if ( isset( $params['assert'] ) ) {
1212 $user = $this->getUser();
1213 switch ( $params['assert'] ) {
1215 if ( $user->isAnon() ) {
1216 $this->dieUsage( 'Assertion that the user is logged in failed', 'assertuserfailed' );
1220 if ( !$user->isAllowed( 'bot' ) ) {
1221 $this->dieUsage( 'Assertion that the user has the bot right failed', 'assertbotfailed' );
1229 * Check POST for external response and setup result printer
1230 * @param ApiBase $module An Api module
1231 * @param array $params An array with the request parameters
1233 protected function setupExternalResponse( $module, $params ) {
1234 if ( !$this->getRequest()->wasPosted() && $module->mustBePosted() ) {
1235 // Module requires POST. GET request might still be allowed
1236 // if $wgDebugApi is true, otherwise fail.
1237 $this->dieUsageMsgOrDebug( array( 'mustbeposted', $this->mAction
) );
1240 // See if custom printer is used
1241 $this->mPrinter
= $module->getCustomPrinter();
1242 if ( is_null( $this->mPrinter
) ) {
1243 // Create an appropriate printer
1244 $this->mPrinter
= $this->createPrinterByName( $params['format'] );
1249 * Execute the actual module, without any error handling
1251 protected function executeAction() {
1252 $params = $this->setupExecuteAction();
1253 $module = $this->setupModule();
1254 $this->mModule
= $module;
1256 $this->setRequestExpectations( $module );
1258 $this->checkExecutePermissions( $module );
1260 if ( !$this->checkMaxLag( $module, $params ) ) {
1264 if ( !$this->checkConditionalRequestHeaders( $module ) ) {
1268 if ( !$this->mInternalMode
) {
1269 $this->setupExternalResponse( $module, $params );
1272 $this->checkAsserts( $params );
1276 Hooks
::run( 'APIAfterExecute', array( &$module ) );
1278 $this->reportUnusedParams();
1280 if ( !$this->mInternalMode
) {
1281 // append Debug information
1282 MWDebug
::appendDebugInfoToApiResult( $this->getContext(), $this->getResult() );
1284 // Print result data
1285 $this->printResult( false );
1290 * Set database connection, query, and write expectations given this module request
1291 * @param ApiBase $module
1293 protected function setRequestExpectations( ApiBase
$module ) {
1294 $limits = $this->getConfig()->get( 'TrxProfilerLimits' );
1295 $trxProfiler = Profiler
::instance()->getTransactionProfiler();
1296 if ( $this->getRequest()->wasPosted() ) {
1297 if ( $module->isWriteMode() ) {
1298 $trxProfiler->setExpectations( $limits['POST'], __METHOD__
);
1300 $trxProfiler->setExpectations( $limits['POST-nonwrite'], __METHOD__
);
1303 $trxProfiler->setExpectations( $limits['GET'], __METHOD__
);
1308 * Log the preceding request
1309 * @param float $time Time in seconds
1311 protected function logRequest( $time ) {
1312 $request = $this->getRequest();
1314 'dt' => date( 'c' ),
1315 'client_ip' => $request->getIP(),
1316 'user_agent' => $this->getUserAgent(),
1317 'wiki' => wfWikiID(),
1318 'time_backend_ms' => round( $time * 1000 ),
1319 'params' => array(),
1322 // Construct space separated message for 'api' log channel
1323 $msg = "API {$request->getMethod()} " .
1324 wfUrlencode( str_replace( ' ', '_', $this->getUser()->getName() ) ) .
1325 " {$logCtx['client_ip']} " .
1326 "T={$logCtx['time_backend_ms']}ms";
1328 foreach ( $this->getParamsUsed() as $name ) {
1329 $value = $request->getVal( $name );
1330 if ( $value === null ) {
1334 if ( strlen( $value ) > 256 ) {
1335 $value = substr( $value, 0, 256 );
1336 $encValue = $this->encodeRequestLogValue( $value ) . '[...]';
1338 $encValue = $this->encodeRequestLogValue( $value );
1341 $logCtx['params'][$name] = $value;
1342 $msg .= " {$name}={$encValue}";
1345 wfDebugLog( 'api', $msg, 'private' );
1346 // ApiRequest channel is for structured data consumers
1347 wfDebugLog( 'ApiRequest', '', 'private', $logCtx );
1351 * Encode a value in a format suitable for a space-separated log line.
1355 protected function encodeRequestLogValue( $s ) {
1358 $chars = ';@$!*(),/:';
1359 $numChars = strlen( $chars );
1360 for ( $i = 0; $i < $numChars; $i++
) {
1361 $table[rawurlencode( $chars[$i] )] = $chars[$i];
1365 return strtr( rawurlencode( $s ), $table );
1369 * Get the request parameters used in the course of the preceding execute() request
1372 protected function getParamsUsed() {
1373 return array_keys( $this->mParamsUsed
);
1377 * Get a request value, and register the fact that it was used, for logging.
1378 * @param string $name
1379 * @param mixed $default
1382 public function getVal( $name, $default = null ) {
1383 $this->mParamsUsed
[$name] = true;
1385 $ret = $this->getRequest()->getVal( $name );
1386 if ( $ret === null ) {
1387 if ( $this->getRequest()->getArray( $name ) !== null ) {
1388 // See bug 10262 for why we don't just join( '|', ... ) the
1391 "Parameter '$name' uses unsupported PHP array syntax"
1400 * Get a boolean request value, and register the fact that the parameter
1401 * was used, for logging.
1402 * @param string $name
1405 public function getCheck( $name ) {
1406 return $this->getVal( $name, null ) !== null;
1410 * Get a request upload, and register the fact that it was used, for logging.
1413 * @param string $name Parameter name
1414 * @return WebRequestUpload
1416 public function getUpload( $name ) {
1417 $this->mParamsUsed
[$name] = true;
1419 return $this->getRequest()->getUpload( $name );
1423 * Report unused parameters, so the client gets a hint in case it gave us parameters we don't know,
1424 * for example in case of spelling mistakes or a missing 'g' prefix for generators.
1426 protected function reportUnusedParams() {
1427 $paramsUsed = $this->getParamsUsed();
1428 $allParams = $this->getRequest()->getValueNames();
1430 if ( !$this->mInternalMode
) {
1431 // Printer has not yet executed; don't warn that its parameters are unused
1432 $printerParams = array_map(
1433 array( $this->mPrinter
, 'encodeParamName' ),
1434 array_keys( $this->mPrinter
->getFinalParams() ?
: array() )
1436 $unusedParams = array_diff( $allParams, $paramsUsed, $printerParams );
1438 $unusedParams = array_diff( $allParams, $paramsUsed );
1441 if ( count( $unusedParams ) ) {
1442 $s = count( $unusedParams ) > 1 ?
's' : '';
1443 $this->setWarning( "Unrecognized parameter$s: '" . implode( $unusedParams, "', '" ) . "'" );
1448 * Print results using the current printer
1450 * @param bool $isError
1452 protected function printResult( $isError ) {
1453 if ( $this->getConfig()->get( 'DebugAPI' ) !== false ) {
1454 $this->setWarning( 'SECURITY WARNING: $wgDebugAPI is enabled' );
1457 $printer = $this->mPrinter
;
1458 $printer->initPrinter( false );
1459 $printer->execute();
1460 $printer->closePrinter();
1466 public function isReadMode() {
1471 * See ApiBase for description.
1475 public function getAllowedParams() {
1478 ApiBase
::PARAM_DFLT
=> 'help',
1479 ApiBase
::PARAM_TYPE
=> 'submodule',
1482 ApiBase
::PARAM_DFLT
=> ApiMain
::API_DEFAULT_FORMAT
,
1483 ApiBase
::PARAM_TYPE
=> 'submodule',
1486 ApiBase
::PARAM_TYPE
=> 'integer'
1489 ApiBase
::PARAM_TYPE
=> 'integer',
1490 ApiBase
::PARAM_DFLT
=> 0
1493 ApiBase
::PARAM_TYPE
=> 'integer',
1494 ApiBase
::PARAM_DFLT
=> 0
1497 ApiBase
::PARAM_TYPE
=> array( 'user', 'bot' )
1499 'requestid' => null,
1500 'servedby' => false,
1501 'curtimestamp' => false,
1504 ApiBase
::PARAM_DFLT
=> 'user',
1509 /** @see ApiBase::getExamplesMessages() */
1510 protected function getExamplesMessages() {
1513 => 'apihelp-help-example-main',
1514 'action=help&recursivesubmodules=1'
1515 => 'apihelp-help-example-recursive',
1519 public function modifyHelp( array &$help, array $options, array &$tocData ) {
1520 // Wish PHP had an "array_insert_before". Instead, we have to manually
1521 // reindex the array to get 'permissions' in the right place.
1524 foreach ( $oldHelp as $k => $v ) {
1525 if ( $k === 'submodules' ) {
1526 $help['permissions'] = '';
1530 $help['datatypes'] = '';
1531 $help['credits'] = '';
1533 // Fill 'permissions'
1534 $help['permissions'] .= Html
::openElement( 'div',
1535 array( 'class' => 'apihelp-block apihelp-permissions' ) );
1536 $m = $this->msg( 'api-help-permissions' );
1537 if ( !$m->isDisabled() ) {
1538 $help['permissions'] .= Html
::rawElement( 'div', array( 'class' => 'apihelp-block-head' ),
1539 $m->numParams( count( self
::$mRights ) )->parse()
1542 $help['permissions'] .= Html
::openElement( 'dl' );
1543 foreach ( self
::$mRights as $right => $rightMsg ) {
1544 $help['permissions'] .= Html
::element( 'dt', null, $right );
1546 $rightMsg = $this->msg( $rightMsg['msg'], $rightMsg['params'] )->parse();
1547 $help['permissions'] .= Html
::rawElement( 'dd', null, $rightMsg );
1549 $groups = array_map( function ( $group ) {
1550 return $group == '*' ?
'all' : $group;
1551 }, User
::getGroupsWithPermission( $right ) );
1553 $help['permissions'] .= Html
::rawElement( 'dd', null,
1554 $this->msg( 'api-help-permissions-granted-to' )
1555 ->numParams( count( $groups ) )
1556 ->params( $this->getLanguage()->commaList( $groups ) )
1560 $help['permissions'] .= Html
::closeElement( 'dl' );
1561 $help['permissions'] .= Html
::closeElement( 'div' );
1563 // Fill 'datatypes' and 'credits', if applicable
1564 if ( empty( $options['nolead'] ) ) {
1565 $level = $options['headerlevel'];
1566 $tocnumber = &$options['tocnumber'];
1568 $header = $this->msg( 'api-help-datatypes-header' )->parse();
1569 $help['datatypes'] .= Html
::rawElement( 'h' . min( 6, $level ),
1570 array( 'id' => 'main/datatypes', 'class' => 'apihelp-header' ),
1571 Html
::element( 'span', array( 'id' => Sanitizer
::escapeId( 'main/datatypes' ) ) ) .
1574 $help['datatypes'] .= $this->msg( 'api-help-datatypes' )->parseAsBlock();
1575 if ( !isset( $tocData['main/datatypes'] ) ) {
1576 $tocnumber[$level]++
;
1577 $tocData['main/datatypes'] = array(
1578 'toclevel' => count( $tocnumber ),
1580 'anchor' => 'main/datatypes',
1582 'number' => join( '.', $tocnumber ),
1587 $header = $this->msg( 'api-credits-header' )->parse();
1588 $help['credits'] .= Html
::rawElement( 'h' . min( 6, $level ),
1589 array( 'id' => 'main/credits', 'class' => 'apihelp-header' ),
1590 Html
::element( 'span', array( 'id' => Sanitizer
::escapeId( 'main/credits' ) ) ) .
1593 $help['credits'] .= $this->msg( 'api-credits' )->useDatabase( false )->parseAsBlock();
1594 if ( !isset( $tocData['main/credits'] ) ) {
1595 $tocnumber[$level]++
;
1596 $tocData['main/credits'] = array(
1597 'toclevel' => count( $tocnumber ),
1599 'anchor' => 'main/credits',
1601 'number' => join( '.', $tocnumber ),
1608 private $mCanApiHighLimits = null;
1611 * Check whether the current user is allowed to use high limits
1614 public function canApiHighLimits() {
1615 if ( !isset( $this->mCanApiHighLimits
) ) {
1616 $this->mCanApiHighLimits
= $this->getUser()->isAllowed( 'apihighlimits' );
1619 return $this->mCanApiHighLimits
;
1623 * Overrides to return this instance's module manager.
1624 * @return ApiModuleManager
1626 public function getModuleManager() {
1627 return $this->mModuleMgr
;
1631 * Fetches the user agent used for this request
1633 * The value will be the combination of the 'Api-User-Agent' header (if
1634 * any) and the standard User-Agent header (if any).
1638 public function getUserAgent() {
1640 $this->getRequest()->getHeader( 'Api-user-agent' ) . ' ' .
1641 $this->getRequest()->getHeader( 'User-agent' )
1645 /************************************************************************//**
1651 * Sets whether the pretty-printer should format *bold* and $italics$
1653 * @deprecated since 1.25
1656 public function setHelp( $help = true ) {
1657 wfDeprecated( __METHOD__
, '1.25' );
1658 $this->mPrinter
->setHelp( $help );
1662 * Override the parent to generate help messages for all available modules.
1664 * @deprecated since 1.25
1667 public function makeHelpMsg() {
1668 wfDeprecated( __METHOD__
, '1.25' );
1671 $cacheHelpTimeout = $this->getConfig()->get( 'APICacheHelpTimeout' );
1673 return ObjectCache
::getMainWANInstance()->getWithSetCallback(
1676 $this->getModuleName(),
1677 str_replace( ' ', '_', SpecialVersion
::getVersion( 'nodb' ) )
1679 $cacheHelpTimeout > 0 ?
$cacheHelpTimeout : WANObjectCache
::TTL_UNCACHEABLE
,
1680 array( $this, 'reallyMakeHelpMsg' )
1685 * @deprecated since 1.25
1686 * @return mixed|string
1688 public function reallyMakeHelpMsg() {
1689 wfDeprecated( __METHOD__
, '1.25' );
1692 // Use parent to make default message for the main module
1693 $msg = parent
::makeHelpMsg();
1695 $astriks = str_repeat( '*** ', 14 );
1696 $msg .= "\n\n$astriks Modules $astriks\n\n";
1698 foreach ( $this->mModuleMgr
->getNames( 'action' ) as $name ) {
1699 $module = $this->mModuleMgr
->getModule( $name );
1700 $msg .= self
::makeHelpMsgHeader( $module, 'action' );
1702 $msg2 = $module->makeHelpMsg();
1703 if ( $msg2 !== false ) {
1709 $msg .= "\n$astriks Permissions $astriks\n\n";
1710 foreach ( self
::$mRights as $right => $rightMsg ) {
1711 $rightsMsg = $this->msg( $rightMsg['msg'], $rightMsg['params'] )
1712 ->useDatabase( false )
1713 ->inLanguage( 'en' )
1715 $groups = User
::getGroupsWithPermission( $right );
1716 $msg .= "* " . $right . " *\n $rightsMsg" .
1717 "\nGranted to:\n " . str_replace( '*', 'all', implode( ', ', $groups ) ) . "\n\n";
1720 $msg .= "\n$astriks Formats $astriks\n\n";
1721 foreach ( $this->mModuleMgr
->getNames( 'format' ) as $name ) {
1722 $module = $this->mModuleMgr
->getModule( $name );
1723 $msg .= self
::makeHelpMsgHeader( $module, 'format' );
1724 $msg2 = $module->makeHelpMsg();
1725 if ( $msg2 !== false ) {
1731 $credits = $this->msg( 'api-credits' )->useDatabase( 'false' )->inLanguage( 'en' )->text();
1732 $credits = str_replace( "\n", "\n ", $credits );
1733 $msg .= "\n*** Credits: ***\n $credits\n";
1739 * @deprecated since 1.25
1740 * @param ApiBase $module
1741 * @param string $paramName What type of request is this? e.g. action,
1742 * query, list, prop, meta, format
1745 public static function makeHelpMsgHeader( $module, $paramName ) {
1746 wfDeprecated( __METHOD__
, '1.25' );
1747 $modulePrefix = $module->getModulePrefix();
1748 if ( strval( $modulePrefix ) !== '' ) {
1749 $modulePrefix = "($modulePrefix) ";
1752 return "* $paramName={$module->getModuleName()} $modulePrefix*";
1756 * Check whether the user wants us to show version information in the API help
1758 * @deprecated since 1.21, always returns false
1760 public function getShowVersions() {
1761 wfDeprecated( __METHOD__
, '1.21' );
1767 * Add or overwrite a module in this ApiMain instance. Intended for use by extending
1768 * classes who wish to add their own modules to their lexicon or override the
1769 * behavior of inherent ones.
1771 * @deprecated since 1.21, Use getModuleManager()->addModule() instead.
1772 * @param string $name The identifier for this module.
1773 * @param ApiBase $class The class where this module is implemented.
1775 protected function addModule( $name, $class ) {
1776 $this->getModuleManager()->addModule( $name, 'action', $class );
1780 * Add or overwrite an output format for this ApiMain. Intended for use by extending
1781 * classes who wish to add to or modify current formatters.
1783 * @deprecated since 1.21, Use getModuleManager()->addModule() instead.
1784 * @param string $name The identifier for this format.
1785 * @param ApiFormatBase $class The class implementing this format.
1787 protected function addFormat( $name, $class ) {
1788 $this->getModuleManager()->addModule( $name, 'format', $class );
1792 * Returns the list of supported formats in form ( 'format' => 'ClassName' )
1795 * @deprecated since 1.21, Use getModuleManager()'s methods instead.
1798 public function getFormats() {
1799 return $this->getModuleManager()->getNamesWithClasses( 'format' );
1807 * This exception will be thrown when dieUsage is called to stop module execution.
1811 class UsageException
extends MWException
{
1818 private $mExtraData;
1821 * @param string $message
1822 * @param string $codestr
1824 * @param array|null $extradata
1826 public function __construct( $message, $codestr, $code = 0, $extradata = null ) {
1827 parent
::__construct( $message, $code );
1828 $this->mCodestr
= $codestr;
1829 $this->mExtraData
= $extradata;
1835 public function getCodeString() {
1836 return $this->mCodestr
;
1842 public function getMessageArray() {
1844 'code' => $this->mCodestr
,
1845 'info' => $this->getMessage()
1847 if ( is_array( $this->mExtraData
) ) {
1848 $result = array_merge( $result, $this->mExtraData
);
1857 public function __toString() {
1858 return "{$this->getCodeString()}: {$this->getMessage()}";
1863 * For really cool vim folding this needs to be at the end:
1864 * vim: foldmarker=@{,@} foldmethod=marker