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 $wgUser 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->logFeatureUsage( 'action=expandtemplates&!prop' );
46 $this->setWarning( 'Because no values have been specified for the prop parameter, a ' .
47 'legacy format has been used for the output. This format is deprecated, and in ' .
48 'the future, a default value will be set for the prop parameter, causing the new' .
49 'format to always be used.' );
52 $prop = array_flip( $params['prop'] );
55 // Get title and revision ID for parser
56 $revid = $params['revid'];
57 if ( $revid !== null ) {
58 $rev = Revision
::newFromId( $revid );
60 $this->dieUsage( "There is no revision ID $revid", 'missingrev' );
62 $title_obj = $rev->getTitle();
64 $title_obj = Title
::newFromText( $params['title'] );
65 if ( !$title_obj ||
$title_obj->isExternal() ) {
66 $this->dieUsageMsg( array( 'invalidtitle', $params['title'] ) );
70 $result = $this->getResult();
74 $options = ParserOptions
::newFromContext( $this->getContext() );
76 if ( $params['includecomments'] ) {
77 $options->setRemoveComments( false );
82 if ( isset( $prop['parsetree'] ) ||
$params['generatexml'] ) {
83 if ( !isset( $prop['parsetree'] ) ) {
84 $this->logFeatureUsage( 'action=expandtemplates&generatexml' );
87 $wgParser->startExternalParse( $title_obj, $options, Parser
::OT_PREPROCESS
);
88 $dom = $wgParser->preprocessToDom( $params['text'] );
89 if ( is_callable( array( $dom, 'saveXML' ) ) ) {
90 $xml = $dom->saveXML();
92 $xml = $dom->__toString();
94 if ( isset( $prop['parsetree'] ) ) {
95 unset( $prop['parsetree'] );
96 $retval['parsetree'] = $xml;
99 $xml_result = array();
100 ApiResult
::setContent( $xml_result, $xml );
101 $result->addValue( null, 'parsetree', $xml_result );
105 // if they didn't want any output except (probably) the parse tree,
106 // then don't bother actually fully expanding it
107 if ( $prop ||
$params['prop'] === null ) {
108 $wgParser->startExternalParse( $title_obj, $options, Parser
::OT_PREPROCESS
);
109 $frame = $wgParser->getPreprocessor()->newFrame();
110 $wikitext = $wgParser->preprocess( $params['text'], $title_obj, $options, $revid, $frame );
111 if ( $params['prop'] === null ) {
113 ApiResult
::setContent( $retval, $wikitext );
115 if ( isset( $prop['categories'] ) ) {
116 $categories = $wgParser->getOutput()->getCategories();
118 $categories_result = array();
119 foreach ( $categories as $category => $sortkey ) {
121 $entry['sortkey'] = $sortkey;
122 ApiResult
::setContent( $entry, $category );
123 $categories_result[] = $entry;
125 $result->setIndexedTagName( $categories_result, 'category' );
126 $retval['categories'] = $categories_result;
129 if ( isset( $prop['properties'] ) ) {
130 $properties = $wgParser->getOutput()->getProperties();
132 $properties_result = array();
133 foreach ( $properties as $name => $value ) {
135 $entry['name'] = $name;
136 ApiResult
::setContent( $entry, $value );
137 $properties_result[] = $entry;
139 $result->setIndexedTagName( $properties_result, 'property' );
140 $retval['properties'] = $properties_result;
143 if ( isset( $prop['volatile'] ) && $frame->isVolatile() ) {
144 $retval['volatile'] = '';
146 if ( isset( $prop['ttl'] ) && $frame->getTTL() !== null ) {
147 $retval['ttl'] = $frame->getTTL();
149 if ( isset( $prop['wikitext'] ) ) {
150 $retval['wikitext'] = $wikitext;
154 $result->setSubelements( $retval, array( 'wikitext', 'parsetree' ) );
155 $result->addValue( null, $this->getModuleName(), $retval );
158 public function getAllowedParams() {
161 ApiBase
::PARAM_DFLT
=> 'API',
164 ApiBase
::PARAM_TYPE
=> 'string',
165 ApiBase
::PARAM_REQUIRED
=> true,
168 ApiBase
::PARAM_TYPE
=> 'integer',
171 ApiBase
::PARAM_TYPE
=> array(
179 ApiBase
::PARAM_ISMULTI
=> true,
181 'includecomments' => false,
182 'generatexml' => array(
183 ApiBase
::PARAM_TYPE
=> 'boolean',
184 ApiBase
::PARAM_DEPRECATED
=> true,
189 protected function getExamplesMessages() {
191 'action=expandtemplates&text={{Project:Sandbox}}'
192 => 'apihelp-expandtemplates-example-simple',
196 public function getHelpUrls() {
197 return 'https://www.mediawiki.org/wiki/API:Parsing_wikitext#expandtemplates';