* API: Refactored per brion's suggestions
[lhc/web/wiklou.git] / includes / api / ApiQuerySiteinfo.php
1 <?php
2
3
4 /*
5 * Created on Sep 25, 2006
6 *
7 * API for MediaWiki 1.8+
8 *
9 * Copyright (C) 2006 Yuri Astrakhan <FirstnameLastname@gmail.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * http://www.gnu.org/copyleft/gpl.html
25 */
26
27 if (!defined('MEDIAWIKI')) {
28 // Eclipse helper - will be ignored in production
29 require_once ("ApiQueryBase.php");
30 }
31
32 class ApiQuerySiteinfo extends ApiQueryBase {
33
34 public function __construct($query, $moduleName) {
35 parent :: __construct($query, $moduleName);
36 }
37
38 public function execute() {
39 $siprop = null;
40 extract($this->extractRequestParams());
41
42 foreach ($siprop as $prop) {
43 switch ($prop) {
44
45 case 'general' :
46
47 global $wgSitename, $wgVersion, $wgCapitalLinks;
48 $data = array ();
49 $mainPage = Title :: newFromText(wfMsgForContent('mainpage'));
50 $data['mainpage'] = $mainPage->getText();
51 $data['base'] = $mainPage->getFullUrl();
52 $data['sitename'] = $wgSitename;
53 $data['generator'] = "MediaWiki $wgVersion";
54 $data['case'] = $wgCapitalLinks ? 'first-letter' : 'case-sensitive'; // "case-insensitive" option is reserved for future
55 $this->getResult()->addMessage('query', $prop, $data);
56 break;
57
58 case 'namespaces' :
59
60 global $wgContLang;
61 $data = array ();
62 $data['_element'] = 'ns';
63 foreach ($wgContLang->getFormattedNamespaces() as $ns => $title)
64 $data[$ns] = array (
65 'id' => $ns,
66 '*' => $title
67 );
68 $this->getResult()->addMessage('query', $prop, $data);
69 break;
70
71 default :
72 $this->dieDebug("Unknown siprop=$prop");
73 }
74 }
75 }
76
77 protected function getAllowedParams() {
78 return array (
79 'siprop' => array (
80 GN_ENUM_DFLT => 'general',
81 GN_ENUM_ISMULTI => true,
82 GN_ENUM_TYPE => array (
83 'general',
84 'namespaces'
85 )
86 )
87 );
88 }
89
90 protected function getParamDescription() {
91 return array (
92 'siprop' => array (
93 'Which sysinfo properties to get:',
94 ' "general" - Overall system information',
95 ' "namespaces" - List of registered namespaces (localized)'
96 )
97 );
98 }
99
100 protected function getDescription() {
101 return 'Return general information about the site.';
102 }
103
104 protected function getExamples() {
105 return 'api.php?action=query&meta=siteinfo&siprop=general|namespaces';
106 }
107 }
108 ?>