5 * Created on Sep 19, 2006
7 * Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
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.
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.
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
28 * This is the abstract base class for API formatters.
32 abstract class ApiFormatBase
extends ApiBase
{
33 private $mIsHtml, $mFormat, $mUnescapeAmps, $mHelp, $mCleared;
34 private $mBufferResult = false, $mBuffer, $mDisabled = false;
38 * If $format ends with 'fm', pretty-print the output in HTML.
39 * @param $main ApiMain
40 * @param string $format Format name
42 public function __construct( $main, $format ) {
43 parent
::__construct( $main, $format );
45 $this->mIsHtml
= ( substr( $format, -2, 2 ) === 'fm' ); // ends with 'fm'
46 if ( $this->mIsHtml
) {
47 $this->mFormat
= substr( $format, 0, -2 ); // remove ending 'fm'
49 $this->mFormat
= $format;
51 $this->mFormat
= strtoupper( $this->mFormat
);
52 $this->mCleared
= false;
56 * Overriding class returns the mime type that should be sent to the client.
57 * This method is not called if getIsHtml() returns true.
60 abstract public function getMimeType();
63 * Whether this formatter needs raw data such as _element tags
66 public function getNeedsRawData() {
71 * Get the internal format name
74 public function getFormat() {
75 return $this->mFormat
;
79 * Specify whether or not sequences like &quot; should be unescaped
80 * to " . This should only be set to true for the help message
81 * when rendered in the default (xmlfm) format. This is a temporary
82 * special-case fix that should be removed once the help has been
83 * reworked to use a fully HTML interface.
85 * @param bool $b Whether or not ampersands should be escaped.
87 public function setUnescapeAmps( $b ) {
88 $this->mUnescapeAmps
= $b;
92 * Returns true when the HTML pretty-printer should be used.
93 * The default implementation assumes that formats ending with 'fm'
94 * should be formatted in HTML.
97 public function getIsHtml() {
98 return $this->mIsHtml
;
102 * Whether this formatter can format the help message in a nice way.
103 * By default, this returns the same as getIsHtml().
104 * When action=help is set explicitly, the help will always be shown
107 public function getWantsHelp() {
108 return $this->getIsHtml();
112 * Disable the formatter completely. This causes calls to initPrinter(),
113 * printText() and closePrinter() to be ignored.
115 public function disable() {
116 $this->mDisabled
= true;
119 public function isDisabled() {
120 return $this->mDisabled
;
124 * Initialize the printer function and prepare the output headers, etc.
125 * This method must be the first outputting method during execution.
126 * A human-targeted notice about available formats is printed for the HTML-based output,
127 * except for help screens (caused by either an error in the API parameters,
128 * the calling of action=help, or requesting the root script api.php).
129 * @param bool $isHelpScreen Whether a help screen is going to be shown
131 function initPrinter( $isHelpScreen ) {
132 if ( $this->mDisabled
) {
135 $isHtml = $this->getIsHtml();
136 $mime = $isHtml ?
'text/html' : $this->getMimeType();
137 $script = wfScript( 'api' );
139 // Some printers (ex. Feed) do their own header settings,
140 // in which case $mime will be set to null
141 if ( is_null( $mime ) ) {
142 return; // skip any initialization
145 $this->getMain()->getRequest()->response()->header( "Content-Type: $mime; charset=utf-8" );
147 //Set X-Frame-Options API results (bug 39180)
148 global $wgApiFrameOptions;
149 if ( $wgApiFrameOptions ) {
150 $this->getMain()->getRequest()->response()->header( "X-Frame-Options: $wgApiFrameOptions" );
159 if ( $this->mUnescapeAmps
) {
160 ?
> <title
>MediaWiki API
</title
>
163 ?
> <title
>MediaWiki API Result
</title
>
170 if ( !$isHelpScreen ) {
171 // @codingStandardsIgnoreStart Exclude long line from CodeSniffer checks
175 You are looking at the HTML representation of the
<?php
echo $this->mFormat
; ?
> format
.<br
/>
176 HTML is good
for debugging
, but is unsuitable
for application
use.<br
/>
177 Specify the format parameter to change the output format
.<br
/>
178 To see the non HTML representation of the
<?php
echo $this->mFormat
; ?
> format
, set format
=<?php
echo strtolower( $this->mFormat
); ?
>.<br
/>
179 See the
<a href
='https://www.mediawiki.org/wiki/API'>complete documentation
</a
>, or
180 <a href
='<?php echo $script; ?>'>API help
</a
> for more information
.
182 <pre style
='white-space: pre-wrap;'>
184 // @codingStandardsIgnoreEnd
185 // don't wrap the contents of the <pre> for help screens
186 // because these are actually formatted to rely on
187 // the monospaced font for layout purposes
197 * Finish printing. Closes HTML tags.
199 public function closePrinter() {
200 if ( $this->mDisabled
) {
203 if ( $this->getIsHtml() ) {
214 * The main format printing function. Call it to output the result
215 * string to the user. This function will automatically output HTML
216 * when format name ends in 'fm'.
217 * @param $text string
219 public function printText( $text ) {
220 if ( $this->mDisabled
) {
223 if ( $this->mBufferResult
) {
224 $this->mBuffer
= $text;
225 } elseif ( $this->getIsHtml() ) {
226 echo $this->formatHTML( $text );
228 // For non-HTML output, clear all errors that might have been
229 // displayed if display_errors=On
230 // Do this only once, of course
231 if ( !$this->mCleared
) {
233 $this->mCleared
= true;
240 * Get the contents of the buffer.
242 public function getBuffer() {
243 return $this->mBuffer
;
247 * Set the flag to buffer the result instead of printing it.
250 public function setBufferResult( $value ) {
251 $this->mBufferResult
= $value;
255 * Sets whether the pretty-printer should format *bold*
258 public function setHelp( $help = true ) {
259 $this->mHelp
= $help;
263 * Pretty-print various elements in HTML format, such as xml tags and
264 * URLs. This method also escapes characters like <
265 * @param $text string
268 protected function formatHTML( $text ) {
269 // Escape everything first for full coverage
270 $text = htmlspecialchars( $text );
271 // encode all comments or tags as safe blue strings
272 $text = str_replace( '<', '<span style="color:blue;"><', $text );
273 $text = str_replace( '>', '></span>', $text );
274 // identify requests to api.php
275 $text = preg_replace( "#api\\.php\\?[^ <\n\t]+#", '<a href="\\0">\\0</a>', $text );
276 if ( $this->mHelp
) {
277 // make strings inside * bold
278 $text = preg_replace( "#\\*[^<>\n]+\\*#", '<b>\\0</b>', $text );
281 $protos = wfUrlProtocolsWithoutProtRel();
282 // This regex hacks around bug 13218 (" included in the URL)
283 $text = preg_replace(
284 "#(((?i)$protos).*?)(")?([ \\'\"<>\n]|<|>|")#",
285 '<a href="\\1">\\1</a>\\3\\4',
290 * Temporary fix for bad links in help messages. As a special case,
291 * XML-escaped metachars are de-escaped one level in the help message
292 * for legibility. Should be removed once we have completed a fully-HTML
293 * version of the help message.
295 if ( $this->mUnescapeAmps
) {
296 $text = preg_replace( '/&(amp|quot|lt|gt);/', '&\1;', $text );
302 public function getExamples() {
304 'api.php?action=query&meta=siteinfo&siprop=namespaces&format=' . $this->getModuleName()
305 => "Format the query result in the {$this->getModuleName()} format",
309 public function getHelpUrls() {
310 return 'https://www.mediawiki.org/wiki/API:Data_formats';
313 public function getDescription() {
314 return $this->getIsHtml() ?
' (pretty-print in HTML)' : '';
319 * This printer is used to wrap an instance of the Feed class
322 class ApiFormatFeedWrapper
extends ApiFormatBase
{
324 public function __construct( $main ) {
325 parent
::__construct( $main, 'feed' );
329 * Call this method to initialize output data. See execute()
330 * @param $result ApiResult
331 * @param $feed object an instance of one of the $wgFeedClasses classes
332 * @param array $feedItems of FeedItem objects
334 public static function setResult( $result, $feed, $feedItems ) {
335 // Store output in the Result data.
336 // This way we can check during execution if any error has occurred
337 // Disable size checking for this because we can't continue
338 // cleanly; size checking would cause more problems than it'd
340 $result->disableSizeCheck();
341 $result->addValue( null, '_feed', $feed );
342 $result->addValue( null, '_feeditems', $feedItems );
343 $result->enableSizeCheck();
347 * Feed does its own headers
351 public function getMimeType() {
356 * Optimization - no need to sanitize data that will not be needed
360 public function getNeedsRawData() {
365 * This class expects the result data to be in a custom format set by self::setResult()
366 * $result['_feed'] - an instance of one of the $wgFeedClasses classes
367 * $result['_feeditems'] - an array of FeedItem instances
369 public function execute() {
370 $data = $this->getResultData();
371 if ( isset( $data['_feed'] ) && isset( $data['_feeditems'] ) ) {
372 $feed = $data['_feed'];
373 $items = $data['_feeditems'];
376 foreach ( $items as & $item ) {
377 $feed->outItem( $item );
381 // Error has occurred, print something useful
382 ApiBase
::dieDebug( __METHOD__
, 'Invalid feed class/item' );