5 * Created on Oct 05, 2007
7 * Copyright © 2007 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 * API module that functions as a shortcut to the wikitext preprocessor. Expands
29 * any templates in a provided string, and returns the result of this expansion
34 class ApiExpandTemplates
extends ApiBase
{
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' );
41 $params = $this->extractRequestParams();
42 $this->requireMaxOneParameter( $params, 'prop', 'generatexml' );
44 if ( $params['prop'] === null ) {
45 $this->addDeprecation(
46 'apiwarn-deprecation-expandtemplates-prop', 'action=expandtemplates&!prop'
50 $prop = array_flip( $params['prop'] );
53 // Get title and revision ID for parser
54 $revid = $params['revid'];
55 if ( $revid !== null ) {
56 $rev = Revision
::newFromId( $revid );
58 $this->dieWithError( [ 'apierror-nosuchrevid', $revid ] );
60 $title_obj = $rev->getTitle();
62 $title_obj = Title
::newFromText( $params['title'] );
63 if ( !$title_obj ||
$title_obj->isExternal() ) {
64 $this->dieWithError( [ 'apierror-invalidtitle', wfEscapeWikiText( $params['title'] ) ] );
68 $result = $this->getResult();
72 $options = ParserOptions
::newFromContext( $this->getContext() );
74 if ( $params['includecomments'] ) {
75 $options->setRemoveComments( false );
79 $suppressCache = false;
80 Hooks
::run( 'ApiMakeParserOptions',
81 [ $options, $title_obj, $params, $this, &$reset, &$suppressCache ] );
85 if ( isset( $prop['parsetree'] ) ||
$params['generatexml'] ) {
86 $wgParser->startExternalParse( $title_obj, $options, Parser
::OT_PREPROCESS
);
87 $dom = $wgParser->preprocessToDom( $params['text'] );
88 if ( is_callable( [ $dom, 'saveXML' ] ) ) {
89 $xml = $dom->saveXML();
91 $xml = $dom->__toString();
93 if ( isset( $prop['parsetree'] ) ) {
94 unset( $prop['parsetree'] );
95 $retval['parsetree'] = $xml;
98 $result->addValue( null, 'parsetree', $xml );
99 $result->addValue( null, ApiResult
::META_BC_SUBELEMENTS
, [ 'parsetree' ] );
103 // if they didn't want any output except (probably) the parse tree,
104 // then don't bother actually fully expanding it
105 if ( $prop ||
$params['prop'] === null ) {
106 $wgParser->startExternalParse( $title_obj, $options, Parser
::OT_PREPROCESS
);
107 $frame = $wgParser->getPreprocessor()->newFrame();
108 $wikitext = $wgParser->preprocess( $params['text'], $title_obj, $options, $revid, $frame );
109 if ( $params['prop'] === null ) {
111 ApiResult
::setContentValue( $retval, 'wikitext', $wikitext );
113 $p_output = $wgParser->getOutput();
114 if ( isset( $prop['categories'] ) ) {
115 $categories = $p_output->getCategories();
117 $categories_result = [];
118 foreach ( $categories as $category => $sortkey ) {
120 $entry['sortkey'] = $sortkey;
121 ApiResult
::setContentValue( $entry, 'category', (string)$category );
122 $categories_result[] = $entry;
124 ApiResult
::setIndexedTagName( $categories_result, 'category' );
125 $retval['categories'] = $categories_result;
128 if ( isset( $prop['properties'] ) ) {
129 $properties = $p_output->getProperties();
131 ApiResult
::setArrayType( $properties, 'BCkvp', 'name' );
132 ApiResult
::setIndexedTagName( $properties, 'property' );
133 $retval['properties'] = $properties;
136 if ( isset( $prop['volatile'] ) ) {
137 $retval['volatile'] = $frame->isVolatile();
139 if ( isset( $prop['ttl'] ) && $frame->getTTL() !== null ) {
140 $retval['ttl'] = $frame->getTTL();
142 if ( isset( $prop['wikitext'] ) ) {
143 $retval['wikitext'] = $wikitext;
145 if ( isset( $prop['modules'] ) ) {
146 $retval['modules'] = array_values( array_unique( $p_output->getModules() ) );
147 $retval['modulescripts'] = array_values( array_unique( $p_output->getModuleScripts() ) );
148 $retval['modulestyles'] = array_values( array_unique( $p_output->getModuleStyles() ) );
150 if ( isset( $prop['jsconfigvars'] ) ) {
151 $retval['jsconfigvars'] =
152 ApiResult
::addMetadataToResultVars( $p_output->getJsConfigVars() );
154 if ( isset( $prop['encodedjsconfigvars'] ) ) {
155 $retval['encodedjsconfigvars'] = FormatJson
::encode(
156 $p_output->getJsConfigVars(), false, FormatJson
::ALL_OK
158 $retval[ApiResult
::META_SUBELEMENTS
][] = 'encodedjsconfigvars';
160 if ( isset( $prop['modules'] ) &&
161 !isset( $prop['jsconfigvars'] ) && !isset( $prop['encodedjsconfigvars'] ) ) {
162 $this->addWarning( 'apiwarn-moduleswithoutvars' );
166 ApiResult
::setSubelementsList( $retval, [ 'wikitext', 'parsetree' ] );
167 $result->addValue( null, $this->getModuleName(), $retval );
170 public function getAllowedParams() {
173 ApiBase
::PARAM_DFLT
=> 'API',
176 ApiBase
::PARAM_TYPE
=> 'text',
177 ApiBase
::PARAM_REQUIRED
=> true,
180 ApiBase
::PARAM_TYPE
=> 'integer',
183 ApiBase
::PARAM_TYPE
=> [
191 'encodedjsconfigvars',
194 ApiBase
::PARAM_ISMULTI
=> true,
195 ApiBase
::PARAM_HELP_MSG_PER_VALUE
=> [],
197 'includecomments' => false,
199 ApiBase
::PARAM_TYPE
=> 'boolean',
200 ApiBase
::PARAM_DEPRECATED
=> true,
205 protected function getExamplesMessages() {
207 'action=expandtemplates&text={{Project:Sandbox}}'
208 => 'apihelp-expandtemplates-example-simple',
212 public function getHelpUrls() {
213 return 'https://www.mediawiki.org/wiki/API:Parsing_wikitext#expandtemplates';