Go to the documentation of this file.
36 define(
'MW_API',
true );
38 require __DIR__ .
'/includes/WebStart.php';
49 if ( isset( $_SERVER[
'PATH_INFO'] ) && $_SERVER[
'PATH_INFO'] !=
'' ) {
52 header(
"Location: $correctUrl",
true, 301 );
53 echo
'This endpoint does not support "path info", i.e. extra text between "api.php"'
54 .
'and the "?". Remove any such text and try again.';
60 header( $_SERVER[
'SERVER_PROTOCOL'] .
' 500 MediaWiki configuration Error',
true, 500 );
61 echo
'MediaWiki API is not enabled for this site. Add the following line to your LocalSettings.php'
62 .
'<pre><b>$wgEnableAPI=true;</b></pre>';
82 Hooks::run(
'ApiBeforeMain', [ &$processor ] );
83 if ( !$processor instanceof
ApiMain ) {
84 throw new MWException(
'ApiBeforeMain hook set $processor to a non-ApiMain class' );
86 }
catch ( Exception
$e ) {
94 $processor->execute();
108 $items[] =
$wgRequest->wasPosted() ?
'POST' :
'GET';
111 $manager = $processor->getModuleManager();
112 $module = $manager->getModule(
$wgRequest->getVal(
'action' ),
'action' );
113 }
catch ( Exception $ex ) {
116 if ( !$module || $module->mustBePosted() ) {
117 $items[] =
"action=" .
$wgRequest->getVal(
'action' );
122 $items[] =
"failed in ApiBeforeMain";
125 wfDebug(
"Logged API request to $wgAPIRequestLog\n" );
This is the main API class, used for both external and internal processing.
if( $wgAPIRequestLog) $mediawiki
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
static handleApiBeforeMainException(Exception $e)
Handle an exception from the ApiBeforeMain hook.
if(! $wgRequest->checkUrlExtension()) if(isset( $_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'] !='') if(! $wgEnableAPI) $wgTitle
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
if(! $processor instanceof ApiMain) catch(Exception $e) if( $processor) $endtime
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
$wgAPIRequestLog
Log file or URL (TCP or UDP) to log API requests to, or false to disable API request logging.
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
This document describes the state of Postgres support in MediaWiki
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
static getMain()
Static methods.
$wgEnableWriteAPI
Allow the API to be used to perform write operations (page edits, rollback, etc.) when an authorised ...
if(! $wgDBerrorLogTZ) $wgRequest
$wgEnableAPI
Enable the MediaWiki API for convenient access to machine-readable data via api.php.
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
MediaWiki Logger LegacyLogger
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
wfArrayToCgi( $array1, $array2=null, $prefix='')
This function takes one or two arrays as input, and returns a CGI-style string, e....