Support extension information in meta=siteinfo.
[lhc/web/wiklou.git] / includes / api / ApiQuerySiteinfo.php
1 <?php
2
3 /*
4 * Created on Sep 25, 2006
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * http://www.gnu.org/copyleft/gpl.html
24 */
25
26 if( !defined('MEDIAWIKI') ) {
27 // Eclipse helper - will be ignored in production
28 require_once( 'ApiQueryBase.php' );
29 }
30
31 /**
32 * A query action to return meta information about the wiki site.
33 *
34 * @ingroup API
35 */
36 class ApiQuerySiteinfo extends ApiQueryBase {
37
38 public function __construct( $query, $moduleName ) {
39 parent :: __construct( $query, $moduleName, 'si' );
40 }
41
42 public function execute() {
43 $params = $this->extractRequestParams();
44 foreach( $params['prop'] as $p )
45 {
46 switch ( $p )
47 {
48 case 'general':
49 $this->appendGeneralInfo( $p );
50 break;
51 case 'namespaces':
52 $this->appendNamespaces( $p );
53 break;
54 case 'namespacealiases':
55 $this->appendNamespaceAliases( $p );
56 break;
57 case 'specialpagealiases':
58 $this->appendSpecialPageAliases( $p );
59 break;
60 case 'magicwords':
61 $this->appendMagicWords( $p );
62 break;
63 case 'interwikimap':
64 $filteriw = isset( $params['filteriw'] ) ? $params['filteriw'] : false;
65 $this->appendInterwikiMap( $p, $filteriw );
66 break;
67 case 'dbrepllag':
68 $this->appendDbReplLagInfo( $p, $params['showalldb'] );
69 break;
70 case 'statistics':
71 $this->appendStatistics( $p );
72 break;
73 case 'usergroups':
74 $this->appendUserGroups( $p );
75 break;
76 case 'extensions':
77 $this->appendExtensions( $p );
78 break;
79 default :
80 ApiBase :: dieDebug( __METHOD__, "Unknown prop=$p" );
81 }
82 }
83 }
84
85 protected function appendGeneralInfo( $property ) {
86 global $wgSitename, $wgVersion, $wgCapitalLinks, $wgRightsCode, $wgRightsText, $wgContLang;
87 global $wgLanguageCode, $IP, $wgEnableWriteAPI, $wgLang, $wgLocaltimezone, $wgLocalTZoffset;
88
89 $data = array();
90 $mainPage = Title :: newFromText(wfMsgForContent('mainpage'));
91 $data['mainpage'] = $mainPage->getPrefixedText();
92 $data['base'] = $mainPage->getFullUrl();
93 $data['sitename'] = $wgSitename;
94 $data['generator'] = "MediaWiki $wgVersion";
95
96 $svn = SpecialVersion::getSvnRevision( $IP );
97 if( $svn )
98 $data['rev'] = $svn;
99
100 $data['case'] = $wgCapitalLinks ? 'first-letter' : 'case-sensitive'; // 'case-insensitive' option is reserved for future
101
102 if( isset( $wgRightsCode ) )
103 $data['rightscode'] = $wgRightsCode;
104 $data['rights'] = $wgRightsText;
105 $data['lang'] = $wgLanguageCode;
106 if( $wgContLang->isRTL() )
107 $data['rtl'] = '';
108 $data['fallback8bitEncoding'] = $wgLang->fallback8bitEncoding();
109
110 if( wfReadOnly() )
111 $data['readonly'] = '';
112 if( $wgEnableWriteAPI )
113 $data['writeapi'] = '';
114
115 $tz = $wgLocaltimezone;
116 $offset = $wgLocalTZoffset;
117 if( is_null( $tz ) ) {
118 $tz = 'UTC';
119 $offset = 0;
120 } elseif( is_null( $offset ) ) {
121 $offset = 0;
122 }
123 $data['timezone'] = $tz;
124 $data['timeoffset'] = $offset;
125
126 $this->getResult()->addValue( 'query', $property, $data );
127 }
128
129 protected function appendNamespaces( $property ) {
130 global $wgContLang;
131 $data = array();
132 foreach( $wgContLang->getFormattedNamespaces() as $ns => $title )
133 {
134 $data[$ns] = array(
135 'id' => $ns
136 );
137 ApiResult :: setContent( $data[$ns], $title );
138 if( MWNamespace::hasSubpages($ns) )
139 $data[$ns]['subpages'] = '';
140 }
141
142 $this->getResult()->setIndexedTagName( $data, 'ns' );
143 $this->getResult()->addValue( 'query', $property, $data );
144 }
145
146 protected function appendNamespaceAliases( $property ) {
147 global $wgNamespaceAliases;
148 $data = array();
149 foreach( $wgNamespaceAliases as $title => $ns ) {
150 $item = array(
151 'id' => $ns
152 );
153 ApiResult :: setContent( $item, strtr( $title, '_', ' ' ) );
154 $data[] = $item;
155 }
156
157 $this->getResult()->setIndexedTagName( $data, 'ns' );
158 $this->getResult()->addValue( 'query', $property, $data );
159 }
160
161 protected function appendSpecialPageAliases( $property ) {
162 global $wgLang;
163 $data = array();
164 foreach( $wgLang->getSpecialPageAliases() as $specialpage => $aliases )
165 {
166 $arr = array( 'realname' => $specialpage, 'aliases' => $aliases );
167 $this->getResult()->setIndexedTagName( $arr['aliases'], 'alias' );
168 $data[] = $arr;
169 }
170 $this->getResult()->setIndexedTagName( $data, 'specialpage' );
171 $this->getResult()->addValue( 'query', $property, $data );
172 }
173
174 protected function appendMagicWords( $property ) {
175 global $wgContLang;
176 $data = array();
177 foreach($wgContLang->getMagicWords() as $magicword => $aliases)
178 {
179 $caseSensitive = array_shift($aliases);
180 $arr = array('name' => $magicword, 'aliases' => $aliases);
181 if($caseSensitive)
182 $arr['case-sensitive'] = '';
183 $this->getResult()->setIndexedTagName($arr['aliases'], 'alias');
184 $data[] = $arr;
185 }
186 $this->getResult()->setIndexedTagName($data, 'magicword');
187 $this->getResult()->addValue('query', $property, $data);
188 }
189
190 protected function appendInterwikiMap( $property, $filter ) {
191 $this->resetQueryParams();
192 $this->addTables( 'interwiki' );
193 $this->addFields( array( 'iw_prefix', 'iw_local', 'iw_url' ) );
194
195 if( $filter === 'local' )
196 $this->addWhere( 'iw_local = 1' );
197 elseif( $filter === '!local' )
198 $this->addWhere( 'iw_local = 0' );
199 elseif( $filter )
200 ApiBase :: dieDebug( __METHOD__, "Unknown filter=$filter" );
201
202 $this->addOption( 'ORDER BY', 'iw_prefix' );
203
204 $db = $this->getDB();
205 $res = $this->select( __METHOD__ );
206
207 $data = array();
208 $langNames = Language::getLanguageNames();
209 while( $row = $db->fetchObject($res) )
210 {
211 $val = array();
212 $val['prefix'] = $row->iw_prefix;
213 if( $row->iw_local == '1' )
214 $val['local'] = '';
215 // $val['trans'] = intval($row->iw_trans); // should this be exposed?
216 if( isset( $langNames[$row->iw_prefix] ) )
217 $val['language'] = $langNames[$row->iw_prefix];
218 $val['url'] = $row->iw_url;
219
220 $data[] = $val;
221 }
222 $db->freeResult( $res );
223
224 $this->getResult()->setIndexedTagName( $data, 'iw' );
225 $this->getResult()->addValue( 'query', $property, $data );
226 }
227
228 protected function appendDbReplLagInfo( $property, $includeAll ) {
229 global $wgShowHostnames;
230 $data = array();
231 if( $includeAll ) {
232 if ( !$wgShowHostnames )
233 $this->dieUsage('Cannot view all servers info unless $wgShowHostnames is true', 'includeAllDenied');
234
235 $lb = wfGetLB();
236 $lags = $lb->getLagTimes();
237 foreach( $lags as $i => $lag ) {
238 $data[] = array(
239 'host' => $lb->getServerName( $i ),
240 'lag' => $lag
241 );
242 }
243 } else {
244 list( $host, $lag ) = wfGetLB()->getMaxLag();
245 $data[] = array(
246 'host' => $wgShowHostnames ? $host : '',
247 'lag' => $lag
248 );
249 }
250
251 $result = $this->getResult();
252 $result->setIndexedTagName( $data, 'db' );
253 $result->addValue( 'query', $property, $data );
254 }
255
256 protected function appendStatistics( $property ) {
257 $data = array();
258 $data['pages'] = intval( SiteStats::pages() );
259 $data['articles'] = intval( SiteStats::articles() );
260 $data['views'] = intval( SiteStats::views() );
261 $data['edits'] = intval( SiteStats::edits() );
262 $data['images'] = intval( SiteStats::images() );
263 $data['users'] = intval( SiteStats::users() );
264 $data['activeusers'] = intval( SiteStats::activeUsers() );
265 $data['admins'] = intval( SiteStats::numberingroup('sysop') );
266 $data['jobs'] = intval( SiteStats::jobs() );
267 $this->getResult()->addValue( 'query', $property, $data );
268 }
269
270 protected function appendUserGroups( $property ) {
271 global $wgGroupPermissions;
272 $data = array();
273 foreach( $wgGroupPermissions as $group => $permissions ) {
274 $arr = array( 'name' => $group, 'rights' => array_keys( $permissions, true ) );
275 $this->getResult()->setIndexedTagName( $arr['rights'], 'permission' );
276 $data[] = $arr;
277 }
278
279 $this->getResult()->setIndexedTagName( $data, 'group' );
280 $this->getResult()->addValue( 'query', $property, $data );
281 }
282
283 protected function appendExtensions( $property ) {
284 global $wgExtensionCredits;
285 $data = array();
286 foreach ( $wgExtensionCredits as $type => $extensions ) {
287 foreach ( $extensions as $ext ) {
288 $ret = array();
289 $ret['type'] = $type;
290 if ( isset( $ext['name'] ) )
291 $ret['name'] = $ext['name'];
292 if ( isset( $ext['description'] ) )
293 $ret['description'] = $ext['description'];
294 if ( isset( $ext['descriptionmsg'] ) )
295 $ret['descriptionmsg'] = $ext['descriptionmsg'];
296 if ( isset( $ext['author'] ) ) {
297 $ret['author'] = is_array( $ext['author'] ) ?
298 implode( ', ', $ext['author' ] ) : $ext['author'];
299 }
300 if ( isset( $ext['version'] ) ) {
301 $ret['version'] = $ext['version'];
302 } elseif ( isset( $ext['svn-revision'] ) &&
303 preg_match( '/\$(?:Rev|LastChangedRevision|Revision): *(\d+)/',
304 $ext['svn-revision'], $m ) )
305 {
306 $ret['version'] = 'r' . $m[1];
307 }
308 $data[] = $ret;
309 }
310 }
311
312 $this->getResult()->setIndexedTagName( $data, 'ext' );
313 $this->getResult()->addValue( 'query', $property, $data );
314 }
315
316
317 public function getAllowedParams() {
318 return array(
319 'prop' => array(
320 ApiBase :: PARAM_DFLT => 'general',
321 ApiBase :: PARAM_ISMULTI => true,
322 ApiBase :: PARAM_TYPE => array(
323 'general',
324 'namespaces',
325 'namespacealiases',
326 'specialpagealiases',
327 'magicwords',
328 'interwikimap',
329 'dbrepllag',
330 'statistics',
331 'usergroups',
332 'extensions',
333 )
334 ),
335 'filteriw' => array(
336 ApiBase :: PARAM_TYPE => array(
337 'local',
338 '!local',
339 )
340 ),
341 'showalldb' => false,
342 );
343 }
344
345 public function getParamDescription() {
346 return array(
347 'prop' => array(
348 'Which sysinfo properties to get:',
349 ' "general" - Overall system information',
350 ' "namespaces" - List of registered namespaces (localized)',
351 ' "namespacealiases" - List of registered namespace aliases',
352 ' "specialpagealiases" - List of special page aliases',
353 ' "magicwords" - List of magic words and their aliases',
354 ' "statistics" - Returns site statistics',
355 ' "interwikimap" - Returns interwiki map (optionally filtered)',
356 ' "dbrepllag" - Returns database server with the highest replication lag',
357 ' "usergroups" - Returns user groups and the associated permissions',
358 ' "extensions" - Returns extensions installed on the wiki',
359 ),
360 'filteriw' => 'Return only local or only nonlocal entries of the interwiki map',
361 'showalldb' => 'List all database servers, not just the one lagging the most',
362 );
363 }
364
365 public function getDescription() {
366 return 'Return general information about the site.';
367 }
368
369 protected function getExamples() {
370 return array(
371 'api.php?action=query&meta=siteinfo&siprop=general|namespaces|namespacealiases|statistics',
372 'api.php?action=query&meta=siteinfo&siprop=interwikimap&sifilteriw=local',
373 'api.php?action=query&meta=siteinfo&siprop=dbrepllag&sishowalldb',
374 );
375 }
376
377 public function getVersion() {
378 return __CLASS__ . ': $Id$';
379 }
380 }