MediaWiki REL1_30
ApiExpandTemplates.php
Go to the documentation of this file.
1<?php
35
36 public function execute() {
37 // Cache may vary on the user because ParserOptions gets data from it
38 $this->getMain()->setCacheMode( 'anon-public-user-private' );
39
40 // Get parameters
42 $this->requireMaxOneParameter( $params, 'prop', 'generatexml' );
43
44 $title = $params['title'];
45 if ( $title === null ) {
46 $titleProvided = false;
47 // A title is needed for parsing, so arbitrarily choose one
48 $title = 'API';
49 } else {
50 $titleProvided = true;
51 }
52
53 if ( $params['prop'] === null ) {
54 $this->addDeprecation(
55 'apiwarn-deprecation-expandtemplates-prop', 'action=expandtemplates&!prop'
56 );
57 $prop = [];
58 } else {
59 $prop = array_flip( $params['prop'] );
60 }
61
62 $titleObj = Title::newFromText( $title );
63 if ( !$titleObj || $titleObj->isExternal() ) {
64 $this->dieWithError( [ 'apierror-invalidtitle', wfEscapeWikiText( $params['title'] ) ] );
65 }
66
67 // Get title and revision ID for parser
68 $revid = $params['revid'];
69 if ( $revid !== null ) {
70 $rev = Revision::newFromId( $revid );
71 if ( !$rev ) {
72 $this->dieWithError( [ 'apierror-nosuchrevid', $revid ] );
73 }
74 $pTitleObj = $titleObj;
75 $titleObj = $rev->getTitle();
76 if ( $titleProvided ) {
77 if ( !$titleObj->equals( $pTitleObj ) ) {
78 $this->addWarning( [ 'apierror-revwrongpage', $rev->getId(),
79 wfEscapeWikiText( $pTitleObj->getPrefixedText() ) ] );
80 }
81 } else {
82 // Consider the title derived from the revid as having
83 // been provided.
84 $titleProvided = true;
85 }
86 }
87
88 $result = $this->getResult();
89
90 // Parse text
91 global $wgParser;
92 $options = ParserOptions::newFromContext( $this->getContext() );
93
94 if ( $params['includecomments'] ) {
95 $options->setRemoveComments( false );
96 }
97
98 $reset = null;
99 $suppressCache = false;
100 Hooks::run( 'ApiMakeParserOptions',
101 [ $options, $titleObj, $params, $this, &$reset, &$suppressCache ] );
102
103 $retval = [];
104
105 if ( isset( $prop['parsetree'] ) || $params['generatexml'] ) {
106 $wgParser->startExternalParse( $titleObj, $options, Parser::OT_PREPROCESS );
107 $dom = $wgParser->preprocessToDom( $params['text'] );
108 if ( is_callable( [ $dom, 'saveXML' ] ) ) {
109 $xml = $dom->saveXML();
110 } else {
111 $xml = $dom->__toString();
112 }
113 if ( isset( $prop['parsetree'] ) ) {
114 unset( $prop['parsetree'] );
115 $retval['parsetree'] = $xml;
116 } else {
117 // the old way
118 $result->addValue( null, 'parsetree', $xml );
119 $result->addValue( null, ApiResult::META_BC_SUBELEMENTS, [ 'parsetree' ] );
120 }
121 }
122
123 // if they didn't want any output except (probably) the parse tree,
124 // then don't bother actually fully expanding it
125 if ( $prop || $params['prop'] === null ) {
126 $wgParser->startExternalParse( $titleObj, $options, Parser::OT_PREPROCESS );
127 $frame = $wgParser->getPreprocessor()->newFrame();
128 $wikitext = $wgParser->preprocess( $params['text'], $titleObj, $options, $revid, $frame );
129 if ( $params['prop'] === null ) {
130 // the old way
131 ApiResult::setContentValue( $retval, 'wikitext', $wikitext );
132 } else {
133 $p_output = $wgParser->getOutput();
134 if ( isset( $prop['categories'] ) ) {
135 $categories = $p_output->getCategories();
136 if ( $categories ) {
137 $categories_result = [];
138 foreach ( $categories as $category => $sortkey ) {
139 $entry = [];
140 $entry['sortkey'] = $sortkey;
141 ApiResult::setContentValue( $entry, 'category', (string)$category );
142 $categories_result[] = $entry;
143 }
144 ApiResult::setIndexedTagName( $categories_result, 'category' );
145 $retval['categories'] = $categories_result;
146 }
147 }
148 if ( isset( $prop['properties'] ) ) {
149 $properties = $p_output->getProperties();
150 if ( $properties ) {
151 ApiResult::setArrayType( $properties, 'BCkvp', 'name' );
152 ApiResult::setIndexedTagName( $properties, 'property' );
153 $retval['properties'] = $properties;
154 }
155 }
156 if ( isset( $prop['volatile'] ) ) {
157 $retval['volatile'] = $frame->isVolatile();
158 }
159 if ( isset( $prop['ttl'] ) && $frame->getTTL() !== null ) {
160 $retval['ttl'] = $frame->getTTL();
161 }
162 if ( isset( $prop['wikitext'] ) ) {
163 $retval['wikitext'] = $wikitext;
164 }
165 if ( isset( $prop['modules'] ) ) {
166 $retval['modules'] = array_values( array_unique( $p_output->getModules() ) );
167 $retval['modulescripts'] = array_values( array_unique( $p_output->getModuleScripts() ) );
168 $retval['modulestyles'] = array_values( array_unique( $p_output->getModuleStyles() ) );
169 }
170 if ( isset( $prop['jsconfigvars'] ) ) {
171 $retval['jsconfigvars'] =
172 ApiResult::addMetadataToResultVars( $p_output->getJsConfigVars() );
173 }
174 if ( isset( $prop['encodedjsconfigvars'] ) ) {
175 $retval['encodedjsconfigvars'] = FormatJson::encode(
176 $p_output->getJsConfigVars(), false, FormatJson::ALL_OK
177 );
178 $retval[ApiResult::META_SUBELEMENTS][] = 'encodedjsconfigvars';
179 }
180 if ( isset( $prop['modules'] ) &&
181 !isset( $prop['jsconfigvars'] ) && !isset( $prop['encodedjsconfigvars'] ) ) {
182 $this->addWarning( 'apiwarn-moduleswithoutvars' );
183 }
184 }
185 }
186 ApiResult::setSubelementsList( $retval, [ 'wikitext', 'parsetree' ] );
187 $result->addValue( null, $this->getModuleName(), $retval );
188 }
189
190 public function getAllowedParams() {
191 return [
192 'title' => null,
193 'text' => [
194 ApiBase::PARAM_TYPE => 'text',
196 ],
197 'revid' => [
198 ApiBase::PARAM_TYPE => 'integer',
199 ],
200 'prop' => [
202 'wikitext',
203 'categories',
204 'properties',
205 'volatile',
206 'ttl',
207 'modules',
208 'jsconfigvars',
209 'encodedjsconfigvars',
210 'parsetree',
211 ],
214 ],
215 'includecomments' => false,
216 'generatexml' => [
217 ApiBase::PARAM_TYPE => 'boolean',
219 ],
220 ];
221 }
222
223 protected function getExamplesMessages() {
224 return [
225 'action=expandtemplates&text={{Project:Sandbox}}'
226 => 'apihelp-expandtemplates-example-simple',
227 ];
228 }
229
230 public function getHelpUrls() {
231 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Parsing_wikitext#expandtemplates';
232 }
233}
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
$wgParser
Definition Setup.php:832
This abstract class implements many basic API functions, and is the base of all API classes.
Definition ApiBase.php:41
const PARAM_REQUIRED
(boolean) Is the parameter required?
Definition ApiBase.php:115
const PARAM_DEPRECATED
(boolean) Is the parameter deprecated (will show a warning)?
Definition ApiBase.php:109
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition ApiBase.php:1855
getMain()
Get the main module.
Definition ApiBase.php:528
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:91
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:740
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
Definition ApiBase.php:160
addDeprecation( $msg, $feature, $data=[])
Add a deprecation warning for this module.
Definition ApiBase.php:1793
getResult()
Get the result object.
Definition ApiBase.php:632
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
Definition ApiBase.php:814
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
Definition ApiBase.php:1779
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:512
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition ApiBase.php:55
API module that functions as a shortcut to the wikitext preprocessor.
getExamplesMessages()
Returns usage examples for this module.
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.
getHelpUrls()
Return links to more detailed help pages about the module.
static setArrayType(array &$arr, $type, $kvpKeyName=null)
Set the array data type.
static addMetadataToResultVars( $vars, $forceHash=true)
Add the correct metadata to an array of vars we want to export through the API.
const META_SUBELEMENTS
Key for the 'subelements' metadata item.
Definition ApiResult.php:76
static setSubelementsList(array &$arr, $names)
Causes the elements with the specified names to be output as subelements rather than attributes.
const META_BC_SUBELEMENTS
Key for the 'BC subelements' metadata item.
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
static setContentValue(array &$arr, $name, $value, $flags=0)
Add an output value to the array by name and mark as META_CONTENT.
getContext()
Get the base IContextSource object.
static newFromId( $id, $flags=0)
Load a page revision from a given revision ID number.
Definition Revision.php:116
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account incomplete not yet checked for validity & $retval
Definition hooks.txt:266
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 & $options
Definition hooks.txt:1971
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition hooks.txt:1760
$params