missing svn:keywords property
[lhc/web/wiklou.git] / includes / api / ApiFormatXml.php
1 <?php
2
3 /*
4 * Created on Sep 19, 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 ('ApiFormatBase.php');
29 }
30
31 /**
32 * @ingroup API
33 */
34 class ApiFormatXml extends ApiFormatBase {
35
36 private $mRootElemName = 'api';
37 private $mDoubleQuote = false;
38
39 public function __construct($main, $format) {
40 parent :: __construct($main, $format);
41 }
42
43 public function getMimeType() {
44 return 'text/xml';
45 }
46
47 public function getNeedsRawData() {
48 return true;
49 }
50
51 public function setRootElement($rootElemName) {
52 $this->mRootElemName = $rootElemName;
53 }
54
55 public function execute() {
56 $params = $this->extractRequestParams();
57 $this->mDoubleQuote = $params['xmldoublequote'];
58
59 $this->printText('<?xml version="1.0" encoding="utf-8"?>');
60 $this->recXmlPrint($this->mRootElemName, $this->getResultData(), $this->getIsHtml() ? -2 : null);
61 }
62
63 /**
64 * This method takes an array and converts it into an xml.
65 * There are several noteworthy cases:
66 *
67 * If array contains a key '_element', then the code assumes that ALL other keys are not important and replaces them with the value['_element'].
68 * Example: name='root', value = array( '_element'=>'page', 'x', 'y', 'z') creates <root> <page>x</page> <page>y</page> <page>z</page> </root>
69 *
70 * If any of the array's element key is '*', then the code treats all other key->value pairs as attributes, and the value['*'] as the element's content.
71 * Example: name='root', value = array( '*'=>'text', 'lang'=>'en', 'id'=>10) creates <root lang='en' id='10'>text</root>
72 *
73 * If neither key is found, all keys become element names, and values become element content.
74 * The method is recursive, so the same rules apply to any sub-arrays.
75 */
76 function recXmlPrint($elemName, $elemValue, $indent) {
77 if (!is_null($indent)) {
78 $indent += 2;
79 $indstr = "\n" . str_repeat(" ", $indent);
80 } else {
81 $indstr = '';
82 }
83
84 switch (gettype($elemValue)) {
85 case 'array' :
86 if (isset ($elemValue['*'])) {
87 $subElemContent = $elemValue['*'];
88 if ($this->mDoubleQuote)
89 $subElemContent = $this->doubleQuote($subElemContent);
90 unset ($elemValue['*']);
91 } else {
92 $subElemContent = null;
93 }
94
95 if (isset ($elemValue['_element'])) {
96 $subElemIndName = $elemValue['_element'];
97 unset ($elemValue['_element']);
98 } else {
99 $subElemIndName = null;
100 }
101
102 $indElements = array ();
103 $subElements = array ();
104 foreach ($elemValue as $subElemId => & $subElemValue) {
105 if (is_string($subElemValue) && $this->mDoubleQuote)
106 $subElemValue = $this->doubleQuote($subElemValue);
107
108 if (gettype($subElemId) === 'integer') {
109 $indElements[] = $subElemValue;
110 unset ($elemValue[$subElemId]);
111 } elseif (is_array($subElemValue)) {
112 $subElements[$subElemId] = $subElemValue;
113 unset ($elemValue[$subElemId]);
114 }
115 }
116
117 if (is_null($subElemIndName) && !empty ($indElements))
118 ApiBase :: dieDebug(__METHOD__, "($elemName, ...) has integer keys without _element value. Use ApiResult::setIndexedTagName().");
119
120 if (!empty ($subElements) && !empty ($indElements) && !is_null($subElemContent))
121 ApiBase :: dieDebug(__METHOD__, "($elemName, ...) has content and subelements");
122
123 if (!is_null($subElemContent)) {
124 $this->printText($indstr . wfElement($elemName, $elemValue, $subElemContent));
125 } elseif (empty ($indElements) && empty ($subElements)) {
126 $this->printText($indstr . wfElement($elemName, $elemValue));
127 } else {
128 $this->printText($indstr . wfElement($elemName, $elemValue, null));
129
130 foreach ($subElements as $subElemId => & $subElemValue)
131 $this->recXmlPrint($subElemId, $subElemValue, $indent);
132
133 foreach ($indElements as $subElemId => & $subElemValue)
134 $this->recXmlPrint($subElemIndName, $subElemValue, $indent);
135
136 $this->printText($indstr . wfCloseElement($elemName));
137 }
138 break;
139 case 'object' :
140 // ignore
141 break;
142 default :
143 $this->printText($indstr . wfElement($elemName, null, $elemValue));
144 break;
145 }
146 }
147 private function doubleQuote( $text ) {
148 return Sanitizer::encodeAttribute( $text );
149 }
150
151 public function getAllowedParams() {
152 return array (
153 'xmldoublequote' => false
154 );
155 }
156
157 public function getParamDescription() {
158 return array (
159 'xmldoublequote' => 'If specified, double quotes all attributes and content.',
160 );
161 }
162
163
164 public function getDescription() {
165 return 'Output data in XML format' . parent :: getDescription();
166 }
167
168 public function getVersion() {
169 return __CLASS__ . ': $Id$';
170 }
171 }