4 * Created on Dec 01, 2007
6 * API for MediaWiki 1.8+
8 * Copyright (C) 2008 Roan Kattouw <Firstname>.<Lastname>@home.nl
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.
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.
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
26 if (!defined('MEDIAWIKI')) {
27 // Eclipse helper - will be ignored in production
28 require_once ("ApiBase.php");
34 class ApiParamInfo
extends ApiBase
{
36 public function __construct($main, $action) {
37 parent
:: __construct($main, $action);
40 public function execute() {
42 $params = $this->extractRequestParams();
43 $result = $this->getResult();
44 $queryObj = new ApiQuery($this->getMain(), 'query');
46 if(is_array($params['modules']))
48 $modArr = $this->getMain()->getModules();
49 $r['modules'] = array();
50 foreach($params['modules'] as $m)
52 if(!isset($modArr[$m]))
54 $r['modules'][] = array('name' => $m, 'missing' => '');
57 $obj = new $modArr[$m]($this->getMain(), $m);
58 $a = $this->getClassInfo($obj);
62 $result->setIndexedTagName($r['modules'], 'module');
64 if(is_array($params['querymodules']))
66 $qmodArr = $queryObj->getModules();
67 $r['querymodules'] = array();
68 foreach($params['querymodules'] as $qm)
70 if(!isset($qmodArr[$qm]))
72 $r['querymodules'][] = array('name' => $qm, 'missing' => '');
75 $obj = new $qmodArr[$qm]($this, $qm);
76 $a = $this->getClassInfo($obj);
78 $r['querymodules'][] = $a;
80 $result->setIndexedTagName($r['querymodules'], 'module');
82 if($params['mainmodule'])
83 $r['mainmodule'] = $this->getClassInfo($this->getMain());
84 if($params['pagesetmodule'])
86 $pageSet = new ApiPageSet($queryObj);
87 $r['pagesetmodule'] = $this->getClassInfo($pageSet);
89 $result->addValue(null, $this->getModuleName(), $r);
92 function getClassInfo($obj)
94 $result = $this->getResult();
95 $retval['classname'] = get_class($obj);
96 $retval['description'] = implode("\n", (array)$obj->getDescription());
97 $retval['version'] = implode("\n", (array)$obj->getVersion());
98 $retval['prefix'] = $obj->getModulePrefix();
99 if($obj->isReadMode())
100 $retval['readrights'] = '';
101 if($obj->isWriteMode())
102 $retval['writerights'] = '';
103 if($obj->mustBePosted())
104 $retval['mustbeposted'] = '';
105 if($obj instanceof ApiQueryGeneratorBase
)
106 $retval['generator'] = '';
107 $allowedParams = $obj->getFinalParams();
108 if(!is_array($allowedParams))
110 $retval['parameters'] = array();
111 $paramDesc = $obj->getFinalParamDescription();
112 foreach($allowedParams as $n => $p)
114 $a = array('name' => $n);
115 if(isset($paramDesc[$n]))
116 $a['description'] = implode("\n", (array)$paramDesc[$n]);
122 $a['default'] = ($p ?
'true' : 'false');
124 else if(is_string($p) ||
is_null($p))
126 $a['type'] = 'string';
127 $a['default'] = strval($p);
131 $a['type'] = 'integer';
132 $a['default'] = intval($p);
134 $retval['parameters'][] = $a;
138 if(isset($p[ApiBase
::PARAM_DFLT
]))
139 $a['default'] = $p[ApiBase
::PARAM_DFLT
];
140 if(isset($p[ApiBase
::PARAM_ISMULTI
]))
141 if($p[ApiBase
::PARAM_ISMULTI
])
144 $a['limit'] = $this->getMain()->canApiHighLimits() ?
145 ApiBase
::LIMIT_SML2
:
148 if(isset($p[ApiBase
::PARAM_ALLOW_DUPLICATES
]))
149 if($p[ApiBase
::PARAM_ALLOW_DUPLICATES
])
150 $a['allowsduplicates'] = '';
151 if(isset($p[ApiBase
::PARAM_TYPE
]))
153 $a['type'] = $p[ApiBase
::PARAM_TYPE
];
154 if(is_array($a['type']))
155 $result->setIndexedTagName($a['type'], 't');
157 if(isset($p[ApiBase
::PARAM_MAX
]))
158 $a['max'] = $p[ApiBase
::PARAM_MAX
];
159 if(isset($p[ApiBase
::PARAM_MAX2
]))
160 $a['highmax'] = $p[ApiBase
::PARAM_MAX2
];
161 if(isset($p[ApiBase
::PARAM_MIN
]))
162 $a['min'] = $p[ApiBase
::PARAM_MIN
];
163 $retval['parameters'][] = $a;
165 $result->setIndexedTagName($retval['parameters'], 'param');
169 public function isReadMode() {
173 public function getAllowedParams() {
176 ApiBase
:: PARAM_ISMULTI
=> true
178 'querymodules' => array(
179 ApiBase
:: PARAM_ISMULTI
=> true
181 'mainmodule' => false,
182 'pagesetmodule' => false,
186 public function getParamDescription() {
188 'modules' => 'List of module names (value of the action= parameter)',
189 'querymodules' => 'List of query module names (value of prop=, meta= or list= parameter)',
190 'mainmodule' => 'Get information about the main (top-level) module as well',
191 'pagesetmodule' => 'Get information about the pageset module (providing titles= and friends) as well',
195 public function getDescription() {
196 return 'Obtain information about certain API parameters';
199 protected function getExamples() {
201 'api.php?action=paraminfo&modules=parse&querymodules=allpages|siteinfo'
205 public function getVersion() {
206 return __CLASS__
. ': $Id$';