Merge "Add script to fix content model of JSON pages"
[lhc/web/wiklou.git] / api.php
1 <?php
2 /**
3 * This file is the entry point for all API queries.
4 *
5 * It begins by checking whether the API is enabled on this wiki; if not,
6 * it informs the user that s/he should set $wgEnableAPI to true and exits.
7 * Otherwise, it constructs a new ApiMain using the parameter passed to it
8 * as an argument in the URL ('?action=') and with write-enabled set to the
9 * value of $wgEnableWriteAPI as specified in LocalSettings.php.
10 * It then invokes "execute()" on the ApiMain object instance, which
11 * produces output in the format specified in the URL.
12 *
13 * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License along
26 * with this program; if not, write to the Free Software Foundation, Inc.,
27 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
28 * http://www.gnu.org/copyleft/gpl.html
29 *
30 * @file
31 */
32
33 use MediaWiki\Logger\LegacyLogger;
34
35 // So extensions (and other code) can check whether they're running in API mode
36 define( 'MW_API', true );
37
38 require __DIR__ . '/includes/WebStart.php';
39
40 $starttime = microtime( true );
41
42 // URL safety checks
43 if ( !$wgRequest->checkUrlExtension() ) {
44 return;
45 }
46
47 // Verify that the API has not been disabled
48 if ( !$wgEnableAPI ) {
49 header( $_SERVER['SERVER_PROTOCOL'] . ' 500 MediaWiki configuration Error', true, 500 );
50 echo 'MediaWiki API is not enabled for this site. Add the following line to your LocalSettings.php'
51 . '<pre><b>$wgEnableAPI=true;</b></pre>';
52 die( 1 );
53 }
54
55 // Set a dummy $wgTitle, because $wgTitle == null breaks various things
56 // In a perfect world this wouldn't be necessary
57 $wgTitle = Title::makeTitle( NS_SPECIAL, 'Badtitle/dummy title for API calls set in api.php' );
58
59 // RequestContext will read from $wgTitle, but it will also whine about it.
60 // In a perfect world this wouldn't be necessary either.
61 RequestContext::getMain()->setTitle( $wgTitle );
62
63 try {
64 /* Construct an ApiMain with the arguments passed via the URL. What we get back
65 * is some form of an ApiMain, possibly even one that produces an error message,
66 * but we don't care here, as that is handled by the ctor.
67 */
68 $processor = new ApiMain( RequestContext::getMain(), $wgEnableWriteAPI );
69
70 // Last chance hook before executing the API
71 Hooks::run( 'ApiBeforeMain', array( &$processor ) );
72 if ( !$processor instanceof ApiMain ) {
73 throw new MWException( 'ApiBeforeMain hook set $processor to a non-ApiMain class' );
74 }
75 } catch ( Exception $e ) {
76 // Crap. Try to report the exception in API format to be friendly to clients.
77 ApiMain::handleApiBeforeMainException( $e );
78 $processor = false;
79 }
80
81 // Process data & print results
82 if ( $processor ) {
83 $processor->execute();
84 }
85
86 // Log what the user did, for book-keeping purposes.
87 $endtime = microtime( true );
88
89 // Log the request
90 if ( $wgAPIRequestLog ) {
91 $items = array(
92 wfTimestamp( TS_MW ),
93 $endtime - $starttime,
94 $wgRequest->getIP(),
95 $wgRequest->getHeader( 'User-agent' )
96 );
97 $items[] = $wgRequest->wasPosted() ? 'POST' : 'GET';
98 if ( $processor ) {
99 try {
100 $manager = $processor->getModuleManager();
101 $module = $manager->getModule( $wgRequest->getVal( 'action' ), 'action' );
102 } catch ( Exception $ex ) {
103 $module = null;
104 }
105 if ( !$module || $module->mustBePosted() ) {
106 $items[] = "action=" . $wgRequest->getVal( 'action' );
107 } else {
108 $items[] = wfArrayToCgi( $wgRequest->getValues() );
109 }
110 } else {
111 $items[] = "failed in ApiBeforeMain";
112 }
113 LegacyLogger::emit( implode( ',', $items ) . "\n", $wgAPIRequestLog );
114 wfDebug( "Logged API request to $wgAPIRequestLog\n" );
115 }
116
117 $mediawiki = new MediaWiki();
118 $mediawiki->doPostOutputShutdown( 'fast' );