Bold outside link
[mediawiki.git] / includes / api / ApiResult.php
blob8c86c36af85b73a78dd714f27a35855ccd0a5f3d
1 <?php
3 /**
4 * Created on Sep 4, 2006
6 * API for MediaWiki 1.8+
8 * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
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 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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' );
31 /**
32 * This class represents the result of the API operations.
33 * It simply wraps a nested array() structure, adding some functions to simplify array's modifications.
34 * As various modules execute, they add different pieces of information to this result,
35 * structuring it as it will be given to the client.
37 * Each subarray may either be a dictionary - key-value pairs with unique keys,
38 * or lists, where the items are added using $data[] = $value notation.
40 * There are two special key values that change how XML output is generated:
41 * '_element' This key sets the tag name for the rest of the elements in the current array.
42 * It is only inserted if the formatter returned true for getNeedsRawData()
43 * '*' This key has special meaning only to the XML formatter, and is outputed as is
44 * for all others. In XML it becomes the content of the current element.
46 * @ingroup API
48 class ApiResult extends ApiBase {
50 private $mData, $mIsRawMode, $mSize, $mCheckingSize;
52 /**
53 * Constructor
54 * @param $main ApiMain object
56 public function __construct( $main ) {
57 parent::__construct( $main, 'result' );
58 $this->mIsRawMode = false;
59 $this->mCheckingSize = true;
60 $this->reset();
63 /**
64 * Clear the current result data.
66 public function reset() {
67 $this->mData = array();
68 $this->mSize = 0;
71 /**
72 * Call this function when special elements such as '_element'
73 * are needed by the formatter, for example in XML printing.
75 public function setRawMode() {
76 $this->mIsRawMode = true;
79 /**
80 * Returns true whether the formatter requested raw data.
81 * @return bool
83 public function getIsRawMode() {
84 return $this->mIsRawMode;
87 /**
88 * Get the result's internal data array (read-only)
89 * @return array
91 public function getData() {
92 return $this->mData;
95 /**
96 * Get the 'real' size of a result item. This means the strlen() of the item,
97 * or the sum of the strlen()s of the elements if the item is an array.
98 * @param $value mixed
99 * @return int
101 public static function size( $value ) {
102 $s = 0;
103 if ( is_array( $value ) ) {
104 foreach ( $value as $v ) {
105 $s += self::size( $v );
107 } elseif ( !is_object( $value ) ) {
108 // Objects can't always be cast to string
109 $s = strlen( $value );
111 return $s;
115 * Get the size of the result, i.e. the amount of bytes in it
116 * @return int
118 public function getSize() {
119 return $this->mSize;
123 * Disable size checking in addValue(). Don't use this unless you
124 * REALLY know what you're doing. Values added while size checking
125 * was disabled will not be counted (ever)
127 public function disableSizeCheck() {
128 $this->mCheckingSize = false;
132 * Re-enable size checking in addValue()
134 public function enableSizeCheck() {
135 $this->mCheckingSize = true;
139 * Add an output value to the array by name.
140 * Verifies that value with the same name has not been added before.
141 * @param $arr array to add $value to
142 * @param $name string Index of $arr to add $value at
143 * @param $value mixed
144 * @param $overwrite bool Whether overwriting an existing element is allowed
146 public static function setElement( &$arr, $name, $value, $overwrite = false ) {
147 if ( $arr === null || $name === null || $value === null || !is_array( $arr ) || is_array( $name ) ) {
148 ApiBase::dieDebug( __METHOD__, 'Bad parameter' );
151 if ( !isset ( $arr[$name] ) || $overwrite ) {
152 $arr[$name] = $value;
153 } elseif ( is_array( $arr[$name] ) && is_array( $value ) ) {
154 $merged = array_intersect_key( $arr[$name], $value );
155 if ( !count( $merged ) ) {
156 $arr[$name] += $value;
157 } else {
158 ApiBase::dieDebug( __METHOD__, "Attempting to merge element $name" );
160 } else {
161 ApiBase::dieDebug( __METHOD__, "Attempting to add element $name=$value, existing value is {$arr[$name]}" );
166 * Adds a content element to an array.
167 * Use this function instead of hardcoding the '*' element.
168 * @param $arr array to add the content element to
169 * @param $value Mixed
170 * @param $subElemName string when present, content element is created
171 * as a sub item of $arr. Use this parameter to create elements in
172 * format <elem>text</elem> without attributes
174 public static function setContent( &$arr, $value, $subElemName = null ) {
175 if ( is_array( $value ) ) {
176 ApiBase::dieDebug( __METHOD__, 'Bad parameter' );
178 if ( is_null( $subElemName ) ) {
179 ApiResult::setElement( $arr, '*', $value );
180 } else {
181 if ( !isset( $arr[$subElemName] ) ) {
182 $arr[$subElemName] = array();
184 ApiResult::setElement( $arr[$subElemName], '*', $value );
189 * In case the array contains indexed values (in addition to named),
190 * give all indexed values the given tag name. This function MUST be
191 * called on every arrray that has numerical indexes.
192 * @param $arr array
193 * @param $tag string Tag name
195 public function setIndexedTagName( &$arr, $tag ) {
196 // In raw mode, add the '_element', otherwise just ignore
197 if ( !$this->getIsRawMode() ) {
198 return;
200 if ( $arr === null || $tag === null || !is_array( $arr ) || is_array( $tag ) )
202 ApiBase::dieDebug( __METHOD__, 'Bad parameter' );
204 // Do not use setElement() as it is ok to call this more than once
205 $arr['_element'] = $tag;
209 * Calls setIndexedTagName() on each sub-array of $arr
210 * @param $arr array
211 * @param $tag string Tag name
213 public function setIndexedTagName_recursive( &$arr, $tag ) {
214 if ( !is_array( $arr ) ) {
215 return;
217 foreach ( $arr as &$a ) {
218 if ( !is_array( $a ) ) {
219 continue;
221 $this->setIndexedTagName( $a, $tag );
222 $this->setIndexedTagName_recursive( $a, $tag );
227 * Calls setIndexedTagName() on an array already in the result.
228 * Don't specify a path to a value that's not in the result, or
229 * you'll get nasty errors.
230 * @param $path array Path to the array, like addValue()'s $path
231 * @param $tag string
233 public function setIndexedTagName_internal( $path, $tag ) {
234 $data = &$this->mData;
235 foreach ( (array)$path as $p ) {
236 if ( !isset( $data[$p] ) ) {
237 $data[$p] = array();
239 $data = &$data[$p];
241 if ( is_null( $data ) ) {
242 return;
244 $this->setIndexedTagName( $data, $tag );
248 * Add value to the output data at the given path.
249 * Path is an indexed array, each element specifing the branch at which to add the new value
250 * Setting $path to array('a','b','c') is equivalent to data['a']['b']['c'] = $value
251 * If $name is empty, the $value is added as a next list element data[] = $value
252 * @return bool True if $value fits in the result, false if not
254 public function addValue( $path, $name, $value, $overwrite = false ) {
255 global $wgAPIMaxResultSize;
256 $data = &$this->mData;
257 if ( $this->mCheckingSize ) {
258 $newsize = $this->mSize + self::size( $value );
259 if ( $newsize > $wgAPIMaxResultSize ) {
260 return false;
262 $this->mSize = $newsize;
265 if ( !is_null( $path ) ) {
266 if ( is_array( $path ) ) {
267 foreach ( $path as $p ) {
268 if ( !isset( $data[$p] ) ) {
269 $data[$p] = array();
271 $data = &$data[$p];
273 } else {
274 if ( !isset( $data[$path] ) ) {
275 $data[$path] = array();
277 $data = &$data[$path];
281 if ( !$name ) {
282 $data[] = $value; // Add list element
283 } else {
284 self::setElement( $data, $name, $value, $overwrite ); // Add named element
286 return true;
290 * Add a parsed limit=max to the result.
292 * @param $moduleName string
293 * @param $limit int
295 public function setParsedLimit( $moduleName, $limit ) {
296 // Add value, allowing overwriting
297 $this->addValue( 'limits', $moduleName, $limit, true );
301 * Unset a value previously added to the result set.
302 * Fails silently if the value isn't found.
303 * For parameters, see addValue()
304 * @param $path array
305 * @param $name string
307 public function unsetValue( $path, $name ) {
308 $data = &$this->mData;
309 if ( !is_null( $path ) ) {
310 foreach ( (array)$path as $p ) {
311 if ( !isset( $data[$p] ) ) {
312 return;
314 $data = &$data[$p];
317 $this->mSize -= self::size( $data[$name] );
318 unset( $data[$name] );
322 * Ensure all values in this result are valid UTF-8.
324 public function cleanUpUTF8() {
325 array_walk_recursive( $this->mData, array( 'ApiResult', 'cleanUp_helper' ) );
329 * Callback function for cleanUpUTF8()
331 private static function cleanUp_helper( &$s ) {
332 if ( !is_string( $s ) ) {
333 return;
335 global $wgContLang;
336 $s = $wgContLang->normalize( $s );
339 public function execute() {
340 ApiBase::dieDebug( __METHOD__, 'execute() is not supported on Result object' );
343 public function getVersion() {
344 return __CLASS__ . ': $Id$';