Merge "Use HTML::hidden to create input fields"
[lhc/web/wiklou.git] / includes / parser / Parser.php
1 <?php
2 /**
3 * PHP parser that converts wiki markup to HTML.
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 Parser
22 */
23 use MediaWiki\Linker\LinkRenderer;
24 use MediaWiki\MediaWikiServices;
25 use Wikimedia\ScopedCallback;
26
27 /**
28 * @defgroup Parser Parser
29 */
30
31 /**
32 * PHP Parser - Processes wiki markup (which uses a more user-friendly
33 * syntax, such as "[[link]]" for making links), and provides a one-way
34 * transformation of that wiki markup it into (X)HTML output / markup
35 * (which in turn the browser understands, and can display).
36 *
37 * There are seven main entry points into the Parser class:
38 *
39 * - Parser::parse()
40 * produces HTML output
41 * - Parser::preSaveTransform()
42 * produces altered wiki markup
43 * - Parser::preprocess()
44 * removes HTML comments and expands templates
45 * - Parser::cleanSig() and Parser::cleanSigInSig()
46 * cleans a signature before saving it to preferences
47 * - Parser::getSection()
48 * return the content of a section from an article for section editing
49 * - Parser::replaceSection()
50 * replaces a section by number inside an article
51 * - Parser::getPreloadText()
52 * removes <noinclude> sections and <includeonly> tags
53 *
54 * Globals used:
55 * object: $wgContLang
56 *
57 * @warning $wgUser or $wgTitle or $wgRequest or $wgLang. Keep them away!
58 *
59 * @par Settings:
60 * $wgNamespacesWithSubpages
61 *
62 * @par Settings only within ParserOptions:
63 * $wgAllowExternalImages
64 * $wgAllowSpecialInclusion
65 * $wgInterwikiMagic
66 * $wgMaxArticleSize
67 *
68 * @ingroup Parser
69 */
70 class Parser {
71 /**
72 * Update this version number when the ParserOutput format
73 * changes in an incompatible way, so the parser cache
74 * can automatically discard old data.
75 */
76 const VERSION = '1.6.4';
77
78 /**
79 * Update this version number when the output of serialiseHalfParsedText()
80 * changes in an incompatible way
81 */
82 const HALF_PARSED_VERSION = 2;
83
84 # Flags for Parser::setFunctionHook
85 const SFH_NO_HASH = 1;
86 const SFH_OBJECT_ARGS = 2;
87
88 # Constants needed for external link processing
89 # Everything except bracket, space, or control characters
90 # \p{Zs} is unicode 'separator, space' category. It covers the space 0x20
91 # as well as U+3000 is IDEOGRAPHIC SPACE for T21052
92 # \x{FFFD} is the Unicode replacement character, which Preprocessor_DOM
93 # uses to replace invalid HTML characters.
94 const EXT_LINK_URL_CLASS = '[^][<>"\\x00-\\x20\\x7F\p{Zs}\x{FFFD}]';
95 # Simplified expression to match an IPv4 or IPv6 address, or
96 # at least one character of a host name (embeds EXT_LINK_URL_CLASS)
97 const EXT_LINK_ADDR = '(?:[0-9.]+|\\[(?i:[0-9a-f:.]+)\\]|[^][<>"\\x00-\\x20\\x7F\p{Zs}\x{FFFD}])';
98 # RegExp to make image URLs (embeds IPv6 part of EXT_LINK_ADDR)
99 // @codingStandardsIgnoreStart Generic.Files.LineLength
100 const EXT_IMAGE_REGEX = '/^(http:\/\/|https:\/\/)((?:\\[(?i:[0-9a-f:.]+)\\])?[^][<>"\\x00-\\x20\\x7F\p{Zs}\x{FFFD}]+)
101 \\/([A-Za-z0-9_.,~%\\-+&;#*?!=()@\\x80-\\xFF]+)\\.((?i)gif|png|jpg|jpeg)$/Sxu';
102 // @codingStandardsIgnoreEnd
103
104 # Regular expression for a non-newline space
105 const SPACE_NOT_NL = '(?:\t|&nbsp;|&\#0*160;|&\#[Xx]0*[Aa]0;|\p{Zs})';
106
107 # Flags for preprocessToDom
108 const PTD_FOR_INCLUSION = 1;
109
110 # Allowed values for $this->mOutputType
111 # Parameter to startExternalParse().
112 const OT_HTML = 1; # like parse()
113 const OT_WIKI = 2; # like preSaveTransform()
114 const OT_PREPROCESS = 3; # like preprocess()
115 const OT_MSG = 3;
116 const OT_PLAIN = 4; # like extractSections() - portions of the original are returned unchanged.
117
118 /**
119 * @var string Prefix and suffix for temporary replacement strings
120 * for the multipass parser.
121 *
122 * \x7f should never appear in input as it's disallowed in XML.
123 * Using it at the front also gives us a little extra robustness
124 * since it shouldn't match when butted up against identifier-like
125 * string constructs.
126 *
127 * Must not consist of all title characters, or else it will change
128 * the behavior of <nowiki> in a link.
129 *
130 * Must have a character that needs escaping in attributes, otherwise
131 * someone could put a strip marker in an attribute, to get around
132 * escaping quote marks, and break out of the attribute. Thus we add
133 * `'".
134 */
135 const MARKER_SUFFIX = "-QINU`\"'\x7f";
136 const MARKER_PREFIX = "\x7f'\"`UNIQ-";
137
138 # Markers used for wrapping the table of contents
139 const TOC_START = '<mw:toc>';
140 const TOC_END = '</mw:toc>';
141
142 # Persistent:
143 public $mTagHooks = [];
144 public $mTransparentTagHooks = [];
145 public $mFunctionHooks = [];
146 public $mFunctionSynonyms = [ 0 => [], 1 => [] ];
147 public $mFunctionTagHooks = [];
148 public $mStripList = [];
149 public $mDefaultStripList = [];
150 public $mVarCache = [];
151 public $mImageParams = [];
152 public $mImageParamsMagicArray = [];
153 public $mMarkerIndex = 0;
154 public $mFirstCall = true;
155
156 # Initialised by initialiseVariables()
157
158 /**
159 * @var MagicWordArray
160 */
161 public $mVariables;
162
163 /**
164 * @var MagicWordArray
165 */
166 public $mSubstWords;
167 # Initialised in constructor
168 public $mConf, $mExtLinkBracketedRegex, $mUrlProtocols;
169
170 # Initialized in getPreprocessor()
171 /** @var Preprocessor */
172 public $mPreprocessor;
173
174 # Cleared with clearState():
175 /**
176 * @var ParserOutput
177 */
178 public $mOutput;
179 public $mAutonumber;
180
181 /**
182 * @var StripState
183 */
184 public $mStripState;
185
186 public $mIncludeCount;
187 /**
188 * @var LinkHolderArray
189 */
190 public $mLinkHolders;
191
192 public $mLinkID;
193 public $mIncludeSizes, $mPPNodeCount, $mGeneratedPPNodeCount, $mHighestExpansionDepth;
194 public $mDefaultSort;
195 public $mTplRedirCache, $mTplDomCache, $mHeadings, $mDoubleUnderscores;
196 public $mExpensiveFunctionCount; # number of expensive parser function calls
197 public $mShowToc, $mForceTocPosition;
198
199 /**
200 * @var User
201 */
202 public $mUser; # User object; only used when doing pre-save transform
203
204 # Temporary
205 # These are variables reset at least once per parse regardless of $clearState
206
207 /**
208 * @var ParserOptions
209 */
210 public $mOptions;
211
212 /**
213 * @var Title
214 */
215 public $mTitle; # Title context, used for self-link rendering and similar things
216 public $mOutputType; # Output type, one of the OT_xxx constants
217 public $ot; # Shortcut alias, see setOutputType()
218 public $mRevisionObject; # The revision object of the specified revision ID
219 public $mRevisionId; # ID to display in {{REVISIONID}} tags
220 public $mRevisionTimestamp; # The timestamp of the specified revision ID
221 public $mRevisionUser; # User to display in {{REVISIONUSER}} tag
222 public $mRevisionSize; # Size to display in {{REVISIONSIZE}} variable
223 public $mRevIdForTs; # The revision ID which was used to fetch the timestamp
224 public $mInputSize = false; # For {{PAGESIZE}} on current page.
225
226 /**
227 * @var string Deprecated accessor for the strip marker prefix.
228 * @deprecated since 1.26; use Parser::MARKER_PREFIX instead.
229 */
230 public $mUniqPrefix = self::MARKER_PREFIX;
231
232 /**
233 * @var array Array with the language name of each language link (i.e. the
234 * interwiki prefix) in the key, value arbitrary. Used to avoid sending
235 * duplicate language links to the ParserOutput.
236 */
237 public $mLangLinkLanguages;
238
239 /**
240 * @var MapCacheLRU|null
241 * @since 1.24
242 *
243 * A cache of the current revisions of titles. Keys are $title->getPrefixedDbKey()
244 */
245 public $currentRevisionCache;
246
247 /**
248 * @var bool|string Recursive call protection.
249 * This variable should be treated as if it were private.
250 */
251 public $mInParse = false;
252
253 /** @var SectionProfiler */
254 protected $mProfiler;
255
256 /**
257 * @var LinkRenderer
258 */
259 protected $mLinkRenderer;
260
261 /**
262 * @param array $conf
263 */
264 public function __construct( $conf = [] ) {
265 $this->mConf = $conf;
266 $this->mUrlProtocols = wfUrlProtocols();
267 $this->mExtLinkBracketedRegex = '/\[(((?i)' . $this->mUrlProtocols . ')' .
268 self::EXT_LINK_ADDR .
269 self::EXT_LINK_URL_CLASS . '*)\p{Zs}*([^\]\\x00-\\x08\\x0a-\\x1F\\x{FFFD}]*?)\]/Su';
270 if ( isset( $conf['preprocessorClass'] ) ) {
271 $this->mPreprocessorClass = $conf['preprocessorClass'];
272 } elseif ( defined( 'HPHP_VERSION' ) ) {
273 # Preprocessor_Hash is much faster than Preprocessor_DOM under HipHop
274 $this->mPreprocessorClass = 'Preprocessor_Hash';
275 } elseif ( extension_loaded( 'domxml' ) ) {
276 # PECL extension that conflicts with the core DOM extension (T15770)
277 wfDebug( "Warning: you have the obsolete domxml extension for PHP. Please remove it!\n" );
278 $this->mPreprocessorClass = 'Preprocessor_Hash';
279 } elseif ( extension_loaded( 'dom' ) ) {
280 $this->mPreprocessorClass = 'Preprocessor_DOM';
281 } else {
282 $this->mPreprocessorClass = 'Preprocessor_Hash';
283 }
284 wfDebug( __CLASS__ . ": using preprocessor: {$this->mPreprocessorClass}\n" );
285 }
286
287 /**
288 * Reduce memory usage to reduce the impact of circular references
289 */
290 public function __destruct() {
291 if ( isset( $this->mLinkHolders ) ) {
292 unset( $this->mLinkHolders );
293 }
294 foreach ( $this as $name => $value ) {
295 unset( $this->$name );
296 }
297 }
298
299 /**
300 * Allow extensions to clean up when the parser is cloned
301 */
302 public function __clone() {
303 $this->mInParse = false;
304
305 // T58226: When you create a reference "to" an object field, that
306 // makes the object field itself be a reference too (until the other
307 // reference goes out of scope). When cloning, any field that's a
308 // reference is copied as a reference in the new object. Both of these
309 // are defined PHP5 behaviors, as inconvenient as it is for us when old
310 // hooks from PHP4 days are passing fields by reference.
311 foreach ( [ 'mStripState', 'mVarCache' ] as $k ) {
312 // Make a non-reference copy of the field, then rebind the field to
313 // reference the new copy.
314 $tmp = $this->$k;
315 $this->$k =& $tmp;
316 unset( $tmp );
317 }
318
319 Hooks::run( 'ParserCloned', [ $this ] );
320 }
321
322 /**
323 * Do various kinds of initialisation on the first call of the parser
324 */
325 public function firstCallInit() {
326 if ( !$this->mFirstCall ) {
327 return;
328 }
329 $this->mFirstCall = false;
330
331 CoreParserFunctions::register( $this );
332 CoreTagHooks::register( $this );
333 $this->initialiseVariables();
334
335 // Avoid PHP 7.1 warning from passing $this by reference
336 $parser = $this;
337 Hooks::run( 'ParserFirstCallInit', [ &$parser ] );
338 }
339
340 /**
341 * Clear Parser state
342 *
343 * @private
344 */
345 public function clearState() {
346 if ( $this->mFirstCall ) {
347 $this->firstCallInit();
348 }
349 $this->mOutput = new ParserOutput;
350 $this->mOptions->registerWatcher( [ $this->mOutput, 'recordOption' ] );
351 $this->mAutonumber = 0;
352 $this->mIncludeCount = [];
353 $this->mLinkHolders = new LinkHolderArray( $this );
354 $this->mLinkID = 0;
355 $this->mRevisionObject = $this->mRevisionTimestamp =
356 $this->mRevisionId = $this->mRevisionUser = $this->mRevisionSize = null;
357 $this->mVarCache = [];
358 $this->mUser = null;
359 $this->mLangLinkLanguages = [];
360 $this->currentRevisionCache = null;
361
362 $this->mStripState = new StripState;
363
364 # Clear these on every parse, T6549
365 $this->mTplRedirCache = $this->mTplDomCache = [];
366
367 $this->mShowToc = true;
368 $this->mForceTocPosition = false;
369 $this->mIncludeSizes = [
370 'post-expand' => 0,
371 'arg' => 0,
372 ];
373 $this->mPPNodeCount = 0;
374 $this->mGeneratedPPNodeCount = 0;
375 $this->mHighestExpansionDepth = 0;
376 $this->mDefaultSort = false;
377 $this->mHeadings = [];
378 $this->mDoubleUnderscores = [];
379 $this->mExpensiveFunctionCount = 0;
380
381 # Fix cloning
382 if ( isset( $this->mPreprocessor ) && $this->mPreprocessor->parser !== $this ) {
383 $this->mPreprocessor = null;
384 }
385
386 $this->mProfiler = new SectionProfiler();
387
388 // Avoid PHP 7.1 warning from passing $this by reference
389 $parser = $this;
390 Hooks::run( 'ParserClearState', [ &$parser ] );
391 }
392
393 /**
394 * Convert wikitext to HTML
395 * Do not call this function recursively.
396 *
397 * @param string $text Text we want to parse
398 * @param Title $title
399 * @param ParserOptions $options
400 * @param bool $linestart
401 * @param bool $clearState
402 * @param int $revid Number to pass in {{REVISIONID}}
403 * @return ParserOutput A ParserOutput
404 */
405 public function parse(
406 $text, Title $title, ParserOptions $options,
407 $linestart = true, $clearState = true, $revid = null
408 ) {
409 /**
410 * First pass--just handle <nowiki> sections, pass the rest off
411 * to internalParse() which does all the real work.
412 */
413
414 global $wgShowHostnames;
415
416 if ( $clearState ) {
417 // We use U+007F DELETE to construct strip markers, so we have to make
418 // sure that this character does not occur in the input text.
419 $text = strtr( $text, "\x7f", "?" );
420 $magicScopeVariable = $this->lock();
421 }
422 // Strip U+0000 NULL (T159174)
423 $text = str_replace( "\000", '', $text );
424
425 $this->startParse( $title, $options, self::OT_HTML, $clearState );
426
427 $this->currentRevisionCache = null;
428 $this->mInputSize = strlen( $text );
429 if ( $this->mOptions->getEnableLimitReport() ) {
430 $this->mOutput->resetParseStartTime();
431 }
432
433 $oldRevisionId = $this->mRevisionId;
434 $oldRevisionObject = $this->mRevisionObject;
435 $oldRevisionTimestamp = $this->mRevisionTimestamp;
436 $oldRevisionUser = $this->mRevisionUser;
437 $oldRevisionSize = $this->mRevisionSize;
438 if ( $revid !== null ) {
439 $this->mRevisionId = $revid;
440 $this->mRevisionObject = null;
441 $this->mRevisionTimestamp = null;
442 $this->mRevisionUser = null;
443 $this->mRevisionSize = null;
444 }
445
446 // Avoid PHP 7.1 warning from passing $this by reference
447 $parser = $this;
448 Hooks::run( 'ParserBeforeStrip', [ &$parser, &$text, &$this->mStripState ] );
449 # No more strip!
450 Hooks::run( 'ParserAfterStrip', [ &$parser, &$text, &$this->mStripState ] );
451 $text = $this->internalParse( $text );
452 Hooks::run( 'ParserAfterParse', [ &$parser, &$text, &$this->mStripState ] );
453
454 $text = $this->internalParseHalfParsed( $text, true, $linestart );
455
456 /**
457 * A converted title will be provided in the output object if title and
458 * content conversion are enabled, the article text does not contain
459 * a conversion-suppressing double-underscore tag, and no
460 * {{DISPLAYTITLE:...}} is present. DISPLAYTITLE takes precedence over
461 * automatic link conversion.
462 */
463 if ( !( $options->getDisableTitleConversion()
464 || isset( $this->mDoubleUnderscores['nocontentconvert'] )
465 || isset( $this->mDoubleUnderscores['notitleconvert'] )
466 || $this->mOutput->getDisplayTitle() !== false )
467 ) {
468 $convruletitle = $this->getConverterLanguage()->getConvRuleTitle();
469 if ( $convruletitle ) {
470 $this->mOutput->setTitleText( $convruletitle );
471 } else {
472 $titleText = $this->getConverterLanguage()->convertTitle( $title );
473 $this->mOutput->setTitleText( $titleText );
474 }
475 }
476
477 # Done parsing! Compute runtime adaptive expiry if set
478 $this->mOutput->finalizeAdaptiveCacheExpiry();
479
480 # Warn if too many heavyweight parser functions were used
481 if ( $this->mExpensiveFunctionCount > $this->mOptions->getExpensiveParserFunctionLimit() ) {
482 $this->limitationWarn( 'expensive-parserfunction',
483 $this->mExpensiveFunctionCount,
484 $this->mOptions->getExpensiveParserFunctionLimit()
485 );
486 }
487
488 # Information on include size limits, for the benefit of users who try to skirt them
489 if ( $this->mOptions->getEnableLimitReport() ) {
490 $max = $this->mOptions->getMaxIncludeSize();
491
492 $cpuTime = $this->mOutput->getTimeSinceStart( 'cpu' );
493 if ( $cpuTime !== null ) {
494 $this->mOutput->setLimitReportData( 'limitreport-cputime',
495 sprintf( "%.3f", $cpuTime )
496 );
497 }
498
499 $wallTime = $this->mOutput->getTimeSinceStart( 'wall' );
500 $this->mOutput->setLimitReportData( 'limitreport-walltime',
501 sprintf( "%.3f", $wallTime )
502 );
503
504 $this->mOutput->setLimitReportData( 'limitreport-ppvisitednodes',
505 [ $this->mPPNodeCount, $this->mOptions->getMaxPPNodeCount() ]
506 );
507 $this->mOutput->setLimitReportData( 'limitreport-ppgeneratednodes',
508 [ $this->mGeneratedPPNodeCount, $this->mOptions->getMaxGeneratedPPNodeCount() ]
509 );
510 $this->mOutput->setLimitReportData( 'limitreport-postexpandincludesize',
511 [ $this->mIncludeSizes['post-expand'], $max ]
512 );
513 $this->mOutput->setLimitReportData( 'limitreport-templateargumentsize',
514 [ $this->mIncludeSizes['arg'], $max ]
515 );
516 $this->mOutput->setLimitReportData( 'limitreport-expansiondepth',
517 [ $this->mHighestExpansionDepth, $this->mOptions->getMaxPPExpandDepth() ]
518 );
519 $this->mOutput->setLimitReportData( 'limitreport-expensivefunctioncount',
520 [ $this->mExpensiveFunctionCount, $this->mOptions->getExpensiveParserFunctionLimit() ]
521 );
522 Hooks::run( 'ParserLimitReportPrepare', [ $this, $this->mOutput ] );
523
524 $limitReport = "NewPP limit report\n";
525 if ( $wgShowHostnames ) {
526 $limitReport .= 'Parsed by ' . wfHostname() . "\n";
527 }
528 $limitReport .= 'Cached time: ' . $this->mOutput->getCacheTime() . "\n";
529 $limitReport .= 'Cache expiry: ' . $this->mOutput->getCacheExpiry() . "\n";
530 $limitReport .= 'Dynamic content: ' .
531 ( $this->mOutput->hasDynamicContent() ? 'true' : 'false' ) .
532 "\n";
533
534 foreach ( $this->mOutput->getLimitReportData() as $key => $value ) {
535 if ( Hooks::run( 'ParserLimitReportFormat',
536 [ $key, &$value, &$limitReport, false, false ]
537 ) ) {
538 $keyMsg = wfMessage( $key )->inLanguage( 'en' )->useDatabase( false );
539 $valueMsg = wfMessage( [ "$key-value-text", "$key-value" ] )
540 ->inLanguage( 'en' )->useDatabase( false );
541 if ( !$valueMsg->exists() ) {
542 $valueMsg = new RawMessage( '$1' );
543 }
544 if ( !$keyMsg->isDisabled() && !$valueMsg->isDisabled() ) {
545 $valueMsg->params( $value );
546 $limitReport .= "{$keyMsg->text()}: {$valueMsg->text()}\n";
547 }
548 }
549 }
550 // Since we're not really outputting HTML, decode the entities and
551 // then re-encode the things that need hiding inside HTML comments.
552 $limitReport = htmlspecialchars_decode( $limitReport );
553 // Run deprecated hook
554 Hooks::run( 'ParserLimitReport', [ $this, &$limitReport ], '1.22' );
555
556 // Sanitize for comment. Note '‐' in the replacement is U+2010,
557 // which looks much like the problematic '-'.
558 $limitReport = str_replace( [ '-', '&' ], [ '‐', '&amp;' ], $limitReport );
559 $text .= "\n<!-- \n$limitReport-->\n";
560
561 // Add on template profiling data in human/machine readable way
562 $dataByFunc = $this->mProfiler->getFunctionStats();
563 uasort( $dataByFunc, function ( $a, $b ) {
564 return $a['real'] < $b['real']; // descending order
565 } );
566 $profileReport = [];
567 foreach ( array_slice( $dataByFunc, 0, 10 ) as $item ) {
568 $profileReport[] = sprintf( "%6.2f%% %8.3f %6d %s",
569 $item['%real'], $item['real'], $item['calls'],
570 htmlspecialchars( $item['name'] ) );
571 }
572 $text .= "<!--\nTransclusion expansion time report (%,ms,calls,template)\n";
573 $text .= implode( "\n", $profileReport ) . "\n-->\n";
574
575 $this->mOutput->setLimitReportData( 'limitreport-timingprofile', $profileReport );
576
577 // Add other cache related metadata
578 if ( $wgShowHostnames ) {
579 $this->mOutput->setLimitReportData( 'cachereport-origin', wfHostname() );
580 }
581 $this->mOutput->setLimitReportData( 'cachereport-timestamp',
582 $this->mOutput->getCacheTime() );
583 $this->mOutput->setLimitReportData( 'cachereport-ttl',
584 $this->mOutput->getCacheExpiry() );
585 $this->mOutput->setLimitReportData( 'cachereport-transientcontent',
586 $this->mOutput->hasDynamicContent() );
587
588 if ( $this->mGeneratedPPNodeCount > $this->mOptions->getMaxGeneratedPPNodeCount() / 10 ) {
589 wfDebugLog( 'generated-pp-node-count', $this->mGeneratedPPNodeCount . ' ' .
590 $this->mTitle->getPrefixedDBkey() );
591 }
592 }
593
594 # Wrap non-interface parser output in a <div> so it can be targeted
595 # with CSS (T37247)
596 $class = $this->mOptions->getWrapOutputClass();
597 if ( $class !== false && !$this->mOptions->getInterfaceMessage() ) {
598 $text = Html::rawElement( 'div', [ 'class' => $class ], $text );
599 }
600
601 $this->mOutput->setText( $text );
602
603 $this->mRevisionId = $oldRevisionId;
604 $this->mRevisionObject = $oldRevisionObject;
605 $this->mRevisionTimestamp = $oldRevisionTimestamp;
606 $this->mRevisionUser = $oldRevisionUser;
607 $this->mRevisionSize = $oldRevisionSize;
608 $this->mInputSize = false;
609 $this->currentRevisionCache = null;
610
611 return $this->mOutput;
612 }
613
614 /**
615 * Half-parse wikitext to half-parsed HTML. This recursive parser entry point
616 * can be called from an extension tag hook.
617 *
618 * The output of this function IS NOT SAFE PARSED HTML; it is "half-parsed"
619 * instead, which means that lists and links have not been fully parsed yet,
620 * and strip markers are still present.
621 *
622 * Use recursiveTagParseFully() to fully parse wikitext to output-safe HTML.
623 *
624 * Use this function if you're a parser tag hook and you want to parse
625 * wikitext before or after applying additional transformations, and you
626 * intend to *return the result as hook output*, which will cause it to go
627 * through the rest of parsing process automatically.
628 *
629 * If $frame is not provided, then template variables (e.g., {{{1}}}) within
630 * $text are not expanded
631 *
632 * @param string $text Text extension wants to have parsed
633 * @param bool|PPFrame $frame The frame to use for expanding any template variables
634 * @return string UNSAFE half-parsed HTML
635 */
636 public function recursiveTagParse( $text, $frame = false ) {
637 // Avoid PHP 7.1 warning from passing $this by reference
638 $parser = $this;
639 Hooks::run( 'ParserBeforeStrip', [ &$parser, &$text, &$this->mStripState ] );
640 Hooks::run( 'ParserAfterStrip', [ &$parser, &$text, &$this->mStripState ] );
641 $text = $this->internalParse( $text, false, $frame );
642 return $text;
643 }
644
645 /**
646 * Fully parse wikitext to fully parsed HTML. This recursive parser entry
647 * point can be called from an extension tag hook.
648 *
649 * The output of this function is fully-parsed HTML that is safe for output.
650 * If you're a parser tag hook, you might want to use recursiveTagParse()
651 * instead.
652 *
653 * If $frame is not provided, then template variables (e.g., {{{1}}}) within
654 * $text are not expanded
655 *
656 * @since 1.25
657 *
658 * @param string $text Text extension wants to have parsed
659 * @param bool|PPFrame $frame The frame to use for expanding any template variables
660 * @return string Fully parsed HTML
661 */
662 public function recursiveTagParseFully( $text, $frame = false ) {
663 $text = $this->recursiveTagParse( $text, $frame );
664 $text = $this->internalParseHalfParsed( $text, false );
665 return $text;
666 }
667
668 /**
669 * Expand templates and variables in the text, producing valid, static wikitext.
670 * Also removes comments.
671 * Do not call this function recursively.
672 * @param string $text
673 * @param Title $title
674 * @param ParserOptions $options
675 * @param int|null $revid
676 * @param bool|PPFrame $frame
677 * @return mixed|string
678 */
679 public function preprocess( $text, Title $title = null,
680 ParserOptions $options, $revid = null, $frame = false
681 ) {
682 $magicScopeVariable = $this->lock();
683 $this->startParse( $title, $options, self::OT_PREPROCESS, true );
684 if ( $revid !== null ) {
685 $this->mRevisionId = $revid;
686 }
687 // Avoid PHP 7.1 warning from passing $this by reference
688 $parser = $this;
689 Hooks::run( 'ParserBeforeStrip', [ &$parser, &$text, &$this->mStripState ] );
690 Hooks::run( 'ParserAfterStrip', [ &$parser, &$text, &$this->mStripState ] );
691 $text = $this->replaceVariables( $text, $frame );
692 $text = $this->mStripState->unstripBoth( $text );
693 return $text;
694 }
695
696 /**
697 * Recursive parser entry point that can be called from an extension tag
698 * hook.
699 *
700 * @param string $text Text to be expanded
701 * @param bool|PPFrame $frame The frame to use for expanding any template variables
702 * @return string
703 * @since 1.19
704 */
705 public function recursivePreprocess( $text, $frame = false ) {
706 $text = $this->replaceVariables( $text, $frame );
707 $text = $this->mStripState->unstripBoth( $text );
708 return $text;
709 }
710
711 /**
712 * Process the wikitext for the "?preload=" feature. (T7210)
713 *
714 * "<noinclude>", "<includeonly>" etc. are parsed as for template
715 * transclusion, comments, templates, arguments, tags hooks and parser
716 * functions are untouched.
717 *
718 * @param string $text
719 * @param Title $title
720 * @param ParserOptions $options
721 * @param array $params
722 * @return string
723 */
724 public function getPreloadText( $text, Title $title, ParserOptions $options, $params = [] ) {
725 $msg = new RawMessage( $text );
726 $text = $msg->params( $params )->plain();
727
728 # Parser (re)initialisation
729 $magicScopeVariable = $this->lock();
730 $this->startParse( $title, $options, self::OT_PLAIN, true );
731
732 $flags = PPFrame::NO_ARGS | PPFrame::NO_TEMPLATES;
733 $dom = $this->preprocessToDom( $text, self::PTD_FOR_INCLUSION );
734 $text = $this->getPreprocessor()->newFrame()->expand( $dom, $flags );
735 $text = $this->mStripState->unstripBoth( $text );
736 return $text;
737 }
738
739 /**
740 * Get a random string
741 *
742 * @return string
743 * @deprecated since 1.26; use wfRandomString() instead.
744 */
745 public static function getRandomString() {
746 wfDeprecated( __METHOD__, '1.26' );
747 return wfRandomString( 16 );
748 }
749
750 /**
751 * Set the current user.
752 * Should only be used when doing pre-save transform.
753 *
754 * @param User|null $user User object or null (to reset)
755 */
756 public function setUser( $user ) {
757 $this->mUser = $user;
758 }
759
760 /**
761 * Accessor for mUniqPrefix.
762 *
763 * @return string
764 * @deprecated since 1.26; use Parser::MARKER_PREFIX instead.
765 */
766 public function uniqPrefix() {
767 wfDeprecated( __METHOD__, '1.26' );
768 return self::MARKER_PREFIX;
769 }
770
771 /**
772 * Set the context title
773 *
774 * @param Title $t
775 */
776 public function setTitle( $t ) {
777 if ( !$t ) {
778 $t = Title::newFromText( 'NO TITLE' );
779 }
780
781 if ( $t->hasFragment() ) {
782 # Strip the fragment to avoid various odd effects
783 $this->mTitle = $t->createFragmentTarget( '' );
784 } else {
785 $this->mTitle = $t;
786 }
787 }
788
789 /**
790 * Accessor for the Title object
791 *
792 * @return Title
793 */
794 public function getTitle() {
795 return $this->mTitle;
796 }
797
798 /**
799 * Accessor/mutator for the Title object
800 *
801 * @param Title $x Title object or null to just get the current one
802 * @return Title
803 */
804 public function Title( $x = null ) {
805 return wfSetVar( $this->mTitle, $x );
806 }
807
808 /**
809 * Set the output type
810 *
811 * @param int $ot New value
812 */
813 public function setOutputType( $ot ) {
814 $this->mOutputType = $ot;
815 # Shortcut alias
816 $this->ot = [
817 'html' => $ot == self::OT_HTML,
818 'wiki' => $ot == self::OT_WIKI,
819 'pre' => $ot == self::OT_PREPROCESS,
820 'plain' => $ot == self::OT_PLAIN,
821 ];
822 }
823
824 /**
825 * Accessor/mutator for the output type
826 *
827 * @param int|null $x New value or null to just get the current one
828 * @return int
829 */
830 public function OutputType( $x = null ) {
831 return wfSetVar( $this->mOutputType, $x );
832 }
833
834 /**
835 * Get the ParserOutput object
836 *
837 * @return ParserOutput
838 */
839 public function getOutput() {
840 return $this->mOutput;
841 }
842
843 /**
844 * Get the ParserOptions object
845 *
846 * @return ParserOptions
847 */
848 public function getOptions() {
849 return $this->mOptions;
850 }
851
852 /**
853 * Accessor/mutator for the ParserOptions object
854 *
855 * @param ParserOptions $x New value or null to just get the current one
856 * @return ParserOptions Current ParserOptions object
857 */
858 public function Options( $x = null ) {
859 return wfSetVar( $this->mOptions, $x );
860 }
861
862 /**
863 * @return int
864 */
865 public function nextLinkID() {
866 return $this->mLinkID++;
867 }
868
869 /**
870 * @param int $id
871 */
872 public function setLinkID( $id ) {
873 $this->mLinkID = $id;
874 }
875
876 /**
877 * Get a language object for use in parser functions such as {{FORMATNUM:}}
878 * @return Language
879 */
880 public function getFunctionLang() {
881 return $this->getTargetLanguage();
882 }
883
884 /**
885 * Get the target language for the content being parsed. This is usually the
886 * language that the content is in.
887 *
888 * @since 1.19
889 *
890 * @throws MWException
891 * @return Language
892 */
893 public function getTargetLanguage() {
894 $target = $this->mOptions->getTargetLanguage();
895
896 if ( $target !== null ) {
897 return $target;
898 } elseif ( $this->mOptions->getInterfaceMessage() ) {
899 return $this->mOptions->getUserLangObj();
900 } elseif ( is_null( $this->mTitle ) ) {
901 throw new MWException( __METHOD__ . ': $this->mTitle is null' );
902 }
903
904 return $this->mTitle->getPageLanguage();
905 }
906
907 /**
908 * Get the language object for language conversion
909 * @return Language|null
910 */
911 public function getConverterLanguage() {
912 return $this->getTargetLanguage();
913 }
914
915 /**
916 * Get a User object either from $this->mUser, if set, or from the
917 * ParserOptions object otherwise
918 *
919 * @return User
920 */
921 public function getUser() {
922 if ( !is_null( $this->mUser ) ) {
923 return $this->mUser;
924 }
925 return $this->mOptions->getUser();
926 }
927
928 /**
929 * Get a preprocessor object
930 *
931 * @return Preprocessor
932 */
933 public function getPreprocessor() {
934 if ( !isset( $this->mPreprocessor ) ) {
935 $class = $this->mPreprocessorClass;
936 $this->mPreprocessor = new $class( $this );
937 }
938 return $this->mPreprocessor;
939 }
940
941 /**
942 * Get a LinkRenderer instance to make links with
943 *
944 * @since 1.28
945 * @return LinkRenderer
946 */
947 public function getLinkRenderer() {
948 if ( !$this->mLinkRenderer ) {
949 $this->mLinkRenderer = MediaWikiServices::getInstance()
950 ->getLinkRendererFactory()->create();
951 $this->mLinkRenderer->setStubThreshold(
952 $this->getOptions()->getStubThreshold()
953 );
954 }
955
956 return $this->mLinkRenderer;
957 }
958
959 /**
960 * Replaces all occurrences of HTML-style comments and the given tags
961 * in the text with a random marker and returns the next text. The output
962 * parameter $matches will be an associative array filled with data in
963 * the form:
964 *
965 * @code
966 * 'UNIQ-xxxxx' => [
967 * 'element',
968 * 'tag content',
969 * [ 'param' => 'x' ],
970 * '<element param="x">tag content</element>' ]
971 * @endcode
972 *
973 * @param array $elements List of element names. Comments are always extracted.
974 * @param string $text Source text string.
975 * @param array $matches Out parameter, Array: extracted tags
976 * @param string|null $uniq_prefix
977 * @return string Stripped text
978 * @since 1.26 The uniq_prefix argument is deprecated.
979 */
980 public static function extractTagsAndParams( $elements, $text, &$matches, $uniq_prefix = null ) {
981 if ( $uniq_prefix !== null ) {
982 wfDeprecated( __METHOD__ . ' called with $prefix argument', '1.26' );
983 }
984 static $n = 1;
985 $stripped = '';
986 $matches = [];
987
988 $taglist = implode( '|', $elements );
989 $start = "/<($taglist)(\\s+[^>]*?|\\s*?)(\/?" . ">)|<(!--)/i";
990
991 while ( $text != '' ) {
992 $p = preg_split( $start, $text, 2, PREG_SPLIT_DELIM_CAPTURE );
993 $stripped .= $p[0];
994 if ( count( $p ) < 5 ) {
995 break;
996 }
997 if ( count( $p ) > 5 ) {
998 # comment
999 $element = $p[4];
1000 $attributes = '';
1001 $close = '';
1002 $inside = $p[5];
1003 } else {
1004 # tag
1005 $element = $p[1];
1006 $attributes = $p[2];
1007 $close = $p[3];
1008 $inside = $p[4];
1009 }
1010
1011 $marker = self::MARKER_PREFIX . "-$element-" . sprintf( '%08X', $n++ ) . self::MARKER_SUFFIX;
1012 $stripped .= $marker;
1013
1014 if ( $close === '/>' ) {
1015 # Empty element tag, <tag />
1016 $content = null;
1017 $text = $inside;
1018 $tail = null;
1019 } else {
1020 if ( $element === '!--' ) {
1021 $end = '/(-->)/';
1022 } else {
1023 $end = "/(<\\/$element\\s*>)/i";
1024 }
1025 $q = preg_split( $end, $inside, 2, PREG_SPLIT_DELIM_CAPTURE );
1026 $content = $q[0];
1027 if ( count( $q ) < 3 ) {
1028 # No end tag -- let it run out to the end of the text.
1029 $tail = '';
1030 $text = '';
1031 } else {
1032 $tail = $q[1];
1033 $text = $q[2];
1034 }
1035 }
1036
1037 $matches[$marker] = [ $element,
1038 $content,
1039 Sanitizer::decodeTagAttributes( $attributes ),
1040 "<$element$attributes$close$content$tail" ];
1041 }
1042 return $stripped;
1043 }
1044
1045 /**
1046 * Get a list of strippable XML-like elements
1047 *
1048 * @return array
1049 */
1050 public function getStripList() {
1051 return $this->mStripList;
1052 }
1053
1054 /**
1055 * Add an item to the strip state
1056 * Returns the unique tag which must be inserted into the stripped text
1057 * The tag will be replaced with the original text in unstrip()
1058 *
1059 * @param string $text
1060 *
1061 * @return string
1062 */
1063 public function insertStripItem( $text ) {
1064 $marker = self::MARKER_PREFIX . "-item-{$this->mMarkerIndex}-" . self::MARKER_SUFFIX;
1065 $this->mMarkerIndex++;
1066 $this->mStripState->addGeneral( $marker, $text );
1067 return $marker;
1068 }
1069
1070 /**
1071 * parse the wiki syntax used to render tables
1072 *
1073 * @private
1074 * @param string $text
1075 * @return string
1076 */
1077 public function doTableStuff( $text ) {
1078 $lines = StringUtils::explode( "\n", $text );
1079 $out = '';
1080 $td_history = []; # Is currently a td tag open?
1081 $last_tag_history = []; # Save history of last lag activated (td, th or caption)
1082 $tr_history = []; # Is currently a tr tag open?
1083 $tr_attributes = []; # history of tr attributes
1084 $has_opened_tr = []; # Did this table open a <tr> element?
1085 $indent_level = 0; # indent level of the table
1086
1087 foreach ( $lines as $outLine ) {
1088 $line = trim( $outLine );
1089
1090 if ( $line === '' ) { # empty line, go to next line
1091 $out .= $outLine . "\n";
1092 continue;
1093 }
1094
1095 $first_character = $line[0];
1096 $first_two = substr( $line, 0, 2 );
1097 $matches = [];
1098
1099 if ( preg_match( '/^(:*)\s*\{\|(.*)$/', $line, $matches ) ) {
1100 # First check if we are starting a new table
1101 $indent_level = strlen( $matches[1] );
1102
1103 $attributes = $this->mStripState->unstripBoth( $matches[2] );
1104 $attributes = Sanitizer::fixTagAttributes( $attributes, 'table' );
1105
1106 $outLine = str_repeat( '<dl><dd>', $indent_level ) . "<table{$attributes}>";
1107 array_push( $td_history, false );
1108 array_push( $last_tag_history, '' );
1109 array_push( $tr_history, false );
1110 array_push( $tr_attributes, '' );
1111 array_push( $has_opened_tr, false );
1112 } elseif ( count( $td_history ) == 0 ) {
1113 # Don't do any of the following
1114 $out .= $outLine . "\n";
1115 continue;
1116 } elseif ( $first_two === '|}' ) {
1117 # We are ending a table
1118 $line = '</table>' . substr( $line, 2 );
1119 $last_tag = array_pop( $last_tag_history );
1120
1121 if ( !array_pop( $has_opened_tr ) ) {
1122 $line = "<tr><td></td></tr>{$line}";
1123 }
1124
1125 if ( array_pop( $tr_history ) ) {
1126 $line = "</tr>{$line}";
1127 }
1128
1129 if ( array_pop( $td_history ) ) {
1130 $line = "</{$last_tag}>{$line}";
1131 }
1132 array_pop( $tr_attributes );
1133 $outLine = $line . str_repeat( '</dd></dl>', $indent_level );
1134 } elseif ( $first_two === '|-' ) {
1135 # Now we have a table row
1136 $line = preg_replace( '#^\|-+#', '', $line );
1137
1138 # Whats after the tag is now only attributes
1139 $attributes = $this->mStripState->unstripBoth( $line );
1140 $attributes = Sanitizer::fixTagAttributes( $attributes, 'tr' );
1141 array_pop( $tr_attributes );
1142 array_push( $tr_attributes, $attributes );
1143
1144 $line = '';
1145 $last_tag = array_pop( $last_tag_history );
1146 array_pop( $has_opened_tr );
1147 array_push( $has_opened_tr, true );
1148
1149 if ( array_pop( $tr_history ) ) {
1150 $line = '</tr>';
1151 }
1152
1153 if ( array_pop( $td_history ) ) {
1154 $line = "</{$last_tag}>{$line}";
1155 }
1156
1157 $outLine = $line;
1158 array_push( $tr_history, false );
1159 array_push( $td_history, false );
1160 array_push( $last_tag_history, '' );
1161 } elseif ( $first_character === '|'
1162 || $first_character === '!'
1163 || $first_two === '|+'
1164 ) {
1165 # This might be cell elements, td, th or captions
1166 if ( $first_two === '|+' ) {
1167 $first_character = '+';
1168 $line = substr( $line, 2 );
1169 } else {
1170 $line = substr( $line, 1 );
1171 }
1172
1173 // Implies both are valid for table headings.
1174 if ( $first_character === '!' ) {
1175 $line = StringUtils::replaceMarkup( '!!', '||', $line );
1176 }
1177
1178 # Split up multiple cells on the same line.
1179 # FIXME : This can result in improper nesting of tags processed
1180 # by earlier parser steps.
1181 $cells = explode( '||', $line );
1182
1183 $outLine = '';
1184
1185 # Loop through each table cell
1186 foreach ( $cells as $cell ) {
1187 $previous = '';
1188 if ( $first_character !== '+' ) {
1189 $tr_after = array_pop( $tr_attributes );
1190 if ( !array_pop( $tr_history ) ) {
1191 $previous = "<tr{$tr_after}>\n";
1192 }
1193 array_push( $tr_history, true );
1194 array_push( $tr_attributes, '' );
1195 array_pop( $has_opened_tr );
1196 array_push( $has_opened_tr, true );
1197 }
1198
1199 $last_tag = array_pop( $last_tag_history );
1200
1201 if ( array_pop( $td_history ) ) {
1202 $previous = "</{$last_tag}>\n{$previous}";
1203 }
1204
1205 if ( $first_character === '|' ) {
1206 $last_tag = 'td';
1207 } elseif ( $first_character === '!' ) {
1208 $last_tag = 'th';
1209 } elseif ( $first_character === '+' ) {
1210 $last_tag = 'caption';
1211 } else {
1212 $last_tag = '';
1213 }
1214
1215 array_push( $last_tag_history, $last_tag );
1216
1217 # A cell could contain both parameters and data
1218 $cell_data = explode( '|', $cell, 2 );
1219
1220 # T2553: Note that a '|' inside an invalid link should not
1221 # be mistaken as delimiting cell parameters
1222 # Bug T153140: Neither should language converter markup.
1223 if ( preg_match( '/\[\[|-\{/', $cell_data[0] ) === 1 ) {
1224 $cell = "{$previous}<{$last_tag}>{$cell}";
1225 } elseif ( count( $cell_data ) == 1 ) {
1226 $cell = "{$previous}<{$last_tag}>{$cell_data[0]}";
1227 } else {
1228 $attributes = $this->mStripState->unstripBoth( $cell_data[0] );
1229 $attributes = Sanitizer::fixTagAttributes( $attributes, $last_tag );
1230 $cell = "{$previous}<{$last_tag}{$attributes}>{$cell_data[1]}";
1231 }
1232
1233 $outLine .= $cell;
1234 array_push( $td_history, true );
1235 }
1236 }
1237 $out .= $outLine . "\n";
1238 }
1239
1240 # Closing open td, tr && table
1241 while ( count( $td_history ) > 0 ) {
1242 if ( array_pop( $td_history ) ) {
1243 $out .= "</td>\n";
1244 }
1245 if ( array_pop( $tr_history ) ) {
1246 $out .= "</tr>\n";
1247 }
1248 if ( !array_pop( $has_opened_tr ) ) {
1249 $out .= "<tr><td></td></tr>\n";
1250 }
1251
1252 $out .= "</table>\n";
1253 }
1254
1255 # Remove trailing line-ending (b/c)
1256 if ( substr( $out, -1 ) === "\n" ) {
1257 $out = substr( $out, 0, -1 );
1258 }
1259
1260 # special case: don't return empty table
1261 if ( $out === "<table>\n<tr><td></td></tr>\n</table>" ) {
1262 $out = '';
1263 }
1264
1265 return $out;
1266 }
1267
1268 /**
1269 * Helper function for parse() that transforms wiki markup into half-parsed
1270 * HTML. Only called for $mOutputType == self::OT_HTML.
1271 *
1272 * @private
1273 *
1274 * @param string $text The text to parse
1275 * @param bool $isMain Whether this is being called from the main parse() function
1276 * @param PPFrame|bool $frame A pre-processor frame
1277 *
1278 * @return string
1279 */
1280 public function internalParse( $text, $isMain = true, $frame = false ) {
1281 $origText = $text;
1282
1283 // Avoid PHP 7.1 warning from passing $this by reference
1284 $parser = $this;
1285
1286 # Hook to suspend the parser in this state
1287 if ( !Hooks::run( 'ParserBeforeInternalParse', [ &$parser, &$text, &$this->mStripState ] ) ) {
1288 return $text;
1289 }
1290
1291 # if $frame is provided, then use $frame for replacing any variables
1292 if ( $frame ) {
1293 # use frame depth to infer how include/noinclude tags should be handled
1294 # depth=0 means this is the top-level document; otherwise it's an included document
1295 if ( !$frame->depth ) {
1296 $flag = 0;
1297 } else {
1298 $flag = self::PTD_FOR_INCLUSION;
1299 }
1300 $dom = $this->preprocessToDom( $text, $flag );
1301 $text = $frame->expand( $dom );
1302 } else {
1303 # if $frame is not provided, then use old-style replaceVariables
1304 $text = $this->replaceVariables( $text );
1305 }
1306
1307 Hooks::run( 'InternalParseBeforeSanitize', [ &$parser, &$text, &$this->mStripState ] );
1308 $text = Sanitizer::removeHTMLtags(
1309 $text,
1310 [ $this, 'attributeStripCallback' ],
1311 false,
1312 array_keys( $this->mTransparentTagHooks ),
1313 [],
1314 [ $this, 'addTrackingCategory' ]
1315 );
1316 Hooks::run( 'InternalParseBeforeLinks', [ &$parser, &$text, &$this->mStripState ] );
1317
1318 # Tables need to come after variable replacement for things to work
1319 # properly; putting them before other transformations should keep
1320 # exciting things like link expansions from showing up in surprising
1321 # places.
1322 $text = $this->doTableStuff( $text );
1323
1324 $text = preg_replace( '/(^|\n)-----*/', '\\1<hr />', $text );
1325
1326 $text = $this->doDoubleUnderscore( $text );
1327
1328 $text = $this->doHeadings( $text );
1329 $text = $this->replaceInternalLinks( $text );
1330 $text = $this->doAllQuotes( $text );
1331 $text = $this->replaceExternalLinks( $text );
1332
1333 # replaceInternalLinks may sometimes leave behind
1334 # absolute URLs, which have to be masked to hide them from replaceExternalLinks
1335 $text = str_replace( self::MARKER_PREFIX . 'NOPARSE', '', $text );
1336
1337 $text = $this->doMagicLinks( $text );
1338 $text = $this->formatHeadings( $text, $origText, $isMain );
1339
1340 return $text;
1341 }
1342
1343 /**
1344 * Helper function for parse() that transforms half-parsed HTML into fully
1345 * parsed HTML.
1346 *
1347 * @param string $text
1348 * @param bool $isMain
1349 * @param bool $linestart
1350 * @return string
1351 */
1352 private function internalParseHalfParsed( $text, $isMain = true, $linestart = true ) {
1353 $text = $this->mStripState->unstripGeneral( $text );
1354
1355 // Avoid PHP 7.1 warning from passing $this by reference
1356 $parser = $this;
1357
1358 if ( $isMain ) {
1359 Hooks::run( 'ParserAfterUnstrip', [ &$parser, &$text ] );
1360 }
1361
1362 # Clean up special characters, only run once, next-to-last before doBlockLevels
1363 $fixtags = [
1364 # French spaces, last one Guillemet-left
1365 # only if there is something before the space
1366 '/(.) (?=\\?|:|;|!|%|\\302\\273)/' => '\\1&#160;',
1367 # french spaces, Guillemet-right
1368 '/(\\302\\253) /' => '\\1&#160;',
1369 '/&#160;(!\s*important)/' => ' \\1', # Beware of CSS magic word !important, T13874.
1370 ];
1371 $text = preg_replace( array_keys( $fixtags ), array_values( $fixtags ), $text );
1372
1373 $text = $this->doBlockLevels( $text, $linestart );
1374
1375 $this->replaceLinkHolders( $text );
1376
1377 /**
1378 * The input doesn't get language converted if
1379 * a) It's disabled
1380 * b) Content isn't converted
1381 * c) It's a conversion table
1382 * d) it is an interface message (which is in the user language)
1383 */
1384 if ( !( $this->mOptions->getDisableContentConversion()
1385 || isset( $this->mDoubleUnderscores['nocontentconvert'] ) )
1386 ) {
1387 if ( !$this->mOptions->getInterfaceMessage() ) {
1388 # The position of the convert() call should not be changed. it
1389 # assumes that the links are all replaced and the only thing left
1390 # is the <nowiki> mark.
1391 $text = $this->getConverterLanguage()->convert( $text );
1392 }
1393 }
1394
1395 $text = $this->mStripState->unstripNoWiki( $text );
1396
1397 if ( $isMain ) {
1398 Hooks::run( 'ParserBeforeTidy', [ &$parser, &$text ] );
1399 }
1400
1401 $text = $this->replaceTransparentTags( $text );
1402 $text = $this->mStripState->unstripGeneral( $text );
1403
1404 $text = Sanitizer::normalizeCharReferences( $text );
1405
1406 if ( MWTidy::isEnabled() ) {
1407 if ( $this->mOptions->getTidy() ) {
1408 $text = MWTidy::tidy( $text );
1409 }
1410 } else {
1411 # attempt to sanitize at least some nesting problems
1412 # (T4702 and quite a few others)
1413 $tidyregs = [
1414 # ''Something [http://www.cool.com cool''] -->
1415 # <i>Something</i><a href="http://www.cool.com"..><i>cool></i></a>
1416 '/(<([bi])>)(<([bi])>)?([^<]*)(<\/?a[^<]*>)([^<]*)(<\/\\4>)?(<\/\\2>)/' =>
1417 '\\1\\3\\5\\8\\9\\6\\1\\3\\7\\8\\9',
1418 # fix up an anchor inside another anchor, only
1419 # at least for a single single nested link (T5695)
1420 '/(<a[^>]+>)([^<]*)(<a[^>]+>[^<]*)<\/a>(.*)<\/a>/' =>
1421 '\\1\\2</a>\\3</a>\\1\\4</a>',
1422 # fix div inside inline elements- doBlockLevels won't wrap a line which
1423 # contains a div, so fix it up here; replace
1424 # div with escaped text
1425 '/(<([aib]) [^>]+>)([^<]*)(<div([^>]*)>)(.*)(<\/div>)([^<]*)(<\/\\2>)/' =>
1426 '\\1\\3&lt;div\\5&gt;\\6&lt;/div&gt;\\8\\9',
1427 # remove empty italic or bold tag pairs, some
1428 # introduced by rules above
1429 '/<([bi])><\/\\1>/' => '',
1430 ];
1431
1432 $text = preg_replace(
1433 array_keys( $tidyregs ),
1434 array_values( $tidyregs ),
1435 $text );
1436 }
1437
1438 if ( $isMain ) {
1439 Hooks::run( 'ParserAfterTidy', [ &$parser, &$text ] );
1440 }
1441
1442 return $text;
1443 }
1444
1445 /**
1446 * Replace special strings like "ISBN xxx" and "RFC xxx" with
1447 * magic external links.
1448 *
1449 * DML
1450 * @private
1451 *
1452 * @param string $text
1453 *
1454 * @return string
1455 */
1456 public function doMagicLinks( $text ) {
1457 $prots = wfUrlProtocolsWithoutProtRel();
1458 $urlChar = self::EXT_LINK_URL_CLASS;
1459 $addr = self::EXT_LINK_ADDR;
1460 $space = self::SPACE_NOT_NL; # non-newline space
1461 $spdash = "(?:-|$space)"; # a dash or a non-newline space
1462 $spaces = "$space++"; # possessive match of 1 or more spaces
1463 $text = preg_replace_callback(
1464 '!(?: # Start cases
1465 (<a[ \t\r\n>].*?</a>) | # m[1]: Skip link text
1466 (<.*?>) | # m[2]: Skip stuff inside HTML elements' . "
1467 (\b # m[3]: Free external links
1468 (?i:$prots)
1469 ($addr$urlChar*) # m[4]: Post-protocol path
1470 ) |
1471 \b(?:RFC|PMID) $spaces # m[5]: RFC or PMID, capture number
1472 ([0-9]+)\b |
1473 \bISBN $spaces ( # m[6]: ISBN, capture number
1474 (?: 97[89] $spdash? )? # optional 13-digit ISBN prefix
1475 (?: [0-9] $spdash? ){9} # 9 digits with opt. delimiters
1476 [0-9Xx] # check digit
1477 )\b
1478 )!xu", [ $this, 'magicLinkCallback' ], $text );
1479 return $text;
1480 }
1481
1482 /**
1483 * @throws MWException
1484 * @param array $m
1485 * @return HTML|string
1486 */
1487 public function magicLinkCallback( $m ) {
1488 if ( isset( $m[1] ) && $m[1] !== '' ) {
1489 # Skip anchor
1490 return $m[0];
1491 } elseif ( isset( $m[2] ) && $m[2] !== '' ) {
1492 # Skip HTML element
1493 return $m[0];
1494 } elseif ( isset( $m[3] ) && $m[3] !== '' ) {
1495 # Free external link
1496 return $this->makeFreeExternalLink( $m[0], strlen( $m[4] ) );
1497 } elseif ( isset( $m[5] ) && $m[5] !== '' ) {
1498 # RFC or PMID
1499 if ( substr( $m[0], 0, 3 ) === 'RFC' ) {
1500 if ( !$this->mOptions->getMagicRFCLinks() ) {
1501 return $m[0];
1502 }
1503 $keyword = 'RFC';
1504 $urlmsg = 'rfcurl';
1505 $cssClass = 'mw-magiclink-rfc';
1506 $trackingCat = 'magiclink-tracking-rfc';
1507 $id = $m[5];
1508 } elseif ( substr( $m[0], 0, 4 ) === 'PMID' ) {
1509 if ( !$this->mOptions->getMagicPMIDLinks() ) {
1510 return $m[0];
1511 }
1512 $keyword = 'PMID';
1513 $urlmsg = 'pubmedurl';
1514 $cssClass = 'mw-magiclink-pmid';
1515 $trackingCat = 'magiclink-tracking-pmid';
1516 $id = $m[5];
1517 } else {
1518 throw new MWException( __METHOD__ . ': unrecognised match type "' .
1519 substr( $m[0], 0, 20 ) . '"' );
1520 }
1521 $url = wfMessage( $urlmsg, $id )->inContentLanguage()->text();
1522 $this->addTrackingCategory( $trackingCat );
1523 return Linker::makeExternalLink( $url, "{$keyword} {$id}", true, $cssClass, [], $this->mTitle );
1524 } elseif ( isset( $m[6] ) && $m[6] !== ''
1525 && $this->mOptions->getMagicISBNLinks()
1526 ) {
1527 # ISBN
1528 $isbn = $m[6];
1529 $space = self::SPACE_NOT_NL; # non-newline space
1530 $isbn = preg_replace( "/$space/", ' ', $isbn );
1531 $num = strtr( $isbn, [
1532 '-' => '',
1533 ' ' => '',
1534 'x' => 'X',
1535 ] );
1536 $this->addTrackingCategory( 'magiclink-tracking-isbn' );
1537 return $this->getLinkRenderer()->makeKnownLink(
1538 SpecialPage::getTitleFor( 'Booksources', $num ),
1539 "ISBN $isbn",
1540 [
1541 'class' => 'internal mw-magiclink-isbn',
1542 'title' => false // suppress title attribute
1543 ]
1544 );
1545 } else {
1546 return $m[0];
1547 }
1548 }
1549
1550 /**
1551 * Make a free external link, given a user-supplied URL
1552 *
1553 * @param string $url
1554 * @param int $numPostProto
1555 * The number of characters after the protocol.
1556 * @return string HTML
1557 * @private
1558 */
1559 public function makeFreeExternalLink( $url, $numPostProto ) {
1560 $trail = '';
1561
1562 # The characters '<' and '>' (which were escaped by
1563 # removeHTMLtags()) should not be included in
1564 # URLs, per RFC 2396.
1565 # Make &nbsp; terminate a URL as well (bug T84937)
1566 $m2 = [];
1567 if ( preg_match(
1568 '/&(lt|gt|nbsp|#x0*(3[CcEe]|[Aa]0)|#0*(60|62|160));/',
1569 $url,
1570 $m2,
1571 PREG_OFFSET_CAPTURE
1572 ) ) {
1573 $trail = substr( $url, $m2[0][1] ) . $trail;
1574 $url = substr( $url, 0, $m2[0][1] );
1575 }
1576
1577 # Move trailing punctuation to $trail
1578 $sep = ',;\.:!?';
1579 # If there is no left bracket, then consider right brackets fair game too
1580 if ( strpos( $url, '(' ) === false ) {
1581 $sep .= ')';
1582 }
1583
1584 $urlRev = strrev( $url );
1585 $numSepChars = strspn( $urlRev, $sep );
1586 # Don't break a trailing HTML entity by moving the ; into $trail
1587 # This is in hot code, so use substr_compare to avoid having to
1588 # create a new string object for the comparison
1589 if ( $numSepChars && substr_compare( $url, ";", -$numSepChars, 1 ) === 0 ) {
1590 # more optimization: instead of running preg_match with a $
1591 # anchor, which can be slow, do the match on the reversed
1592 # string starting at the desired offset.
1593 # un-reversed regexp is: /&([a-z]+|#x[\da-f]+|#\d+)$/i
1594 if ( preg_match( '/\G([a-z]+|[\da-f]+x#|\d+#)&/i', $urlRev, $m2, 0, $numSepChars ) ) {
1595 $numSepChars--;
1596 }
1597 }
1598 if ( $numSepChars ) {
1599 $trail = substr( $url, -$numSepChars ) . $trail;
1600 $url = substr( $url, 0, -$numSepChars );
1601 }
1602
1603 # Verify that we still have a real URL after trail removal, and
1604 # not just lone protocol
1605 if ( strlen( $trail ) >= $numPostProto ) {
1606 return $url . $trail;
1607 }
1608
1609 $url = Sanitizer::cleanUrl( $url );
1610
1611 # Is this an external image?
1612 $text = $this->maybeMakeExternalImage( $url );
1613 if ( $text === false ) {
1614 # Not an image, make a link
1615 $text = Linker::makeExternalLink( $url,
1616 $this->getConverterLanguage()->markNoConversion( $url, true ),
1617 true, 'free',
1618 $this->getExternalLinkAttribs( $url ), $this->mTitle );
1619 # Register it in the output object...
1620 $this->mOutput->addExternalLink( $url );
1621 }
1622 return $text . $trail;
1623 }
1624
1625 /**
1626 * Parse headers and return html
1627 *
1628 * @private
1629 *
1630 * @param string $text
1631 *
1632 * @return string
1633 */
1634 public function doHeadings( $text ) {
1635 for ( $i = 6; $i >= 1; --$i ) {
1636 $h = str_repeat( '=', $i );
1637 $text = preg_replace( "/^$h(.+)$h\\s*$/m", "<h$i>\\1</h$i>", $text );
1638 }
1639 return $text;
1640 }
1641
1642 /**
1643 * Replace single quotes with HTML markup
1644 * @private
1645 *
1646 * @param string $text
1647 *
1648 * @return string The altered text
1649 */
1650 public function doAllQuotes( $text ) {
1651 $outtext = '';
1652 $lines = StringUtils::explode( "\n", $text );
1653 foreach ( $lines as $line ) {
1654 $outtext .= $this->doQuotes( $line ) . "\n";
1655 }
1656 $outtext = substr( $outtext, 0, -1 );
1657 return $outtext;
1658 }
1659
1660 /**
1661 * Helper function for doAllQuotes()
1662 *
1663 * @param string $text
1664 *
1665 * @return string
1666 */
1667 public function doQuotes( $text ) {
1668 $arr = preg_split( "/(''+)/", $text, -1, PREG_SPLIT_DELIM_CAPTURE );
1669 $countarr = count( $arr );
1670 if ( $countarr == 1 ) {
1671 return $text;
1672 }
1673
1674 // First, do some preliminary work. This may shift some apostrophes from
1675 // being mark-up to being text. It also counts the number of occurrences
1676 // of bold and italics mark-ups.
1677 $numbold = 0;
1678 $numitalics = 0;
1679 for ( $i = 1; $i < $countarr; $i += 2 ) {
1680 $thislen = strlen( $arr[$i] );
1681 // If there are ever four apostrophes, assume the first is supposed to
1682 // be text, and the remaining three constitute mark-up for bold text.
1683 // (T15227: ''''foo'''' turns into ' ''' foo ' ''')
1684 if ( $thislen == 4 ) {
1685 $arr[$i - 1] .= "'";
1686 $arr[$i] = "'''";
1687 $thislen = 3;
1688 } elseif ( $thislen > 5 ) {
1689 // If there are more than 5 apostrophes in a row, assume they're all
1690 // text except for the last 5.
1691 // (T15227: ''''''foo'''''' turns into ' ''''' foo ' ''''')
1692 $arr[$i - 1] .= str_repeat( "'", $thislen - 5 );
1693 $arr[$i] = "'''''";
1694 $thislen = 5;
1695 }
1696 // Count the number of occurrences of bold and italics mark-ups.
1697 if ( $thislen == 2 ) {
1698 $numitalics++;
1699 } elseif ( $thislen == 3 ) {
1700 $numbold++;
1701 } elseif ( $thislen == 5 ) {
1702 $numitalics++;
1703 $numbold++;
1704 }
1705 }
1706
1707 // If there is an odd number of both bold and italics, it is likely
1708 // that one of the bold ones was meant to be an apostrophe followed
1709 // by italics. Which one we cannot know for certain, but it is more
1710 // likely to be one that has a single-letter word before it.
1711 if ( ( $numbold % 2 == 1 ) && ( $numitalics % 2 == 1 ) ) {
1712 $firstsingleletterword = -1;
1713 $firstmultiletterword = -1;
1714 $firstspace = -1;
1715 for ( $i = 1; $i < $countarr; $i += 2 ) {
1716 if ( strlen( $arr[$i] ) == 3 ) {
1717 $x1 = substr( $arr[$i - 1], -1 );
1718 $x2 = substr( $arr[$i - 1], -2, 1 );
1719 if ( $x1 === ' ' ) {
1720 if ( $firstspace == -1 ) {
1721 $firstspace = $i;
1722 }
1723 } elseif ( $x2 === ' ' ) {
1724 $firstsingleletterword = $i;
1725 // if $firstsingleletterword is set, we don't
1726 // look at the other options, so we can bail early.
1727 break;
1728 } else {
1729 if ( $firstmultiletterword == -1 ) {
1730 $firstmultiletterword = $i;
1731 }
1732 }
1733 }
1734 }
1735
1736 // If there is a single-letter word, use it!
1737 if ( $firstsingleletterword > -1 ) {
1738 $arr[$firstsingleletterword] = "''";
1739 $arr[$firstsingleletterword - 1] .= "'";
1740 } elseif ( $firstmultiletterword > -1 ) {
1741 // If not, but there's a multi-letter word, use that one.
1742 $arr[$firstmultiletterword] = "''";
1743 $arr[$firstmultiletterword - 1] .= "'";
1744 } elseif ( $firstspace > -1 ) {
1745 // ... otherwise use the first one that has neither.
1746 // (notice that it is possible for all three to be -1 if, for example,
1747 // there is only one pentuple-apostrophe in the line)
1748 $arr[$firstspace] = "''";
1749 $arr[$firstspace - 1] .= "'";
1750 }
1751 }
1752
1753 // Now let's actually convert our apostrophic mush to HTML!
1754 $output = '';
1755 $buffer = '';
1756 $state = '';
1757 $i = 0;
1758 foreach ( $arr as $r ) {
1759 if ( ( $i % 2 ) == 0 ) {
1760 if ( $state === 'both' ) {
1761 $buffer .= $r;
1762 } else {
1763 $output .= $r;
1764 }
1765 } else {
1766 $thislen = strlen( $r );
1767 if ( $thislen == 2 ) {
1768 if ( $state === 'i' ) {
1769 $output .= '</i>';
1770 $state = '';
1771 } elseif ( $state === 'bi' ) {
1772 $output .= '</i>';
1773 $state = 'b';
1774 } elseif ( $state === 'ib' ) {
1775 $output .= '</b></i><b>';
1776 $state = 'b';
1777 } elseif ( $state === 'both' ) {
1778 $output .= '<b><i>' . $buffer . '</i>';
1779 $state = 'b';
1780 } else { // $state can be 'b' or ''
1781 $output .= '<i>';
1782 $state .= 'i';
1783 }
1784 } elseif ( $thislen == 3 ) {
1785 if ( $state === 'b' ) {
1786 $output .= '</b>';
1787 $state = '';
1788 } elseif ( $state === 'bi' ) {
1789 $output .= '</i></b><i>';
1790 $state = 'i';
1791 } elseif ( $state === 'ib' ) {
1792 $output .= '</b>';
1793 $state = 'i';
1794 } elseif ( $state === 'both' ) {
1795 $output .= '<i><b>' . $buffer . '</b>';
1796 $state = 'i';
1797 } else { // $state can be 'i' or ''
1798 $output .= '<b>';
1799 $state .= 'b';
1800 }
1801 } elseif ( $thislen == 5 ) {
1802 if ( $state === 'b' ) {
1803 $output .= '</b><i>';
1804 $state = 'i';
1805 } elseif ( $state === 'i' ) {
1806 $output .= '</i><b>';
1807 $state = 'b';
1808 } elseif ( $state === 'bi' ) {
1809 $output .= '</i></b>';
1810 $state = '';
1811 } elseif ( $state === 'ib' ) {
1812 $output .= '</b></i>';
1813 $state = '';
1814 } elseif ( $state === 'both' ) {
1815 $output .= '<i><b>' . $buffer . '</b></i>';
1816 $state = '';
1817 } else { // ($state == '')
1818 $buffer = '';
1819 $state = 'both';
1820 }
1821 }
1822 }
1823 $i++;
1824 }
1825 // Now close all remaining tags. Notice that the order is important.
1826 if ( $state === 'b' || $state === 'ib' ) {
1827 $output .= '</b>';
1828 }
1829 if ( $state === 'i' || $state === 'bi' || $state === 'ib' ) {
1830 $output .= '</i>';
1831 }
1832 if ( $state === 'bi' ) {
1833 $output .= '</b>';
1834 }
1835 // There might be lonely ''''', so make sure we have a buffer
1836 if ( $state === 'both' && $buffer ) {
1837 $output .= '<b><i>' . $buffer . '</i></b>';
1838 }
1839 return $output;
1840 }
1841
1842 /**
1843 * Replace external links (REL)
1844 *
1845 * Note: this is all very hackish and the order of execution matters a lot.
1846 * Make sure to run tests/parser/parserTests.php if you change this code.
1847 *
1848 * @private
1849 *
1850 * @param string $text
1851 *
1852 * @throws MWException
1853 * @return string
1854 */
1855 public function replaceExternalLinks( $text ) {
1856 $bits = preg_split( $this->mExtLinkBracketedRegex, $text, -1, PREG_SPLIT_DELIM_CAPTURE );
1857 if ( $bits === false ) {
1858 throw new MWException( "PCRE needs to be compiled with "
1859 . "--enable-unicode-properties in order for MediaWiki to function" );
1860 }
1861 $s = array_shift( $bits );
1862
1863 $i = 0;
1864 while ( $i < count( $bits ) ) {
1865 $url = $bits[$i++];
1866 $i++; // protocol
1867 $text = $bits[$i++];
1868 $trail = $bits[$i++];
1869
1870 # The characters '<' and '>' (which were escaped by
1871 # removeHTMLtags()) should not be included in
1872 # URLs, per RFC 2396.
1873 $m2 = [];
1874 if ( preg_match( '/&(lt|gt);/', $url, $m2, PREG_OFFSET_CAPTURE ) ) {
1875 $text = substr( $url, $m2[0][1] ) . ' ' . $text;
1876 $url = substr( $url, 0, $m2[0][1] );
1877 }
1878
1879 # If the link text is an image URL, replace it with an <img> tag
1880 # This happened by accident in the original parser, but some people used it extensively
1881 $img = $this->maybeMakeExternalImage( $text );
1882 if ( $img !== false ) {
1883 $text = $img;
1884 }
1885
1886 $dtrail = '';
1887
1888 # Set linktype for CSS - if URL==text, link is essentially free
1889 $linktype = ( $text === $url ) ? 'free' : 'text';
1890
1891 # No link text, e.g. [http://domain.tld/some.link]
1892 if ( $text == '' ) {
1893 # Autonumber
1894 $langObj = $this->getTargetLanguage();
1895 $text = '[' . $langObj->formatNum( ++$this->mAutonumber ) . ']';
1896 $linktype = 'autonumber';
1897 } else {
1898 # Have link text, e.g. [http://domain.tld/some.link text]s
1899 # Check for trail
1900 list( $dtrail, $trail ) = Linker::splitTrail( $trail );
1901 }
1902
1903 $text = $this->getConverterLanguage()->markNoConversion( $text );
1904
1905 $url = Sanitizer::cleanUrl( $url );
1906
1907 # Use the encoded URL
1908 # This means that users can paste URLs directly into the text
1909 # Funny characters like ö aren't valid in URLs anyway
1910 # This was changed in August 2004
1911 $s .= Linker::makeExternalLink( $url, $text, false, $linktype,
1912 $this->getExternalLinkAttribs( $url ), $this->mTitle ) . $dtrail . $trail;
1913
1914 # Register link in the output object.
1915 $this->mOutput->addExternalLink( $url );
1916 }
1917
1918 return $s;
1919 }
1920
1921 /**
1922 * Get the rel attribute for a particular external link.
1923 *
1924 * @since 1.21
1925 * @param string|bool $url Optional URL, to extract the domain from for rel =>
1926 * nofollow if appropriate
1927 * @param Title $title Optional Title, for wgNoFollowNsExceptions lookups
1928 * @return string|null Rel attribute for $url
1929 */
1930 public static function getExternalLinkRel( $url = false, $title = null ) {
1931 global $wgNoFollowLinks, $wgNoFollowNsExceptions, $wgNoFollowDomainExceptions;
1932 $ns = $title ? $title->getNamespace() : false;
1933 if ( $wgNoFollowLinks && !in_array( $ns, $wgNoFollowNsExceptions )
1934 && !wfMatchesDomainList( $url, $wgNoFollowDomainExceptions )
1935 ) {
1936 return 'nofollow';
1937 }
1938 return null;
1939 }
1940
1941 /**
1942 * Get an associative array of additional HTML attributes appropriate for a
1943 * particular external link. This currently may include rel => nofollow
1944 * (depending on configuration, namespace, and the URL's domain) and/or a
1945 * target attribute (depending on configuration).
1946 *
1947 * @param string $url URL to extract the domain from for rel =>
1948 * nofollow if appropriate
1949 * @return array Associative array of HTML attributes
1950 */
1951 public function getExternalLinkAttribs( $url ) {
1952 $attribs = [];
1953 $rel = self::getExternalLinkRel( $url, $this->mTitle );
1954
1955 $target = $this->mOptions->getExternalLinkTarget();
1956 if ( $target ) {
1957 $attribs['target'] = $target;
1958 if ( !in_array( $target, [ '_self', '_parent', '_top' ] ) ) {
1959 // T133507. New windows can navigate parent cross-origin.
1960 // Including noreferrer due to lacking browser
1961 // support of noopener. Eventually noreferrer should be removed.
1962 if ( $rel !== '' ) {
1963 $rel .= ' ';
1964 }
1965 $rel .= 'noreferrer noopener';
1966 }
1967 }
1968 $attribs['rel'] = $rel;
1969 return $attribs;
1970 }
1971
1972 /**
1973 * Replace unusual escape codes in a URL with their equivalent characters
1974 *
1975 * This generally follows the syntax defined in RFC 3986, with special
1976 * consideration for HTTP query strings.
1977 *
1978 * @param string $url
1979 * @return string
1980 */
1981 public static function normalizeLinkUrl( $url ) {
1982 # First, make sure unsafe characters are encoded
1983 $url = preg_replace_callback( '/[\x00-\x20"<>\[\\\\\]^`{|}\x7F-\xFF]/',
1984 function ( $m ) {
1985 return rawurlencode( $m[0] );
1986 },
1987 $url
1988 );
1989
1990 $ret = '';
1991 $end = strlen( $url );
1992
1993 # Fragment part - 'fragment'
1994 $start = strpos( $url, '#' );
1995 if ( $start !== false && $start < $end ) {
1996 $ret = self::normalizeUrlComponent(
1997 substr( $url, $start, $end - $start ), '"#%<>[\]^`{|}' ) . $ret;
1998 $end = $start;
1999 }
2000
2001 # Query part - 'query' minus &=+;
2002 $start = strpos( $url, '?' );
2003 if ( $start !== false && $start < $end ) {
2004 $ret = self::normalizeUrlComponent(
2005 substr( $url, $start, $end - $start ), '"#%<>[\]^`{|}&=+;' ) . $ret;
2006 $end = $start;
2007 }
2008
2009 # Scheme and path part - 'pchar'
2010 # (we assume no userinfo or encoded colons in the host)
2011 $ret = self::normalizeUrlComponent(
2012 substr( $url, 0, $end ), '"#%<>[\]^`{|}/?' ) . $ret;
2013
2014 return $ret;
2015 }
2016
2017 private static function normalizeUrlComponent( $component, $unsafe ) {
2018 $callback = function ( $matches ) use ( $unsafe ) {
2019 $char = urldecode( $matches[0] );
2020 $ord = ord( $char );
2021 if ( $ord > 32 && $ord < 127 && strpos( $unsafe, $char ) === false ) {
2022 # Unescape it
2023 return $char;
2024 } else {
2025 # Leave it escaped, but use uppercase for a-f
2026 return strtoupper( $matches[0] );
2027 }
2028 };
2029 return preg_replace_callback( '/%[0-9A-Fa-f]{2}/', $callback, $component );
2030 }
2031
2032 /**
2033 * make an image if it's allowed, either through the global
2034 * option, through the exception, or through the on-wiki whitelist
2035 *
2036 * @param string $url
2037 *
2038 * @return string
2039 */
2040 private function maybeMakeExternalImage( $url ) {
2041 $imagesfrom = $this->mOptions->getAllowExternalImagesFrom();
2042 $imagesexception = !empty( $imagesfrom );
2043 $text = false;
2044 # $imagesfrom could be either a single string or an array of strings, parse out the latter
2045 if ( $imagesexception && is_array( $imagesfrom ) ) {
2046 $imagematch = false;
2047 foreach ( $imagesfrom as $match ) {
2048 if ( strpos( $url, $match ) === 0 ) {
2049 $imagematch = true;
2050 break;
2051 }
2052 }
2053 } elseif ( $imagesexception ) {
2054 $imagematch = ( strpos( $url, $imagesfrom ) === 0 );
2055 } else {
2056 $imagematch = false;
2057 }
2058
2059 if ( $this->mOptions->getAllowExternalImages()
2060 || ( $imagesexception && $imagematch )
2061 ) {
2062 if ( preg_match( self::EXT_IMAGE_REGEX, $url ) ) {
2063 # Image found
2064 $text = Linker::makeExternalImage( $url );
2065 }
2066 }
2067 if ( !$text && $this->mOptions->getEnableImageWhitelist()
2068 && preg_match( self::EXT_IMAGE_REGEX, $url )
2069 ) {
2070 $whitelist = explode(
2071 "\n",
2072 wfMessage( 'external_image_whitelist' )->inContentLanguage()->text()
2073 );
2074
2075 foreach ( $whitelist as $entry ) {
2076 # Sanitize the regex fragment, make it case-insensitive, ignore blank entries/comments
2077 if ( strpos( $entry, '#' ) === 0 || $entry === '' ) {
2078 continue;
2079 }
2080 if ( preg_match( '/' . str_replace( '/', '\\/', $entry ) . '/i', $url ) ) {
2081 # Image matches a whitelist entry
2082 $text = Linker::makeExternalImage( $url );
2083 break;
2084 }
2085 }
2086 }
2087 return $text;
2088 }
2089
2090 /**
2091 * Process [[ ]] wikilinks
2092 *
2093 * @param string $s
2094 *
2095 * @return string Processed text
2096 *
2097 * @private
2098 */
2099 public function replaceInternalLinks( $s ) {
2100 $this->mLinkHolders->merge( $this->replaceInternalLinks2( $s ) );
2101 return $s;
2102 }
2103
2104 /**
2105 * Process [[ ]] wikilinks (RIL)
2106 * @param string $s
2107 * @throws MWException
2108 * @return LinkHolderArray
2109 *
2110 * @private
2111 */
2112 public function replaceInternalLinks2( &$s ) {
2113 global $wgExtraInterlanguageLinkPrefixes;
2114
2115 static $tc = false, $e1, $e1_img;
2116 # the % is needed to support urlencoded titles as well
2117 if ( !$tc ) {
2118 $tc = Title::legalChars() . '#%';
2119 # Match a link having the form [[namespace:link|alternate]]trail
2120 $e1 = "/^([{$tc}]+)(?:\\|(.+?))?]](.*)\$/sD";
2121 # Match cases where there is no "]]", which might still be images
2122 $e1_img = "/^([{$tc}]+)\\|(.*)\$/sD";
2123 }
2124
2125 $holders = new LinkHolderArray( $this );
2126
2127 # split the entire text string on occurrences of [[
2128 $a = StringUtils::explode( '[[', ' ' . $s );
2129 # get the first element (all text up to first [[), and remove the space we added
2130 $s = $a->current();
2131 $a->next();
2132 $line = $a->current(); # Workaround for broken ArrayIterator::next() that returns "void"
2133 $s = substr( $s, 1 );
2134
2135 $useLinkPrefixExtension = $this->getTargetLanguage()->linkPrefixExtension();
2136 $e2 = null;
2137 if ( $useLinkPrefixExtension ) {
2138 # Match the end of a line for a word that's not followed by whitespace,
2139 # e.g. in the case of 'The Arab al[[Razi]]', 'al' will be matched
2140 global $wgContLang;
2141 $charset = $wgContLang->linkPrefixCharset();
2142 $e2 = "/^((?>.*[^$charset]|))(.+)$/sDu";
2143 }
2144
2145 if ( is_null( $this->mTitle ) ) {
2146 throw new MWException( __METHOD__ . ": \$this->mTitle is null\n" );
2147 }
2148 $nottalk = !$this->mTitle->isTalkPage();
2149
2150 if ( $useLinkPrefixExtension ) {
2151 $m = [];
2152 if ( preg_match( $e2, $s, $m ) ) {
2153 $first_prefix = $m[2];
2154 } else {
2155 $first_prefix = false;
2156 }
2157 } else {
2158 $prefix = '';
2159 }
2160
2161 $useSubpages = $this->areSubpagesAllowed();
2162
2163 // @codingStandardsIgnoreStart Squiz.WhiteSpace.SemicolonSpacing.Incorrect
2164 # Loop for each link
2165 for ( ; $line !== false && $line !== null; $a->next(), $line = $a->current() ) {
2166 // @codingStandardsIgnoreEnd
2167
2168 # Check for excessive memory usage
2169 if ( $holders->isBig() ) {
2170 # Too big
2171 # Do the existence check, replace the link holders and clear the array
2172 $holders->replace( $s );
2173 $holders->clear();
2174 }
2175
2176 if ( $useLinkPrefixExtension ) {
2177 if ( preg_match( $e2, $s, $m ) ) {
2178 $prefix = $m[2];
2179 $s = $m[1];
2180 } else {
2181 $prefix = '';
2182 }
2183 # first link
2184 if ( $first_prefix ) {
2185 $prefix = $first_prefix;
2186 $first_prefix = false;
2187 }
2188 }
2189
2190 $might_be_img = false;
2191
2192 if ( preg_match( $e1, $line, $m ) ) { # page with normal text or alt
2193 $text = $m[2];
2194 # If we get a ] at the beginning of $m[3] that means we have a link that's something like:
2195 # [[Image:Foo.jpg|[http://example.com desc]]] <- having three ] in a row fucks up,
2196 # the real problem is with the $e1 regex
2197 # See T1500.
2198 # Still some problems for cases where the ] is meant to be outside punctuation,
2199 # and no image is in sight. See T4095.
2200 if ( $text !== ''
2201 && substr( $m[3], 0, 1 ) === ']'
2202 && strpos( $text, '[' ) !== false
2203 ) {
2204 $text .= ']'; # so that replaceExternalLinks($text) works later
2205 $m[3] = substr( $m[3], 1 );
2206 }
2207 # fix up urlencoded title texts
2208 if ( strpos( $m[1], '%' ) !== false ) {
2209 # Should anchors '#' also be rejected?
2210 $m[1] = str_replace( [ '<', '>' ], [ '&lt;', '&gt;' ], rawurldecode( $m[1] ) );
2211 }
2212 $trail = $m[3];
2213 } elseif ( preg_match( $e1_img, $line, $m ) ) {
2214 # Invalid, but might be an image with a link in its caption
2215 $might_be_img = true;
2216 $text = $m[2];
2217 if ( strpos( $m[1], '%' ) !== false ) {
2218 $m[1] = str_replace( [ '<', '>' ], [ '&lt;', '&gt;' ], rawurldecode( $m[1] ) );
2219 }
2220 $trail = "";
2221 } else { # Invalid form; output directly
2222 $s .= $prefix . '[[' . $line;
2223 continue;
2224 }
2225
2226 $origLink = ltrim( $m[1], ' ' );
2227
2228 # Don't allow internal links to pages containing
2229 # PROTO: where PROTO is a valid URL protocol; these
2230 # should be external links.
2231 if ( preg_match( '/^(?i:' . $this->mUrlProtocols . ')/', $origLink ) ) {
2232 $s .= $prefix . '[[' . $line;
2233 continue;
2234 }
2235
2236 # Make subpage if necessary
2237 if ( $useSubpages ) {
2238 $link = $this->maybeDoSubpageLink( $origLink, $text );
2239 } else {
2240 $link = $origLink;
2241 }
2242
2243 $unstrip = $this->mStripState->unstripNoWiki( $link );
2244 $nt = is_string( $unstrip ) ? Title::newFromText( $unstrip ) : null;
2245 if ( $nt === null ) {
2246 $s .= $prefix . '[[' . $line;
2247 continue;
2248 }
2249
2250 $ns = $nt->getNamespace();
2251 $iw = $nt->getInterwiki();
2252
2253 $noforce = ( substr( $origLink, 0, 1 ) !== ':' );
2254
2255 if ( $might_be_img ) { # if this is actually an invalid link
2256 if ( $ns == NS_FILE && $noforce ) { # but might be an image
2257 $found = false;
2258 while ( true ) {
2259 # look at the next 'line' to see if we can close it there
2260 $a->next();
2261 $next_line = $a->current();
2262 if ( $next_line === false || $next_line === null ) {
2263 break;
2264 }
2265 $m = explode( ']]', $next_line, 3 );
2266 if ( count( $m ) == 3 ) {
2267 # the first ]] closes the inner link, the second the image
2268 $found = true;
2269 $text .= "[[{$m[0]}]]{$m[1]}";
2270 $trail = $m[2];
2271 break;
2272 } elseif ( count( $m ) == 2 ) {
2273 # if there's exactly one ]] that's fine, we'll keep looking
2274 $text .= "[[{$m[0]}]]{$m[1]}";
2275 } else {
2276 # if $next_line is invalid too, we need look no further
2277 $text .= '[[' . $next_line;
2278 break;
2279 }
2280 }
2281 if ( !$found ) {
2282 # we couldn't find the end of this imageLink, so output it raw
2283 # but don't ignore what might be perfectly normal links in the text we've examined
2284 $holders->merge( $this->replaceInternalLinks2( $text ) );
2285 $s .= "{$prefix}[[$link|$text";
2286 # note: no $trail, because without an end, there *is* no trail
2287 continue;
2288 }
2289 } else { # it's not an image, so output it raw
2290 $s .= "{$prefix}[[$link|$text";
2291 # note: no $trail, because without an end, there *is* no trail
2292 continue;
2293 }
2294 }
2295
2296 $wasblank = ( $text == '' );
2297 if ( $wasblank ) {
2298 $text = $link;
2299 if ( !$noforce ) {
2300 # Strip off leading ':'
2301 $text = substr( $text, 1 );
2302 }
2303 } else {
2304 # T6598 madness. Handle the quotes only if they come from the alternate part
2305 # [[Lista d''e paise d''o munno]] -> <a href="...">Lista d''e paise d''o munno</a>
2306 # [[Criticism of Harry Potter|Criticism of ''Harry Potter'']]
2307 # -> <a href="Criticism of Harry Potter">Criticism of <i>Harry Potter</i></a>
2308 $text = $this->doQuotes( $text );
2309 }
2310
2311 # Link not escaped by : , create the various objects
2312 if ( $noforce && !$nt->wasLocalInterwiki() ) {
2313 # Interwikis
2314 if (
2315 $iw && $this->mOptions->getInterwikiMagic() && $nottalk && (
2316 Language::fetchLanguageName( $iw, null, 'mw' ) ||
2317 in_array( $iw, $wgExtraInterlanguageLinkPrefixes )
2318 )
2319 ) {
2320 # T26502: filter duplicates
2321 if ( !isset( $this->mLangLinkLanguages[$iw] ) ) {
2322 $this->mLangLinkLanguages[$iw] = true;
2323 $this->mOutput->addLanguageLink( $nt->getFullText() );
2324 }
2325
2326 $s = rtrim( $s . $prefix );
2327 $s .= trim( $trail, "\n" ) == '' ? '' : $prefix . $trail;
2328 continue;
2329 }
2330
2331 if ( $ns == NS_FILE ) {
2332 if ( !wfIsBadImage( $nt->getDBkey(), $this->mTitle ) ) {
2333 if ( $wasblank ) {
2334 # if no parameters were passed, $text
2335 # becomes something like "File:Foo.png",
2336 # which we don't want to pass on to the
2337 # image generator
2338 $text = '';
2339 } else {
2340 # recursively parse links inside the image caption
2341 # actually, this will parse them in any other parameters, too,
2342 # but it might be hard to fix that, and it doesn't matter ATM
2343 $text = $this->replaceExternalLinks( $text );
2344 $holders->merge( $this->replaceInternalLinks2( $text ) );
2345 }
2346 # cloak any absolute URLs inside the image markup, so replaceExternalLinks() won't touch them
2347 $s .= $prefix . $this->armorLinks(
2348 $this->makeImage( $nt, $text, $holders ) ) . $trail;
2349 continue;
2350 }
2351 } elseif ( $ns == NS_CATEGORY ) {
2352 $s = rtrim( $s . "\n" ); # T2087
2353
2354 if ( $wasblank ) {
2355 $sortkey = $this->getDefaultSort();
2356 } else {
2357 $sortkey = $text;
2358 }
2359 $sortkey = Sanitizer::decodeCharReferences( $sortkey );
2360 $sortkey = str_replace( "\n", '', $sortkey );
2361 $sortkey = $this->getConverterLanguage()->convertCategoryKey( $sortkey );
2362 $this->mOutput->addCategory( $nt->getDBkey(), $sortkey );
2363
2364 /**
2365 * Strip the whitespace Category links produce, see T2087
2366 */
2367 $s .= trim( $prefix . $trail, "\n" ) == '' ? '' : $prefix . $trail;
2368
2369 continue;
2370 }
2371 }
2372
2373 # Self-link checking. For some languages, variants of the title are checked in
2374 # LinkHolderArray::doVariants() to allow batching the existence checks necessary
2375 # for linking to a different variant.
2376 if ( $ns != NS_SPECIAL && $nt->equals( $this->mTitle ) && !$nt->hasFragment() ) {
2377 $s .= $prefix . Linker::makeSelfLinkObj( $nt, $text, '', $trail );
2378 continue;
2379 }
2380
2381 # NS_MEDIA is a pseudo-namespace for linking directly to a file
2382 # @todo FIXME: Should do batch file existence checks, see comment below
2383 if ( $ns == NS_MEDIA ) {
2384 # Give extensions a chance to select the file revision for us
2385 $options = [];
2386 $descQuery = false;
2387 Hooks::run( 'BeforeParserFetchFileAndTitle',
2388 [ $this, $nt, &$options, &$descQuery ] );
2389 # Fetch and register the file (file title may be different via hooks)
2390 list( $file, $nt ) = $this->fetchFileAndTitle( $nt, $options );
2391 # Cloak with NOPARSE to avoid replacement in replaceExternalLinks
2392 $s .= $prefix . $this->armorLinks(
2393 Linker::makeMediaLinkFile( $nt, $file, $text ) ) . $trail;
2394 continue;
2395 }
2396
2397 # Some titles, such as valid special pages or files in foreign repos, should
2398 # be shown as bluelinks even though they're not included in the page table
2399 # @todo FIXME: isAlwaysKnown() can be expensive for file links; we should really do
2400 # batch file existence checks for NS_FILE and NS_MEDIA
2401 if ( $iw == '' && $nt->isAlwaysKnown() ) {
2402 $this->mOutput->addLink( $nt );
2403 $s .= $this->makeKnownLinkHolder( $nt, $text, $trail, $prefix );
2404 } else {
2405 # Links will be added to the output link list after checking
2406 $s .= $holders->makeHolder( $nt, $text, [], $trail, $prefix );
2407 }
2408 }
2409 return $holders;
2410 }
2411
2412 /**
2413 * Render a forced-blue link inline; protect against double expansion of
2414 * URLs if we're in a mode that prepends full URL prefixes to internal links.
2415 * Since this little disaster has to split off the trail text to avoid
2416 * breaking URLs in the following text without breaking trails on the
2417 * wiki links, it's been made into a horrible function.
2418 *
2419 * @param Title $nt
2420 * @param string $text
2421 * @param string $trail
2422 * @param string $prefix
2423 * @return string HTML-wikitext mix oh yuck
2424 */
2425 protected function makeKnownLinkHolder( $nt, $text = '', $trail = '', $prefix = '' ) {
2426 list( $inside, $trail ) = Linker::splitTrail( $trail );
2427
2428 if ( $text == '' ) {
2429 $text = htmlspecialchars( $nt->getPrefixedText() );
2430 }
2431
2432 $link = $this->getLinkRenderer()->makeKnownLink(
2433 $nt, new HtmlArmor( "$prefix$text$inside" )
2434 );
2435
2436 return $this->armorLinks( $link ) . $trail;
2437 }
2438
2439 /**
2440 * Insert a NOPARSE hacky thing into any inline links in a chunk that's
2441 * going to go through further parsing steps before inline URL expansion.
2442 *
2443 * Not needed quite as much as it used to be since free links are a bit
2444 * more sensible these days. But bracketed links are still an issue.
2445 *
2446 * @param string $text More-or-less HTML
2447 * @return string Less-or-more HTML with NOPARSE bits
2448 */
2449 public function armorLinks( $text ) {
2450 return preg_replace( '/\b((?i)' . $this->mUrlProtocols . ')/',
2451 self::MARKER_PREFIX . "NOPARSE$1", $text );
2452 }
2453
2454 /**
2455 * Return true if subpage links should be expanded on this page.
2456 * @return bool
2457 */
2458 public function areSubpagesAllowed() {
2459 # Some namespaces don't allow subpages
2460 return MWNamespace::hasSubpages( $this->mTitle->getNamespace() );
2461 }
2462
2463 /**
2464 * Handle link to subpage if necessary
2465 *
2466 * @param string $target The source of the link
2467 * @param string &$text The link text, modified as necessary
2468 * @return string The full name of the link
2469 * @private
2470 */
2471 public function maybeDoSubpageLink( $target, &$text ) {
2472 return Linker::normalizeSubpageLink( $this->mTitle, $target, $text );
2473 }
2474
2475 /**
2476 * Make lists from lines starting with ':', '*', '#', etc. (DBL)
2477 *
2478 * @param string $text
2479 * @param bool $linestart Whether or not this is at the start of a line.
2480 * @private
2481 * @return string The lists rendered as HTML
2482 */
2483 public function doBlockLevels( $text, $linestart ) {
2484 return BlockLevelPass::doBlockLevels( $text, $linestart );
2485 }
2486
2487 /**
2488 * Return value of a magic variable (like PAGENAME)
2489 *
2490 * @private
2491 *
2492 * @param string $index Magic variable identifier as mapped in MagicWord::$mVariableIDs
2493 * @param bool|PPFrame $frame
2494 *
2495 * @throws MWException
2496 * @return string
2497 */
2498 public function getVariableValue( $index, $frame = false ) {
2499 global $wgContLang, $wgSitename, $wgServer, $wgServerName;
2500 global $wgArticlePath, $wgScriptPath, $wgStylePath;
2501
2502 if ( is_null( $this->mTitle ) ) {
2503 // If no title set, bad things are going to happen
2504 // later. Title should always be set since this
2505 // should only be called in the middle of a parse
2506 // operation (but the unit-tests do funky stuff)
2507 throw new MWException( __METHOD__ . ' Should only be '
2508 . ' called while parsing (no title set)' );
2509 }
2510
2511 // Avoid PHP 7.1 warning from passing $this by reference
2512 $parser = $this;
2513
2514 /**
2515 * Some of these require message or data lookups and can be
2516 * expensive to check many times.
2517 */
2518 if ( Hooks::run( 'ParserGetVariableValueVarCache', [ &$parser, &$this->mVarCache ] ) ) {
2519 if ( isset( $this->mVarCache[$index] ) ) {
2520 return $this->mVarCache[$index];
2521 }
2522 }
2523
2524 $ts = wfTimestamp( TS_UNIX, $this->mOptions->getTimestamp() );
2525 Hooks::run( 'ParserGetVariableValueTs', [ &$parser, &$ts ] );
2526
2527 $pageLang = $this->getFunctionLang();
2528
2529 switch ( $index ) {
2530 case '!':
2531 $value = '|';
2532 break;
2533 case 'currentmonth':
2534 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'm' ) );
2535 break;
2536 case 'currentmonth1':
2537 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'n' ) );
2538 break;
2539 case 'currentmonthname':
2540 $value = $pageLang->getMonthName( MWTimestamp::getInstance( $ts )->format( 'n' ) );
2541 break;
2542 case 'currentmonthnamegen':
2543 $value = $pageLang->getMonthNameGen( MWTimestamp::getInstance( $ts )->format( 'n' ) );
2544 break;
2545 case 'currentmonthabbrev':
2546 $value = $pageLang->getMonthAbbreviation( MWTimestamp::getInstance( $ts )->format( 'n' ) );
2547 break;
2548 case 'currentday':
2549 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'j' ) );
2550 break;
2551 case 'currentday2':
2552 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'd' ) );
2553 break;
2554 case 'localmonth':
2555 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'm' ) );
2556 break;
2557 case 'localmonth1':
2558 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'n' ) );
2559 break;
2560 case 'localmonthname':
2561 $value = $pageLang->getMonthName( MWTimestamp::getLocalInstance( $ts )->format( 'n' ) );
2562 break;
2563 case 'localmonthnamegen':
2564 $value = $pageLang->getMonthNameGen( MWTimestamp::getLocalInstance( $ts )->format( 'n' ) );
2565 break;
2566 case 'localmonthabbrev':
2567 $value = $pageLang->getMonthAbbreviation( MWTimestamp::getLocalInstance( $ts )->format( 'n' ) );
2568 break;
2569 case 'localday':
2570 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'j' ) );
2571 break;
2572 case 'localday2':
2573 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'd' ) );
2574 break;
2575 case 'pagename':
2576 $value = wfEscapeWikiText( $this->mTitle->getText() );
2577 break;
2578 case 'pagenamee':
2579 $value = wfEscapeWikiText( $this->mTitle->getPartialURL() );
2580 break;
2581 case 'fullpagename':
2582 $value = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
2583 break;
2584 case 'fullpagenamee':
2585 $value = wfEscapeWikiText( $this->mTitle->getPrefixedURL() );
2586 break;
2587 case 'subpagename':
2588 $value = wfEscapeWikiText( $this->mTitle->getSubpageText() );
2589 break;
2590 case 'subpagenamee':
2591 $value = wfEscapeWikiText( $this->mTitle->getSubpageUrlForm() );
2592 break;
2593 case 'rootpagename':
2594 $value = wfEscapeWikiText( $this->mTitle->getRootText() );
2595 break;
2596 case 'rootpagenamee':
2597 $value = wfEscapeWikiText( wfUrlencode( str_replace(
2598 ' ',
2599 '_',
2600 $this->mTitle->getRootText()
2601 ) ) );
2602 break;
2603 case 'basepagename':
2604 $value = wfEscapeWikiText( $this->mTitle->getBaseText() );
2605 break;
2606 case 'basepagenamee':
2607 $value = wfEscapeWikiText( wfUrlencode( str_replace(
2608 ' ',
2609 '_',
2610 $this->mTitle->getBaseText()
2611 ) ) );
2612 break;
2613 case 'talkpagename':
2614 if ( $this->mTitle->canTalk() ) {
2615 $talkPage = $this->mTitle->getTalkPage();
2616 $value = wfEscapeWikiText( $talkPage->getPrefixedText() );
2617 } else {
2618 $value = '';
2619 }
2620 break;
2621 case 'talkpagenamee':
2622 if ( $this->mTitle->canTalk() ) {
2623 $talkPage = $this->mTitle->getTalkPage();
2624 $value = wfEscapeWikiText( $talkPage->getPrefixedURL() );
2625 } else {
2626 $value = '';
2627 }
2628 break;
2629 case 'subjectpagename':
2630 $subjPage = $this->mTitle->getSubjectPage();
2631 $value = wfEscapeWikiText( $subjPage->getPrefixedText() );
2632 break;
2633 case 'subjectpagenamee':
2634 $subjPage = $this->mTitle->getSubjectPage();
2635 $value = wfEscapeWikiText( $subjPage->getPrefixedURL() );
2636 break;
2637 case 'pageid': // requested in T25427
2638 $pageid = $this->getTitle()->getArticleID();
2639 if ( $pageid == 0 ) {
2640 # 0 means the page doesn't exist in the database,
2641 # which means the user is previewing a new page.
2642 # The vary-revision flag must be set, because the magic word
2643 # will have a different value once the page is saved.
2644 $this->mOutput->setFlag( 'vary-revision' );
2645 wfDebug( __METHOD__ . ": {{PAGEID}} used in a new page, setting vary-revision...\n" );
2646 }
2647 $value = $pageid ? $pageid : null;
2648 break;
2649 case 'revisionid':
2650 # Let the edit saving system know we should parse the page
2651 # *after* a revision ID has been assigned.
2652 $this->mOutput->setFlag( 'vary-revision-id' );
2653 wfDebug( __METHOD__ . ": {{REVISIONID}} used, setting vary-revision-id...\n" );
2654 $value = $this->mRevisionId;
2655 if ( !$value && $this->mOptions->getSpeculativeRevIdCallback() ) {
2656 $value = call_user_func( $this->mOptions->getSpeculativeRevIdCallback() );
2657 $this->mOutput->setSpeculativeRevIdUsed( $value );
2658 }
2659 break;
2660 case 'revisionday':
2661 # Let the edit saving system know we should parse the page
2662 # *after* a revision ID has been assigned. This is for null edits.
2663 $this->mOutput->setFlag( 'vary-revision' );
2664 wfDebug( __METHOD__ . ": {{REVISIONDAY}} used, setting vary-revision...\n" );
2665 $value = intval( substr( $this->getRevisionTimestamp(), 6, 2 ) );
2666 break;
2667 case 'revisionday2':
2668 # Let the edit saving system know we should parse the page
2669 # *after* a revision ID has been assigned. This is for null edits.
2670 $this->mOutput->setFlag( 'vary-revision' );
2671 wfDebug( __METHOD__ . ": {{REVISIONDAY2}} used, setting vary-revision...\n" );
2672 $value = substr( $this->getRevisionTimestamp(), 6, 2 );
2673 break;
2674 case 'revisionmonth':
2675 # Let the edit saving system know we should parse the page
2676 # *after* a revision ID has been assigned. This is for null edits.
2677 $this->mOutput->setFlag( 'vary-revision' );
2678 wfDebug( __METHOD__ . ": {{REVISIONMONTH}} used, setting vary-revision...\n" );
2679 $value = substr( $this->getRevisionTimestamp(), 4, 2 );
2680 break;
2681 case 'revisionmonth1':
2682 # Let the edit saving system know we should parse the page
2683 # *after* a revision ID has been assigned. This is for null edits.
2684 $this->mOutput->setFlag( 'vary-revision' );
2685 wfDebug( __METHOD__ . ": {{REVISIONMONTH1}} used, setting vary-revision...\n" );
2686 $value = intval( substr( $this->getRevisionTimestamp(), 4, 2 ) );
2687 break;
2688 case 'revisionyear':
2689 # Let the edit saving system know we should parse the page
2690 # *after* a revision ID has been assigned. This is for null edits.
2691 $this->mOutput->setFlag( 'vary-revision' );
2692 wfDebug( __METHOD__ . ": {{REVISIONYEAR}} used, setting vary-revision...\n" );
2693 $value = substr( $this->getRevisionTimestamp(), 0, 4 );
2694 break;
2695 case 'revisiontimestamp':
2696 # Let the edit saving system know we should parse the page
2697 # *after* a revision ID has been assigned. This is for null edits.
2698 $this->mOutput->setFlag( 'vary-revision' );
2699 wfDebug( __METHOD__ . ": {{REVISIONTIMESTAMP}} used, setting vary-revision...\n" );
2700 $value = $this->getRevisionTimestamp();
2701 break;
2702 case 'revisionuser':
2703 # Let the edit saving system know we should parse the page
2704 # *after* a revision ID has been assigned for null edits.
2705 $this->mOutput->setFlag( 'vary-user' );
2706 wfDebug( __METHOD__ . ": {{REVISIONUSER}} used, setting vary-user...\n" );
2707 $value = $this->getRevisionUser();
2708 break;
2709 case 'revisionsize':
2710 $value = $this->getRevisionSize();
2711 break;
2712 case 'namespace':
2713 $value = str_replace( '_', ' ', $wgContLang->getNsText( $this->mTitle->getNamespace() ) );
2714 break;
2715 case 'namespacee':
2716 $value = wfUrlencode( $wgContLang->getNsText( $this->mTitle->getNamespace() ) );
2717 break;
2718 case 'namespacenumber':
2719 $value = $this->mTitle->getNamespace();
2720 break;
2721 case 'talkspace':
2722 $value = $this->mTitle->canTalk()
2723 ? str_replace( '_', ' ', $this->mTitle->getTalkNsText() )
2724 : '';
2725 break;
2726 case 'talkspacee':
2727 $value = $this->mTitle->canTalk() ? wfUrlencode( $this->mTitle->getTalkNsText() ) : '';
2728 break;
2729 case 'subjectspace':
2730 $value = str_replace( '_', ' ', $this->mTitle->getSubjectNsText() );
2731 break;
2732 case 'subjectspacee':
2733 $value = ( wfUrlencode( $this->mTitle->getSubjectNsText() ) );
2734 break;
2735 case 'currentdayname':
2736 $value = $pageLang->getWeekdayName( (int)MWTimestamp::getInstance( $ts )->format( 'w' ) + 1 );
2737 break;
2738 case 'currentyear':
2739 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'Y' ), true );
2740 break;
2741 case 'currenttime':
2742 $value = $pageLang->time( wfTimestamp( TS_MW, $ts ), false, false );
2743 break;
2744 case 'currenthour':
2745 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'H' ), true );
2746 break;
2747 case 'currentweek':
2748 # @bug T6594 PHP5 has it zero padded, PHP4 does not, cast to
2749 # int to remove the padding
2750 $value = $pageLang->formatNum( (int)MWTimestamp::getInstance( $ts )->format( 'W' ) );
2751 break;
2752 case 'currentdow':
2753 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'w' ) );
2754 break;
2755 case 'localdayname':
2756 $value = $pageLang->getWeekdayName(
2757 (int)MWTimestamp::getLocalInstance( $ts )->format( 'w' ) + 1
2758 );
2759 break;
2760 case 'localyear':
2761 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'Y' ), true );
2762 break;
2763 case 'localtime':
2764 $value = $pageLang->time(
2765 MWTimestamp::getLocalInstance( $ts )->format( 'YmdHis' ),
2766 false,
2767 false
2768 );
2769 break;
2770 case 'localhour':
2771 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'H' ), true );
2772 break;
2773 case 'localweek':
2774 # @bug T6594 PHP5 has it zero padded, PHP4 does not, cast to
2775 # int to remove the padding
2776 $value = $pageLang->formatNum( (int)MWTimestamp::getLocalInstance( $ts )->format( 'W' ) );
2777 break;
2778 case 'localdow':
2779 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'w' ) );
2780 break;
2781 case 'numberofarticles':
2782 $value = $pageLang->formatNum( SiteStats::articles() );
2783 break;
2784 case 'numberoffiles':
2785 $value = $pageLang->formatNum( SiteStats::images() );
2786 break;
2787 case 'numberofusers':
2788 $value = $pageLang->formatNum( SiteStats::users() );
2789 break;
2790 case 'numberofactiveusers':
2791 $value = $pageLang->formatNum( SiteStats::activeUsers() );
2792 break;
2793 case 'numberofpages':
2794 $value = $pageLang->formatNum( SiteStats::pages() );
2795 break;
2796 case 'numberofadmins':
2797 $value = $pageLang->formatNum( SiteStats::numberingroup( 'sysop' ) );
2798 break;
2799 case 'numberofedits':
2800 $value = $pageLang->formatNum( SiteStats::edits() );
2801 break;
2802 case 'currenttimestamp':
2803 $value = wfTimestamp( TS_MW, $ts );
2804 break;
2805 case 'localtimestamp':
2806 $value = MWTimestamp::getLocalInstance( $ts )->format( 'YmdHis' );
2807 break;
2808 case 'currentversion':
2809 $value = SpecialVersion::getVersion();
2810 break;
2811 case 'articlepath':
2812 return $wgArticlePath;
2813 case 'sitename':
2814 return $wgSitename;
2815 case 'server':
2816 return $wgServer;
2817 case 'servername':
2818 return $wgServerName;
2819 case 'scriptpath':
2820 return $wgScriptPath;
2821 case 'stylepath':
2822 return $wgStylePath;
2823 case 'directionmark':
2824 return $pageLang->getDirMark();
2825 case 'contentlanguage':
2826 global $wgLanguageCode;
2827 return $wgLanguageCode;
2828 case 'pagelanguage':
2829 $value = $pageLang->getCode();
2830 break;
2831 case 'cascadingsources':
2832 $value = CoreParserFunctions::cascadingsources( $this );
2833 break;
2834 default:
2835 $ret = null;
2836 Hooks::run(
2837 'ParserGetVariableValueSwitch',
2838 [ &$parser, &$this->mVarCache, &$index, &$ret, &$frame ]
2839 );
2840
2841 return $ret;
2842 }
2843
2844 if ( $index ) {
2845 $this->mVarCache[$index] = $value;
2846 }
2847
2848 return $value;
2849 }
2850
2851 /**
2852 * initialise the magic variables (like CURRENTMONTHNAME) and substitution modifiers
2853 *
2854 * @private
2855 */
2856 public function initialiseVariables() {
2857 $variableIDs = MagicWord::getVariableIDs();
2858 $substIDs = MagicWord::getSubstIDs();
2859
2860 $this->mVariables = new MagicWordArray( $variableIDs );
2861 $this->mSubstWords = new MagicWordArray( $substIDs );
2862 }
2863
2864 /**
2865 * Preprocess some wikitext and return the document tree.
2866 * This is the ghost of replace_variables().
2867 *
2868 * @param string $text The text to parse
2869 * @param int $flags Bitwise combination of:
2870 * - self::PTD_FOR_INCLUSION: Handle "<noinclude>" and "<includeonly>" as if the text is being
2871 * included. Default is to assume a direct page view.
2872 *
2873 * The generated DOM tree must depend only on the input text and the flags.
2874 * The DOM tree must be the same in OT_HTML and OT_WIKI mode, to avoid a regression of T6899.
2875 *
2876 * Any flag added to the $flags parameter here, or any other parameter liable to cause a
2877 * change in the DOM tree for a given text, must be passed through the section identifier
2878 * in the section edit link and thus back to extractSections().
2879 *
2880 * The output of this function is currently only cached in process memory, but a persistent
2881 * cache may be implemented at a later date which takes further advantage of these strict
2882 * dependency requirements.
2883 *
2884 * @return PPNode
2885 */
2886 public function preprocessToDom( $text, $flags = 0 ) {
2887 $dom = $this->getPreprocessor()->preprocessToObj( $text, $flags );
2888 return $dom;
2889 }
2890
2891 /**
2892 * Return a three-element array: leading whitespace, string contents, trailing whitespace
2893 *
2894 * @param string $s
2895 *
2896 * @return array
2897 */
2898 public static function splitWhitespace( $s ) {
2899 $ltrimmed = ltrim( $s );
2900 $w1 = substr( $s, 0, strlen( $s ) - strlen( $ltrimmed ) );
2901 $trimmed = rtrim( $ltrimmed );
2902 $diff = strlen( $ltrimmed ) - strlen( $trimmed );
2903 if ( $diff > 0 ) {
2904 $w2 = substr( $ltrimmed, -$diff );
2905 } else {
2906 $w2 = '';
2907 }
2908 return [ $w1, $trimmed, $w2 ];
2909 }
2910
2911 /**
2912 * Replace magic variables, templates, and template arguments
2913 * with the appropriate text. Templates are substituted recursively,
2914 * taking care to avoid infinite loops.
2915 *
2916 * Note that the substitution depends on value of $mOutputType:
2917 * self::OT_WIKI: only {{subst:}} templates
2918 * self::OT_PREPROCESS: templates but not extension tags
2919 * self::OT_HTML: all templates and extension tags
2920 *
2921 * @param string $text The text to transform
2922 * @param bool|PPFrame $frame Object describing the arguments passed to the
2923 * template. Arguments may also be provided as an associative array, as
2924 * was the usual case before MW1.12. Providing arguments this way may be
2925 * useful for extensions wishing to perform variable replacement
2926 * explicitly.
2927 * @param bool $argsOnly Only do argument (triple-brace) expansion, not
2928 * double-brace expansion.
2929 * @return string
2930 */
2931 public function replaceVariables( $text, $frame = false, $argsOnly = false ) {
2932 # Is there any text? Also, Prevent too big inclusions!
2933 $textSize = strlen( $text );
2934 if ( $textSize < 1 || $textSize > $this->mOptions->getMaxIncludeSize() ) {
2935 return $text;
2936 }
2937
2938 if ( $frame === false ) {
2939 $frame = $this->getPreprocessor()->newFrame();
2940 } elseif ( !( $frame instanceof PPFrame ) ) {
2941 wfDebug( __METHOD__ . " called using plain parameters instead of "
2942 . "a PPFrame instance. Creating custom frame.\n" );
2943 $frame = $this->getPreprocessor()->newCustomFrame( $frame );
2944 }
2945
2946 $dom = $this->preprocessToDom( $text );
2947 $flags = $argsOnly ? PPFrame::NO_TEMPLATES : 0;
2948 $text = $frame->expand( $dom, $flags );
2949
2950 return $text;
2951 }
2952
2953 /**
2954 * Clean up argument array - refactored in 1.9 so parserfunctions can use it, too.
2955 *
2956 * @param array $args
2957 *
2958 * @return array
2959 */
2960 public static function createAssocArgs( $args ) {
2961 $assocArgs = [];
2962 $index = 1;
2963 foreach ( $args as $arg ) {
2964 $eqpos = strpos( $arg, '=' );
2965 if ( $eqpos === false ) {
2966 $assocArgs[$index++] = $arg;
2967 } else {
2968 $name = trim( substr( $arg, 0, $eqpos ) );
2969 $value = trim( substr( $arg, $eqpos + 1 ) );
2970 if ( $value === false ) {
2971 $value = '';
2972 }
2973 if ( $name !== false ) {
2974 $assocArgs[$name] = $value;
2975 }
2976 }
2977 }
2978
2979 return $assocArgs;
2980 }
2981
2982 /**
2983 * Warn the user when a parser limitation is reached
2984 * Will warn at most once the user per limitation type
2985 *
2986 * The results are shown during preview and run through the Parser (See EditPage.php)
2987 *
2988 * @param string $limitationType Should be one of:
2989 * 'expensive-parserfunction' (corresponding messages:
2990 * 'expensive-parserfunction-warning',
2991 * 'expensive-parserfunction-category')
2992 * 'post-expand-template-argument' (corresponding messages:
2993 * 'post-expand-template-argument-warning',
2994 * 'post-expand-template-argument-category')
2995 * 'post-expand-template-inclusion' (corresponding messages:
2996 * 'post-expand-template-inclusion-warning',
2997 * 'post-expand-template-inclusion-category')
2998 * 'node-count-exceeded' (corresponding messages:
2999 * 'node-count-exceeded-warning',
3000 * 'node-count-exceeded-category')
3001 * 'expansion-depth-exceeded' (corresponding messages:
3002 * 'expansion-depth-exceeded-warning',
3003 * 'expansion-depth-exceeded-category')
3004 * @param string|int|null $current Current value
3005 * @param string|int|null $max Maximum allowed, when an explicit limit has been
3006 * exceeded, provide the values (optional)
3007 */
3008 public function limitationWarn( $limitationType, $current = '', $max = '' ) {
3009 # does no harm if $current and $max are present but are unnecessary for the message
3010 # Not doing ->inLanguage( $this->mOptions->getUserLangObj() ), since this is shown
3011 # only during preview, and that would split the parser cache unnecessarily.
3012 $warning = wfMessage( "$limitationType-warning" )->numParams( $current, $max )
3013 ->text();
3014 $this->mOutput->addWarning( $warning );
3015 $this->addTrackingCategory( "$limitationType-category" );
3016 }
3017
3018 /**
3019 * Return the text of a template, after recursively
3020 * replacing any variables or templates within the template.
3021 *
3022 * @param array $piece The parts of the template
3023 * $piece['title']: the title, i.e. the part before the |
3024 * $piece['parts']: the parameter array
3025 * $piece['lineStart']: whether the brace was at the start of a line
3026 * @param PPFrame $frame The current frame, contains template arguments
3027 * @throws Exception
3028 * @return string The text of the template
3029 */
3030 public function braceSubstitution( $piece, $frame ) {
3031 // Flags
3032
3033 // $text has been filled
3034 $found = false;
3035 // wiki markup in $text should be escaped
3036 $nowiki = false;
3037 // $text is HTML, armour it against wikitext transformation
3038 $isHTML = false;
3039 // Force interwiki transclusion to be done in raw mode not rendered
3040 $forceRawInterwiki = false;
3041 // $text is a DOM node needing expansion in a child frame
3042 $isChildObj = false;
3043 // $text is a DOM node needing expansion in the current frame
3044 $isLocalObj = false;
3045
3046 # Title object, where $text came from
3047 $title = false;
3048
3049 # $part1 is the bit before the first |, and must contain only title characters.
3050 # Various prefixes will be stripped from it later.
3051 $titleWithSpaces = $frame->expand( $piece['title'] );
3052 $part1 = trim( $titleWithSpaces );
3053 $titleText = false;
3054
3055 # Original title text preserved for various purposes
3056 $originalTitle = $part1;
3057
3058 # $args is a list of argument nodes, starting from index 0, not including $part1
3059 # @todo FIXME: If piece['parts'] is null then the call to getLength()
3060 # below won't work b/c this $args isn't an object
3061 $args = ( null == $piece['parts'] ) ? [] : $piece['parts'];
3062
3063 $profileSection = null; // profile templates
3064
3065 # SUBST
3066 if ( !$found ) {
3067 $substMatch = $this->mSubstWords->matchStartAndRemove( $part1 );
3068
3069 # Possibilities for substMatch: "subst", "safesubst" or FALSE
3070 # Decide whether to expand template or keep wikitext as-is.
3071 if ( $this->ot['wiki'] ) {
3072 if ( $substMatch === false ) {
3073 $literal = true; # literal when in PST with no prefix
3074 } else {
3075 $literal = false; # expand when in PST with subst: or safesubst:
3076 }
3077 } else {
3078 if ( $substMatch == 'subst' ) {
3079 $literal = true; # literal when not in PST with plain subst:
3080 } else {
3081 $literal = false; # expand when not in PST with safesubst: or no prefix
3082 }
3083 }
3084 if ( $literal ) {
3085 $text = $frame->virtualBracketedImplode( '{{', '|', '}}', $titleWithSpaces, $args );
3086 $isLocalObj = true;
3087 $found = true;
3088 }
3089 }
3090
3091 # Variables
3092 if ( !$found && $args->getLength() == 0 ) {
3093 $id = $this->mVariables->matchStartToEnd( $part1 );
3094 if ( $id !== false ) {
3095 $text = $this->getVariableValue( $id, $frame );
3096 if ( MagicWord::getCacheTTL( $id ) > -1 ) {
3097 $this->mOutput->updateCacheExpiry( MagicWord::getCacheTTL( $id ) );
3098 }
3099 $found = true;
3100 }
3101 }
3102
3103 # MSG, MSGNW and RAW
3104 if ( !$found ) {
3105 # Check for MSGNW:
3106 $mwMsgnw = MagicWord::get( 'msgnw' );
3107 if ( $mwMsgnw->matchStartAndRemove( $part1 ) ) {
3108 $nowiki = true;
3109 } else {
3110 # Remove obsolete MSG:
3111 $mwMsg = MagicWord::get( 'msg' );
3112 $mwMsg->matchStartAndRemove( $part1 );
3113 }
3114
3115 # Check for RAW:
3116 $mwRaw = MagicWord::get( 'raw' );
3117 if ( $mwRaw->matchStartAndRemove( $part1 ) ) {
3118 $forceRawInterwiki = true;
3119 }
3120 }
3121
3122 # Parser functions
3123 if ( !$found ) {
3124 $colonPos = strpos( $part1, ':' );
3125 if ( $colonPos !== false ) {
3126 $func = substr( $part1, 0, $colonPos );
3127 $funcArgs = [ trim( substr( $part1, $colonPos + 1 ) ) ];
3128 $argsLength = $args->getLength();
3129 for ( $i = 0; $i < $argsLength; $i++ ) {
3130 $funcArgs[] = $args->item( $i );
3131 }
3132 try {
3133 $result = $this->callParserFunction( $frame, $func, $funcArgs );
3134 } catch ( Exception $ex ) {
3135 throw $ex;
3136 }
3137
3138 # The interface for parser functions allows for extracting
3139 # flags into the local scope. Extract any forwarded flags
3140 # here.
3141 extract( $result );
3142 }
3143 }
3144
3145 # Finish mangling title and then check for loops.
3146 # Set $title to a Title object and $titleText to the PDBK
3147 if ( !$found ) {
3148 $ns = NS_TEMPLATE;
3149 # Split the title into page and subpage
3150 $subpage = '';
3151 $relative = $this->maybeDoSubpageLink( $part1, $subpage );
3152 if ( $part1 !== $relative ) {
3153 $part1 = $relative;
3154 $ns = $this->mTitle->getNamespace();
3155 }
3156 $title = Title::newFromText( $part1, $ns );
3157 if ( $title ) {
3158 $titleText = $title->getPrefixedText();
3159 # Check for language variants if the template is not found
3160 if ( $this->getConverterLanguage()->hasVariants() && $title->getArticleID() == 0 ) {
3161 $this->getConverterLanguage()->findVariantLink( $part1, $title, true );
3162 }
3163 # Do recursion depth check
3164 $limit = $this->mOptions->getMaxTemplateDepth();
3165 if ( $frame->depth >= $limit ) {
3166 $found = true;
3167 $text = '<span class="error">'
3168 . wfMessage( 'parser-template-recursion-depth-warning' )
3169 ->numParams( $limit )->inContentLanguage()->text()
3170 . '</span>';
3171 }
3172 }
3173 }
3174
3175 # Load from database
3176 if ( !$found && $title ) {
3177 $profileSection = $this->mProfiler->scopedProfileIn( $title->getPrefixedDBkey() );
3178 if ( !$title->isExternal() ) {
3179 if ( $title->isSpecialPage()
3180 && $this->mOptions->getAllowSpecialInclusion()
3181 && $this->ot['html']
3182 ) {
3183 $specialPage = SpecialPageFactory::getPage( $title->getDBkey() );
3184 // Pass the template arguments as URL parameters.
3185 // "uselang" will have no effect since the Language object
3186 // is forced to the one defined in ParserOptions.
3187 $pageArgs = [];
3188 $argsLength = $args->getLength();
3189 for ( $i = 0; $i < $argsLength; $i++ ) {
3190 $bits = $args->item( $i )->splitArg();
3191 if ( strval( $bits['index'] ) === '' ) {
3192 $name = trim( $frame->expand( $bits['name'], PPFrame::STRIP_COMMENTS ) );
3193 $value = trim( $frame->expand( $bits['value'] ) );
3194 $pageArgs[$name] = $value;
3195 }
3196 }
3197
3198 // Create a new context to execute the special page
3199 $context = new RequestContext;
3200 $context->setTitle( $title );
3201 $context->setRequest( new FauxRequest( $pageArgs ) );
3202 if ( $specialPage && $specialPage->maxIncludeCacheTime() === 0 ) {
3203 $context->setUser( $this->getUser() );
3204 } else {
3205 // If this page is cached, then we better not be per user.
3206 $context->setUser( User::newFromName( '127.0.0.1', false ) );
3207 }
3208 $context->setLanguage( $this->mOptions->getUserLangObj() );
3209 $ret = SpecialPageFactory::capturePath(
3210 $title, $context, $this->getLinkRenderer() );
3211 if ( $ret ) {
3212 $text = $context->getOutput()->getHTML();
3213 $this->mOutput->addOutputPageMetadata( $context->getOutput() );
3214 $found = true;
3215 $isHTML = true;
3216 if ( $specialPage && $specialPage->maxIncludeCacheTime() !== false ) {
3217 $this->mOutput->updateRuntimeAdaptiveExpiry(
3218 $specialPage->maxIncludeCacheTime()
3219 );
3220 }
3221 }
3222 } elseif ( MWNamespace::isNonincludable( $title->getNamespace() ) ) {
3223 $found = false; # access denied
3224 wfDebug( __METHOD__ . ": template inclusion denied for " .
3225 $title->getPrefixedDBkey() . "\n" );
3226 } else {
3227 list( $text, $title ) = $this->getTemplateDom( $title );
3228 if ( $text !== false ) {
3229 $found = true;
3230 $isChildObj = true;
3231 }
3232 }
3233
3234 # If the title is valid but undisplayable, make a link to it
3235 if ( !$found && ( $this->ot['html'] || $this->ot['pre'] ) ) {
3236 $text = "[[:$titleText]]";
3237 $found = true;
3238 }
3239 } elseif ( $title->isTrans() ) {
3240 # Interwiki transclusion
3241 if ( $this->ot['html'] && !$forceRawInterwiki ) {
3242 $text = $this->interwikiTransclude( $title, 'render' );
3243 $isHTML = true;
3244 } else {
3245 $text = $this->interwikiTransclude( $title, 'raw' );
3246 # Preprocess it like a template
3247 $text = $this->preprocessToDom( $text, self::PTD_FOR_INCLUSION );
3248 $isChildObj = true;
3249 }
3250 $found = true;
3251 }
3252
3253 # Do infinite loop check
3254 # This has to be done after redirect resolution to avoid infinite loops via redirects
3255 if ( !$frame->loopCheck( $title ) ) {
3256 $found = true;
3257 $text = '<span class="error">'
3258 . wfMessage( 'parser-template-loop-warning', $titleText )->inContentLanguage()->text()
3259 . '</span>';
3260 $this->addTrackingCategory( 'template-loop-category' );
3261 wfDebug( __METHOD__ . ": template loop broken at '$titleText'\n" );
3262 }
3263 }
3264
3265 # If we haven't found text to substitute by now, we're done
3266 # Recover the source wikitext and return it
3267 if ( !$found ) {
3268 $text = $frame->virtualBracketedImplode( '{{', '|', '}}', $titleWithSpaces, $args );
3269 if ( $profileSection ) {
3270 $this->mProfiler->scopedProfileOut( $profileSection );
3271 }
3272 return [ 'object' => $text ];
3273 }
3274
3275 # Expand DOM-style return values in a child frame
3276 if ( $isChildObj ) {
3277 # Clean up argument array
3278 $newFrame = $frame->newChild( $args, $title );
3279
3280 if ( $nowiki ) {
3281 $text = $newFrame->expand( $text, PPFrame::RECOVER_ORIG );
3282 } elseif ( $titleText !== false && $newFrame->isEmpty() ) {
3283 # Expansion is eligible for the empty-frame cache
3284 $text = $newFrame->cachedExpand( $titleText, $text );
3285 } else {
3286 # Uncached expansion
3287 $text = $newFrame->expand( $text );
3288 }
3289 }
3290 if ( $isLocalObj && $nowiki ) {
3291 $text = $frame->expand( $text, PPFrame::RECOVER_ORIG );
3292 $isLocalObj = false;
3293 }
3294
3295 if ( $profileSection ) {
3296 $this->mProfiler->scopedProfileOut( $profileSection );
3297 }
3298
3299 # Replace raw HTML by a placeholder
3300 if ( $isHTML ) {
3301 $text = $this->insertStripItem( $text );
3302 } elseif ( $nowiki && ( $this->ot['html'] || $this->ot['pre'] ) ) {
3303 # Escape nowiki-style return values
3304 $text = wfEscapeWikiText( $text );
3305 } elseif ( is_string( $text )
3306 && !$piece['lineStart']
3307 && preg_match( '/^(?:{\\||:|;|#|\*)/', $text )
3308 ) {
3309 # T2529: if the template begins with a table or block-level
3310 # element, it should be treated as beginning a new line.
3311 # This behavior is somewhat controversial.
3312 $text = "\n" . $text;
3313 }
3314
3315 if ( is_string( $text ) && !$this->incrementIncludeSize( 'post-expand', strlen( $text ) ) ) {
3316 # Error, oversize inclusion
3317 if ( $titleText !== false ) {
3318 # Make a working, properly escaped link if possible (T25588)
3319 $text = "[[:$titleText]]";
3320 } else {
3321 # This will probably not be a working link, but at least it may
3322 # provide some hint of where the problem is
3323 preg_replace( '/^:/', '', $originalTitle );
3324 $text = "[[:$originalTitle]]";
3325 }
3326 $text .= $this->insertStripItem( '<!-- WARNING: template omitted, '
3327 . 'post-expand include size too large -->' );
3328 $this->limitationWarn( 'post-expand-template-inclusion' );
3329 }
3330
3331 if ( $isLocalObj ) {
3332 $ret = [ 'object' => $text ];
3333 } else {
3334 $ret = [ 'text' => $text ];
3335 }
3336
3337 return $ret;
3338 }
3339
3340 /**
3341 * Call a parser function and return an array with text and flags.
3342 *
3343 * The returned array will always contain a boolean 'found', indicating
3344 * whether the parser function was found or not. It may also contain the
3345 * following:
3346 * text: string|object, resulting wikitext or PP DOM object
3347 * isHTML: bool, $text is HTML, armour it against wikitext transformation
3348 * isChildObj: bool, $text is a DOM node needing expansion in a child frame
3349 * isLocalObj: bool, $text is a DOM node needing expansion in the current frame
3350 * nowiki: bool, wiki markup in $text should be escaped
3351 *
3352 * @since 1.21
3353 * @param PPFrame $frame The current frame, contains template arguments
3354 * @param string $function Function name
3355 * @param array $args Arguments to the function
3356 * @throws MWException
3357 * @return array
3358 */
3359 public function callParserFunction( $frame, $function, array $args = [] ) {
3360 global $wgContLang;
3361
3362 # Case sensitive functions
3363 if ( isset( $this->mFunctionSynonyms[1][$function] ) ) {
3364 $function = $this->mFunctionSynonyms[1][$function];
3365 } else {
3366 # Case insensitive functions
3367 $function = $wgContLang->lc( $function );
3368 if ( isset( $this->mFunctionSynonyms[0][$function] ) ) {
3369 $function = $this->mFunctionSynonyms[0][$function];
3370 } else {
3371 return [ 'found' => false ];
3372 }
3373 }
3374
3375 list( $callback, $flags ) = $this->mFunctionHooks[$function];
3376
3377 // Avoid PHP 7.1 warning from passing $this by reference
3378 $parser = $this;
3379
3380 $allArgs = [ &$parser ];
3381 if ( $flags & self::SFH_OBJECT_ARGS ) {
3382 # Convert arguments to PPNodes and collect for appending to $allArgs
3383 $funcArgs = [];
3384 foreach ( $args as $k => $v ) {
3385 if ( $v instanceof PPNode || $k === 0 ) {
3386 $funcArgs[] = $v;
3387 } else {
3388 $funcArgs[] = $this->mPreprocessor->newPartNodeArray( [ $k => $v ] )->item( 0 );
3389 }
3390 }
3391
3392 # Add a frame parameter, and pass the arguments as an array
3393 $allArgs[] = $frame;
3394 $allArgs[] = $funcArgs;
3395 } else {
3396 # Convert arguments to plain text and append to $allArgs
3397 foreach ( $args as $k => $v ) {
3398 if ( $v instanceof PPNode ) {
3399 $allArgs[] = trim( $frame->expand( $v ) );
3400 } elseif ( is_int( $k ) && $k >= 0 ) {
3401 $allArgs[] = trim( $v );
3402 } else {
3403 $allArgs[] = trim( "$k=$v" );
3404 }
3405 }
3406 }
3407
3408 $result = call_user_func_array( $callback, $allArgs );
3409
3410 # The interface for function hooks allows them to return a wikitext
3411 # string or an array containing the string and any flags. This mungs
3412 # things around to match what this method should return.
3413 if ( !is_array( $result ) ) {
3414 $result =[
3415 'found' => true,
3416 'text' => $result,
3417 ];
3418 } else {
3419 if ( isset( $result[0] ) && !isset( $result['text'] ) ) {
3420 $result['text'] = $result[0];
3421 }
3422 unset( $result[0] );
3423 $result += [
3424 'found' => true,
3425 ];
3426 }
3427
3428 $noparse = true;
3429 $preprocessFlags = 0;
3430 if ( isset( $result['noparse'] ) ) {
3431 $noparse = $result['noparse'];
3432 }
3433 if ( isset( $result['preprocessFlags'] ) ) {
3434 $preprocessFlags = $result['preprocessFlags'];
3435 }
3436
3437 if ( !$noparse ) {
3438 $result['text'] = $this->preprocessToDom( $result['text'], $preprocessFlags );
3439 $result['isChildObj'] = true;
3440 }
3441
3442 return $result;
3443 }
3444
3445 /**
3446 * Get the semi-parsed DOM representation of a template with a given title,
3447 * and its redirect destination title. Cached.
3448 *
3449 * @param Title $title
3450 *
3451 * @return array
3452 */
3453 public function getTemplateDom( $title ) {
3454 $cacheTitle = $title;
3455 $titleText = $title->getPrefixedDBkey();
3456
3457 if ( isset( $this->mTplRedirCache[$titleText] ) ) {
3458 list( $ns, $dbk ) = $this->mTplRedirCache[$titleText];
3459 $title = Title::makeTitle( $ns, $dbk );
3460 $titleText = $title->getPrefixedDBkey();
3461 }
3462 if ( isset( $this->mTplDomCache[$titleText] ) ) {
3463 return [ $this->mTplDomCache[$titleText], $title ];
3464 }
3465
3466 # Cache miss, go to the database
3467 list( $text, $title ) = $this->fetchTemplateAndTitle( $title );
3468
3469 if ( $text === false ) {
3470 $this->mTplDomCache[$titleText] = false;
3471 return [ false, $title ];
3472 }
3473
3474 $dom = $this->preprocessToDom( $text, self::PTD_FOR_INCLUSION );
3475 $this->mTplDomCache[$titleText] = $dom;
3476
3477 if ( !$title->equals( $cacheTitle ) ) {
3478 $this->mTplRedirCache[$cacheTitle->getPrefixedDBkey()] =
3479 [ $title->getNamespace(), $title->getDBkey() ];
3480 }
3481
3482 return [ $dom, $title ];
3483 }
3484
3485 /**
3486 * Fetch the current revision of a given title. Note that the revision
3487 * (and even the title) may not exist in the database, so everything
3488 * contributing to the output of the parser should use this method
3489 * where possible, rather than getting the revisions themselves. This
3490 * method also caches its results, so using it benefits performance.
3491 *
3492 * @since 1.24
3493 * @param Title $title
3494 * @return Revision
3495 */
3496 public function fetchCurrentRevisionOfTitle( $title ) {
3497 $cacheKey = $title->getPrefixedDBkey();
3498 if ( !$this->currentRevisionCache ) {
3499 $this->currentRevisionCache = new MapCacheLRU( 100 );
3500 }
3501 if ( !$this->currentRevisionCache->has( $cacheKey ) ) {
3502 $this->currentRevisionCache->set( $cacheKey,
3503 // Defaults to Parser::statelessFetchRevision()
3504 call_user_func( $this->mOptions->getCurrentRevisionCallback(), $title, $this )
3505 );
3506 }
3507 return $this->currentRevisionCache->get( $cacheKey );
3508 }
3509
3510 /**
3511 * Wrapper around Revision::newFromTitle to allow passing additional parameters
3512 * without passing them on to it.
3513 *
3514 * @since 1.24
3515 * @param Title $title
3516 * @param Parser|bool $parser
3517 * @return Revision|bool False if missing
3518 */
3519 public static function statelessFetchRevision( Title $title, $parser = false ) {
3520 $pageId = $title->getArticleID();
3521 $revId = $title->getLatestRevID();
3522
3523 $rev = Revision::newKnownCurrent( wfGetDB( DB_REPLICA ), $pageId, $revId );
3524 if ( $rev ) {
3525 $rev->setTitle( $title );
3526 }
3527
3528 return $rev;
3529 }
3530
3531 /**
3532 * Fetch the unparsed text of a template and register a reference to it.
3533 * @param Title $title
3534 * @return array ( string or false, Title )
3535 */
3536 public function fetchTemplateAndTitle( $title ) {
3537 // Defaults to Parser::statelessFetchTemplate()
3538 $templateCb = $this->mOptions->getTemplateCallback();
3539 $stuff = call_user_func( $templateCb, $title, $this );
3540 // We use U+007F DELETE to distinguish strip markers from regular text.
3541 $text = $stuff['text'];
3542 if ( is_string( $stuff['text'] ) ) {
3543 $text = strtr( $text, "\x7f", "?" );
3544 }
3545 $finalTitle = isset( $stuff['finalTitle'] ) ? $stuff['finalTitle'] : $title;
3546 if ( isset( $stuff['deps'] ) ) {
3547 foreach ( $stuff['deps'] as $dep ) {
3548 $this->mOutput->addTemplate( $dep['title'], $dep['page_id'], $dep['rev_id'] );
3549 if ( $dep['title']->equals( $this->getTitle() ) ) {
3550 // If we transclude ourselves, the final result
3551 // will change based on the new version of the page
3552 $this->mOutput->setFlag( 'vary-revision' );
3553 }
3554 }
3555 }
3556 return [ $text, $finalTitle ];
3557 }
3558
3559 /**
3560 * Fetch the unparsed text of a template and register a reference to it.
3561 * @param Title $title
3562 * @return string|bool
3563 */
3564 public function fetchTemplate( $title ) {
3565 return $this->fetchTemplateAndTitle( $title )[0];
3566 }
3567
3568 /**
3569 * Static function to get a template
3570 * Can be overridden via ParserOptions::setTemplateCallback().
3571 *
3572 * @param Title $title
3573 * @param bool|Parser $parser
3574 *
3575 * @return array
3576 */
3577 public static function statelessFetchTemplate( $title, $parser = false ) {
3578 $text = $skip = false;
3579 $finalTitle = $title;
3580 $deps = [];
3581
3582 # Loop to fetch the article, with up to 1 redirect
3583 // @codingStandardsIgnoreStart Generic.CodeAnalysis.ForLoopWithTestFunctionCall.NotAllowed
3584 for ( $i = 0; $i < 2 && is_object( $title ); $i++ ) {
3585 // @codingStandardsIgnoreEnd
3586 # Give extensions a chance to select the revision instead
3587 $id = false; # Assume current
3588 Hooks::run( 'BeforeParserFetchTemplateAndtitle',
3589 [ $parser, $title, &$skip, &$id ] );
3590
3591 if ( $skip ) {
3592 $text = false;
3593 $deps[] = [
3594 'title' => $title,
3595 'page_id' => $title->getArticleID(),
3596 'rev_id' => null
3597 ];
3598 break;
3599 }
3600 # Get the revision
3601 if ( $id ) {
3602 $rev = Revision::newFromId( $id );
3603 } elseif ( $parser ) {
3604 $rev = $parser->fetchCurrentRevisionOfTitle( $title );
3605 } else {
3606 $rev = Revision::newFromTitle( $title );
3607 }
3608 $rev_id = $rev ? $rev->getId() : 0;
3609 # If there is no current revision, there is no page
3610 if ( $id === false && !$rev ) {
3611 $linkCache = LinkCache::singleton();
3612 $linkCache->addBadLinkObj( $title );
3613 }
3614
3615 $deps[] = [
3616 'title' => $title,
3617 'page_id' => $title->getArticleID(),
3618 'rev_id' => $rev_id ];
3619 if ( $rev && !$title->equals( $rev->getTitle() ) ) {
3620 # We fetched a rev from a different title; register it too...
3621 $deps[] = [
3622 'title' => $rev->getTitle(),
3623 'page_id' => $rev->getPage(),
3624 'rev_id' => $rev_id ];
3625 }
3626
3627 if ( $rev ) {
3628 $content = $rev->getContent();
3629 $text = $content ? $content->getWikitextForTransclusion() : null;
3630
3631 Hooks::run( 'ParserFetchTemplate',
3632 [ $parser, $title, $rev, &$text, &$deps ] );
3633
3634 if ( $text === false || $text === null ) {
3635 $text = false;
3636 break;
3637 }
3638 } elseif ( $title->getNamespace() == NS_MEDIAWIKI ) {
3639 global $wgContLang;
3640 $message = wfMessage( $wgContLang->lcfirst( $title->getText() ) )->inContentLanguage();
3641 if ( !$message->exists() ) {
3642 $text = false;
3643 break;
3644 }
3645 $content = $message->content();
3646 $text = $message->plain();
3647 } else {
3648 break;
3649 }
3650 if ( !$content ) {
3651 break;
3652 }
3653 # Redirect?
3654 $finalTitle = $title;
3655 $title = $content->getRedirectTarget();
3656 }
3657 return [
3658 'text' => $text,
3659 'finalTitle' => $finalTitle,
3660 'deps' => $deps ];
3661 }
3662
3663 /**
3664 * Fetch a file and its title and register a reference to it.
3665 * If 'broken' is a key in $options then the file will appear as a broken thumbnail.
3666 * @param Title $title
3667 * @param array $options Array of options to RepoGroup::findFile
3668 * @return File|bool
3669 */
3670 public function fetchFile( $title, $options = [] ) {
3671 return $this->fetchFileAndTitle( $title, $options )[0];
3672 }
3673
3674 /**
3675 * Fetch a file and its title and register a reference to it.
3676 * If 'broken' is a key in $options then the file will appear as a broken thumbnail.
3677 * @param Title $title
3678 * @param array $options Array of options to RepoGroup::findFile
3679 * @return array ( File or false, Title of file )
3680 */
3681 public function fetchFileAndTitle( $title, $options = [] ) {
3682 $file = $this->fetchFileNoRegister( $title, $options );
3683
3684 $time = $file ? $file->getTimestamp() : false;
3685 $sha1 = $file ? $file->getSha1() : false;
3686 # Register the file as a dependency...
3687 $this->mOutput->addImage( $title->getDBkey(), $time, $sha1 );
3688 if ( $file && !$title->equals( $file->getTitle() ) ) {
3689 # Update fetched file title
3690 $title = $file->getTitle();
3691 $this->mOutput->addImage( $title->getDBkey(), $time, $sha1 );
3692 }
3693 return [ $file, $title ];
3694 }
3695
3696 /**
3697 * Helper function for fetchFileAndTitle.
3698 *
3699 * Also useful if you need to fetch a file but not use it yet,
3700 * for example to get the file's handler.
3701 *
3702 * @param Title $title
3703 * @param array $options Array of options to RepoGroup::findFile
3704 * @return File|bool
3705 */
3706 protected function fetchFileNoRegister( $title, $options = [] ) {
3707 if ( isset( $options['broken'] ) ) {
3708 $file = false; // broken thumbnail forced by hook
3709 } elseif ( isset( $options['sha1'] ) ) { // get by (sha1,timestamp)
3710 $file = RepoGroup::singleton()->findFileFromKey( $options['sha1'], $options );
3711 } else { // get by (name,timestamp)
3712 $file = wfFindFile( $title, $options );
3713 }
3714 return $file;
3715 }
3716
3717 /**
3718 * Transclude an interwiki link.
3719 *
3720 * @param Title $title
3721 * @param string $action
3722 *
3723 * @return string
3724 */
3725 public function interwikiTransclude( $title, $action ) {
3726 global $wgEnableScaryTranscluding;
3727
3728 if ( !$wgEnableScaryTranscluding ) {
3729 return wfMessage( 'scarytranscludedisabled' )->inContentLanguage()->text();
3730 }
3731
3732 $url = $title->getFullURL( [ 'action' => $action ] );
3733
3734 if ( strlen( $url ) > 255 ) {
3735 return wfMessage( 'scarytranscludetoolong' )->inContentLanguage()->text();
3736 }
3737 return $this->fetchScaryTemplateMaybeFromCache( $url );
3738 }
3739
3740 /**
3741 * @param string $url
3742 * @return mixed|string
3743 */
3744 public function fetchScaryTemplateMaybeFromCache( $url ) {
3745 global $wgTranscludeCacheExpiry;
3746 $dbr = wfGetDB( DB_REPLICA );
3747 $tsCond = $dbr->timestamp( time() - $wgTranscludeCacheExpiry );
3748 $obj = $dbr->selectRow( 'transcache', [ 'tc_time', 'tc_contents' ],
3749 [ 'tc_url' => $url, "tc_time >= " . $dbr->addQuotes( $tsCond ) ] );
3750 if ( $obj ) {
3751 return $obj->tc_contents;
3752 }
3753
3754 $req = MWHttpRequest::factory( $url, [], __METHOD__ );
3755 $status = $req->execute(); // Status object
3756 if ( $status->isOK() ) {
3757 $text = $req->getContent();
3758 } elseif ( $req->getStatus() != 200 ) {
3759 // Though we failed to fetch the content, this status is useless.
3760 return wfMessage( 'scarytranscludefailed-httpstatus' )
3761 ->params( $url, $req->getStatus() /* HTTP status */ )->inContentLanguage()->text();
3762 } else {
3763 return wfMessage( 'scarytranscludefailed', $url )->inContentLanguage()->text();
3764 }
3765
3766 $dbw = wfGetDB( DB_MASTER );
3767 $dbw->replace( 'transcache', [ 'tc_url' ], [
3768 'tc_url' => $url,
3769 'tc_time' => $dbw->timestamp( time() ),
3770 'tc_contents' => $text
3771 ] );
3772 return $text;
3773 }
3774
3775 /**
3776 * Triple brace replacement -- used for template arguments
3777 * @private
3778 *
3779 * @param array $piece
3780 * @param PPFrame $frame
3781 *
3782 * @return array
3783 */
3784 public function argSubstitution( $piece, $frame ) {
3785 $error = false;
3786 $parts = $piece['parts'];
3787 $nameWithSpaces = $frame->expand( $piece['title'] );
3788 $argName = trim( $nameWithSpaces );
3789 $object = false;
3790 $text = $frame->getArgument( $argName );
3791 if ( $text === false && $parts->getLength() > 0
3792 && ( $this->ot['html']
3793 || $this->ot['pre']
3794 || ( $this->ot['wiki'] && $frame->isTemplate() )
3795 )
3796 ) {
3797 # No match in frame, use the supplied default
3798 $object = $parts->item( 0 )->getChildren();
3799 }
3800 if ( !$this->incrementIncludeSize( 'arg', strlen( $text ) ) ) {
3801 $error = '<!-- WARNING: argument omitted, expansion size too large -->';
3802 $this->limitationWarn( 'post-expand-template-argument' );
3803 }
3804
3805 if ( $text === false && $object === false ) {
3806 # No match anywhere
3807 $object = $frame->virtualBracketedImplode( '{{{', '|', '}}}', $nameWithSpaces, $parts );
3808 }
3809 if ( $error !== false ) {
3810 $text .= $error;
3811 }
3812 if ( $object !== false ) {
3813 $ret = [ 'object' => $object ];
3814 } else {
3815 $ret = [ 'text' => $text ];
3816 }
3817
3818 return $ret;
3819 }
3820
3821 /**
3822 * Return the text to be used for a given extension tag.
3823 * This is the ghost of strip().
3824 *
3825 * @param array $params Associative array of parameters:
3826 * name PPNode for the tag name
3827 * attr PPNode for unparsed text where tag attributes are thought to be
3828 * attributes Optional associative array of parsed attributes
3829 * inner Contents of extension element
3830 * noClose Original text did not have a close tag
3831 * @param PPFrame $frame
3832 *
3833 * @throws MWException
3834 * @return string
3835 */
3836 public function extensionSubstitution( $params, $frame ) {
3837 static $errorStr = '<span class="error">';
3838 static $errorLen = 20;
3839
3840 $name = $frame->expand( $params['name'] );
3841 if ( substr( $name, 0, $errorLen ) === $errorStr ) {
3842 // Probably expansion depth or node count exceeded. Just punt the
3843 // error up.
3844 return $name;
3845 }
3846
3847 $attrText = !isset( $params['attr'] ) ? null : $frame->expand( $params['attr'] );
3848 if ( substr( $attrText, 0, $errorLen ) === $errorStr ) {
3849 // See above
3850 return $attrText;
3851 }
3852
3853 // We can't safely check if the expansion for $content resulted in an
3854 // error, because the content could happen to be the error string
3855 // (T149622).
3856 $content = !isset( $params['inner'] ) ? null : $frame->expand( $params['inner'] );
3857
3858 $marker = self::MARKER_PREFIX . "-$name-"
3859 . sprintf( '%08X', $this->mMarkerIndex++ ) . self::MARKER_SUFFIX;
3860
3861 $isFunctionTag = isset( $this->mFunctionTagHooks[strtolower( $name )] ) &&
3862 ( $this->ot['html'] || $this->ot['pre'] );
3863 if ( $isFunctionTag ) {
3864 $markerType = 'none';
3865 } else {
3866 $markerType = 'general';
3867 }
3868 if ( $this->ot['html'] || $isFunctionTag ) {
3869 $name = strtolower( $name );
3870 $attributes = Sanitizer::decodeTagAttributes( $attrText );
3871 if ( isset( $params['attributes'] ) ) {
3872 $attributes = $attributes + $params['attributes'];
3873 }
3874
3875 if ( isset( $this->mTagHooks[$name] ) ) {
3876 $output = call_user_func_array( $this->mTagHooks[$name],
3877 [ $content, $attributes, $this, $frame ] );
3878 } elseif ( isset( $this->mFunctionTagHooks[$name] ) ) {
3879 list( $callback, ) = $this->mFunctionTagHooks[$name];
3880
3881 // Avoid PHP 7.1 warning from passing $this by reference
3882 $parser = $this;
3883 $output = call_user_func_array( $callback, [ &$parser, $frame, $content, $attributes ] );
3884 } else {
3885 $output = '<span class="error">Invalid tag extension name: ' .
3886 htmlspecialchars( $name ) . '</span>';
3887 }
3888
3889 if ( is_array( $output ) ) {
3890 # Extract flags to local scope (to override $markerType)
3891 $flags = $output;
3892 $output = $flags[0];
3893 unset( $flags[0] );
3894 extract( $flags );
3895 }
3896 } else {
3897 if ( is_null( $attrText ) ) {
3898 $attrText = '';
3899 }
3900 if ( isset( $params['attributes'] ) ) {
3901 foreach ( $params['attributes'] as $attrName => $attrValue ) {
3902 $attrText .= ' ' . htmlspecialchars( $attrName ) . '="' .
3903 htmlspecialchars( $attrValue ) . '"';
3904 }
3905 }
3906 if ( $content === null ) {
3907 $output = "<$name$attrText/>";
3908 } else {
3909 $close = is_null( $params['close'] ) ? '' : $frame->expand( $params['close'] );
3910 if ( substr( $close, 0, $errorLen ) === $errorStr ) {
3911 // See above
3912 return $close;
3913 }
3914 $output = "<$name$attrText>$content$close";
3915 }
3916 }
3917
3918 if ( $markerType === 'none' ) {
3919 return $output;
3920 } elseif ( $markerType === 'nowiki' ) {
3921 $this->mStripState->addNoWiki( $marker, $output );
3922 } elseif ( $markerType === 'general' ) {
3923 $this->mStripState->addGeneral( $marker, $output );
3924 } else {
3925 throw new MWException( __METHOD__ . ': invalid marker type' );
3926 }
3927 return $marker;
3928 }
3929
3930 /**
3931 * Increment an include size counter
3932 *
3933 * @param string $type The type of expansion
3934 * @param int $size The size of the text
3935 * @return bool False if this inclusion would take it over the maximum, true otherwise
3936 */
3937 public function incrementIncludeSize( $type, $size ) {
3938 if ( $this->mIncludeSizes[$type] + $size > $this->mOptions->getMaxIncludeSize() ) {
3939 return false;
3940 } else {
3941 $this->mIncludeSizes[$type] += $size;
3942 return true;
3943 }
3944 }
3945
3946 /**
3947 * Increment the expensive function count
3948 *
3949 * @return bool False if the limit has been exceeded
3950 */
3951 public function incrementExpensiveFunctionCount() {
3952 $this->mExpensiveFunctionCount++;
3953 return $this->mExpensiveFunctionCount <= $this->mOptions->getExpensiveParserFunctionLimit();
3954 }
3955
3956 /**
3957 * Strip double-underscore items like __NOGALLERY__ and __NOTOC__
3958 * Fills $this->mDoubleUnderscores, returns the modified text
3959 *
3960 * @param string $text
3961 *
3962 * @return string
3963 */
3964 public function doDoubleUnderscore( $text ) {
3965 # The position of __TOC__ needs to be recorded
3966 $mw = MagicWord::get( 'toc' );
3967 if ( $mw->match( $text ) ) {
3968 $this->mShowToc = true;
3969 $this->mForceTocPosition = true;
3970
3971 # Set a placeholder. At the end we'll fill it in with the TOC.
3972 $text = $mw->replace( '<!--MWTOC-->', $text, 1 );
3973
3974 # Only keep the first one.
3975 $text = $mw->replace( '', $text );
3976 }
3977
3978 # Now match and remove the rest of them
3979 $mwa = MagicWord::getDoubleUnderscoreArray();
3980 $this->mDoubleUnderscores = $mwa->matchAndRemove( $text );
3981
3982 if ( isset( $this->mDoubleUnderscores['nogallery'] ) ) {
3983 $this->mOutput->mNoGallery = true;
3984 }
3985 if ( isset( $this->mDoubleUnderscores['notoc'] ) && !$this->mForceTocPosition ) {
3986 $this->mShowToc = false;
3987 }
3988 if ( isset( $this->mDoubleUnderscores['hiddencat'] )
3989 && $this->mTitle->getNamespace() == NS_CATEGORY
3990 ) {
3991 $this->addTrackingCategory( 'hidden-category-category' );
3992 }
3993 # (T10068) Allow control over whether robots index a page.
3994 # __INDEX__ always overrides __NOINDEX__, see T16899
3995 if ( isset( $this->mDoubleUnderscores['noindex'] ) && $this->mTitle->canUseNoindex() ) {
3996 $this->mOutput->setIndexPolicy( 'noindex' );
3997 $this->addTrackingCategory( 'noindex-category' );
3998 }
3999 if ( isset( $this->mDoubleUnderscores['index'] ) && $this->mTitle->canUseNoindex() ) {
4000 $this->mOutput->setIndexPolicy( 'index' );
4001 $this->addTrackingCategory( 'index-category' );
4002 }
4003
4004 # Cache all double underscores in the database
4005 foreach ( $this->mDoubleUnderscores as $key => $val ) {
4006 $this->mOutput->setProperty( $key, '' );
4007 }
4008
4009 return $text;
4010 }
4011
4012 /**
4013 * @see ParserOutput::addTrackingCategory()
4014 * @param string $msg Message key
4015 * @return bool Whether the addition was successful
4016 */
4017 public function addTrackingCategory( $msg ) {
4018 return $this->mOutput->addTrackingCategory( $msg, $this->mTitle );
4019 }
4020
4021 /**
4022 * This function accomplishes several tasks:
4023 * 1) Auto-number headings if that option is enabled
4024 * 2) Add an [edit] link to sections for users who have enabled the option and can edit the page
4025 * 3) Add a Table of contents on the top for users who have enabled the option
4026 * 4) Auto-anchor headings
4027 *
4028 * It loops through all headlines, collects the necessary data, then splits up the
4029 * string and re-inserts the newly formatted headlines.
4030 *
4031 * @param string $text
4032 * @param string $origText Original, untouched wikitext
4033 * @param bool $isMain
4034 * @return mixed|string
4035 * @private
4036 */
4037 public function formatHeadings( $text, $origText, $isMain = true ) {
4038 global $wgMaxTocLevel;
4039
4040 # Inhibit editsection links if requested in the page
4041 if ( isset( $this->mDoubleUnderscores['noeditsection'] ) ) {
4042 $maybeShowEditLink = $showEditLink = false;
4043 } else {
4044 $maybeShowEditLink = true; /* Actual presence will depend on ParserOptions option */
4045 $showEditLink = $this->mOptions->getEditSection();
4046 }
4047 if ( $showEditLink ) {
4048 $this->mOutput->setEditSectionTokens( true );
4049 }
4050
4051 # Get all headlines for numbering them and adding funky stuff like [edit]
4052 # links - this is for later, but we need the number of headlines right now
4053 $matches = [];
4054 $numMatches = preg_match_all(
4055 '/<H(?P<level>[1-6])(?P<attrib>.*?>)\s*(?P<header>[\s\S]*?)\s*<\/H[1-6] *>/i',
4056 $text,
4057 $matches
4058 );
4059
4060 # if there are fewer than 4 headlines in the article, do not show TOC
4061 # unless it's been explicitly enabled.
4062 $enoughToc = $this->mShowToc &&
4063 ( ( $numMatches >= 4 ) || $this->mForceTocPosition );
4064
4065 # Allow user to stipulate that a page should have a "new section"
4066 # link added via __NEWSECTIONLINK__
4067 if ( isset( $this->mDoubleUnderscores['newsectionlink'] ) ) {
4068 $this->mOutput->setNewSection( true );
4069 }
4070
4071 # Allow user to remove the "new section"
4072 # link via __NONEWSECTIONLINK__
4073 if ( isset( $this->mDoubleUnderscores['nonewsectionlink'] ) ) {
4074 $this->mOutput->hideNewSection( true );
4075 }
4076
4077 # if the string __FORCETOC__ (not case-sensitive) occurs in the HTML,
4078 # override above conditions and always show TOC above first header
4079 if ( isset( $this->mDoubleUnderscores['forcetoc'] ) ) {
4080 $this->mShowToc = true;
4081 $enoughToc = true;
4082 }
4083
4084 # headline counter
4085 $headlineCount = 0;
4086 $numVisible = 0;
4087
4088 # Ugh .. the TOC should have neat indentation levels which can be
4089 # passed to the skin functions. These are determined here
4090 $toc = '';
4091 $full = '';
4092 $head = [];
4093 $sublevelCount = [];
4094 $levelCount = [];
4095 $level = 0;
4096 $prevlevel = 0;
4097 $toclevel = 0;
4098 $prevtoclevel = 0;
4099 $markerRegex = self::MARKER_PREFIX . "-h-(\d+)-" . self::MARKER_SUFFIX;
4100 $baseTitleText = $this->mTitle->getPrefixedDBkey();
4101 $oldType = $this->mOutputType;
4102 $this->setOutputType( self::OT_WIKI );
4103 $frame = $this->getPreprocessor()->newFrame();
4104 $root = $this->preprocessToDom( $origText );
4105 $node = $root->getFirstChild();
4106 $byteOffset = 0;
4107 $tocraw = [];
4108 $refers = [];
4109
4110 $headlines = $numMatches !== false ? $matches[3] : [];
4111
4112 foreach ( $headlines as $headline ) {
4113 $isTemplate = false;
4114 $titleText = false;
4115 $sectionIndex = false;
4116 $numbering = '';
4117 $markerMatches = [];
4118 if ( preg_match( "/^$markerRegex/", $headline, $markerMatches ) ) {
4119 $serial = $markerMatches[1];
4120 list( $titleText, $sectionIndex ) = $this->mHeadings[$serial];
4121 $isTemplate = ( $titleText != $baseTitleText );
4122 $headline = preg_replace( "/^$markerRegex\\s*/", "", $headline );
4123 }
4124
4125 if ( $toclevel ) {
4126 $prevlevel = $level;
4127 }
4128 $level = $matches[1][$headlineCount];
4129
4130 if ( $level > $prevlevel ) {
4131 # Increase TOC level
4132 $toclevel++;
4133 $sublevelCount[$toclevel] = 0;
4134 if ( $toclevel < $wgMaxTocLevel ) {
4135 $prevtoclevel = $toclevel;
4136 $toc .= Linker::tocIndent();
4137 $numVisible++;
4138 }
4139 } elseif ( $level < $prevlevel && $toclevel > 1 ) {
4140 # Decrease TOC level, find level to jump to
4141
4142 for ( $i = $toclevel; $i > 0; $i-- ) {
4143 if ( $levelCount[$i] == $level ) {
4144 # Found last matching level
4145 $toclevel = $i;
4146 break;
4147 } elseif ( $levelCount[$i] < $level ) {
4148 # Found first matching level below current level
4149 $toclevel = $i + 1;
4150 break;
4151 }
4152 }
4153 if ( $i == 0 ) {
4154 $toclevel = 1;
4155 }
4156 if ( $toclevel < $wgMaxTocLevel ) {
4157 if ( $prevtoclevel < $wgMaxTocLevel ) {
4158 # Unindent only if the previous toc level was shown :p
4159 $toc .= Linker::tocUnindent( $prevtoclevel - $toclevel );
4160 $prevtoclevel = $toclevel;
4161 } else {
4162 $toc .= Linker::tocLineEnd();
4163 }
4164 }
4165 } else {
4166 # No change in level, end TOC line
4167 if ( $toclevel < $wgMaxTocLevel ) {
4168 $toc .= Linker::tocLineEnd();
4169 }
4170 }
4171
4172 $levelCount[$toclevel] = $level;
4173
4174 # count number of headlines for each level
4175 $sublevelCount[$toclevel]++;
4176 $dot = 0;
4177 for ( $i = 1; $i <= $toclevel; $i++ ) {
4178 if ( !empty( $sublevelCount[$i] ) ) {
4179 if ( $dot ) {
4180 $numbering .= '.';
4181 }
4182 $numbering .= $this->getTargetLanguage()->formatNum( $sublevelCount[$i] );
4183 $dot = 1;
4184 }
4185 }
4186
4187 # The safe header is a version of the header text safe to use for links
4188
4189 # Remove link placeholders by the link text.
4190 # <!--LINK number-->
4191 # turns into
4192 # link text with suffix
4193 # Do this before unstrip since link text can contain strip markers
4194 $safeHeadline = $this->replaceLinkHoldersText( $headline );
4195
4196 # Avoid insertion of weird stuff like <math> by expanding the relevant sections
4197 $safeHeadline = $this->mStripState->unstripBoth( $safeHeadline );
4198
4199 # Strip out HTML (first regex removes any tag not allowed)
4200 # Allowed tags are:
4201 # * <sup> and <sub> (T10393)
4202 # * <i> (T28375)
4203 # * <b> (r105284)
4204 # * <bdi> (T74884)
4205 # * <span dir="rtl"> and <span dir="ltr"> (T37167)
4206 # * <s> and <strike> (T35715)
4207 # We strip any parameter from accepted tags (second regex), except dir="rtl|ltr" from <span>,
4208 # to allow setting directionality in toc items.
4209 $tocline = preg_replace(
4210 [
4211 '#<(?!/?(span|sup|sub|bdi|i|b|s|strike)(?: [^>]*)?>).*?>#',
4212 '#<(/?(?:span(?: dir="(?:rtl|ltr)")?|sup|sub|bdi|i|b|s|strike))(?: .*?)?>#'
4213 ],
4214 [ '', '<$1>' ],
4215 $safeHeadline
4216 );
4217
4218 # Strip '<span></span>', which is the result from the above if
4219 # <span id="foo"></span> is used to produce an additional anchor
4220 # for a section.
4221 $tocline = str_replace( '<span></span>', '', $tocline );
4222
4223 $tocline = trim( $tocline );
4224
4225 # For the anchor, strip out HTML-y stuff period
4226 $safeHeadline = preg_replace( '/<.*?>/', '', $safeHeadline );
4227 $safeHeadline = Sanitizer::normalizeSectionNameWhitespace( $safeHeadline );
4228
4229 # Save headline for section edit hint before it's escaped
4230 $headlineHint = $safeHeadline;
4231
4232 $fallbackHeadline = Sanitizer::escapeIdForAttribute( $safeHeadline, Sanitizer::ID_FALLBACK );
4233 $linkAnchor = Sanitizer::escapeIdForLink( $safeHeadline );
4234 $safeHeadline = Sanitizer::escapeIdForAttribute( $safeHeadline, Sanitizer::ID_PRIMARY );
4235 if ( $fallbackHeadline === $safeHeadline ) {
4236 # No reason to have both (in fact, we can't)
4237 $fallbackHeadline = false;
4238 }
4239
4240 # HTML IDs must be case-insensitively unique for IE compatibility (T12721).
4241 # @todo FIXME: We may be changing them depending on the current locale.
4242 $arrayKey = strtolower( $safeHeadline );
4243 if ( $fallbackHeadline === false ) {
4244 $fallbackArrayKey = false;
4245 } else {
4246 $fallbackArrayKey = strtolower( $fallbackHeadline );
4247 }
4248
4249 # Create the anchor for linking from the TOC to the section
4250 $anchor = $safeHeadline;
4251 $fallbackAnchor = $fallbackHeadline;
4252 if ( isset( $refers[$arrayKey] ) ) {
4253 // @codingStandardsIgnoreStart
4254 for ( $i = 2; isset( $refers["${arrayKey}_$i"] ); ++$i );
4255 // @codingStandardsIgnoreEnd
4256 $anchor .= "_$i";
4257 $linkAnchor .= "_$i";
4258 $refers["${arrayKey}_$i"] = true;
4259 } else {
4260 $refers[$arrayKey] = true;
4261 }
4262 if ( $fallbackHeadline !== false && isset( $refers[$fallbackArrayKey] ) ) {
4263 // @codingStandardsIgnoreStart
4264 for ( $i = 2; isset( $refers["${fallbackArrayKey}_$i"] ); ++$i );
4265 // @codingStandardsIgnoreEnd
4266 $fallbackAnchor .= "_$i";
4267 $refers["${fallbackArrayKey}_$i"] = true;
4268 } else {
4269 $refers[$fallbackArrayKey] = true;
4270 }
4271
4272 # Don't number the heading if it is the only one (looks silly)
4273 if ( count( $matches[3] ) > 1 && $this->mOptions->getNumberHeadings() ) {
4274 # the two are different if the line contains a link
4275 $headline = Html::element(
4276 'span',
4277 [ 'class' => 'mw-headline-number' ],
4278 $numbering
4279 ) . ' ' . $headline;
4280 }
4281
4282 if ( $enoughToc && ( !isset( $wgMaxTocLevel ) || $toclevel < $wgMaxTocLevel ) ) {
4283 $toc .= Linker::tocLine( $linkAnchor, $tocline,
4284 $numbering, $toclevel, ( $isTemplate ? false : $sectionIndex ) );
4285 }
4286
4287 # Add the section to the section tree
4288 # Find the DOM node for this header
4289 $noOffset = ( $isTemplate || $sectionIndex === false );
4290 while ( $node && !$noOffset ) {
4291 if ( $node->getName() === 'h' ) {
4292 $bits = $node->splitHeading();
4293 if ( $bits['i'] == $sectionIndex ) {
4294 break;
4295 }
4296 }
4297 $byteOffset += mb_strlen( $this->mStripState->unstripBoth(
4298 $frame->expand( $node, PPFrame::RECOVER_ORIG ) ) );
4299 $node = $node->getNextSibling();
4300 }
4301 $tocraw[] = [
4302 'toclevel' => $toclevel,
4303 'level' => $level,
4304 'line' => $tocline,
4305 'number' => $numbering,
4306 'index' => ( $isTemplate ? 'T-' : '' ) . $sectionIndex,
4307 'fromtitle' => $titleText,
4308 'byteoffset' => ( $noOffset ? null : $byteOffset ),
4309 'anchor' => $anchor,
4310 ];
4311
4312 # give headline the correct <h#> tag
4313 if ( $maybeShowEditLink && $sectionIndex !== false ) {
4314 // Output edit section links as markers with styles that can be customized by skins
4315 if ( $isTemplate ) {
4316 # Put a T flag in the section identifier, to indicate to extractSections()
4317 # that sections inside <includeonly> should be counted.
4318 $editsectionPage = $titleText;
4319 $editsectionSection = "T-$sectionIndex";
4320 $editsectionContent = null;
4321 } else {
4322 $editsectionPage = $this->mTitle->getPrefixedText();
4323 $editsectionSection = $sectionIndex;
4324 $editsectionContent = $headlineHint;
4325 }
4326 // We use a bit of pesudo-xml for editsection markers. The
4327 // language converter is run later on. Using a UNIQ style marker
4328 // leads to the converter screwing up the tokens when it
4329 // converts stuff. And trying to insert strip tags fails too. At
4330 // this point all real inputted tags have already been escaped,
4331 // so we don't have to worry about a user trying to input one of
4332 // these markers directly. We use a page and section attribute
4333 // to stop the language converter from converting these
4334 // important bits of data, but put the headline hint inside a
4335 // content block because the language converter is supposed to
4336 // be able to convert that piece of data.
4337 // Gets replaced with html in ParserOutput::getText
4338 $editlink = '<mw:editsection page="' . htmlspecialchars( $editsectionPage );
4339 $editlink .= '" section="' . htmlspecialchars( $editsectionSection ) . '"';
4340 if ( $editsectionContent !== null ) {
4341 $editlink .= '>' . $editsectionContent . '</mw:editsection>';
4342 } else {
4343 $editlink .= '/>';
4344 }
4345 } else {
4346 $editlink = '';
4347 }
4348 $head[$headlineCount] = Linker::makeHeadline( $level,
4349 $matches['attrib'][$headlineCount], $anchor, $headline,
4350 $editlink, $fallbackAnchor );
4351
4352 $headlineCount++;
4353 }
4354
4355 $this->setOutputType( $oldType );
4356
4357 # Never ever show TOC if no headers
4358 if ( $numVisible < 1 ) {
4359 $enoughToc = false;
4360 }
4361
4362 if ( $enoughToc ) {
4363 if ( $prevtoclevel > 0 && $prevtoclevel < $wgMaxTocLevel ) {
4364 $toc .= Linker::tocUnindent( $prevtoclevel - 1 );
4365 }
4366 $toc = Linker::tocList( $toc, $this->mOptions->getUserLangObj() );
4367 $this->mOutput->setTOCHTML( $toc );
4368 $toc = self::TOC_START . $toc . self::TOC_END;
4369 }
4370
4371 if ( $isMain ) {
4372 $this->mOutput->setSections( $tocraw );
4373 }
4374
4375 # split up and insert constructed headlines
4376 $blocks = preg_split( '/<H[1-6].*?>[\s\S]*?<\/H[1-6]>/i', $text );
4377 $i = 0;
4378
4379 // build an array of document sections
4380 $sections = [];
4381 foreach ( $blocks as $block ) {
4382 // $head is zero-based, sections aren't.
4383 if ( empty( $head[$i - 1] ) ) {
4384 $sections[$i] = $block;
4385 } else {
4386 $sections[$i] = $head[$i - 1] . $block;
4387 }
4388
4389 /**
4390 * Send a hook, one per section.
4391 * The idea here is to be able to make section-level DIVs, but to do so in a
4392 * lower-impact, more correct way than r50769
4393 *
4394 * $this : caller
4395 * $section : the section number
4396 * &$sectionContent : ref to the content of the section
4397 * $showEditLinks : boolean describing whether this section has an edit link
4398 */
4399 Hooks::run( 'ParserSectionCreate', [ $this, $i, &$sections[$i], $showEditLink ] );
4400
4401 $i++;
4402 }
4403
4404 if ( $enoughToc && $isMain && !$this->mForceTocPosition ) {
4405 // append the TOC at the beginning
4406 // Top anchor now in skin
4407 $sections[0] = $sections[0] . $toc . "\n";
4408 }
4409
4410 $full .= implode( '', $sections );
4411
4412 if ( $this->mForceTocPosition ) {
4413 return str_replace( '<!--MWTOC-->', $toc, $full );
4414 } else {
4415 return $full;
4416 }
4417 }
4418
4419 /**
4420 * Transform wiki markup when saving a page by doing "\r\n" -> "\n"
4421 * conversion, substituting signatures, {{subst:}} templates, etc.
4422 *
4423 * @param string $text The text to transform
4424 * @param Title $title The Title object for the current article
4425 * @param User $user The User object describing the current user
4426 * @param ParserOptions $options Parsing options
4427 * @param bool $clearState Whether to clear the parser state first
4428 * @return string The altered wiki markup
4429 */
4430 public function preSaveTransform( $text, Title $title, User $user,
4431 ParserOptions $options, $clearState = true
4432 ) {
4433 if ( $clearState ) {
4434 $magicScopeVariable = $this->lock();
4435 }
4436 $this->startParse( $title, $options, self::OT_WIKI, $clearState );
4437 $this->setUser( $user );
4438
4439 // Strip U+0000 NULL (T159174)
4440 $text = str_replace( "\000", '', $text );
4441
4442 // We still normalize line endings for backwards-compatibility
4443 // with other code that just calls PST, but this should already
4444 // be handled in TextContent subclasses
4445 $text = TextContent::normalizeLineEndings( $text );
4446
4447 if ( $options->getPreSaveTransform() ) {
4448 $text = $this->pstPass2( $text, $user );
4449 }
4450 $text = $this->mStripState->unstripBoth( $text );
4451
4452 $this->setUser( null ); # Reset
4453
4454 return $text;
4455 }
4456
4457 /**
4458 * Pre-save transform helper function
4459 *
4460 * @param string $text
4461 * @param User $user
4462 *
4463 * @return string
4464 */
4465 private function pstPass2( $text, $user ) {
4466 global $wgContLang;
4467
4468 # Note: This is the timestamp saved as hardcoded wikitext to
4469 # the database, we use $wgContLang here in order to give
4470 # everyone the same signature and use the default one rather
4471 # than the one selected in each user's preferences.
4472 # (see also T14815)
4473 $ts = $this->mOptions->getTimestamp();
4474 $timestamp = MWTimestamp::getLocalInstance( $ts );
4475 $ts = $timestamp->format( 'YmdHis' );
4476 $tzMsg = $timestamp->getTimezoneMessage()->inContentLanguage()->text();
4477
4478 $d = $wgContLang->timeanddate( $ts, false, false ) . " ($tzMsg)";
4479
4480 # Variable replacement
4481 # Because mOutputType is OT_WIKI, this will only process {{subst:xxx}} type tags
4482 $text = $this->replaceVariables( $text );
4483
4484 # This works almost by chance, as the replaceVariables are done before the getUserSig(),
4485 # which may corrupt this parser instance via its wfMessage()->text() call-
4486
4487 # Signatures
4488 if ( strpos( $text, '~~~' ) !== false ) {
4489 $sigText = $this->getUserSig( $user );
4490 $text = strtr( $text, [
4491 '~~~~~' => $d,
4492 '~~~~' => "$sigText $d",
4493 '~~~' => $sigText
4494 ] );
4495 # The main two signature forms used above are time-sensitive
4496 $this->mOutput->setFlag( 'user-signature' );
4497 }
4498
4499 # Context links ("pipe tricks"): [[|name]] and [[name (context)|]]
4500 $tc = '[' . Title::legalChars() . ']';
4501 $nc = '[ _0-9A-Za-z\x80-\xff-]'; # Namespaces can use non-ascii!
4502
4503 // [[ns:page (context)|]]
4504 $p1 = "/\[\[(:?$nc+:|:|)($tc+?)( ?\\($tc+\\))\\|]]/";
4505 // [[ns:page(context)|]] (double-width brackets, added in r40257)
4506 $p4 = "/\[\[(:?$nc+:|:|)($tc+?)( ?($tc+))\\|]]/";
4507 // [[ns:page (context), context|]] (using either single or double-width comma)
4508 $p3 = "/\[\[(:?$nc+:|:|)($tc+?)( ?\\($tc+\\)|)((?:, |,)$tc+|)\\|]]/";
4509 // [[|page]] (reverse pipe trick: add context from page title)
4510 $p2 = "/\[\[\\|($tc+)]]/";
4511
4512 # try $p1 first, to turn "[[A, B (C)|]]" into "[[A, B (C)|A, B]]"
4513 $text = preg_replace( $p1, '[[\\1\\2\\3|\\2]]', $text );
4514 $text = preg_replace( $p4, '[[\\1\\2\\3|\\2]]', $text );
4515 $text = preg_replace( $p3, '[[\\1\\2\\3\\4|\\2]]', $text );
4516
4517 $t = $this->mTitle->getText();
4518 $m = [];
4519 if ( preg_match( "/^($nc+:|)$tc+?( \\($tc+\\))$/", $t, $m ) ) {
4520 $text = preg_replace( $p2, "[[$m[1]\\1$m[2]|\\1]]", $text );
4521 } elseif ( preg_match( "/^($nc+:|)$tc+?(, $tc+|)$/", $t, $m ) && "$m[1]$m[2]" != '' ) {
4522 $text = preg_replace( $p2, "[[$m[1]\\1$m[2]|\\1]]", $text );
4523 } else {
4524 # if there's no context, don't bother duplicating the title
4525 $text = preg_replace( $p2, '[[\\1]]', $text );
4526 }
4527
4528 return $text;
4529 }
4530
4531 /**
4532 * Fetch the user's signature text, if any, and normalize to
4533 * validated, ready-to-insert wikitext.
4534 * If you have pre-fetched the nickname or the fancySig option, you can
4535 * specify them here to save a database query.
4536 * Do not reuse this parser instance after calling getUserSig(),
4537 * as it may have changed if it's the $wgParser.
4538 *
4539 * @param User $user
4540 * @param string|bool $nickname Nickname to use or false to use user's default nickname
4541 * @param bool|null $fancySig whether the nicknname is the complete signature
4542 * or null to use default value
4543 * @return string
4544 */
4545 public function getUserSig( &$user, $nickname = false, $fancySig = null ) {
4546 global $wgMaxSigChars;
4547
4548 $username = $user->getName();
4549
4550 # If not given, retrieve from the user object.
4551 if ( $nickname === false ) {
4552 $nickname = $user->getOption( 'nickname' );
4553 }
4554
4555 if ( is_null( $fancySig ) ) {
4556 $fancySig = $user->getBoolOption( 'fancysig' );
4557 }
4558
4559 $nickname = $nickname == null ? $username : $nickname;
4560
4561 if ( mb_strlen( $nickname ) > $wgMaxSigChars ) {
4562 $nickname = $username;
4563 wfDebug( __METHOD__ . ": $username has overlong signature.\n" );
4564 } elseif ( $fancySig !== false ) {
4565 # Sig. might contain markup; validate this
4566 if ( $this->validateSig( $nickname ) !== false ) {
4567 # Validated; clean up (if needed) and return it
4568 return $this->cleanSig( $nickname, true );
4569 } else {
4570 # Failed to validate; fall back to the default
4571 $nickname = $username;
4572 wfDebug( __METHOD__ . ": $username has bad XML tags in signature.\n" );
4573 }
4574 }
4575
4576 # Make sure nickname doesnt get a sig in a sig
4577 $nickname = self::cleanSigInSig( $nickname );
4578
4579 # If we're still here, make it a link to the user page
4580 $userText = wfEscapeWikiText( $username );
4581 $nickText = wfEscapeWikiText( $nickname );
4582 $msgName = $user->isAnon() ? 'signature-anon' : 'signature';
4583
4584 return wfMessage( $msgName, $userText, $nickText )->inContentLanguage()
4585 ->title( $this->getTitle() )->text();
4586 }
4587
4588 /**
4589 * Check that the user's signature contains no bad XML
4590 *
4591 * @param string $text
4592 * @return string|bool An expanded string, or false if invalid.
4593 */
4594 public function validateSig( $text ) {
4595 return Xml::isWellFormedXmlFragment( $text ) ? $text : false;
4596 }
4597
4598 /**
4599 * Clean up signature text
4600 *
4601 * 1) Strip 3, 4 or 5 tildes out of signatures @see cleanSigInSig
4602 * 2) Substitute all transclusions
4603 *
4604 * @param string $text
4605 * @param bool $parsing Whether we're cleaning (preferences save) or parsing
4606 * @return string Signature text
4607 */
4608 public function cleanSig( $text, $parsing = false ) {
4609 if ( !$parsing ) {
4610 global $wgTitle;
4611 $magicScopeVariable = $this->lock();
4612 $this->startParse( $wgTitle, new ParserOptions, self::OT_PREPROCESS, true );
4613 }
4614
4615 # Option to disable this feature
4616 if ( !$this->mOptions->getCleanSignatures() ) {
4617 return $text;
4618 }
4619
4620 # @todo FIXME: Regex doesn't respect extension tags or nowiki
4621 # => Move this logic to braceSubstitution()
4622 $substWord = MagicWord::get( 'subst' );
4623 $substRegex = '/\{\{(?!(?:' . $substWord->getBaseRegex() . '))/x' . $substWord->getRegexCase();
4624 $substText = '{{' . $substWord->getSynonym( 0 );
4625
4626 $text = preg_replace( $substRegex, $substText, $text );
4627 $text = self::cleanSigInSig( $text );
4628 $dom = $this->preprocessToDom( $text );
4629 $frame = $this->getPreprocessor()->newFrame();
4630 $text = $frame->expand( $dom );
4631
4632 if ( !$parsing ) {
4633 $text = $this->mStripState->unstripBoth( $text );
4634 }
4635
4636 return $text;
4637 }
4638
4639 /**
4640 * Strip 3, 4 or 5 tildes out of signatures.
4641 *
4642 * @param string $text
4643 * @return string Signature text with /~{3,5}/ removed
4644 */
4645 public static function cleanSigInSig( $text ) {
4646 $text = preg_replace( '/~{3,5}/', '', $text );
4647 return $text;
4648 }
4649
4650 /**
4651 * Set up some variables which are usually set up in parse()
4652 * so that an external function can call some class members with confidence
4653 *
4654 * @param Title|null $title
4655 * @param ParserOptions $options
4656 * @param int $outputType
4657 * @param bool $clearState
4658 */
4659 public function startExternalParse( Title $title = null, ParserOptions $options,
4660 $outputType, $clearState = true
4661 ) {
4662 $this->startParse( $title, $options, $outputType, $clearState );
4663 }
4664
4665 /**
4666 * @param Title|null $title
4667 * @param ParserOptions $options
4668 * @param int $outputType
4669 * @param bool $clearState
4670 */
4671 private function startParse( Title $title = null, ParserOptions $options,
4672 $outputType, $clearState = true
4673 ) {
4674 $this->setTitle( $title );
4675 $this->mOptions = $options;
4676 $this->setOutputType( $outputType );
4677 if ( $clearState ) {
4678 $this->clearState();
4679 }
4680 }
4681
4682 /**
4683 * Wrapper for preprocess()
4684 *
4685 * @param string $text The text to preprocess
4686 * @param ParserOptions $options Options
4687 * @param Title|null $title Title object or null to use $wgTitle
4688 * @return string
4689 */
4690 public function transformMsg( $text, $options, $title = null ) {
4691 static $executing = false;
4692
4693 # Guard against infinite recursion
4694 if ( $executing ) {
4695 return $text;
4696 }
4697 $executing = true;
4698
4699 if ( !$title ) {
4700 global $wgTitle;
4701 $title = $wgTitle;
4702 }
4703
4704 $text = $this->preprocess( $text, $title, $options );
4705
4706 $executing = false;
4707 return $text;
4708 }
4709
4710 /**
4711 * Create an HTML-style tag, e.g. "<yourtag>special text</yourtag>"
4712 * The callback should have the following form:
4713 * function myParserHook( $text, $params, $parser, $frame ) { ... }
4714 *
4715 * Transform and return $text. Use $parser for any required context, e.g. use
4716 * $parser->getTitle() and $parser->getOptions() not $wgTitle or $wgOut->mParserOptions
4717 *
4718 * Hooks may return extended information by returning an array, of which the
4719 * first numbered element (index 0) must be the return string, and all other
4720 * entries are extracted into local variables within an internal function
4721 * in the Parser class.
4722 *
4723 * This interface (introduced r61913) appears to be undocumented, but
4724 * 'markerType' is used by some core tag hooks to override which strip
4725 * array their results are placed in. **Use great caution if attempting
4726 * this interface, as it is not documented and injudicious use could smash
4727 * private variables.**
4728 *
4729 * @param string $tag The tag to use, e.g. 'hook' for "<hook>"
4730 * @param callable $callback The callback function (and object) to use for the tag
4731 * @throws MWException
4732 * @return callable|null The old value of the mTagHooks array associated with the hook
4733 */
4734 public function setHook( $tag, callable $callback ) {
4735 $tag = strtolower( $tag );
4736 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
4737 throw new MWException( "Invalid character {$m[0]} in setHook('$tag', ...) call" );
4738 }
4739 $oldVal = isset( $this->mTagHooks[$tag] ) ? $this->mTagHooks[$tag] : null;
4740 $this->mTagHooks[$tag] = $callback;
4741 if ( !in_array( $tag, $this->mStripList ) ) {
4742 $this->mStripList[] = $tag;
4743 }
4744
4745 return $oldVal;
4746 }
4747
4748 /**
4749 * As setHook(), but letting the contents be parsed.
4750 *
4751 * Transparent tag hooks are like regular XML-style tag hooks, except they
4752 * operate late in the transformation sequence, on HTML instead of wikitext.
4753 *
4754 * This is probably obsoleted by things dealing with parser frames?
4755 * The only extension currently using it is geoserver.
4756 *
4757 * @since 1.10
4758 * @todo better document or deprecate this
4759 *
4760 * @param string $tag The tag to use, e.g. 'hook' for "<hook>"
4761 * @param callable $callback The callback function (and object) to use for the tag
4762 * @throws MWException
4763 * @return callable|null The old value of the mTagHooks array associated with the hook
4764 */
4765 public function setTransparentTagHook( $tag, callable $callback ) {
4766 $tag = strtolower( $tag );
4767 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
4768 throw new MWException( "Invalid character {$m[0]} in setTransparentHook('$tag', ...) call" );
4769 }
4770 $oldVal = isset( $this->mTransparentTagHooks[$tag] ) ? $this->mTransparentTagHooks[$tag] : null;
4771 $this->mTransparentTagHooks[$tag] = $callback;
4772
4773 return $oldVal;
4774 }
4775
4776 /**
4777 * Remove all tag hooks
4778 */
4779 public function clearTagHooks() {
4780 $this->mTagHooks = [];
4781 $this->mFunctionTagHooks = [];
4782 $this->mStripList = $this->mDefaultStripList;
4783 }
4784
4785 /**
4786 * Create a function, e.g. {{sum:1|2|3}}
4787 * The callback function should have the form:
4788 * function myParserFunction( &$parser, $arg1, $arg2, $arg3 ) { ... }
4789 *
4790 * Or with Parser::SFH_OBJECT_ARGS:
4791 * function myParserFunction( $parser, $frame, $args ) { ... }
4792 *
4793 * The callback may either return the text result of the function, or an array with the text
4794 * in element 0, and a number of flags in the other elements. The names of the flags are
4795 * specified in the keys. Valid flags are:
4796 * found The text returned is valid, stop processing the template. This
4797 * is on by default.
4798 * nowiki Wiki markup in the return value should be escaped
4799 * isHTML The returned text is HTML, armour it against wikitext transformation
4800 *
4801 * @param string $id The magic word ID
4802 * @param callable $callback The callback function (and object) to use
4803 * @param int $flags A combination of the following flags:
4804 * Parser::SFH_NO_HASH No leading hash, i.e. {{plural:...}} instead of {{#if:...}}
4805 *
4806 * Parser::SFH_OBJECT_ARGS Pass the template arguments as PPNode objects instead of text.
4807 * This allows for conditional expansion of the parse tree, allowing you to eliminate dead
4808 * branches and thus speed up parsing. It is also possible to analyse the parse tree of
4809 * the arguments, and to control the way they are expanded.
4810 *
4811 * The $frame parameter is a PPFrame. This can be used to produce expanded text from the
4812 * arguments, for instance:
4813 * $text = isset( $args[0] ) ? $frame->expand( $args[0] ) : '';
4814 *
4815 * For technical reasons, $args[0] is pre-expanded and will be a string. This may change in
4816 * future versions. Please call $frame->expand() on it anyway so that your code keeps
4817 * working if/when this is changed.
4818 *
4819 * If you want whitespace to be trimmed from $args, you need to do it yourself, post-
4820 * expansion.
4821 *
4822 * Please read the documentation in includes/parser/Preprocessor.php for more information
4823 * about the methods available in PPFrame and PPNode.
4824 *
4825 * @throws MWException
4826 * @return string|callable The old callback function for this name, if any
4827 */
4828 public function setFunctionHook( $id, callable $callback, $flags = 0 ) {
4829 global $wgContLang;
4830
4831 $oldVal = isset( $this->mFunctionHooks[$id] ) ? $this->mFunctionHooks[$id][0] : null;
4832 $this->mFunctionHooks[$id] = [ $callback, $flags ];
4833
4834 # Add to function cache
4835 $mw = MagicWord::get( $id );
4836 if ( !$mw ) {
4837 throw new MWException( __METHOD__ . '() expecting a magic word identifier.' );
4838 }
4839
4840 $synonyms = $mw->getSynonyms();
4841 $sensitive = intval( $mw->isCaseSensitive() );
4842
4843 foreach ( $synonyms as $syn ) {
4844 # Case
4845 if ( !$sensitive ) {
4846 $syn = $wgContLang->lc( $syn );
4847 }
4848 # Add leading hash
4849 if ( !( $flags & self::SFH_NO_HASH ) ) {
4850 $syn = '#' . $syn;
4851 }
4852 # Remove trailing colon
4853 if ( substr( $syn, -1, 1 ) === ':' ) {
4854 $syn = substr( $syn, 0, -1 );
4855 }
4856 $this->mFunctionSynonyms[$sensitive][$syn] = $id;
4857 }
4858 return $oldVal;
4859 }
4860
4861 /**
4862 * Get all registered function hook identifiers
4863 *
4864 * @return array
4865 */
4866 public function getFunctionHooks() {
4867 return array_keys( $this->mFunctionHooks );
4868 }
4869
4870 /**
4871 * Create a tag function, e.g. "<test>some stuff</test>".
4872 * Unlike tag hooks, tag functions are parsed at preprocessor level.
4873 * Unlike parser functions, their content is not preprocessed.
4874 * @param string $tag
4875 * @param callable $callback
4876 * @param int $flags
4877 * @throws MWException
4878 * @return null
4879 */
4880 public function setFunctionTagHook( $tag, callable $callback, $flags ) {
4881 $tag = strtolower( $tag );
4882 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
4883 throw new MWException( "Invalid character {$m[0]} in setFunctionTagHook('$tag', ...) call" );
4884 }
4885 $old = isset( $this->mFunctionTagHooks[$tag] ) ?
4886 $this->mFunctionTagHooks[$tag] : null;
4887 $this->mFunctionTagHooks[$tag] = [ $callback, $flags ];
4888
4889 if ( !in_array( $tag, $this->mStripList ) ) {
4890 $this->mStripList[] = $tag;
4891 }
4892
4893 return $old;
4894 }
4895
4896 /**
4897 * Replace "<!--LINK-->" link placeholders with actual links, in the buffer
4898 * Placeholders created in Linker::link()
4899 *
4900 * @param string $text
4901 * @param int $options
4902 */
4903 public function replaceLinkHolders( &$text, $options = 0 ) {
4904 $this->mLinkHolders->replace( $text );
4905 }
4906
4907 /**
4908 * Replace "<!--LINK-->" link placeholders with plain text of links
4909 * (not HTML-formatted).
4910 *
4911 * @param string $text
4912 * @return string
4913 */
4914 public function replaceLinkHoldersText( $text ) {
4915 return $this->mLinkHolders->replaceText( $text );
4916 }
4917
4918 /**
4919 * Renders an image gallery from a text with one line per image.
4920 * text labels may be given by using |-style alternative text. E.g.
4921 * Image:one.jpg|The number "1"
4922 * Image:tree.jpg|A tree
4923 * given as text will return the HTML of a gallery with two images,
4924 * labeled 'The number "1"' and
4925 * 'A tree'.
4926 *
4927 * @param string $text
4928 * @param array $params
4929 * @return string HTML
4930 */
4931 public function renderImageGallery( $text, $params ) {
4932 $mode = false;
4933 if ( isset( $params['mode'] ) ) {
4934 $mode = $params['mode'];
4935 }
4936
4937 try {
4938 $ig = ImageGalleryBase::factory( $mode );
4939 } catch ( Exception $e ) {
4940 // If invalid type set, fallback to default.
4941 $ig = ImageGalleryBase::factory( false );
4942 }
4943
4944 $ig->setContextTitle( $this->mTitle );
4945 $ig->setShowBytes( false );
4946 $ig->setShowDimensions( false );
4947 $ig->setShowFilename( false );
4948 $ig->setParser( $this );
4949 $ig->setHideBadImages();
4950 $ig->setAttributes( Sanitizer::validateTagAttributes( $params, 'ul' ) );
4951
4952 if ( isset( $params['showfilename'] ) ) {
4953 $ig->setShowFilename( true );
4954 } else {
4955 $ig->setShowFilename( false );
4956 }
4957 if ( isset( $params['caption'] ) ) {
4958 $caption = $params['caption'];
4959 $caption = htmlspecialchars( $caption );
4960 $caption = $this->replaceInternalLinks( $caption );
4961 $ig->setCaptionHtml( $caption );
4962 }
4963 if ( isset( $params['perrow'] ) ) {
4964 $ig->setPerRow( $params['perrow'] );
4965 }
4966 if ( isset( $params['widths'] ) ) {
4967 $ig->setWidths( $params['widths'] );
4968 }
4969 if ( isset( $params['heights'] ) ) {
4970 $ig->setHeights( $params['heights'] );
4971 }
4972 $ig->setAdditionalOptions( $params );
4973
4974 // Avoid PHP 7.1 warning from passing $this by reference
4975 $parser = $this;
4976 Hooks::run( 'BeforeParserrenderImageGallery', [ &$parser, &$ig ] );
4977
4978 $lines = StringUtils::explode( "\n", $text );
4979 foreach ( $lines as $line ) {
4980 # match lines like these:
4981 # Image:someimage.jpg|This is some image
4982 $matches = [];
4983 preg_match( "/^([^|]+)(\\|(.*))?$/", $line, $matches );
4984 # Skip empty lines
4985 if ( count( $matches ) == 0 ) {
4986 continue;
4987 }
4988
4989 if ( strpos( $matches[0], '%' ) !== false ) {
4990 $matches[1] = rawurldecode( $matches[1] );
4991 }
4992 $title = Title::newFromText( $matches[1], NS_FILE );
4993 if ( is_null( $title ) ) {
4994 # Bogus title. Ignore these so we don't bomb out later.
4995 continue;
4996 }
4997
4998 # We need to get what handler the file uses, to figure out parameters.
4999 # Note, a hook can overide the file name, and chose an entirely different
5000 # file (which potentially could be of a different type and have different handler).
5001 $options = [];
5002 $descQuery = false;
5003 Hooks::run( 'BeforeParserFetchFileAndTitle',
5004 [ $this, $title, &$options, &$descQuery ] );
5005 # Don't register it now, as TraditionalImageGallery does that later.
5006 $file = $this->fetchFileNoRegister( $title, $options );
5007 $handler = $file ? $file->getHandler() : false;
5008
5009 $paramMap = [
5010 'img_alt' => 'gallery-internal-alt',
5011 'img_link' => 'gallery-internal-link',
5012 ];
5013 if ( $handler ) {
5014 $paramMap = $paramMap + $handler->getParamMap();
5015 // We don't want people to specify per-image widths.
5016 // Additionally the width parameter would need special casing anyhow.
5017 unset( $paramMap['img_width'] );
5018 }
5019
5020 $mwArray = new MagicWordArray( array_keys( $paramMap ) );
5021
5022 $label = '';
5023 $alt = '';
5024 $link = '';
5025 $handlerOptions = [];
5026 if ( isset( $matches[3] ) ) {
5027 // look for an |alt= definition while trying not to break existing
5028 // captions with multiple pipes (|) in it, until a more sensible grammar
5029 // is defined for images in galleries
5030
5031 // FIXME: Doing recursiveTagParse at this stage, and the trim before
5032 // splitting on '|' is a bit odd, and different from makeImage.
5033 $matches[3] = $this->recursiveTagParse( trim( $matches[3] ) );
5034 // Protect LanguageConverter markup
5035 $parameterMatches = StringUtils::delimiterExplode(
5036 '-{', '}-', '|', $matches[3], true /* nested */
5037 );
5038
5039 foreach ( $parameterMatches as $parameterMatch ) {
5040 list( $magicName, $match ) = $mwArray->matchVariableStartToEnd( $parameterMatch );
5041 if ( $magicName ) {
5042 $paramName = $paramMap[$magicName];
5043
5044 switch ( $paramName ) {
5045 case 'gallery-internal-alt':
5046 $alt = $this->stripAltText( $match, false );
5047 break;
5048 case 'gallery-internal-link':
5049 $linkValue = strip_tags( $this->replaceLinkHoldersText( $match ) );
5050 $chars = self::EXT_LINK_URL_CLASS;
5051 $addr = self::EXT_LINK_ADDR;
5052 $prots = $this->mUrlProtocols;
5053 // check to see if link matches an absolute url, if not then it must be a wiki link.
5054 if ( preg_match( '/^-{R|(.*)}-$/', $linkValue ) ) {
5055 // Result of LanguageConverter::markNoConversion
5056 // invoked on an external link.
5057 $linkValue = substr( $linkValue, 4, -2 );
5058 }
5059 if ( preg_match( "/^($prots)$addr$chars*$/u", $linkValue ) ) {
5060 $link = $linkValue;
5061 $this->mOutput->addExternalLink( $link );
5062 } else {
5063 $localLinkTitle = Title::newFromText( $linkValue );
5064 if ( $localLinkTitle !== null ) {
5065 $this->mOutput->addLink( $localLinkTitle );
5066 $link = $localLinkTitle->getLinkURL();
5067 }
5068 }
5069 break;
5070 default:
5071 // Must be a handler specific parameter.
5072 if ( $handler->validateParam( $paramName, $match ) ) {
5073 $handlerOptions[$paramName] = $match;
5074 } else {
5075 // Guess not, consider it as caption.
5076 wfDebug( "$parameterMatch failed parameter validation\n" );
5077 $label = '|' . $parameterMatch;
5078 }
5079 }
5080
5081 } else {
5082 // Last pipe wins.
5083 $label = '|' . $parameterMatch;
5084 }
5085 }
5086 // Remove the pipe.
5087 $label = substr( $label, 1 );
5088 }
5089
5090 $ig->add( $title, $label, $alt, $link, $handlerOptions );
5091 }
5092 $html = $ig->toHTML();
5093 Hooks::run( 'AfterParserFetchFileAndTitle', [ $this, $ig, &$html ] );
5094 return $html;
5095 }
5096
5097 /**
5098 * @param MediaHandler $handler
5099 * @return array
5100 */
5101 public function getImageParams( $handler ) {
5102 if ( $handler ) {
5103 $handlerClass = get_class( $handler );
5104 } else {
5105 $handlerClass = '';
5106 }
5107 if ( !isset( $this->mImageParams[$handlerClass] ) ) {
5108 # Initialise static lists
5109 static $internalParamNames = [
5110 'horizAlign' => [ 'left', 'right', 'center', 'none' ],
5111 'vertAlign' => [ 'baseline', 'sub', 'super', 'top', 'text-top', 'middle',
5112 'bottom', 'text-bottom' ],
5113 'frame' => [ 'thumbnail', 'manualthumb', 'framed', 'frameless',
5114 'upright', 'border', 'link', 'alt', 'class' ],
5115 ];
5116 static $internalParamMap;
5117 if ( !$internalParamMap ) {
5118 $internalParamMap = [];
5119 foreach ( $internalParamNames as $type => $names ) {
5120 foreach ( $names as $name ) {
5121 // For grep: img_left, img_right, img_center, img_none,
5122 // img_baseline, img_sub, img_super, img_top, img_text_top, img_middle,
5123 // img_bottom, img_text_bottom,
5124 // img_thumbnail, img_manualthumb, img_framed, img_frameless, img_upright,
5125 // img_border, img_link, img_alt, img_class
5126 $magicName = str_replace( '-', '_', "img_$name" );
5127 $internalParamMap[$magicName] = [ $type, $name ];
5128 }
5129 }
5130 }
5131
5132 # Add handler params
5133 $paramMap = $internalParamMap;
5134 if ( $handler ) {
5135 $handlerParamMap = $handler->getParamMap();
5136 foreach ( $handlerParamMap as $magic => $paramName ) {
5137 $paramMap[$magic] = [ 'handler', $paramName ];
5138 }
5139 }
5140 $this->mImageParams[$handlerClass] = $paramMap;
5141 $this->mImageParamsMagicArray[$handlerClass] = new MagicWordArray( array_keys( $paramMap ) );
5142 }
5143 return [ $this->mImageParams[$handlerClass], $this->mImageParamsMagicArray[$handlerClass] ];
5144 }
5145
5146 /**
5147 * Parse image options text and use it to make an image
5148 *
5149 * @param Title $title
5150 * @param string $options
5151 * @param LinkHolderArray|bool $holders
5152 * @return string HTML
5153 */
5154 public function makeImage( $title, $options, $holders = false ) {
5155 # Check if the options text is of the form "options|alt text"
5156 # Options are:
5157 # * thumbnail make a thumbnail with enlarge-icon and caption, alignment depends on lang
5158 # * left no resizing, just left align. label is used for alt= only
5159 # * right same, but right aligned
5160 # * none same, but not aligned
5161 # * ___px scale to ___ pixels width, no aligning. e.g. use in taxobox
5162 # * center center the image
5163 # * frame Keep original image size, no magnify-button.
5164 # * framed Same as "frame"
5165 # * frameless like 'thumb' but without a frame. Keeps user preferences for width
5166 # * upright reduce width for upright images, rounded to full __0 px
5167 # * border draw a 1px border around the image
5168 # * alt Text for HTML alt attribute (defaults to empty)
5169 # * class Set a class for img node
5170 # * link Set the target of the image link. Can be external, interwiki, or local
5171 # vertical-align values (no % or length right now):
5172 # * baseline
5173 # * sub
5174 # * super
5175 # * top
5176 # * text-top
5177 # * middle
5178 # * bottom
5179 # * text-bottom
5180
5181 # Protect LanguageConverter markup when splitting into parts
5182 $parts = StringUtils::delimiterExplode(
5183 '-{', '}-', '|', $options, true /* allow nesting */
5184 );
5185
5186 # Give extensions a chance to select the file revision for us
5187 $options = [];
5188 $descQuery = false;
5189 Hooks::run( 'BeforeParserFetchFileAndTitle',
5190 [ $this, $title, &$options, &$descQuery ] );
5191 # Fetch and register the file (file title may be different via hooks)
5192 list( $file, $title ) = $this->fetchFileAndTitle( $title, $options );
5193
5194 # Get parameter map
5195 $handler = $file ? $file->getHandler() : false;
5196
5197 list( $paramMap, $mwArray ) = $this->getImageParams( $handler );
5198
5199 if ( !$file ) {
5200 $this->addTrackingCategory( 'broken-file-category' );
5201 }
5202
5203 # Process the input parameters
5204 $caption = '';
5205 $params = [ 'frame' => [], 'handler' => [],
5206 'horizAlign' => [], 'vertAlign' => [] ];
5207 $seenformat = false;
5208 foreach ( $parts as $part ) {
5209 $part = trim( $part );
5210 list( $magicName, $value ) = $mwArray->matchVariableStartToEnd( $part );
5211 $validated = false;
5212 if ( isset( $paramMap[$magicName] ) ) {
5213 list( $type, $paramName ) = $paramMap[$magicName];
5214
5215 # Special case; width and height come in one variable together
5216 if ( $type === 'handler' && $paramName === 'width' ) {
5217 $parsedWidthParam = $this->parseWidthParam( $value );
5218 if ( isset( $parsedWidthParam['width'] ) ) {
5219 $width = $parsedWidthParam['width'];
5220 if ( $handler->validateParam( 'width', $width ) ) {
5221 $params[$type]['width'] = $width;
5222 $validated = true;
5223 }
5224 }
5225 if ( isset( $parsedWidthParam['height'] ) ) {
5226 $height = $parsedWidthParam['height'];
5227 if ( $handler->validateParam( 'height', $height ) ) {
5228 $params[$type]['height'] = $height;
5229 $validated = true;
5230 }
5231 }
5232 # else no validation -- T15436
5233 } else {
5234 if ( $type === 'handler' ) {
5235 # Validate handler parameter
5236 $validated = $handler->validateParam( $paramName, $value );
5237 } else {
5238 # Validate internal parameters
5239 switch ( $paramName ) {
5240 case 'manualthumb':
5241 case 'alt':
5242 case 'class':
5243 # @todo FIXME: Possibly check validity here for
5244 # manualthumb? downstream behavior seems odd with
5245 # missing manual thumbs.
5246 $validated = true;
5247 $value = $this->stripAltText( $value, $holders );
5248 break;
5249 case 'link':
5250 $chars = self::EXT_LINK_URL_CLASS;
5251 $addr = self::EXT_LINK_ADDR;
5252 $prots = $this->mUrlProtocols;
5253 if ( $value === '' ) {
5254 $paramName = 'no-link';
5255 $value = true;
5256 $validated = true;
5257 } elseif ( preg_match( "/^((?i)$prots)/", $value ) ) {
5258 if ( preg_match( "/^((?i)$prots)$addr$chars*$/u", $value, $m ) ) {
5259 $paramName = 'link-url';
5260 $this->mOutput->addExternalLink( $value );
5261 if ( $this->mOptions->getExternalLinkTarget() ) {
5262 $params[$type]['link-target'] = $this->mOptions->getExternalLinkTarget();
5263 }
5264 $validated = true;
5265 }
5266 } else {
5267 $linkTitle = Title::newFromText( $value );
5268 if ( $linkTitle ) {
5269 $paramName = 'link-title';
5270 $value = $linkTitle;
5271 $this->mOutput->addLink( $linkTitle );
5272 $validated = true;
5273 }
5274 }
5275 break;
5276 case 'frameless':
5277 case 'framed':
5278 case 'thumbnail':
5279 // use first appearing option, discard others.
5280 $validated = !$seenformat;
5281 $seenformat = true;
5282 break;
5283 default:
5284 # Most other things appear to be empty or numeric...
5285 $validated = ( $value === false || is_numeric( trim( $value ) ) );
5286 }
5287 }
5288
5289 if ( $validated ) {
5290 $params[$type][$paramName] = $value;
5291 }
5292 }
5293 }
5294 if ( !$validated ) {
5295 $caption = $part;
5296 }
5297 }
5298
5299 # Process alignment parameters
5300 if ( $params['horizAlign'] ) {
5301 $params['frame']['align'] = key( $params['horizAlign'] );
5302 }
5303 if ( $params['vertAlign'] ) {
5304 $params['frame']['valign'] = key( $params['vertAlign'] );
5305 }
5306
5307 $params['frame']['caption'] = $caption;
5308
5309 # Will the image be presented in a frame, with the caption below?
5310 $imageIsFramed = isset( $params['frame']['frame'] )
5311 || isset( $params['frame']['framed'] )
5312 || isset( $params['frame']['thumbnail'] )
5313 || isset( $params['frame']['manualthumb'] );
5314
5315 # In the old days, [[Image:Foo|text...]] would set alt text. Later it
5316 # came to also set the caption, ordinary text after the image -- which
5317 # makes no sense, because that just repeats the text multiple times in
5318 # screen readers. It *also* came to set the title attribute.
5319 # Now that we have an alt attribute, we should not set the alt text to
5320 # equal the caption: that's worse than useless, it just repeats the
5321 # text. This is the framed/thumbnail case. If there's no caption, we
5322 # use the unnamed parameter for alt text as well, just for the time be-
5323 # ing, if the unnamed param is set and the alt param is not.
5324 # For the future, we need to figure out if we want to tweak this more,
5325 # e.g., introducing a title= parameter for the title; ignoring the un-
5326 # named parameter entirely for images without a caption; adding an ex-
5327 # plicit caption= parameter and preserving the old magic unnamed para-
5328 # meter for BC; ...
5329 if ( $imageIsFramed ) { # Framed image
5330 if ( $caption === '' && !isset( $params['frame']['alt'] ) ) {
5331 # No caption or alt text, add the filename as the alt text so
5332 # that screen readers at least get some description of the image
5333 $params['frame']['alt'] = $title->getText();
5334 }
5335 # Do not set $params['frame']['title'] because tooltips don't make sense
5336 # for framed images
5337 } else { # Inline image
5338 if ( !isset( $params['frame']['alt'] ) ) {
5339 # No alt text, use the "caption" for the alt text
5340 if ( $caption !== '' ) {
5341 $params['frame']['alt'] = $this->stripAltText( $caption, $holders );
5342 } else {
5343 # No caption, fall back to using the filename for the
5344 # alt text
5345 $params['frame']['alt'] = $title->getText();
5346 }
5347 }
5348 # Use the "caption" for the tooltip text
5349 $params['frame']['title'] = $this->stripAltText( $caption, $holders );
5350 }
5351
5352 Hooks::run( 'ParserMakeImageParams', [ $title, $file, &$params, $this ] );
5353
5354 # Linker does the rest
5355 $time = isset( $options['time'] ) ? $options['time'] : false;
5356 $ret = Linker::makeImageLink( $this, $title, $file, $params['frame'], $params['handler'],
5357 $time, $descQuery, $this->mOptions->getThumbSize() );
5358
5359 # Give the handler a chance to modify the parser object
5360 if ( $handler ) {
5361 $handler->parserTransformHook( $this, $file );
5362 }
5363
5364 return $ret;
5365 }
5366
5367 /**
5368 * @param string $caption
5369 * @param LinkHolderArray|bool $holders
5370 * @return mixed|string
5371 */
5372 protected function stripAltText( $caption, $holders ) {
5373 # Strip bad stuff out of the title (tooltip). We can't just use
5374 # replaceLinkHoldersText() here, because if this function is called
5375 # from replaceInternalLinks2(), mLinkHolders won't be up-to-date.
5376 if ( $holders ) {
5377 $tooltip = $holders->replaceText( $caption );
5378 } else {
5379 $tooltip = $this->replaceLinkHoldersText( $caption );
5380 }
5381
5382 # make sure there are no placeholders in thumbnail attributes
5383 # that are later expanded to html- so expand them now and
5384 # remove the tags
5385 $tooltip = $this->mStripState->unstripBoth( $tooltip );
5386 $tooltip = Sanitizer::stripAllTags( $tooltip );
5387
5388 return $tooltip;
5389 }
5390
5391 /**
5392 * Set a flag in the output object indicating that the content is dynamic and
5393 * shouldn't be cached.
5394 * @deprecated since 1.28; use getOutput()->updateCacheExpiry()
5395 */
5396 public function disableCache() {
5397 wfDebug( "Parser output marked as uncacheable.\n" );
5398 if ( !$this->mOutput ) {
5399 throw new MWException( __METHOD__ .
5400 " can only be called when actually parsing something" );
5401 }
5402 $this->mOutput->updateCacheExpiry( 0 ); // new style, for consistency
5403 }
5404
5405 /**
5406 * Callback from the Sanitizer for expanding items found in HTML attribute
5407 * values, so they can be safely tested and escaped.
5408 *
5409 * @param string $text
5410 * @param bool|PPFrame $frame
5411 * @return string
5412 */
5413 public function attributeStripCallback( &$text, $frame = false ) {
5414 $text = $this->replaceVariables( $text, $frame );
5415 $text = $this->mStripState->unstripBoth( $text );
5416 return $text;
5417 }
5418
5419 /**
5420 * Accessor
5421 *
5422 * @return array
5423 */
5424 public function getTags() {
5425 return array_merge(
5426 array_keys( $this->mTransparentTagHooks ),
5427 array_keys( $this->mTagHooks ),
5428 array_keys( $this->mFunctionTagHooks )
5429 );
5430 }
5431
5432 /**
5433 * Replace transparent tags in $text with the values given by the callbacks.
5434 *
5435 * Transparent tag hooks are like regular XML-style tag hooks, except they
5436 * operate late in the transformation sequence, on HTML instead of wikitext.
5437 *
5438 * @param string $text
5439 *
5440 * @return string
5441 */
5442 public function replaceTransparentTags( $text ) {
5443 $matches = [];
5444 $elements = array_keys( $this->mTransparentTagHooks );
5445 $text = self::extractTagsAndParams( $elements, $text, $matches );
5446 $replacements = [];
5447
5448 foreach ( $matches as $marker => $data ) {
5449 list( $element, $content, $params, $tag ) = $data;
5450 $tagName = strtolower( $element );
5451 if ( isset( $this->mTransparentTagHooks[$tagName] ) ) {
5452 $output = call_user_func_array(
5453 $this->mTransparentTagHooks[$tagName],
5454 [ $content, $params, $this ]
5455 );
5456 } else {
5457 $output = $tag;
5458 }
5459 $replacements[$marker] = $output;
5460 }
5461 return strtr( $text, $replacements );
5462 }
5463
5464 /**
5465 * Break wikitext input into sections, and either pull or replace
5466 * some particular section's text.
5467 *
5468 * External callers should use the getSection and replaceSection methods.
5469 *
5470 * @param string $text Page wikitext
5471 * @param string|int $sectionId A section identifier string of the form:
5472 * "<flag1> - <flag2> - ... - <section number>"
5473 *
5474 * Currently the only recognised flag is "T", which means the target section number
5475 * was derived during a template inclusion parse, in other words this is a template
5476 * section edit link. If no flags are given, it was an ordinary section edit link.
5477 * This flag is required to avoid a section numbering mismatch when a section is
5478 * enclosed by "<includeonly>" (T8563).
5479 *
5480 * The section number 0 pulls the text before the first heading; other numbers will
5481 * pull the given section along with its lower-level subsections. If the section is
5482 * not found, $mode=get will return $newtext, and $mode=replace will return $text.
5483 *
5484 * Section 0 is always considered to exist, even if it only contains the empty
5485 * string. If $text is the empty string and section 0 is replaced, $newText is
5486 * returned.
5487 *
5488 * @param string $mode One of "get" or "replace"
5489 * @param string $newText Replacement text for section data.
5490 * @return string For "get", the extracted section text.
5491 * for "replace", the whole page with the section replaced.
5492 */
5493 private function extractSections( $text, $sectionId, $mode, $newText = '' ) {
5494 global $wgTitle; # not generally used but removes an ugly failure mode
5495
5496 $magicScopeVariable = $this->lock();
5497 $this->startParse( $wgTitle, new ParserOptions, self::OT_PLAIN, true );
5498 $outText = '';
5499 $frame = $this->getPreprocessor()->newFrame();
5500
5501 # Process section extraction flags
5502 $flags = 0;
5503 $sectionParts = explode( '-', $sectionId );
5504 $sectionIndex = array_pop( $sectionParts );
5505 foreach ( $sectionParts as $part ) {
5506 if ( $part === 'T' ) {
5507 $flags |= self::PTD_FOR_INCLUSION;
5508 }
5509 }
5510
5511 # Check for empty input
5512 if ( strval( $text ) === '' ) {
5513 # Only sections 0 and T-0 exist in an empty document
5514 if ( $sectionIndex == 0 ) {
5515 if ( $mode === 'get' ) {
5516 return '';
5517 } else {
5518 return $newText;
5519 }
5520 } else {
5521 if ( $mode === 'get' ) {
5522 return $newText;
5523 } else {
5524 return $text;
5525 }
5526 }
5527 }
5528
5529 # Preprocess the text
5530 $root = $this->preprocessToDom( $text, $flags );
5531
5532 # <h> nodes indicate section breaks
5533 # They can only occur at the top level, so we can find them by iterating the root's children
5534 $node = $root->getFirstChild();
5535
5536 # Find the target section
5537 if ( $sectionIndex == 0 ) {
5538 # Section zero doesn't nest, level=big
5539 $targetLevel = 1000;
5540 } else {
5541 while ( $node ) {
5542 if ( $node->getName() === 'h' ) {
5543 $bits = $node->splitHeading();
5544 if ( $bits['i'] == $sectionIndex ) {
5545 $targetLevel = $bits['level'];
5546 break;
5547 }
5548 }
5549 if ( $mode === 'replace' ) {
5550 $outText .= $frame->expand( $node, PPFrame::RECOVER_ORIG );
5551 }
5552 $node = $node->getNextSibling();
5553 }
5554 }
5555
5556 if ( !$node ) {
5557 # Not found
5558 if ( $mode === 'get' ) {
5559 return $newText;
5560 } else {
5561 return $text;
5562 }
5563 }
5564
5565 # Find the end of the section, including nested sections
5566 do {
5567 if ( $node->getName() === 'h' ) {
5568 $bits = $node->splitHeading();
5569 $curLevel = $bits['level'];
5570 if ( $bits['i'] != $sectionIndex && $curLevel <= $targetLevel ) {
5571 break;
5572 }
5573 }
5574 if ( $mode === 'get' ) {
5575 $outText .= $frame->expand( $node, PPFrame::RECOVER_ORIG );
5576 }
5577 $node = $node->getNextSibling();
5578 } while ( $node );
5579
5580 # Write out the remainder (in replace mode only)
5581 if ( $mode === 'replace' ) {
5582 # Output the replacement text
5583 # Add two newlines on -- trailing whitespace in $newText is conventionally
5584 # stripped by the editor, so we need both newlines to restore the paragraph gap
5585 # Only add trailing whitespace if there is newText
5586 if ( $newText != "" ) {
5587 $outText .= $newText . "\n\n";
5588 }
5589
5590 while ( $node ) {
5591 $outText .= $frame->expand( $node, PPFrame::RECOVER_ORIG );
5592 $node = $node->getNextSibling();
5593 }
5594 }
5595
5596 if ( is_string( $outText ) ) {
5597 # Re-insert stripped tags
5598 $outText = rtrim( $this->mStripState->unstripBoth( $outText ) );
5599 }
5600
5601 return $outText;
5602 }
5603
5604 /**
5605 * This function returns the text of a section, specified by a number ($section).
5606 * A section is text under a heading like == Heading == or \<h1\>Heading\</h1\>, or
5607 * the first section before any such heading (section 0).
5608 *
5609 * If a section contains subsections, these are also returned.
5610 *
5611 * @param string $text Text to look in
5612 * @param string|int $sectionId Section identifier as a number or string
5613 * (e.g. 0, 1 or 'T-1').
5614 * @param string $defaultText Default to return if section is not found
5615 *
5616 * @return string Text of the requested section
5617 */
5618 public function getSection( $text, $sectionId, $defaultText = '' ) {
5619 return $this->extractSections( $text, $sectionId, 'get', $defaultText );
5620 }
5621
5622 /**
5623 * This function returns $oldtext after the content of the section
5624 * specified by $section has been replaced with $text. If the target
5625 * section does not exist, $oldtext is returned unchanged.
5626 *
5627 * @param string $oldText Former text of the article
5628 * @param string|int $sectionId Section identifier as a number or string
5629 * (e.g. 0, 1 or 'T-1').
5630 * @param string $newText Replacing text
5631 *
5632 * @return string Modified text
5633 */
5634 public function replaceSection( $oldText, $sectionId, $newText ) {
5635 return $this->extractSections( $oldText, $sectionId, 'replace', $newText );
5636 }
5637
5638 /**
5639 * Get the ID of the revision we are parsing
5640 *
5641 * @return int|null
5642 */
5643 public function getRevisionId() {
5644 return $this->mRevisionId;
5645 }
5646
5647 /**
5648 * Get the revision object for $this->mRevisionId
5649 *
5650 * @return Revision|null Either a Revision object or null
5651 * @since 1.23 (public since 1.23)
5652 */
5653 public function getRevisionObject() {
5654 if ( !is_null( $this->mRevisionObject ) ) {
5655 return $this->mRevisionObject;
5656 }
5657 if ( is_null( $this->mRevisionId ) ) {
5658 return null;
5659 }
5660
5661 $rev = call_user_func(
5662 $this->mOptions->getCurrentRevisionCallback(), $this->getTitle(), $this
5663 );
5664
5665 # If the parse is for a new revision, then the callback should have
5666 # already been set to force the object and should match mRevisionId.
5667 # If not, try to fetch by mRevisionId for sanity.
5668 if ( $rev && $rev->getId() != $this->mRevisionId ) {
5669 $rev = Revision::newFromId( $this->mRevisionId );
5670 }
5671
5672 $this->mRevisionObject = $rev;
5673
5674 return $this->mRevisionObject;
5675 }
5676
5677 /**
5678 * Get the timestamp associated with the current revision, adjusted for
5679 * the default server-local timestamp
5680 * @return string
5681 */
5682 public function getRevisionTimestamp() {
5683 if ( is_null( $this->mRevisionTimestamp ) ) {
5684 global $wgContLang;
5685
5686 $revObject = $this->getRevisionObject();
5687 $timestamp = $revObject ? $revObject->getTimestamp() : wfTimestampNow();
5688
5689 # The cryptic '' timezone parameter tells to use the site-default
5690 # timezone offset instead of the user settings.
5691 # Since this value will be saved into the parser cache, served
5692 # to other users, and potentially even used inside links and such,
5693 # it needs to be consistent for all visitors.
5694 $this->mRevisionTimestamp = $wgContLang->userAdjust( $timestamp, '' );
5695
5696 }
5697 return $this->mRevisionTimestamp;
5698 }
5699
5700 /**
5701 * Get the name of the user that edited the last revision
5702 *
5703 * @return string User name
5704 */
5705 public function getRevisionUser() {
5706 if ( is_null( $this->mRevisionUser ) ) {
5707 $revObject = $this->getRevisionObject();
5708
5709 # if this template is subst: the revision id will be blank,
5710 # so just use the current user's name
5711 if ( $revObject ) {
5712 $this->mRevisionUser = $revObject->getUserText();
5713 } elseif ( $this->ot['wiki'] || $this->mOptions->getIsPreview() ) {
5714 $this->mRevisionUser = $this->getUser()->getName();
5715 }
5716 }
5717 return $this->mRevisionUser;
5718 }
5719
5720 /**
5721 * Get the size of the revision
5722 *
5723 * @return int|null Revision size
5724 */
5725 public function getRevisionSize() {
5726 if ( is_null( $this->mRevisionSize ) ) {
5727 $revObject = $this->getRevisionObject();
5728
5729 # if this variable is subst: the revision id will be blank,
5730 # so just use the parser input size, because the own substituation
5731 # will change the size.
5732 if ( $revObject ) {
5733 $this->mRevisionSize = $revObject->getSize();
5734 } else {
5735 $this->mRevisionSize = $this->mInputSize;
5736 }
5737 }
5738 return $this->mRevisionSize;
5739 }
5740
5741 /**
5742 * Mutator for $mDefaultSort
5743 *
5744 * @param string $sort New value
5745 */
5746 public function setDefaultSort( $sort ) {
5747 $this->mDefaultSort = $sort;
5748 $this->mOutput->setProperty( 'defaultsort', $sort );
5749 }
5750
5751 /**
5752 * Accessor for $mDefaultSort
5753 * Will use the empty string if none is set.
5754 *
5755 * This value is treated as a prefix, so the
5756 * empty string is equivalent to sorting by
5757 * page name.
5758 *
5759 * @return string
5760 */
5761 public function getDefaultSort() {
5762 if ( $this->mDefaultSort !== false ) {
5763 return $this->mDefaultSort;
5764 } else {
5765 return '';
5766 }
5767 }
5768
5769 /**
5770 * Accessor for $mDefaultSort
5771 * Unlike getDefaultSort(), will return false if none is set
5772 *
5773 * @return string|bool
5774 */
5775 public function getCustomDefaultSort() {
5776 return $this->mDefaultSort;
5777 }
5778
5779 /**
5780 * Try to guess the section anchor name based on a wikitext fragment
5781 * presumably extracted from a heading, for example "Header" from
5782 * "== Header ==".
5783 *
5784 * @param string $text
5785 *
5786 * @return string
5787 */
5788 public function guessSectionNameFromWikiText( $text ) {
5789 # Strip out wikitext links(they break the anchor)
5790 $text = $this->stripSectionName( $text );
5791 $text = Sanitizer::normalizeSectionNameWhitespace( $text );
5792 return '#' . Sanitizer::escapeIdForLink( $text );
5793 }
5794
5795 /**
5796 * Same as guessSectionNameFromWikiText(), but produces legacy anchors
5797 * instead, if possible. For use in redirects, since various versions
5798 * of Microsoft browsers interpret Location: headers as something other
5799 * than UTF-8, resulting in breakage.
5800 *
5801 * @param string $text The section name
5802 * @return string An anchor
5803 */
5804 public function guessLegacySectionNameFromWikiText( $text ) {
5805 global $wgFragmentMode;
5806
5807 # Strip out wikitext links(they break the anchor)
5808 $text = $this->stripSectionName( $text );
5809 $text = Sanitizer::normalizeSectionNameWhitespace( $text );
5810
5811 if ( isset( $wgFragmentMode[1] ) && $wgFragmentMode[1] === 'legacy' ) {
5812 // ForAttribute() and ForLink() are the same for legacy encoding
5813 $id = Sanitizer::escapeIdForAttribute( $text, Sanitizer::ID_FALLBACK );
5814 } else {
5815 $id = Sanitizer::escapeIdForLink( $text );
5816 }
5817
5818 return "#$id";
5819 }
5820
5821 /**
5822 * Strips a text string of wikitext for use in a section anchor
5823 *
5824 * Accepts a text string and then removes all wikitext from the
5825 * string and leaves only the resultant text (i.e. the result of
5826 * [[User:WikiSysop|Sysop]] would be "Sysop" and the result of
5827 * [[User:WikiSysop]] would be "User:WikiSysop") - this is intended
5828 * to create valid section anchors by mimicing the output of the
5829 * parser when headings are parsed.
5830 *
5831 * @param string $text Text string to be stripped of wikitext
5832 * for use in a Section anchor
5833 * @return string Filtered text string
5834 */
5835 public function stripSectionName( $text ) {
5836 # Strip internal link markup
5837 $text = preg_replace( '/\[\[:?([^[|]+)\|([^[]+)\]\]/', '$2', $text );
5838 $text = preg_replace( '/\[\[:?([^[]+)\|?\]\]/', '$1', $text );
5839
5840 # Strip external link markup
5841 # @todo FIXME: Not tolerant to blank link text
5842 # I.E. [https://www.mediawiki.org] will render as [1] or something depending
5843 # on how many empty links there are on the page - need to figure that out.
5844 $text = preg_replace( '/\[(?i:' . $this->mUrlProtocols . ')([^ ]+?) ([^[]+)\]/', '$2', $text );
5845
5846 # Parse wikitext quotes (italics & bold)
5847 $text = $this->doQuotes( $text );
5848
5849 # Strip HTML tags
5850 $text = StringUtils::delimiterReplace( '<', '>', '', $text );
5851 return $text;
5852 }
5853
5854 /**
5855 * strip/replaceVariables/unstrip for preprocessor regression testing
5856 *
5857 * @param string $text
5858 * @param Title $title
5859 * @param ParserOptions $options
5860 * @param int $outputType
5861 *
5862 * @return string
5863 */
5864 public function testSrvus( $text, Title $title, ParserOptions $options,
5865 $outputType = self::OT_HTML
5866 ) {
5867 $magicScopeVariable = $this->lock();
5868 $this->startParse( $title, $options, $outputType, true );
5869
5870 $text = $this->replaceVariables( $text );
5871 $text = $this->mStripState->unstripBoth( $text );
5872 $text = Sanitizer::removeHTMLtags( $text );
5873 return $text;
5874 }
5875
5876 /**
5877 * @param string $text
5878 * @param Title $title
5879 * @param ParserOptions $options
5880 * @return string
5881 */
5882 public function testPst( $text, Title $title, ParserOptions $options ) {
5883 return $this->preSaveTransform( $text, $title, $options->getUser(), $options );
5884 }
5885
5886 /**
5887 * @param string $text
5888 * @param Title $title
5889 * @param ParserOptions $options
5890 * @return string
5891 */
5892 public function testPreprocess( $text, Title $title, ParserOptions $options ) {
5893 return $this->testSrvus( $text, $title, $options, self::OT_PREPROCESS );
5894 }
5895
5896 /**
5897 * Call a callback function on all regions of the given text that are not
5898 * inside strip markers, and replace those regions with the return value
5899 * of the callback. For example, with input:
5900 *
5901 * aaa<MARKER>bbb
5902 *
5903 * This will call the callback function twice, with 'aaa' and 'bbb'. Those
5904 * two strings will be replaced with the value returned by the callback in
5905 * each case.
5906 *
5907 * @param string $s
5908 * @param callable $callback
5909 *
5910 * @return string
5911 */
5912 public function markerSkipCallback( $s, $callback ) {
5913 $i = 0;
5914 $out = '';
5915 while ( $i < strlen( $s ) ) {
5916 $markerStart = strpos( $s, self::MARKER_PREFIX, $i );
5917 if ( $markerStart === false ) {
5918 $out .= call_user_func( $callback, substr( $s, $i ) );
5919 break;
5920 } else {
5921 $out .= call_user_func( $callback, substr( $s, $i, $markerStart - $i ) );
5922 $markerEnd = strpos( $s, self::MARKER_SUFFIX, $markerStart );
5923 if ( $markerEnd === false ) {
5924 $out .= substr( $s, $markerStart );
5925 break;
5926 } else {
5927 $markerEnd += strlen( self::MARKER_SUFFIX );
5928 $out .= substr( $s, $markerStart, $markerEnd - $markerStart );
5929 $i = $markerEnd;
5930 }
5931 }
5932 }
5933 return $out;
5934 }
5935
5936 /**
5937 * Remove any strip markers found in the given text.
5938 *
5939 * @param string $text Input string
5940 * @return string
5941 */
5942 public function killMarkers( $text ) {
5943 return $this->mStripState->killMarkers( $text );
5944 }
5945
5946 /**
5947 * Save the parser state required to convert the given half-parsed text to
5948 * HTML. "Half-parsed" in this context means the output of
5949 * recursiveTagParse() or internalParse(). This output has strip markers
5950 * from replaceVariables (extensionSubstitution() etc.), and link
5951 * placeholders from replaceLinkHolders().
5952 *
5953 * Returns an array which can be serialized and stored persistently. This
5954 * array can later be loaded into another parser instance with
5955 * unserializeHalfParsedText(). The text can then be safely incorporated into
5956 * the return value of a parser hook.
5957 *
5958 * @param string $text
5959 *
5960 * @return array
5961 */
5962 public function serializeHalfParsedText( $text ) {
5963 $data = [
5964 'text' => $text,
5965 'version' => self::HALF_PARSED_VERSION,
5966 'stripState' => $this->mStripState->getSubState( $text ),
5967 'linkHolders' => $this->mLinkHolders->getSubArray( $text )
5968 ];
5969 return $data;
5970 }
5971
5972 /**
5973 * Load the parser state given in the $data array, which is assumed to
5974 * have been generated by serializeHalfParsedText(). The text contents is
5975 * extracted from the array, and its markers are transformed into markers
5976 * appropriate for the current Parser instance. This transformed text is
5977 * returned, and can be safely included in the return value of a parser
5978 * hook.
5979 *
5980 * If the $data array has been stored persistently, the caller should first
5981 * check whether it is still valid, by calling isValidHalfParsedText().
5982 *
5983 * @param array $data Serialized data
5984 * @throws MWException
5985 * @return string
5986 */
5987 public function unserializeHalfParsedText( $data ) {
5988 if ( !isset( $data['version'] ) || $data['version'] != self::HALF_PARSED_VERSION ) {
5989 throw new MWException( __METHOD__ . ': invalid version' );
5990 }
5991
5992 # First, extract the strip state.
5993 $texts = [ $data['text'] ];
5994 $texts = $this->mStripState->merge( $data['stripState'], $texts );
5995
5996 # Now renumber links
5997 $texts = $this->mLinkHolders->mergeForeign( $data['linkHolders'], $texts );
5998
5999 # Should be good to go.
6000 return $texts[0];
6001 }
6002
6003 /**
6004 * Returns true if the given array, presumed to be generated by
6005 * serializeHalfParsedText(), is compatible with the current version of the
6006 * parser.
6007 *
6008 * @param array $data
6009 *
6010 * @return bool
6011 */
6012 public function isValidHalfParsedText( $data ) {
6013 return isset( $data['version'] ) && $data['version'] == self::HALF_PARSED_VERSION;
6014 }
6015
6016 /**
6017 * Parsed a width param of imagelink like 300px or 200x300px
6018 *
6019 * @param string $value
6020 *
6021 * @return array
6022 * @since 1.20
6023 */
6024 public function parseWidthParam( $value ) {
6025 $parsedWidthParam = [];
6026 if ( $value === '' ) {
6027 return $parsedWidthParam;
6028 }
6029 $m = [];
6030 # (T15500) In both cases (width/height and width only),
6031 # permit trailing "px" for backward compatibility.
6032 if ( preg_match( '/^([0-9]*)x([0-9]*)\s*(?:px)?\s*$/', $value, $m ) ) {
6033 $width = intval( $m[1] );
6034 $height = intval( $m[2] );
6035 $parsedWidthParam['width'] = $width;
6036 $parsedWidthParam['height'] = $height;
6037 } elseif ( preg_match( '/^[0-9]*\s*(?:px)?\s*$/', $value ) ) {
6038 $width = intval( $value );
6039 $parsedWidthParam['width'] = $width;
6040 }
6041 return $parsedWidthParam;
6042 }
6043
6044 /**
6045 * Lock the current instance of the parser.
6046 *
6047 * This is meant to stop someone from calling the parser
6048 * recursively and messing up all the strip state.
6049 *
6050 * @throws MWException If parser is in a parse
6051 * @return ScopedCallback The lock will be released once the return value goes out of scope.
6052 */
6053 protected function lock() {
6054 if ( $this->mInParse ) {
6055 throw new MWException( "Parser state cleared while parsing. "
6056 . "Did you call Parser::parse recursively? Lock is held by: " . $this->mInParse );
6057 }
6058
6059 // Save the backtrace when locking, so that if some code tries locking again,
6060 // we can print the lock owner's backtrace for easier debugging
6061 $e = new Exception;
6062 $this->mInParse = $e->getTraceAsString();
6063
6064 $recursiveCheck = new ScopedCallback( function () {
6065 $this->mInParse = false;
6066 } );
6067
6068 return $recursiveCheck;
6069 }
6070
6071 /**
6072 * Strip outer <p></p> tag from the HTML source of a single paragraph.
6073 *
6074 * Returns original HTML if the <p/> tag has any attributes, if there's no wrapping <p/> tag,
6075 * or if there is more than one <p/> tag in the input HTML.
6076 *
6077 * @param string $html
6078 * @return string
6079 * @since 1.24
6080 */
6081 public static function stripOuterParagraph( $html ) {
6082 $m = [];
6083 if ( preg_match( '/^<p>(.*)\n?<\/p>\n?$/sU', $html, $m ) ) {
6084 if ( strpos( $m[1], '</p>' ) === false ) {
6085 $html = $m[1];
6086 }
6087 }
6088
6089 return $html;
6090 }
6091
6092 /**
6093 * Return this parser if it is not doing anything, otherwise
6094 * get a fresh parser. You can use this method by doing
6095 * $myParser = $wgParser->getFreshParser(), or more simply
6096 * $wgParser->getFreshParser()->parse( ... );
6097 * if you're unsure if $wgParser is safe to use.
6098 *
6099 * @since 1.24
6100 * @return Parser A parser object that is not parsing anything
6101 */
6102 public function getFreshParser() {
6103 global $wgParserConf;
6104 if ( $this->mInParse ) {
6105 return new $wgParserConf['class']( $wgParserConf );
6106 } else {
6107 return $this;
6108 }
6109 }
6110
6111 /**
6112 * Set's up the PHP implementation of OOUI for use in this request
6113 * and instructs OutputPage to enable OOUI for itself.
6114 *
6115 * @since 1.26
6116 */
6117 public function enableOOUI() {
6118 OutputPage::setupOOUI();
6119 $this->mOutput->setEnableOOUI( true );
6120 }
6121 }