4 * Created on Sep 19, 2006
6 * API for MediaWiki 1.8+
8 * Copyright (C) 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 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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');
32 * This is the abstract base class for API formatters.
36 abstract class ApiFormatBase
extends ApiBase
{
38 private $mIsHtml, $mFormat, $mUnescapeAmps, $mHelp, $mCleared;
42 * If $format ends with 'fm', pretty-print the output in HTML.
43 * @param $main ApiMain
44 * @param $format string Format name
46 public function __construct($main, $format) {
47 parent
:: __construct($main, $format);
49 $this->mIsHtml
= (substr($format, -2, 2) === 'fm'); // ends with 'fm'
51 $this->mFormat
= substr($format, 0, -2); // remove ending 'fm'
53 $this->mFormat
= $format;
54 $this->mFormat
= strtoupper($this->mFormat
);
55 $this->mCleared
= false;
59 * Overriding class returns the mime type that should be sent to the client.
60 * This method is not called if getIsHtml() returns true.
63 public abstract function getMimeType();
66 * Whether this formatter needs raw data such as _element tags
69 public function getNeedsRawData() {
74 * Get the internal format name
77 public function getFormat() {
78 return $this->mFormat
;
82 * Specify whether or not sequences like &quot; should be unescaped
83 * to " . This should only be set to true for the help message
84 * when rendered in the default (xmlfm) format. This is a temporary
85 * special-case fix that should be removed once the help has been
86 * reworked to use a fully HTML interface.
88 * @param $b bool Whether or not ampersands should be escaped.
90 public function setUnescapeAmps ( $b ) {
91 $this->mUnescapeAmps
= $b;
95 * Returns true when the HTML pretty-printer should be used.
96 * The default implementation assumes that formats ending with 'fm'
97 * should be formatted in HTML.
100 public function getIsHtml() {
101 return $this->mIsHtml
;
105 * Initialize the printer function and prepare the output headers, etc.
106 * This method must be the first outputing method during execution.
107 * A help screen's header is printed for the HTML-based output
108 * @param $isError bool Whether an error message is printed
110 function initPrinter($isError) {
111 $isHtml = $this->getIsHtml();
112 $mime = $isHtml ?
'text/html' : $this->getMimeType();
113 $script = wfScript( 'api' );
115 // Some printers (ex. Feed) do their own header settings,
116 // in which case $mime will be set to null
118 return; // skip any initialization
120 header("Content-Type: $mime; charset=utf-8");
124 <!DOCTYPE HTML
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
127 <?php
if ($this->mUnescapeAmps
) {
128 ?
> <title
>MediaWiki API
</title
>
130 ?
> <title
>MediaWiki API Result
</title
>
141 You are looking at the HTML representation of the
<?php
echo( $this->mFormat
); ?
> format
.<br
/>
142 HTML is good
for debugging
, but probably is not suitable
for your application
.<br
/>
143 See
<a href
='http://www.mediawiki.org/wiki/API'>complete documentation
</a
>, or
144 <a href
='<?php echo( $script ); ?>'>API help
</a
> for more information
.
159 * Finish printing. Closes HTML tags.
161 public function closePrinter() {
162 if ($this->getIsHtml()) {
175 * The main format printing function. Call it to output the result
176 * string to the user. This function will automatically output HTML
177 * when format name ends in 'fm'.
178 * @param $text string
180 public function printText($text) {
181 if ($this->getIsHtml())
182 echo $this->formatHTML($text);
185 // For non-HTML output, clear all errors that might have been
186 // displayed if display_errors=On
187 // Do this only once, of course
191 $this->mCleared
= true;
198 * Sets whether the pretty-printer should format *bold* and $italics$
201 public function setHelp( $help = true ) {
206 * Prety-print various elements in HTML format, such as xml tags and
207 * URLs. This method also escapes characters like <
208 * @param $text string
211 protected function formatHTML($text) {
212 global $wgUrlProtocols;
214 // Escape everything first for full coverage
215 $text = htmlspecialchars($text);
217 // encode all comments or tags as safe blue strings
218 $text = preg_replace('/\<(!--.*?--|.*?)\>/', '<span style="color:blue;"><\1></span>', $text);
220 $protos = implode("|", $wgUrlProtocols);
221 # This regex hacks around bug 13218 (" included in the URL)
222 $text = preg_replace("#(($protos).*?)(")?([ \\'\"<\n])#", '<a href="\\1">\\1</a>\\3\\4', $text);
223 // identify requests to api.php
224 $text = preg_replace("#api\\.php\\?[^ \\()<\n\t]+#", '<a href="\\0">\\0</a>', $text);
226 // make strings inside * bold
227 $text = ereg_replace("\\*[^<>\n]+\\*", '<b>\\0</b>', $text);
228 // make strings inside $ italic
229 $text = ereg_replace("\\$[^<>\n]+\\$", '<b><i>\\0</i></b>', $text);
232 /* Temporary fix for bad links in help messages. As a special case,
233 * XML-escaped metachars are de-escaped one level in the help message
234 * for legibility. Should be removed once we have completed a fully-html
235 * version of the help message. */
236 if ( $this->mUnescapeAmps
)
237 $text = preg_replace( '/&(amp|quot|lt|gt);/', '&\1;', $text );
242 protected function getExamples() {
243 return 'api.php?action=query&meta=siteinfo&siprop=namespaces&format=' . $this->getModuleName();
246 public function getDescription() {
247 return $this->getIsHtml() ?
' (pretty-print in HTML)' : '';
250 public static function getBaseVersion() {
251 return __CLASS__
. ': $Id$';
256 * This printer is used to wrap an instance of the Feed class
259 class ApiFormatFeedWrapper
extends ApiFormatBase
{
261 public function __construct($main) {
262 parent
:: __construct($main, 'feed');
266 * Call this method to initialize output data. See execute()
267 * @param $result ApiResult
268 * @param $feed object an instance of one of the $wgFeedClasses classes
269 * @param $feedItems array of FeedItem objects
271 public static function setResult($result, $feed, $feedItems) {
272 // Store output in the Result data.
273 // This way we can check during execution if any error has occured
274 // Disable size checking for this because we can't continue
275 // cleanly; size checking would cause more problems than it'd
277 $result->disableSizeCheck();
278 $result->addValue(null, '_feed', $feed);
279 $result->addValue(null, '_feeditems', $feedItems);
280 $result->enableSizeCheck();
284 * Feed does its own headers
286 public function getMimeType() {
291 * Optimization - no need to sanitize data that will not be needed
293 public function getNeedsRawData() {
298 * This class expects the result data to be in a custom format set by self::setResult()
299 * $result['_feed'] - an instance of one of the $wgFeedClasses classes
300 * $result['_feeditems'] - an array of FeedItem instances
302 public function execute() {
303 $data = $this->getResultData();
304 if (isset ($data['_feed']) && isset ($data['_feeditems'])) {
305 $feed = $data['_feed'];
306 $items = $data['_feeditems'];
309 foreach ($items as & $item)
310 $feed->outItem($item);
313 // Error has occured, print something useful
314 ApiBase
::dieDebug( __METHOD__
, 'Invalid feed class/item' );
318 public function getVersion() {
319 return __CLASS__
. ': $Id$';