* (bug 27479) API error when using both prop=pageprops and prop=info&inprop=displaytitle
[lhc/web/wiklou.git] / includes / api / ApiParamInfo.php
1 <?php
2 /**
3 *
4 *
5 * Created on Dec 01, 2007
6 *
7 * Copyright © 2008 Roan Kattouw <Firstname>.<Lastname>@gmail.com
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 if ( !defined( 'MEDIAWIKI' ) ) {
28 // Eclipse helper - will be ignored in production
29 require_once( "ApiBase.php" );
30 }
31
32 /**
33 * @ingroup API
34 */
35 class ApiParamInfo extends ApiBase {
36
37 public function __construct( $main, $action ) {
38 parent::__construct( $main, $action );
39 }
40
41 public function execute() {
42 // Get parameters
43 $params = $this->extractRequestParams();
44 $result = $this->getResult();
45 $queryObj = new ApiQuery( $this->getMain(), 'query' );
46 $r = array();
47 if ( is_array( $params['modules'] ) ) {
48 $modArr = $this->getMain()->getModules();
49 $r['modules'] = array();
50 foreach ( $params['modules'] as $m ) {
51 if ( !isset( $modArr[$m] ) ) {
52 $r['modules'][] = array( 'name' => $m, 'missing' => '' );
53 continue;
54 }
55 $obj = new $modArr[$m]( $this->getMain(), $m );
56 $a = $this->getClassInfo( $obj );
57 $a['name'] = $m;
58 $r['modules'][] = $a;
59 }
60 $result->setIndexedTagName( $r['modules'], 'module' );
61 }
62 if ( is_array( $params['querymodules'] ) ) {
63 $qmodArr = $queryObj->getModules();
64 $r['querymodules'] = array();
65 foreach ( $params['querymodules'] as $qm ) {
66 if ( !isset( $qmodArr[$qm] ) ) {
67 $r['querymodules'][] = array( 'name' => $qm, 'missing' => '' );
68 continue;
69 }
70 $obj = new $qmodArr[$qm]( $this, $qm );
71 $a = $this->getClassInfo( $obj );
72 $a['name'] = $qm;
73 $r['querymodules'][] = $a;
74 }
75 $result->setIndexedTagName( $r['querymodules'], 'module' );
76 }
77 if ( $params['mainmodule'] ) {
78 $r['mainmodule'] = $this->getClassInfo( $this->getMain() );
79 }
80 if ( $params['pagesetmodule'] ) {
81 $pageSet = new ApiPageSet( $queryObj );
82 $r['pagesetmodule'] = $this->getClassInfo( $pageSet );
83 }
84 $result->addValue( null, $this->getModuleName(), $r );
85 }
86
87 /**
88 * @param $obj ApiBase
89 * @return ApiResult
90 */
91 function getClassInfo( $obj ) {
92 $result = $this->getResult();
93 $retval['classname'] = get_class( $obj );
94 $retval['description'] = implode( "\n", (array)$obj->getDescription() );
95 $retval['examples'] = implode( "\n", (array)$obj->getExamples() );
96 $retval['version'] = implode( "\n", (array)$obj->getVersion() );
97 $retval['prefix'] = $obj->getModulePrefix();
98
99 if ( $obj->isReadMode() ) {
100 $retval['readrights'] = '';
101 }
102 if ( $obj->isWriteMode() ) {
103 $retval['writerights'] = '';
104 }
105 if ( $obj->mustBePosted() ) {
106 $retval['mustbeposted'] = '';
107 }
108 if ( $obj instanceof ApiQueryGeneratorBase ) {
109 $retval['generator'] = '';
110 }
111
112 $allowedParams = $obj->getFinalParams();
113 if ( !is_array( $allowedParams ) ) {
114 return $retval;
115 }
116
117 $retval['parameters'] = array();
118 $paramDesc = $obj->getFinalParamDescription();
119 foreach ( $allowedParams as $n => $p ) {
120 $a = array( 'name' => $n );
121 if ( isset( $paramDesc[$n] ) ) {
122 $a['description'] = implode( "\n", (array)$paramDesc[$n] );
123 }
124 if ( isset( $p[ApiBase::PARAM_DEPRECATED] ) && $p[ApiBase::PARAM_DEPRECATED] ) {
125 $a['deprecated'] = '';
126 }
127 if ( isset( $p[ApiBase::PARAM_REQUIRED] ) && $p[ApiBase::PARAM_REQUIRED] ) {
128 $a['required'] = '';
129 }
130
131 if ( !is_array( $p ) ) {
132 if ( is_bool( $p ) ) {
133 $a['type'] = 'bool';
134 $a['default'] = ( $p ? 'true' : 'false' );
135 } elseif ( is_string( $p ) || is_null( $p ) ) {
136 $a['type'] = 'string';
137 $a['default'] = strval( $p );
138 } elseif ( is_int( $p ) ) {
139 $a['type'] = 'integer';
140 $a['default'] = intval( $p );
141 }
142 $retval['parameters'][] = $a;
143 continue;
144 }
145
146 if ( isset( $p[ApiBase::PARAM_DFLT] ) ) {
147 $a['default'] = $p[ApiBase::PARAM_DFLT];
148 }
149 if ( isset( $p[ApiBase::PARAM_ISMULTI] ) && $p[ApiBase::PARAM_ISMULTI] ) {
150 $a['multi'] = '';
151 $a['limit'] = $this->getMain()->canApiHighLimits() ?
152 ApiBase::LIMIT_SML2 :
153 ApiBase::LIMIT_SML1;
154 }
155
156 if ( isset( $p[ApiBase::PARAM_ALLOW_DUPLICATES] ) && $p[ApiBase::PARAM_ALLOW_DUPLICATES] ) {
157 $a['allowsduplicates'] = '';
158 }
159
160 if ( isset( $p[ApiBase::PARAM_TYPE] ) ) {
161 $a['type'] = $p[ApiBase::PARAM_TYPE];
162 if ( is_array( $a['type'] ) ) {
163 $result->setIndexedTagName( $a['type'], 't' );
164 }
165 }
166 if ( isset( $p[ApiBase::PARAM_MAX] ) ) {
167 $a['max'] = $p[ApiBase::PARAM_MAX];
168 }
169 if ( isset( $p[ApiBase::PARAM_MAX2] ) ) {
170 $a['highmax'] = $p[ApiBase::PARAM_MAX2];
171 }
172 if ( isset( $p[ApiBase::PARAM_MIN] ) ) {
173 $a['min'] = $p[ApiBase::PARAM_MIN];
174 }
175 $retval['parameters'][] = $a;
176 }
177 $result->setIndexedTagName( $retval['parameters'], 'param' );
178
179 // Errors
180 $retval['errors'] = $this->parseErrors( $obj->getPossibleErrors() );
181
182 $result->setIndexedTagName( $retval['errors'], 'error' );
183
184 return $retval;
185 }
186
187 public function isReadMode() {
188 return false;
189 }
190
191 public function getAllowedParams() {
192 return array(
193 'modules' => array(
194 ApiBase::PARAM_ISMULTI => true
195 ),
196 'querymodules' => array(
197 ApiBase::PARAM_ISMULTI => true
198 ),
199 'mainmodule' => false,
200 'pagesetmodule' => false,
201 );
202 }
203
204 public function getParamDescription() {
205 return array(
206 'modules' => 'List of module names (value of the action= parameter)',
207 'querymodules' => 'List of query module names (value of prop=, meta= or list= parameter)',
208 'mainmodule' => 'Get information about the main (top-level) module as well',
209 'pagesetmodule' => 'Get information about the pageset module (providing titles= and friends) as well',
210 );
211 }
212
213 public function getDescription() {
214 return 'Obtain information about certain API parameters and errors';
215 }
216
217 protected function getExamples() {
218 return array(
219 'api.php?action=paraminfo&modules=parse&querymodules=allpages|siteinfo'
220 );
221 }
222
223 public function getVersion() {
224 return __CLASS__ . ': $Id$';
225 }
226 }