various eol whitespace now instead of when someone needs to do CR
[lhc/web/wiklou.git] / includes / api / ApiFormatBase.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 ( 'ApiBase.php' );
29 }
30
31 /**
32 * This is the abstract base class for API formatters.
33 *
34 * @ingroup API
35 */
36 abstract class ApiFormatBase extends ApiBase {
37
38 private $mIsHtml, $mFormat, $mUnescapeAmps, $mHelp, $mCleared;
39 private $mBufferResult = false, $mBuffer;
40
41 /**
42 * Constructor
43 * If $format ends with 'fm', pretty-print the output in HTML.
44 * @param $main ApiMain
45 * @param $format string Format name
46 */
47 public function __construct( $main, $format ) {
48 parent :: __construct( $main, $format );
49
50 $this->mIsHtml = ( substr( $format, - 2, 2 ) === 'fm' ); // ends with 'fm'
51 if ( $this->mIsHtml )
52 $this->mFormat = substr( $format, 0, - 2 ); // remove ending 'fm'
53 else
54 $this->mFormat = $format;
55 $this->mFormat = strtoupper( $this->mFormat );
56 $this->mCleared = false;
57 }
58
59 /**
60 * Overriding class returns the mime type that should be sent to the client.
61 * This method is not called if getIsHtml() returns true.
62 * @return string
63 */
64 public abstract function getMimeType();
65
66 /**
67 * Whether this formatter needs raw data such as _element tags
68 * @return bool
69 */
70 public function getNeedsRawData() {
71 return false;
72 }
73
74 /**
75 * Get the internal format name
76 * @return string
77 */
78 public function getFormat() {
79 return $this->mFormat;
80 }
81
82 /**
83 * Specify whether or not sequences like &amp;quot; should be unescaped
84 * to &quot; . This should only be set to true for the help message
85 * when rendered in the default (xmlfm) format. This is a temporary
86 * special-case fix that should be removed once the help has been
87 * reworked to use a fully HTML interface.
88 *
89 * @param $b bool Whether or not ampersands should be escaped.
90 */
91 public function setUnescapeAmps ( $b ) {
92 $this->mUnescapeAmps = $b;
93 }
94
95 /**
96 * Returns true when the HTML pretty-printer should be used.
97 * The default implementation assumes that formats ending with 'fm'
98 * should be formatted in HTML.
99 * @return bool
100 */
101 public function getIsHtml() {
102 return $this->mIsHtml;
103 }
104
105 /**
106 * Whether this formatter can format the help message in a nice way.
107 * By default, this returns the same as getIsHtml().
108 * When action=help is set explicitly, the help will always be shown
109 * @return bool
110 */
111 public function getWantsHelp() {
112 return $this->getIsHtml();
113 }
114
115 /**
116 * Initialize the printer function and prepare the output headers, etc.
117 * This method must be the first outputing method during execution.
118 * A help screen's header is printed for the HTML-based output
119 * @param $isError bool Whether an error message is printed
120 */
121 function initPrinter( $isError ) {
122 $isHtml = $this->getIsHtml();
123 $mime = $isHtml ? 'text/html' : $this->getMimeType();
124 $script = wfScript( 'api' );
125
126 // Some printers (ex. Feed) do their own header settings,
127 // in which case $mime will be set to null
128 if ( is_null( $mime ) )
129 return; // skip any initialization
130
131 header( "Content-Type: $mime; charset=utf-8" );
132
133 if ( $isHtml ) {
134 ?>
135 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
136 <html>
137 <head>
138 <?php if ( $this->mUnescapeAmps ) {
139 ?> <title>MediaWiki API</title>
140 <?php } else {
141 ?> <title>MediaWiki API Result</title>
142 <?php } ?>
143 </head>
144 <body>
145 <?php
146
147
148 if ( !$isError ) {
149 ?>
150 <br />
151 <small>
152 You are looking at the HTML representation of the <?php echo( $this->mFormat ); ?> format.<br />
153 HTML is good for debugging, but probably is not suitable for your application.<br />
154 See <a href='http://www.mediawiki.org/wiki/API'>complete documentation</a>, or
155 <a href='<?php echo( $script ); ?>'>API help</a> for more information.
156 </small>
157 <?php
158
159
160 }
161 ?>
162 <pre>
163 <?php
164
165
166 }
167 }
168
169 /**
170 * Finish printing. Closes HTML tags.
171 */
172 public function closePrinter() {
173 if ( $this->getIsHtml() ) {
174 ?>
175
176 </pre>
177 </body>
178 </html>
179 <?php
180
181
182 }
183 }
184
185 /**
186 * The main format printing function. Call it to output the result
187 * string to the user. This function will automatically output HTML
188 * when format name ends in 'fm'.
189 * @param $text string
190 */
191 public function printText( $text ) {
192 error_log($text);
193 if ( $this->mBufferResult ) {
194 $this->mBuffer = $text;
195 } elseif ( $this->getIsHtml() ) {
196 echo $this->formatHTML( $text );
197 } else {
198 // For non-HTML output, clear all errors that might have been
199 // displayed if display_errors=On
200 // Do this only once, of course
201 if ( !$this->mCleared )
202 {
203 ob_clean();
204 $this->mCleared = true;
205 }
206 echo $text;
207 }
208 }
209
210 /**
211 * Get the contents of the buffer.
212 */
213 public function getBuffer() {
214 return $this->mBuffer;
215 }
216 /**
217 * Set the flag to buffer the result instead of printing it.
218 */
219 public function setBufferResult( $value ) {
220 $this->mBufferResult = $value;
221 }
222
223 /**
224 * Sets whether the pretty-printer should format *bold* and $italics$
225 * @param $help bool
226 */
227 public function setHelp( $help = true ) {
228 $this->mHelp = true;
229 }
230
231 /**
232 * Prety-print various elements in HTML format, such as xml tags and
233 * URLs. This method also escapes characters like <
234 * @param $text string
235 * @return string
236 */
237 protected function formatHTML( $text ) {
238 global $wgUrlProtocols;
239
240 // Escape everything first for full coverage
241 $text = htmlspecialchars( $text );
242
243 // encode all comments or tags as safe blue strings
244 $text = preg_replace( '/\&lt;(!--.*?--|.*?)\&gt;/', '<span style="color:blue;">&lt;\1&gt;</span>', $text );
245 // identify URLs
246 $protos = implode( "|", $wgUrlProtocols );
247 // This regex hacks around bug 13218 (&quot; included in the URL)
248 $text = preg_replace( "#(($protos).*?)(&quot;)?([ \\'\"<>\n]|&lt;|&gt;|&quot;)#", '<a href="\\1">\\1</a>\\3\\4', $text );
249 // identify requests to api.php
250 $text = preg_replace( "#api\\.php\\?[^ \\()<\n\t]+#", '<a href="\\0">\\0</a>', $text );
251 if ( $this->mHelp ) {
252 // make strings inside * bold
253 $text = preg_replace( "#\\*[^<>\n]+\\*#", '<b>\\0</b>', $text );
254 // make strings inside $ italic
255 $text = preg_replace( "#\\$[^<>\n]+\\$#", '<b><i>\\0</i></b>', $text );
256 }
257
258 /* Temporary fix for bad links in help messages. As a special case,
259 * XML-escaped metachars are de-escaped one level in the help message
260 * for legibility. Should be removed once we have completed a fully-html
261 * version of the help message. */
262 if ( $this->mUnescapeAmps )
263 $text = preg_replace( '/&amp;(amp|quot|lt|gt);/', '&\1;', $text );
264
265 return $text;
266 }
267
268 protected function getExamples() {
269 return 'api.php?action=query&meta=siteinfo&siprop=namespaces&format=' . $this->getModuleName();
270 }
271
272 public function getDescription() {
273 return $this->getIsHtml() ? ' (pretty-print in HTML)' : '';
274 }
275
276 public static function getBaseVersion() {
277 return __CLASS__ . ': $Id$';
278 }
279 }
280
281 /**
282 * This printer is used to wrap an instance of the Feed class
283 * @ingroup API
284 */
285 class ApiFormatFeedWrapper extends ApiFormatBase {
286
287 public function __construct( $main ) {
288 parent :: __construct( $main, 'feed' );
289 }
290
291 /**
292 * Call this method to initialize output data. See execute()
293 * @param $result ApiResult
294 * @param $feed object an instance of one of the $wgFeedClasses classes
295 * @param $feedItems array of FeedItem objects
296 */
297 public static function setResult( $result, $feed, $feedItems ) {
298 // Store output in the Result data.
299 // This way we can check during execution if any error has occured
300 // Disable size checking for this because we can't continue
301 // cleanly; size checking would cause more problems than it'd
302 // solve
303 $result->disableSizeCheck();
304 $result->addValue( null, '_feed', $feed );
305 $result->addValue( null, '_feeditems', $feedItems );
306 $result->enableSizeCheck();
307 }
308
309 /**
310 * Feed does its own headers
311 */
312 public function getMimeType() {
313 return null;
314 }
315
316 /**
317 * Optimization - no need to sanitize data that will not be needed
318 */
319 public function getNeedsRawData() {
320 return true;
321 }
322
323 /**
324 * This class expects the result data to be in a custom format set by self::setResult()
325 * $result['_feed'] - an instance of one of the $wgFeedClasses classes
326 * $result['_feeditems'] - an array of FeedItem instances
327 */
328 public function execute() {
329 $data = $this->getResultData();
330 if ( isset ( $data['_feed'] ) && isset ( $data['_feeditems'] ) ) {
331 $feed = $data['_feed'];
332 $items = $data['_feeditems'];
333
334 $feed->outHeader();
335 foreach ( $items as & $item )
336 $feed->outItem( $item );
337 $feed->outFooter();
338 } else {
339 // Error has occured, print something useful
340 ApiBase::dieDebug( __METHOD__, 'Invalid feed class/item' );
341 }
342 }
343
344 public function getVersion() {
345 return __CLASS__ . ': $Id$';
346 }
347 }