4b2a2636d4c7bd17e8c346bbd5929f8d117b5a94
[lhc/web/wiklou.git] / includes / api / ApiParamInfo.php
1 <?php
2
3 /*
4 * Created on Dec 01, 2007
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright (C) 2008 Roan Kattouw <Firstname>.<Lastname>@home.nl
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 ("ApiBase.php");
29 }
30
31 /**
32 * @ingroup API
33 */
34 class ApiParamInfo extends ApiBase {
35
36 public function __construct($main, $action) {
37 parent :: __construct($main, $action);
38 }
39
40 public function execute() {
41 // Get parameters
42 $params = $this->extractRequestParams();
43 $result = $this->getResult();
44 $queryObj = new ApiQuery($this->getMain(), 'query');
45 $r = array();
46 if(is_array($params['modules']))
47 {
48 $modArr = $this->getMain()->getModules();
49 $r['modules'] = array();
50 foreach($params['modules'] as $m)
51 {
52 if(!isset($modArr[$m]))
53 {
54 $r['modules'][] = array('name' => $m, 'missing' => '');
55 continue;
56 }
57 $obj = new $modArr[$m]($this->getMain(), $m);
58 $a = $this->getClassInfo($obj);
59 $a['name'] = $m;
60 $r['modules'][] = $a;
61 }
62 $result->setIndexedTagName($r['modules'], 'module');
63 }
64 if(is_array($params['querymodules']))
65 {
66 $qmodArr = $queryObj->getModules();
67 $r['querymodules'] = array();
68 foreach($params['querymodules'] as $qm)
69 {
70 if(!isset($qmodArr[$qm]))
71 {
72 $r['querymodules'][] = array('name' => $qm, 'missing' => '');
73 continue;
74 }
75 $obj = new $qmodArr[$qm]($this, $qm);
76 $a = $this->getClassInfo($obj);
77 $a['name'] = $qm;
78 $r['querymodules'][] = $a;
79 }
80 $result->setIndexedTagName($r['querymodules'], 'module');
81 }
82 if($params['mainmodule'])
83 $r['mainmodule'] = $this->getClassInfo($this->getMain());
84 if($params['pagesetmodule'])
85 {
86 $pageSet = new ApiPageSet($queryObj);
87 $r['pagesetmodule'] = $this->getClassInfo($pageSet);
88 }
89 $result->addValue(null, $this->getModuleName(), $r);
90 }
91
92 function getClassInfo($obj)
93 {
94 $result = $this->getResult();
95 $retval['classname'] = get_class($obj);
96 $retval['description'] = (is_array($obj->getDescription()) ? implode("\n", $obj->getDescription()) : $obj->getDescription());
97 $retval['prefix'] = $obj->getModulePrefix();
98 if($obj->isReadMode())
99 $retval['readrights'] = '';
100 if($obj->isWriteMode())
101 $retval['writerights'] = '';
102 if($obj->mustBePosted())
103 $retval['mustbeposted'] = '';
104 $allowedParams = $obj->getFinalParams();
105 if(!is_array($allowedParams))
106 return $retval;
107 $retval['parameters'] = array();
108 $paramDesc = $obj->getFinalParamDescription();
109 foreach($allowedParams as $n => $p)
110 {
111 $a = array('name' => $n);
112 if(!is_array($p))
113 {
114 if(is_bool($p))
115 {
116 $a['type'] = 'bool';
117 $a['default'] = ($p ? 'true' : 'false');
118 }
119 if(is_string($p))
120 $a['default'] = $p;
121 $retval['parameters'][] = $a;
122 continue;
123 }
124
125 if(isset($p[ApiBase::PARAM_DFLT]))
126 $a['default'] = $p[ApiBase::PARAM_DFLT];
127 if(isset($p[ApiBase::PARAM_ISMULTI]))
128 if($p[ApiBase::PARAM_ISMULTI])
129 {
130 $a['multi'] = '';
131 $a['limit'] = $this->getMain()->canApiHighLimits() ?
132 ApiBase::LIMIT_SML2 :
133 ApiBase::LIMIT_SML1;
134 }
135 if(isset($p[ApiBase::PARAM_ALLOW_DUPLICATES]))
136 if($p[ApiBase::PARAM_ALLOW_DUPLICATES])
137 $a['allowsduplicates'] = '';
138 if(isset($p[ApiBase::PARAM_TYPE]))
139 {
140 $a['type'] = $p[ApiBase::PARAM_TYPE];
141 if(is_array($a['type']))
142 $result->setIndexedTagName($a['type'], 't');
143 }
144 if(isset($p[ApiBase::PARAM_MAX]))
145 $a['max'] = $p[ApiBase::PARAM_MAX];
146 if(isset($p[ApiBase::PARAM_MAX2]))
147 $a['highmax'] = $p[ApiBase::PARAM_MAX2];
148 if(isset($p[ApiBase::PARAM_MIN]))
149 $a['min'] = $p[ApiBase::PARAM_MIN];
150 if(isset($paramDesc[$n]))
151 $a['description'] = (is_array($paramDesc[$n]) ? implode("\n", $paramDesc[$n]) : $paramDesc[$n]);
152 $retval['parameters'][] = $a;
153 }
154 $result->setIndexedTagName($retval['parameters'], 'param');
155 return $retval;
156 }
157
158 public function isReadMode() {
159 return false;
160 }
161
162 public function getAllowedParams() {
163 return array (
164 'modules' => array(
165 ApiBase :: PARAM_ISMULTI => true
166 ),
167 'querymodules' => array(
168 ApiBase :: PARAM_ISMULTI => true
169 ),
170 'mainmodule' => false,
171 'pagesetmodule' => false,
172 );
173 }
174
175 public function getParamDescription() {
176 return array (
177 'modules' => 'List of module names (value of the action= parameter)',
178 'querymodules' => 'List of query module names (value of prop=, meta= or list= parameter)',
179 'mainmodule' => 'Get information about the main (top-level) module as well',
180 'pagesetmodule' => 'Get information about the pageset module (providing titles= and friends) as well',
181 );
182 }
183
184 public function getDescription() {
185 return 'Obtain information about certain API parameters';
186 }
187
188 protected function getExamples() {
189 return array (
190 'api.php?action=paraminfo&modules=parse&querymodules=allpages|siteinfo'
191 );
192 }
193
194 public function getVersion() {
195 return __CLASS__ . ': $Id$';
196 }
197 }