Update.
[mediawiki.git] / includes / api / ApiQuerySiteinfo.php
blobea9601f770d6c0db5d38eac6b57f84fb01c03c8b
1 <?php
4 /*
5 * Created on Sep 25, 2006
7 * API for MediaWiki 1.8+
9 * Copyright (C) 2006 Yuri Astrakhan <FirstnameLastname@gmail.com>
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.
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.
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
27 if (!defined('MEDIAWIKI')) {
28 // Eclipse helper - will be ignored in production
29 require_once ('ApiQueryBase.php');
32 class ApiQuerySiteinfo extends ApiQueryBase {
34 public function __construct($query, $moduleName) {
35 parent :: __construct($query, $moduleName, 'si');
38 public function execute() {
39 $prop = null;
40 extract($this->extractRequestParams());
42 foreach ($prop as $p) {
43 switch ($p) {
45 case 'general' :
47 global $wgSitename, $wgVersion, $wgCapitalLinks, $wgRightsCode, $wgRightsText;
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 if (isset($wgRightsCode))
56 $data['rightscode'] = $wgRightsCode;
57 $data['rights'] = $wgRightsText;
58 $this->getResult()->addValue('query', $p, $data);
59 break;
61 case 'namespaces' :
63 global $wgContLang;
64 $data = array ();
65 foreach ($wgContLang->getFormattedNamespaces() as $ns => $title) {
66 $data[$ns] = array (
67 'id' => $ns
69 ApiResult :: setContent($data[$ns], $title);
71 $this->getResult()->setIndexedTagName($data, 'ns');
72 $this->getResult()->addValue('query', $p, $data);
73 break;
75 default :
76 ApiBase :: dieDebug(__METHOD__, "Unknown prop=$p");
81 protected function getAllowedParams() {
82 return array (
83 'prop' => array (
84 ApiBase :: PARAM_DFLT => 'general',
85 ApiBase :: PARAM_ISMULTI => true,
86 ApiBase :: PARAM_TYPE => array (
87 'general',
88 'namespaces'
94 protected function getParamDescription() {
95 return array (
96 'prop' => array (
97 'Which sysinfo properties to get:',
98 ' "general" - Overall system information',
99 ' "namespaces" - List of registered namespaces (localized)'
104 protected function getDescription() {
105 return 'Return general information about the site.';
108 protected function getExamples() {
109 return 'api.php?action=query&meta=siteinfo&siprop=general|namespaces';
112 public function getVersion() {
113 return __CLASS__ . ': $Id$';