]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - api.php
MediaWiki 1.11.0-scripts
[autoinstalls/mediawiki.git] / api.php
1 <?php
2
3 /*
4 * API for MediaWiki 1.8+
5 *
6 * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 */
23
24 /** 
25  * This file is the entry point for all API queries. It begins by checking 
26  * whether the API is enabled on this wiki; if not, it informs the user that
27  * s/he should set $wgEnableAPI to true and exits. Otherwise, it constructs
28  * a new ApiMain using the parameter passed to it as an argument in the URL
29  * ('?action=') and with write-enabled set to the value of $wgEnableWriteAPI
30  * as specified in LocalSettings.php. It then invokes "execute()" on the
31  * ApiMain object instance, which produces output in the format sepecified
32  * in the URL.
33  */
34
35 // Initialise common code
36 require (dirname(__FILE__) . '/includes/WebStart.php');
37
38 wfProfileIn('api.php');
39
40 // Verify that the API has not been disabled
41 if (!$wgEnableAPI) {
42         echo 'MediaWiki API is not enabled for this site. Add the following line to your LocalSettings.php';
43         echo '<pre><b>$wgEnableAPI=true;</b></pre>';
44         die(-1);
45 }
46
47 /* Construct an ApiMain with the arguments passed via the URL. What we get back
48  * is some form of an ApiMain, possibly even one that produces an error message,
49  * but we don't care here, as that is handled by the ctor.
50  */
51 $processor = new ApiMain($wgRequest, $wgEnableWriteAPI);
52
53 // Process data & print results
54 $processor->execute();
55
56 // Log what the user did, for book-keeping purposes.
57 wfProfileOut('api.php');
58 wfLogProfilingData();
59