Merge "Use Travis CI cache and reduce clone depth to speed up setup time"
[lhc/web/wiklou.git] / includes / specials / SpecialExpandTemplates.php
1 <?php
2 /**
3 * Implements Special:ExpandTemplates
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 /**
25 * A special page that expands submitted templates, parser functions,
26 * and variables, allowing easier debugging of these.
27 *
28 * @ingroup SpecialPage
29 */
30 class SpecialExpandTemplates extends SpecialPage {
31
32 /** @var bool Whether or not to show the XML parse tree */
33 protected $generateXML;
34
35 /** @var bool Whether or not to show the raw HTML code */
36 protected $generateRawHtml;
37
38 /** @var bool Whether or not to remove comments in the expanded wikitext */
39 protected $removeComments;
40
41 /** @var bool Whether or not to remove <nowiki> tags in the expanded wikitext */
42 protected $removeNowiki;
43
44 /** @var int Maximum size in bytes to include. 50MB allows fixing those huge pages */
45 const MAX_INCLUDE_SIZE = 50000000;
46
47 function __construct() {
48 parent::__construct( 'ExpandTemplates' );
49 }
50
51 /**
52 * Show the special page
53 * @param string|null $subpage
54 */
55 function execute( $subpage ) {
56 global $wgParser;
57
58 $this->setHeaders();
59 $this->addHelpLink( 'Help:ExpandTemplates' );
60
61 $request = $this->getRequest();
62 $titleStr = $request->getText( 'wpContextTitle' );
63 $title = Title::newFromText( $titleStr );
64
65 if ( !$title ) {
66 $title = $this->getPageTitle();
67 }
68 $input = $request->getText( 'wpInput' );
69 $this->generateXML = $request->getBool( 'wpGenerateXml' );
70 $this->generateRawHtml = $request->getBool( 'wpGenerateRawHtml' );
71
72 if ( strlen( $input ) ) {
73 $this->removeComments = $request->getBool( 'wpRemoveComments', false );
74 $this->removeNowiki = $request->getBool( 'wpRemoveNowiki', false );
75 $options = ParserOptions::newFromContext( $this->getContext() );
76 $options->setRemoveComments( $this->removeComments );
77 $options->setTidy( true );
78 $options->setMaxIncludeSize( self::MAX_INCLUDE_SIZE );
79
80 if ( $this->generateXML ) {
81 $wgParser->startExternalParse( $title, $options, Parser::OT_PREPROCESS );
82 $dom = $wgParser->preprocessToDom( $input );
83
84 if ( method_exists( $dom, 'saveXML' ) ) {
85 $xml = $dom->saveXML();
86 } else {
87 $xml = $dom->__toString();
88 }
89 }
90
91 $output = $wgParser->preprocess( $input, $title, $options );
92 } else {
93 $this->removeComments = $request->getBool( 'wpRemoveComments', true );
94 $this->removeNowiki = $request->getBool( 'wpRemoveNowiki', false );
95 $output = false;
96 }
97
98 $out = $this->getOutput();
99
100 $this->makeForm( $titleStr, $input );
101
102 if ( $output !== false ) {
103 if ( $this->generateXML && strlen( $output ) > 0 ) {
104 $out->addHTML( $this->makeOutput( $xml, 'expand_templates_xml_output' ) );
105 }
106
107 $tmp = $this->makeOutput( $output );
108
109 if ( $this->removeNowiki ) {
110 $tmp = preg_replace(
111 [ '_&lt;nowiki&gt;_', '_&lt;/nowiki&gt;_', '_&lt;nowiki */&gt;_' ],
112 '',
113 $tmp
114 );
115 }
116
117 $config = $this->getConfig();
118 if ( MWTidy::isEnabled() && $options->getTidy() ) {
119 $tmp = MWTidy::tidy( $tmp );
120 } else {
121 wfDeprecated( 'disabling tidy', '1.33' );
122 }
123
124 $out->addHTML( $tmp );
125
126 $pout = $this->generateHtml( $title, $output );
127 $rawhtml = $pout->getText();
128 if ( $this->generateRawHtml && strlen( $rawhtml ) > 0 ) {
129 $out->addHTML( $this->makeOutput( $rawhtml, 'expand_templates_html_output' ) );
130 }
131
132 $this->showHtmlPreview( $title, $pout, $out );
133 }
134 }
135
136 /**
137 * Callback for the HTMLForm used in self::makeForm.
138 * Checks, if the input was given, and if not, returns a fatal Status
139 * object with an error message.
140 *
141 * @param array $values The values submitted to the HTMLForm
142 * @return Status
143 */
144 public function onSubmitInput( array $values ) {
145 $status = Status::newGood();
146 if ( !strlen( $values['input'] ) ) {
147 $status = Status::newFatal( 'expand_templates_input_missing' );
148 }
149 return $status;
150 }
151
152 /**
153 * Generate a form allowing users to enter information
154 *
155 * @param string $title Value for context title field
156 * @param string $input Value for input textbox
157 * @return string
158 */
159 private function makeForm( $title, $input ) {
160 $fields = [
161 'contexttitle' => [
162 'type' => 'text',
163 'label' => $this->msg( 'expand_templates_title' )->plain(),
164 'name' => 'wpContextTitle',
165 'id' => 'contexttitle',
166 'size' => 60,
167 'default' => $title,
168 'autofocus' => true,
169 ],
170 'input' => [
171 'type' => 'textarea',
172 'name' => 'wpInput',
173 'label' => $this->msg( 'expand_templates_input' )->text(),
174 'rows' => 10,
175 'default' => $input,
176 'id' => 'input',
177 'useeditfont' => true,
178 ],
179 'removecomments' => [
180 'type' => 'check',
181 'label' => $this->msg( 'expand_templates_remove_comments' )->text(),
182 'name' => 'wpRemoveComments',
183 'id' => 'removecomments',
184 'default' => $this->removeComments,
185 ],
186 'removenowiki' => [
187 'type' => 'check',
188 'label' => $this->msg( 'expand_templates_remove_nowiki' )->text(),
189 'name' => 'wpRemoveNowiki',
190 'id' => 'removenowiki',
191 'default' => $this->removeNowiki,
192 ],
193 'generate_xml' => [
194 'type' => 'check',
195 'label' => $this->msg( 'expand_templates_generate_xml' )->text(),
196 'name' => 'wpGenerateXml',
197 'id' => 'generate_xml',
198 'default' => $this->generateXML,
199 ],
200 'generate_rawhtml' => [
201 'type' => 'check',
202 'label' => $this->msg( 'expand_templates_generate_rawhtml' )->text(),
203 'name' => 'wpGenerateRawHtml',
204 'id' => 'generate_rawhtml',
205 'default' => $this->generateRawHtml,
206 ],
207 ];
208
209 $form = HTMLForm::factory( 'ooui', $fields, $this->getContext() );
210 $form
211 ->setSubmitTextMsg( 'expand_templates_ok' )
212 ->setWrapperLegendMsg( 'expandtemplates' )
213 ->setHeaderText( $this->msg( 'expand_templates_intro' )->parse() )
214 ->setSubmitCallback( [ $this, 'onSubmitInput' ] )
215 ->showAlways();
216 }
217
218 /**
219 * Generate a nice little box with a heading for output
220 *
221 * @param string $output Wiki text output
222 * @param string $heading
223 * @return string
224 */
225 private function makeOutput( $output, $heading = 'expand_templates_output' ) {
226 $out = "<h2>" . $this->msg( $heading )->escaped() . "</h2>\n";
227 $out .= Xml::textarea(
228 'output',
229 $output,
230 10,
231 10,
232 [
233 'id' => 'output',
234 'readonly' => 'readonly',
235 'class' => 'mw-editfont-' . $this->getUser()->getOption( 'editfont' )
236 ]
237 );
238
239 return $out;
240 }
241
242 /**
243 * Renders the supplied wikitext as html
244 *
245 * @param Title $title
246 * @param string $text
247 * @return ParserOutput
248 */
249 private function generateHtml( Title $title, $text ) {
250 global $wgParser;
251
252 $popts = ParserOptions::newFromContext( $this->getContext() );
253 $popts->setTargetLanguage( $title->getPageLanguage() );
254 return $wgParser->parse( $text, $title, $popts );
255 }
256
257 /**
258 * Wraps the provided html code in a div and outputs it to the page
259 *
260 * @param Title $title
261 * @param ParserOutput $pout
262 * @param OutputPage $out
263 */
264 private function showHtmlPreview( Title $title, ParserOutput $pout, OutputPage $out ) {
265 $lang = $title->getPageViewLanguage();
266 $out->addHTML( "<h2>" . $this->msg( 'expand_templates_preview' )->escaped() . "</h2>\n" );
267
268 if ( $this->getConfig()->get( 'RawHtml' ) ) {
269 $request = $this->getRequest();
270 $user = $this->getUser();
271
272 // To prevent cross-site scripting attacks, don't show the preview if raw HTML is
273 // allowed and a valid edit token is not provided (T73111). However, MediaWiki
274 // does not currently provide logged-out users with CSRF protection; in that case,
275 // do not show the preview unless anonymous editing is allowed.
276 if ( $user->isAnon() && !$user->isAllowed( 'edit' ) ) {
277 $error = [ 'expand_templates_preview_fail_html_anon' ];
278 } elseif ( !$user->matchEditToken( $request->getVal( 'wpEditToken' ), '', $request ) ) {
279 $error = [ 'expand_templates_preview_fail_html' ];
280 } else {
281 $error = false;
282 }
283
284 if ( $error ) {
285 $out->wrapWikiMsg( "<div class='previewnote'>\n$1\n</div>", $error );
286 return;
287 }
288 }
289
290 $out->addHTML( Html::openElement( 'div', [
291 'class' => 'mw-content-' . $lang->getDir(),
292 'dir' => $lang->getDir(),
293 'lang' => $lang->getHtmlCode(),
294 ] ) );
295 $out->addParserOutputContent( $pout );
296 $out->addHTML( Html::closeElement( 'div' ) );
297 $out->setCategoryLinks( $pout->getCategories() );
298 }
299
300 protected function getGroupName() {
301 return 'wiki';
302 }
303 }