MediaWiki REL1_33
ApiFormatBase.php
Go to the documentation of this file.
1<?php
28abstract class ApiFormatBase extends ApiBase {
30 private $mBuffer, $mDisabled = false;
31 private $mIsWrappedHtml = false;
32 private $mHttpStatus = false;
33 protected $mForceDefaultParams = false;
34
40 public function __construct( ApiMain $main, $format ) {
41 parent::__construct( $main, $format );
42
43 $this->mIsHtml = ( substr( $format, -2, 2 ) === 'fm' ); // ends with 'fm'
44 if ( $this->mIsHtml ) {
45 $this->mFormat = substr( $format, 0, -2 ); // remove ending 'fm'
46 $this->mIsWrappedHtml = $this->getMain()->getCheck( 'wrappedhtml' );
47 } else {
48 $this->mFormat = $format;
49 }
50 $this->mFormat = strtoupper( $this->mFormat );
51 }
52
61 abstract public function getMimeType();
62
70 public function getFilename() {
71 if ( $this->getIsWrappedHtml() ) {
72 return 'api-result-wrapped.json';
73 } elseif ( $this->getIsHtml() ) {
74 return 'api-result.html';
75 } else {
76 $exts = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer()
77 ->getExtensionsForType( $this->getMimeType() );
78 $ext = $exts ? strtok( $exts, ' ' ) : strtolower( $this->mFormat );
79 return "api-result.$ext";
80 }
81 }
82
87 public function getFormat() {
88 return $this->mFormat;
89 }
90
97 public function getIsHtml() {
98 return $this->mIsHtml;
99 }
100
106 protected function getIsWrappedHtml() {
108 }
109
115 public function disable() {
116 $this->mDisabled = true;
117 }
118
123 public function isDisabled() {
124 return $this->mDisabled;
125 }
126
135 public function canPrintErrors() {
136 return true;
137 }
138
145 public function forceDefaultParams() {
146 $this->mForceDefaultParams = true;
147 }
148
154 protected function getParameterFromSettings( $paramName, $paramSettings, $parseLimit ) {
155 if ( !$this->mForceDefaultParams ) {
156 return parent::getParameterFromSettings( $paramName, $paramSettings, $parseLimit );
157 }
158
159 if ( !is_array( $paramSettings ) ) {
160 return $paramSettings;
161 }
162
163 return $paramSettings[self::PARAM_DFLT] ?? null;
164 }
165
171 public function setHttpStatus( $code ) {
172 if ( $this->mDisabled ) {
173 return;
174 }
175
176 if ( $this->getIsHtml() ) {
177 $this->mHttpStatus = $code;
178 } else {
179 $this->getMain()->getRequest()->response()->statusHeader( $code );
180 }
181 }
182
187 public function initPrinter( $unused = false ) {
188 if ( $this->mDisabled ) {
189 return;
190 }
191
192 $mime = $this->getIsWrappedHtml()
193 ? 'text/mediawiki-api-prettyprint-wrapped'
194 : ( $this->getIsHtml() ? 'text/html' : $this->getMimeType() );
195
196 // Some printers (ex. Feed) do their own header settings,
197 // in which case $mime will be set to null
198 if ( $mime === null ) {
199 return; // skip any initialization
200 }
201
202 $this->getMain()->getRequest()->response()->header( "Content-Type: $mime; charset=utf-8" );
203
204 // Set X-Frame-Options API results (T41180)
205 $apiFrameOptions = $this->getConfig()->get( 'ApiFrameOptions' );
206 if ( $apiFrameOptions ) {
207 $this->getMain()->getRequest()->response()->header( "X-Frame-Options: $apiFrameOptions" );
208 }
209
210 // Set a Content-Disposition header so something downloading an API
211 // response uses a halfway-sensible filename (T128209).
212 $header = 'Content-Disposition: inline';
213 $filename = $this->getFilename();
214 $compatFilename = mb_convert_encoding( $filename, 'ISO-8859-1' );
215 if ( preg_match( '/^[0-9a-zA-Z!#$%&\'*+\-.^_`|~]+$/', $compatFilename ) ) {
216 $header .= '; filename=' . $compatFilename;
217 } else {
218 $header .= '; filename="'
219 . preg_replace( '/([\0-\x1f"\x5c\x7f])/', '\\\\$1', $compatFilename ) . '"';
220 }
221 if ( $compatFilename !== $filename ) {
222 $value = "UTF-8''" . rawurlencode( $filename );
223 // rawurlencode() encodes more characters than RFC 5987 specifies. Unescape the ones it allows.
224 $value = strtr( $value, [
225 '%21' => '!', '%23' => '#', '%24' => '$', '%26' => '&', '%2B' => '+', '%5E' => '^',
226 '%60' => '`', '%7C' => '|',
227 ] );
228 $header .= '; filename*=' . $value;
229 }
230 $this->getMain()->getRequest()->response()->header( $header );
231 }
232
236 public function closePrinter() {
237 if ( $this->mDisabled ) {
238 return;
239 }
240
241 $mime = $this->getMimeType();
242 if ( $this->getIsHtml() && $mime !== null ) {
243 $format = $this->getFormat();
244 $lcformat = strtolower( $format );
245 $result = $this->getBuffer();
246
247 $context = new DerivativeContext( $this->getMain() );
248 $context->setSkin( SkinFactory::getDefaultInstance()->makeSkin( 'apioutput' ) );
249 $context->setTitle( SpecialPage::getTitleFor( 'ApiHelp' ) );
250 $out = new OutputPage( $context );
251 $context->setOutput( $out );
252
253 $out->setRobotPolicy( 'noindex,nofollow' );
254 $out->addModuleStyles( 'mediawiki.apipretty' );
255 $out->setPageTitle( $context->msg( 'api-format-title' ) );
256
257 if ( !$this->getIsWrappedHtml() ) {
258 // When the format without suffix 'fm' is defined, there is a non-html version
259 if ( $this->getMain()->getModuleManager()->isDefined( $lcformat, 'format' ) ) {
260 if ( !$this->getRequest()->wasPosted() ) {
261 $nonHtmlUrl = strtok( $this->getRequest()->getFullRequestURL(), '?' )
262 . '?' . $this->getRequest()->appendQueryValue( 'format', $lcformat );
263 $msg = $context->msg( 'api-format-prettyprint-header-hyperlinked' )
264 ->params( $format, $lcformat, $nonHtmlUrl );
265 } else {
266 $msg = $context->msg( 'api-format-prettyprint-header' )->params( $format, $lcformat );
267 }
268 } else {
269 $msg = $context->msg( 'api-format-prettyprint-header-only-html' )->params( $format );
270 }
271
272 $header = $msg->parseAsBlock();
273 $out->addHTML(
274 Html::rawElement( 'div', [ 'class' => 'api-pretty-header' ],
276 )
277 );
278
279 if ( $this->mHttpStatus && $this->mHttpStatus !== 200 ) {
280 $out->addHTML(
281 Html::rawElement( 'div', [ 'class' => 'api-pretty-header api-pretty-status' ],
282 $this->msg(
283 'api-format-prettyprint-status',
284 $this->mHttpStatus,
285 HttpStatus::getMessage( $this->mHttpStatus )
286 )->parse()
287 )
288 );
289 }
290 }
291
292 if ( Hooks::run( 'ApiFormatHighlight', [ $context, $result, $mime, $format ] ) ) {
293 $out->addHTML(
294 Html::element( 'pre', [ 'class' => 'api-pretty-content' ], $result )
295 );
296 }
297
298 if ( $this->getIsWrappedHtml() ) {
299 // This is a special output mode mainly intended for ApiSandbox use
300 $time = $this->getMain()->getRequest()->getElapsedTime();
301 $json = FormatJson::encode(
302 [
303 'status' => (int)( $this->mHttpStatus ?: 200 ),
304 'statustext' => HttpStatus::getMessage( $this->mHttpStatus ?: 200 ),
305 'html' => $out->getHTML(),
307 $out->getModules(),
308 $out->getModuleStyles()
309 ) ) ),
310 'continue' => $this->getResult()->getResultData( 'continue' ),
311 'time' => round( $time * 1000 ),
312 ],
313 false, FormatJson::ALL_OK
314 );
315
316 // T68776: OutputHandler::mangleFlashPolicy() avoids a nasty bug in
317 // Flash, but what it does isn't friendly for the API, so we need to
318 // work around it.
319 if ( preg_match( '/<\s*cross-domain-policy\s*>/i', $json ) ) {
320 $json = preg_replace(
321 '/<(\s*cross-domain-policy\s*)>/i', '\\u003C$1\\u003E', $json
322 );
323 }
324
325 echo $json;
326 } else {
327 // API handles its own clickjacking protection.
328 // Note, that $wgBreakFrames will still override $wgApiFrameOptions for format mode.
329 $out->allowClickjacking();
330 $out->output();
331 }
332 } else {
333 // For non-HTML output, clear all errors that might have been
334 // displayed if display_errors=On
335 ob_clean();
336
337 echo $this->getBuffer();
338 }
339 }
340
345 public function printText( $text ) {
346 $this->mBuffer .= $text;
347 }
348
353 public function getBuffer() {
354 return $this->mBuffer;
355 }
356
357 public function getAllowedParams() {
358 $ret = [];
359 if ( $this->getIsHtml() ) {
360 $ret['wrappedhtml'] = [
361 ApiBase::PARAM_DFLT => false,
362 ApiBase::PARAM_HELP_MSG => 'apihelp-format-param-wrappedhtml',
363
364 ];
365 }
366 return $ret;
367 }
368
369 protected function getExamplesMessages() {
370 return [
371 'action=query&meta=siteinfo&siprop=namespaces&format=' . $this->getModuleName()
372 => [ 'apihelp-format-example-generic', $this->getFormat() ]
373 ];
374 }
375
376 public function getHelpUrls() {
377 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Data_formats';
378 }
379
380}
381
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
This abstract class implements many basic API functions, and is the base of all API classes.
Definition ApiBase.php:37
getModuleManager()
Get the module manager, or null if this module has no sub-modules.
Definition ApiBase.php:333
getMain()
Get the main module.
Definition ApiBase.php:528
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition ApiBase.php:48
getResult()
Get the result object.
Definition ApiBase.php:632
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:124
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:512
This is the abstract base class for API formatters.
getHelpUrls()
Return links to more detailed help pages about the module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
__construct(ApiMain $main, $format)
If $format ends with 'fm', pretty-print the output in HTML.
getMimeType()
Overriding class returns the MIME type that should be sent to the client.
getFormat()
Get the internal format name.
getFilename()
Return a filename for this module's output.
printText( $text)
Append text to the output buffer.
initPrinter( $unused=false)
Initialize the printer function and prepare the output headers.
disable()
Disable the formatter.
getBuffer()
Get the contents of the buffer.
getIsWrappedHtml()
Returns true when the special wrapped mode is enabled.
canPrintErrors()
Whether this formatter can handle printing API errors.
getExamplesMessages()
Returns usage examples for this module.
isDisabled()
Whether the printer is disabled.
forceDefaultParams()
Ignore request parameters, force a default.
getIsHtml()
Returns true when the HTML pretty-printer should be used.
getParameterFromSettings( $paramName, $paramSettings, $parseLimit)
Overridden to honor $this->forceDefaultParams(), if applicable @inheritDoc.
setHttpStatus( $code)
Set the HTTP status code to be used for the response.
closePrinter()
Finish printing and output buffered data.
static fixHelpLinks( $html, $helptitle=null, $localModules=[])
Replace Special:ApiHelp links with links to api.php.
Definition ApiHelp.php:171
This is the main API class, used for both external and internal processing.
Definition ApiMain.php:41
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
IContextSource $context
An IContextSource implementation which will inherit context from another source but allow individual ...
static getMessage( $code)
Get the message associated with an HTTP response status code.
This class should be covered by a general architecture document which does not exist as of January 20...
see documentation in includes Linker php for Linker::makeImageLink & $time
Definition hooks.txt:1802
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition hooks.txt:855
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition hooks.txt:856
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2003
msg( $key)
This is the method for getting translated interface messages.
if(!is_readable( $file)) $ext
Definition router.php:48
$header