Wrap changes lists in <div class="mw-changeslist" />
[mediawiki.git] / includes / api / ApiFormatBase.php
blob63a55024b345c1ea835ecee04ea6282bbf30cf8e
1 <?php
2 /**
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
24 * @file
27 /**
28 * This is the abstract base class for API formatters.
30 * @ingroup API
32 abstract class ApiFormatBase extends ApiBase {
33 private $mIsHtml, $mFormat, $mUnescapeAmps, $mHelp, $mCleared;
34 private $mBufferResult = false, $mBuffer, $mDisabled = false;
36 /**
37 * Constructor
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'
48 } else {
49 $this->mFormat = $format;
51 $this->mFormat = strtoupper( $this->mFormat );
52 $this->mCleared = false;
55 /**
56 * Overriding class returns the mime type that should be sent to the client.
57 * This method is not called if getIsHtml() returns true.
58 * @return string
60 abstract public function getMimeType();
62 /**
63 * Whether this formatter needs raw data such as _element tags
64 * @return bool
66 public function getNeedsRawData() {
67 return false;
70 /**
71 * Get the internal format name
72 * @return string
74 public function getFormat() {
75 return $this->mFormat;
78 /**
79 * Specify whether or not sequences like &amp;quot; should be unescaped
80 * to &quot; . 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;
91 /**
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.
95 * @return bool
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
105 * @return bool
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 ) {
133 return;
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" );
153 if ( $isHtml ) {
155 <!DOCTYPE HTML>
156 <html>
157 <head>
158 <?php
159 if ( $this->mUnescapeAmps ) {
160 ?> <title>MediaWiki API</title>
161 <?php
162 } else {
163 ?> <title>MediaWiki API Result</title>
164 <?php
167 </head>
168 <body>
169 <?php
170 if ( !$isHelpScreen ) {
171 // @codingStandardsIgnoreStart Exclude long line from CodeSniffer checks
173 <br />
174 <small>
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.
181 </small>
182 <pre style='white-space: pre-wrap;'>
183 <?php
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
188 } else {
190 <pre>
191 <?php
197 * Finish printing. Closes HTML tags.
199 public function closePrinter() {
200 if ( $this->mDisabled ) {
201 return;
203 if ( $this->getIsHtml() ) {
206 </pre>
207 </body>
208 </html>
209 <?php
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 ) {
221 return;
223 if ( $this->mBufferResult ) {
224 $this->mBuffer = $text;
225 } elseif ( $this->getIsHtml() ) {
226 echo $this->formatHTML( $text );
227 } else {
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 ) {
232 ob_clean();
233 $this->mCleared = true;
235 echo $text;
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.
248 * @param $value bool
250 public function setBufferResult( $value ) {
251 $this->mBufferResult = $value;
255 * Sets whether the pretty-printer should format *bold*
256 * @param $help bool
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
266 * @return 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( '&lt;', '<span style="color:blue;">&lt;', $text );
273 $text = str_replace( '&gt;', '&gt;</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 );
280 // identify URLs
281 $protos = wfUrlProtocolsWithoutProtRel();
282 // This regex hacks around bug 13218 (&quot; included in the URL)
283 $text = preg_replace(
284 "#(((?i)$protos).*?)(&quot;)?([ \\'\"<>\n]|&lt;|&gt;|&quot;)#",
285 '<a href="\\1">\\1</a>\\3\\4',
286 $text
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;(amp|quot|lt|gt);/', '&\1;', $text );
299 return $text;
302 public function getExamples() {
303 return array(
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
320 * @ingroup API
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
339 // solve
340 $result->disableSizeCheck();
341 $result->addValue( null, '_feed', $feed );
342 $result->addValue( null, '_feeditems', $feedItems );
343 $result->enableSizeCheck();
347 * Feed does its own headers
349 * @return null
351 public function getMimeType() {
352 return null;
356 * Optimization - no need to sanitize data that will not be needed
358 * @return bool
360 public function getNeedsRawData() {
361 return true;
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'];
375 $feed->outHeader();
376 foreach ( $items as & $item ) {
377 $feed->outItem( $item );
379 $feed->outFooter();
380 } else {
381 // Error has occurred, print something useful
382 ApiBase::dieDebug( __METHOD__, 'Invalid feed class/item' );