MediaWiki REL1_32
ApiFormatJson.php
Go to the documentation of this file.
1<?php
28
29 private $isRaw;
30
31 public function __construct( ApiMain $main, $format ) {
32 parent::__construct( $main, $format );
33 $this->isRaw = ( $format === 'rawfm' );
34
35 if ( $this->getMain()->getCheck( 'callback' ) ) {
36 # T94015: jQuery appends a useless '_' parameter in jsonp mode.
37 # Mark the parameter as used in that case to avoid a warning that's
38 # outside the control of the end user.
39 # (and do it here because ApiMain::reportUnusedParams() gets called
40 # before our ::execute())
41 $this->getMain()->markParamsUsed( '_' );
42 }
43 }
44
45 public function getMimeType() {
47 // callback:
48 if ( isset( $params['callback'] ) ) {
49 return 'text/javascript';
50 }
51
52 return 'application/json';
53 }
54
55 public function execute() {
57
58 $opt = 0;
59 if ( $this->isRaw ) {
60 $opt |= FormatJson::ALL_OK;
61 $transform = [];
62 } else {
63 switch ( $params['formatversion'] ) {
64 case 1:
65 $opt |= $params['utf8'] ? FormatJson::ALL_OK : FormatJson::XMLMETA_OK;
66 $transform = [
67 'BC' => [],
68 'Types' => [ 'AssocAsObject' => true ],
69 'Strip' => 'all',
70 ];
71 break;
72
73 case 2:
74 case 'latest':
75 $opt |= $params['ascii'] ? FormatJson::XMLMETA_OK : FormatJson::ALL_OK;
76 $transform = [
77 'Types' => [ 'AssocAsObject' => true ],
78 'Strip' => 'all',
79 ];
80 break;
81
82 default:
83 // Should have been caught during parameter validation
84 // @codeCoverageIgnoreStart
85 $this->dieDebug( __METHOD__, 'Unknown value for \'formatversion\'' );
86 // @codeCoverageIgnoreEnd
87 }
88 }
89 $data = $this->getResult()->getResultData( null, $transform );
90 $json = FormatJson::encode( $data, $this->getIsHtml(), $opt );
91
92 // T68776: OutputHandler::mangleFlashPolicy() avoids a nasty bug in
93 // Flash, but what it does isn't friendly for the API, so we need to
94 // work around it.
95 if ( preg_match( '/<\s*cross-domain-policy(?=\s|>)/i', $json ) ) {
96 $json = preg_replace(
97 '/<(\s*cross-domain-policy(?=\s|>))/i', '\\u003C$1', $json
98 );
99 }
100
101 if ( isset( $params['callback'] ) ) {
102 $callback = preg_replace( "/[^][.\\'\\\"_A-Za-z0-9]/", '', $params['callback'] );
103 # Prepend a comment to try to avoid attacks against content
104 # sniffers, such as T70187.
105 $this->printText( "/**/$callback($json)" );
106 } else {
107 $this->printText( $json );
108 }
109 }
110
111 public function getAllowedParams() {
112 if ( $this->isRaw ) {
113 return parent::getAllowedParams();
114 }
115
116 $ret = parent::getAllowedParams() + [
117 'callback' => [
118 ApiBase::PARAM_HELP_MSG => 'apihelp-json-param-callback',
119 ],
120 'utf8' => [
121 ApiBase::PARAM_DFLT => false,
122 ApiBase::PARAM_HELP_MSG => 'apihelp-json-param-utf8',
123 ],
124 'ascii' => [
125 ApiBase::PARAM_DFLT => false,
126 ApiBase::PARAM_HELP_MSG => 'apihelp-json-param-ascii',
127 ],
128 'formatversion' => [
129 ApiBase::PARAM_TYPE => [ '1', '2', 'latest' ],
130 ApiBase::PARAM_DFLT => '1',
131 ApiBase::PARAM_HELP_MSG => 'apihelp-json-param-formatversion',
132 ],
133 ];
134 return $ret;
135 }
136}
static dieDebug( $method, $message)
Internal code errors should be reported with this method.
Definition ApiBase.php:2167
getMain()
Get the main module.
Definition ApiBase.php:555
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:87
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition ApiBase.php:48
getResult()
Get the result object.
Definition ApiBase.php:659
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:770
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:124
This is the abstract base class for API formatters.
printText( $text)
Append text to the output buffer.
getIsHtml()
Returns true when the HTML pretty-printer should be used.
API JSON output formatter.
getMimeType()
Overriding class returns the MIME type that should be sent to the client.
__construct(ApiMain $main, $format)
If $format ends with 'fm', pretty-print the output in HTML.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
This is the main API class, used for both external and internal processing.
Definition ApiMain.php:41
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 just before the function returns a value If you return true
Definition hooks.txt:2055
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:2054
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
$params