3 * PHP parser that converts wiki markup to HTML.
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.
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.
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
23 use MediaWiki\Linker\LinkRenderer
;
24 use MediaWiki\MediaWikiServices
;
25 use Wikimedia\ScopedCallback
;
28 * @defgroup Parser Parser
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).
37 * There are seven main entry points into the Parser class:
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
57 * @warning $wgUser or $wgTitle or $wgRequest or $wgLang. Keep them away!
60 * $wgNamespacesWithSubpages
62 * @par Settings only within ParserOptions:
63 * $wgAllowExternalImages
64 * $wgAllowSpecialInclusion
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.
76 const VERSION
= '1.6.4';
79 * Update this version number when the output of serialiseHalfParsedText()
80 * changes in an incompatible way
82 const HALF_PARSED_VERSION
= 2;
84 # Flags for Parser::setFunctionHook
85 const SFH_NO_HASH
= 1;
86 const SFH_OBJECT_ARGS
= 2;
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
104 # Regular expression for a non-newline space
105 const SPACE_NOT_NL
= '(?:\t| |&\#0*160;|&\#[Xx]0*[Aa]0;|\p{Zs})';
107 # Flags for preprocessToDom
108 const PTD_FOR_INCLUSION
= 1;
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()
116 const OT_PLAIN
= 4; # like extractSections() - portions of the original are returned unchanged.
119 * @var string Prefix and suffix for temporary replacement strings
120 * for the multipass parser.
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
127 * Must not consist of all title characters, or else it will change
128 * the behavior of <nowiki> in a link.
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
135 const MARKER_SUFFIX
= "-QINU`\"'\x7f";
136 const MARKER_PREFIX
= "\x7f'\"`UNIQ-";
138 # Markers used for wrapping the table of contents
139 const TOC_START
= '<mw:toc>';
140 const TOC_END
= '</mw:toc>';
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;
156 # Initialised by initialiseVariables()
159 * @var MagicWordArray
164 * @var MagicWordArray
167 # Initialised in constructor
168 public $mConf, $mExtLinkBracketedRegex, $mUrlProtocols;
170 # Initialized in getPreprocessor()
171 /** @var Preprocessor */
172 public $mPreprocessor;
174 # Cleared with clearState():
186 public $mIncludeCount;
188 * @var LinkHolderArray
190 public $mLinkHolders;
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;
202 public $mUser; # User object; only used when doing pre-save transform
205 # These are variables reset at least once per parse regardless of $clearState
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.
227 * @var string Deprecated accessor for the strip marker prefix.
228 * @deprecated since 1.26; use Parser::MARKER_PREFIX instead.
230 public $mUniqPrefix = Parser
::MARKER_PREFIX
;
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.
237 public $mLangLinkLanguages;
240 * @var MapCacheLRU|null
243 * A cache of the current revisions of titles. Keys are $title->getPrefixedDbKey()
245 public $currentRevisionCache;
248 * @var bool Recursive call protection.
249 * This variable should be treated as if it were private.
251 public $mInParse = false;
253 /** @var SectionProfiler */
254 protected $mProfiler;
259 protected $mLinkRenderer;
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';
282 $this->mPreprocessorClass
= 'Preprocessor_Hash';
284 wfDebug( __CLASS__
. ": using preprocessor: {$this->mPreprocessorClass}\n" );
288 * Reduce memory usage to reduce the impact of circular references
290 public function __destruct() {
291 if ( isset( $this->mLinkHolders
) ) {
292 unset( $this->mLinkHolders
);
294 foreach ( $this as $name => $value ) {
295 unset( $this->$name );
300 * Allow extensions to clean up when the parser is cloned
302 public function __clone() {
303 $this->mInParse
= false;
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.
319 Hooks
::run( 'ParserCloned', [ $this ] );
323 * Do various kinds of initialisation on the first call of the parser
325 public function firstCallInit() {
326 if ( !$this->mFirstCall
) {
329 $this->mFirstCall
= false;
331 CoreParserFunctions
::register( $this );
332 CoreTagHooks
::register( $this );
333 $this->initialiseVariables();
335 // Avoid PHP 7.1 warning from passing $this by reference
337 Hooks
::run( 'ParserFirstCallInit', [ &$parser ] );
345 public function clearState() {
346 if ( $this->mFirstCall
) {
347 $this->firstCallInit();
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 );
355 $this->mRevisionObject
= $this->mRevisionTimestamp
=
356 $this->mRevisionId
= $this->mRevisionUser
= $this->mRevisionSize
= null;
357 $this->mVarCache
= [];
359 $this->mLangLinkLanguages
= [];
360 $this->currentRevisionCache
= null;
362 $this->mStripState
= new StripState
;
364 # Clear these on every parse, T6549
365 $this->mTplRedirCache
= $this->mTplDomCache
= [];
367 $this->mShowToc
= true;
368 $this->mForceTocPosition
= false;
369 $this->mIncludeSizes
= [
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;
382 if ( isset( $this->mPreprocessor
) && $this->mPreprocessor
->parser
!== $this ) {
383 $this->mPreprocessor
= null;
386 $this->mProfiler
= new SectionProfiler();
388 // Avoid PHP 7.1 warning from passing $this by reference
390 Hooks
::run( 'ParserClearState', [ &$parser ] );
394 * Convert wikitext to HTML
395 * Do not call this function recursively.
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
405 public function parse(
406 $text, Title
$title, ParserOptions
$options,
407 $linestart = true, $clearState = true, $revid = null
410 * First pass--just handle <nowiki> sections, pass the rest off
411 * to internalParse() which does all the real work.
414 global $wgShowHostnames;
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();
422 // Strip U+0000 NULL (T159174)
423 $text = str_replace( "\000", '', $text );
425 $this->startParse( $title, $options, self
::OT_HTML
, $clearState );
427 $this->currentRevisionCache
= null;
428 $this->mInputSize
= strlen( $text );
429 if ( $this->mOptions
->getEnableLimitReport() ) {
430 $this->mOutput
->resetParseStartTime();
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;
446 // Avoid PHP 7.1 warning from passing $this by reference
448 Hooks
::run( 'ParserBeforeStrip', [ &$parser, &$text, &$this->mStripState
] );
450 Hooks
::run( 'ParserAfterStrip', [ &$parser, &$text, &$this->mStripState
] );
451 $text = $this->internalParse( $text );
452 Hooks
::run( 'ParserAfterParse', [ &$parser, &$text, &$this->mStripState
] );
454 $text = $this->internalParseHalfParsed( $text, true, $linestart );
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.
463 if ( !( $options->getDisableTitleConversion()
464 ||
isset( $this->mDoubleUnderscores
['nocontentconvert'] )
465 ||
isset( $this->mDoubleUnderscores
['notitleconvert'] )
466 ||
$this->mOutput
->getDisplayTitle() !== false )
468 $convruletitle = $this->getConverterLanguage()->getConvRuleTitle();
469 if ( $convruletitle ) {
470 $this->mOutput
->setTitleText( $convruletitle );
472 $titleText = $this->getConverterLanguage()->convertTitle( $title );
473 $this->mOutput
->setTitleText( $titleText );
477 # Done parsing! Compute runtime adaptive expiry if set
478 $this->mOutput
->finalizeAdaptiveCacheExpiry();
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()
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();
492 $cpuTime = $this->mOutput
->getTimeSinceStart( 'cpu' );
493 if ( $cpuTime !== null ) {
494 $this->mOutput
->setLimitReportData( 'limitreport-cputime',
495 sprintf( "%.3f", $cpuTime )
499 $wallTime = $this->mOutput
->getTimeSinceStart( 'wall' );
500 $this->mOutput
->setLimitReportData( 'limitreport-walltime',
501 sprintf( "%.3f", $wallTime )
504 $this->mOutput
->setLimitReportData( 'limitreport-ppvisitednodes',
505 [ $this->mPPNodeCount
, $this->mOptions
->getMaxPPNodeCount() ]
507 $this->mOutput
->setLimitReportData( 'limitreport-ppgeneratednodes',
508 [ $this->mGeneratedPPNodeCount
, $this->mOptions
->getMaxGeneratedPPNodeCount() ]
510 $this->mOutput
->setLimitReportData( 'limitreport-postexpandincludesize',
511 [ $this->mIncludeSizes
['post-expand'], $max ]
513 $this->mOutput
->setLimitReportData( 'limitreport-templateargumentsize',
514 [ $this->mIncludeSizes
['arg'], $max ]
516 $this->mOutput
->setLimitReportData( 'limitreport-expansiondepth',
517 [ $this->mHighestExpansionDepth
, $this->mOptions
->getMaxPPExpandDepth() ]
519 $this->mOutput
->setLimitReportData( 'limitreport-expensivefunctioncount',
520 [ $this->mExpensiveFunctionCount
, $this->mOptions
->getExpensiveParserFunctionLimit() ]
522 Hooks
::run( 'ParserLimitReportPrepare', [ $this, $this->mOutput
] );
524 $limitReport = "NewPP limit report\n";
525 if ( $wgShowHostnames ) {
526 $limitReport .= 'Parsed by ' . wfHostname() . "\n";
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' ) .
534 foreach ( $this->mOutput
->getLimitReportData() as $key => $value ) {
535 if ( Hooks
::run( 'ParserLimitReportFormat',
536 [ $key, &$value, &$limitReport, false, false ]
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' );
544 if ( !$keyMsg->isDisabled() && !$valueMsg->isDisabled() ) {
545 $valueMsg->params( $value );
546 $limitReport .= "{$keyMsg->text()}: {$valueMsg->text()}\n";
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 Hooks
::run( 'ParserLimitReport', [ $this, &$limitReport ] );
555 // Sanitize for comment. Note '‐' in the replacement is U+2010,
556 // which looks much like the problematic '-'.
557 $limitReport = str_replace( [ '-', '&' ], [ '‐', '&' ], $limitReport );
558 $text .= "\n<!-- \n$limitReport-->\n";
560 // Add on template profiling data in human/machine readable way
561 $dataByFunc = $this->mProfiler
->getFunctionStats();
562 uasort( $dataByFunc, function ( $a, $b ) {
563 return $a['real'] < $b['real']; // descending order
566 foreach ( array_slice( $dataByFunc, 0, 10 ) as $item ) {
567 $profileReport[] = sprintf( "%6.2f%% %8.3f %6d %s",
568 $item['%real'], $item['real'], $item['calls'],
569 htmlspecialchars( $item['name'] ) );
571 $text .= "<!--\nTransclusion expansion time report (%,ms,calls,template)\n";
572 $text .= implode( "\n", $profileReport ) . "\n-->\n";
574 $this->mOutput
->setLimitReportData( 'limitreport-timingprofile', $profileReport );
576 // Add other cache related metadata
577 if ( $wgShowHostnames ) {
578 $this->mOutput
->setLimitReportData( 'cachereport-origin', wfHostname() );
580 $this->mOutput
->setLimitReportData( 'cachereport-timestamp',
581 $this->mOutput
->getCacheTime() );
582 $this->mOutput
->setLimitReportData( 'cachereport-ttl',
583 $this->mOutput
->getCacheExpiry() );
584 $this->mOutput
->setLimitReportData( 'cachereport-transientcontent',
585 $this->mOutput
->hasDynamicContent() );
587 if ( $this->mGeneratedPPNodeCount
> $this->mOptions
->getMaxGeneratedPPNodeCount() / 10 ) {
588 wfDebugLog( 'generated-pp-node-count', $this->mGeneratedPPNodeCount
. ' ' .
589 $this->mTitle
->getPrefixedDBkey() );
592 $this->mOutput
->setText( $text );
594 $this->mRevisionId
= $oldRevisionId;
595 $this->mRevisionObject
= $oldRevisionObject;
596 $this->mRevisionTimestamp
= $oldRevisionTimestamp;
597 $this->mRevisionUser
= $oldRevisionUser;
598 $this->mRevisionSize
= $oldRevisionSize;
599 $this->mInputSize
= false;
600 $this->currentRevisionCache
= null;
602 return $this->mOutput
;
606 * Half-parse wikitext to half-parsed HTML. This recursive parser entry point
607 * can be called from an extension tag hook.
609 * The output of this function IS NOT SAFE PARSED HTML; it is "half-parsed"
610 * instead, which means that lists and links have not been fully parsed yet,
611 * and strip markers are still present.
613 * Use recursiveTagParseFully() to fully parse wikitext to output-safe HTML.
615 * Use this function if you're a parser tag hook and you want to parse
616 * wikitext before or after applying additional transformations, and you
617 * intend to *return the result as hook output*, which will cause it to go
618 * through the rest of parsing process automatically.
620 * If $frame is not provided, then template variables (e.g., {{{1}}}) within
621 * $text are not expanded
623 * @param string $text Text extension wants to have parsed
624 * @param bool|PPFrame $frame The frame to use for expanding any template variables
625 * @return string UNSAFE half-parsed HTML
627 public function recursiveTagParse( $text, $frame = false ) {
628 // Avoid PHP 7.1 warning from passing $this by reference
630 Hooks
::run( 'ParserBeforeStrip', [ &$parser, &$text, &$this->mStripState
] );
631 Hooks
::run( 'ParserAfterStrip', [ &$parser, &$text, &$this->mStripState
] );
632 $text = $this->internalParse( $text, false, $frame );
637 * Fully parse wikitext to fully parsed HTML. This recursive parser entry
638 * point can be called from an extension tag hook.
640 * The output of this function is fully-parsed HTML that is safe for output.
641 * If you're a parser tag hook, you might want to use recursiveTagParse()
644 * If $frame is not provided, then template variables (e.g., {{{1}}}) within
645 * $text are not expanded
649 * @param string $text Text extension wants to have parsed
650 * @param bool|PPFrame $frame The frame to use for expanding any template variables
651 * @return string Fully parsed HTML
653 public function recursiveTagParseFully( $text, $frame = false ) {
654 $text = $this->recursiveTagParse( $text, $frame );
655 $text = $this->internalParseHalfParsed( $text, false );
660 * Expand templates and variables in the text, producing valid, static wikitext.
661 * Also removes comments.
662 * Do not call this function recursively.
663 * @param string $text
664 * @param Title $title
665 * @param ParserOptions $options
666 * @param int|null $revid
667 * @param bool|PPFrame $frame
668 * @return mixed|string
670 public function preprocess( $text, Title
$title = null,
671 ParserOptions
$options, $revid = null, $frame = false
673 $magicScopeVariable = $this->lock();
674 $this->startParse( $title, $options, self
::OT_PREPROCESS
, true );
675 if ( $revid !== null ) {
676 $this->mRevisionId
= $revid;
678 // Avoid PHP 7.1 warning from passing $this by reference
680 Hooks
::run( 'ParserBeforeStrip', [ &$parser, &$text, &$this->mStripState
] );
681 Hooks
::run( 'ParserAfterStrip', [ &$parser, &$text, &$this->mStripState
] );
682 $text = $this->replaceVariables( $text, $frame );
683 $text = $this->mStripState
->unstripBoth( $text );
688 * Recursive parser entry point that can be called from an extension tag
691 * @param string $text Text to be expanded
692 * @param bool|PPFrame $frame The frame to use for expanding any template variables
696 public function recursivePreprocess( $text, $frame = false ) {
697 $text = $this->replaceVariables( $text, $frame );
698 $text = $this->mStripState
->unstripBoth( $text );
703 * Process the wikitext for the "?preload=" feature. (T7210)
705 * "<noinclude>", "<includeonly>" etc. are parsed as for template
706 * transclusion, comments, templates, arguments, tags hooks and parser
707 * functions are untouched.
709 * @param string $text
710 * @param Title $title
711 * @param ParserOptions $options
712 * @param array $params
715 public function getPreloadText( $text, Title
$title, ParserOptions
$options, $params = [] ) {
716 $msg = new RawMessage( $text );
717 $text = $msg->params( $params )->plain();
719 # Parser (re)initialisation
720 $magicScopeVariable = $this->lock();
721 $this->startParse( $title, $options, self
::OT_PLAIN
, true );
723 $flags = PPFrame
::NO_ARGS | PPFrame
::NO_TEMPLATES
;
724 $dom = $this->preprocessToDom( $text, self
::PTD_FOR_INCLUSION
);
725 $text = $this->getPreprocessor()->newFrame()->expand( $dom, $flags );
726 $text = $this->mStripState
->unstripBoth( $text );
731 * Get a random string
734 * @deprecated since 1.26; use wfRandomString() instead.
736 public static function getRandomString() {
737 wfDeprecated( __METHOD__
, '1.26' );
738 return wfRandomString( 16 );
742 * Set the current user.
743 * Should only be used when doing pre-save transform.
745 * @param User|null $user User object or null (to reset)
747 public function setUser( $user ) {
748 $this->mUser
= $user;
752 * Accessor for mUniqPrefix.
755 * @deprecated since 1.26; use Parser::MARKER_PREFIX instead.
757 public function uniqPrefix() {
758 wfDeprecated( __METHOD__
, '1.26' );
759 return self
::MARKER_PREFIX
;
763 * Set the context title
767 public function setTitle( $t ) {
769 $t = Title
::newFromText( 'NO TITLE' );
772 if ( $t->hasFragment() ) {
773 # Strip the fragment to avoid various odd effects
774 $this->mTitle
= $t->createFragmentTarget( '' );
781 * Accessor for the Title object
785 public function getTitle() {
786 return $this->mTitle
;
790 * Accessor/mutator for the Title object
792 * @param Title $x Title object or null to just get the current one
795 public function Title( $x = null ) {
796 return wfSetVar( $this->mTitle
, $x );
800 * Set the output type
802 * @param int $ot New value
804 public function setOutputType( $ot ) {
805 $this->mOutputType
= $ot;
808 'html' => $ot == self
::OT_HTML
,
809 'wiki' => $ot == self
::OT_WIKI
,
810 'pre' => $ot == self
::OT_PREPROCESS
,
811 'plain' => $ot == self
::OT_PLAIN
,
816 * Accessor/mutator for the output type
818 * @param int|null $x New value or null to just get the current one
821 public function OutputType( $x = null ) {
822 return wfSetVar( $this->mOutputType
, $x );
826 * Get the ParserOutput object
828 * @return ParserOutput
830 public function getOutput() {
831 return $this->mOutput
;
835 * Get the ParserOptions object
837 * @return ParserOptions
839 public function getOptions() {
840 return $this->mOptions
;
844 * Accessor/mutator for the ParserOptions object
846 * @param ParserOptions $x New value or null to just get the current one
847 * @return ParserOptions Current ParserOptions object
849 public function Options( $x = null ) {
850 return wfSetVar( $this->mOptions
, $x );
856 public function nextLinkID() {
857 return $this->mLinkID++
;
863 public function setLinkID( $id ) {
864 $this->mLinkID
= $id;
868 * Get a language object for use in parser functions such as {{FORMATNUM:}}
871 public function getFunctionLang() {
872 return $this->getTargetLanguage();
876 * Get the target language for the content being parsed. This is usually the
877 * language that the content is in.
881 * @throws MWException
884 public function getTargetLanguage() {
885 $target = $this->mOptions
->getTargetLanguage();
887 if ( $target !== null ) {
889 } elseif ( $this->mOptions
->getInterfaceMessage() ) {
890 return $this->mOptions
->getUserLangObj();
891 } elseif ( is_null( $this->mTitle
) ) {
892 throw new MWException( __METHOD__
. ': $this->mTitle is null' );
895 return $this->mTitle
->getPageLanguage();
899 * Get the language object for language conversion
900 * @return Language|null
902 public function getConverterLanguage() {
903 return $this->getTargetLanguage();
907 * Get a User object either from $this->mUser, if set, or from the
908 * ParserOptions object otherwise
912 public function getUser() {
913 if ( !is_null( $this->mUser
) ) {
916 return $this->mOptions
->getUser();
920 * Get a preprocessor object
922 * @return Preprocessor
924 public function getPreprocessor() {
925 if ( !isset( $this->mPreprocessor
) ) {
926 $class = $this->mPreprocessorClass
;
927 $this->mPreprocessor
= new $class( $this );
929 return $this->mPreprocessor
;
933 * Get a LinkRenderer instance to make links with
936 * @return LinkRenderer
938 public function getLinkRenderer() {
939 if ( !$this->mLinkRenderer
) {
940 $this->mLinkRenderer
= MediaWikiServices
::getInstance()
941 ->getLinkRendererFactory()->create();
942 $this->mLinkRenderer
->setStubThreshold(
943 $this->getOptions()->getStubThreshold()
947 return $this->mLinkRenderer
;
951 * Replaces all occurrences of HTML-style comments and the given tags
952 * in the text with a random marker and returns the next text. The output
953 * parameter $matches will be an associative array filled with data in
960 * [ 'param' => 'x' ],
961 * '<element param="x">tag content</element>' ]
964 * @param array $elements List of element names. Comments are always extracted.
965 * @param string $text Source text string.
966 * @param array $matches Out parameter, Array: extracted tags
967 * @param string|null $uniq_prefix
968 * @return string Stripped text
969 * @since 1.26 The uniq_prefix argument is deprecated.
971 public static function extractTagsAndParams( $elements, $text, &$matches, $uniq_prefix = null ) {
972 if ( $uniq_prefix !== null ) {
973 wfDeprecated( __METHOD__
. ' called with $prefix argument', '1.26' );
979 $taglist = implode( '|', $elements );
980 $start = "/<($taglist)(\\s+[^>]*?|\\s*?)(\/?" . ">)|<(!--)/i";
982 while ( $text != '' ) {
983 $p = preg_split( $start, $text, 2, PREG_SPLIT_DELIM_CAPTURE
);
985 if ( count( $p ) < 5 ) {
988 if ( count( $p ) > 5 ) {
1002 $marker = self
::MARKER_PREFIX
. "-$element-" . sprintf( '%08X', $n++
) . self
::MARKER_SUFFIX
;
1003 $stripped .= $marker;
1005 if ( $close === '/>' ) {
1006 # Empty element tag, <tag />
1011 if ( $element === '!--' ) {
1014 $end = "/(<\\/$element\\s*>)/i";
1016 $q = preg_split( $end, $inside, 2, PREG_SPLIT_DELIM_CAPTURE
);
1018 if ( count( $q ) < 3 ) {
1019 # No end tag -- let it run out to the end of the text.
1028 $matches[$marker] = [ $element,
1030 Sanitizer
::decodeTagAttributes( $attributes ),
1031 "<$element$attributes$close$content$tail" ];
1037 * Get a list of strippable XML-like elements
1041 public function getStripList() {
1042 return $this->mStripList
;
1046 * Add an item to the strip state
1047 * Returns the unique tag which must be inserted into the stripped text
1048 * The tag will be replaced with the original text in unstrip()
1050 * @param string $text
1054 public function insertStripItem( $text ) {
1055 $marker = self
::MARKER_PREFIX
. "-item-{$this->mMarkerIndex}-" . self
::MARKER_SUFFIX
;
1056 $this->mMarkerIndex++
;
1057 $this->mStripState
->addGeneral( $marker, $text );
1062 * parse the wiki syntax used to render tables
1065 * @param string $text
1068 public function doTableStuff( $text ) {
1070 $lines = StringUtils
::explode( "\n", $text );
1072 $td_history = []; # Is currently a td tag open?
1073 $last_tag_history = []; # Save history of last lag activated (td, th or caption)
1074 $tr_history = []; # Is currently a tr tag open?
1075 $tr_attributes = []; # history of tr attributes
1076 $has_opened_tr = []; # Did this table open a <tr> element?
1077 $indent_level = 0; # indent level of the table
1079 foreach ( $lines as $outLine ) {
1080 $line = trim( $outLine );
1082 if ( $line === '' ) { # empty line, go to next line
1083 $out .= $outLine . "\n";
1087 $first_character = $line[0];
1088 $first_two = substr( $line, 0, 2 );
1091 if ( preg_match( '/^(:*)\s*\{\|(.*)$/', $line, $matches ) ) {
1092 # First check if we are starting a new table
1093 $indent_level = strlen( $matches[1] );
1095 $attributes = $this->mStripState
->unstripBoth( $matches[2] );
1096 $attributes = Sanitizer
::fixTagAttributes( $attributes, 'table' );
1098 $outLine = str_repeat( '<dl><dd>', $indent_level ) . "<table{$attributes}>";
1099 array_push( $td_history, false );
1100 array_push( $last_tag_history, '' );
1101 array_push( $tr_history, false );
1102 array_push( $tr_attributes, '' );
1103 array_push( $has_opened_tr, false );
1104 } elseif ( count( $td_history ) == 0 ) {
1105 # Don't do any of the following
1106 $out .= $outLine . "\n";
1108 } elseif ( $first_two === '|}' ) {
1109 # We are ending a table
1110 $line = '</table>' . substr( $line, 2 );
1111 $last_tag = array_pop( $last_tag_history );
1113 if ( !array_pop( $has_opened_tr ) ) {
1114 $line = "<tr><td></td></tr>{$line}";
1117 if ( array_pop( $tr_history ) ) {
1118 $line = "</tr>{$line}";
1121 if ( array_pop( $td_history ) ) {
1122 $line = "</{$last_tag}>{$line}";
1124 array_pop( $tr_attributes );
1125 $outLine = $line . str_repeat( '</dd></dl>', $indent_level );
1126 } elseif ( $first_two === '|-' ) {
1127 # Now we have a table row
1128 $line = preg_replace( '#^\|-+#', '', $line );
1130 # Whats after the tag is now only attributes
1131 $attributes = $this->mStripState
->unstripBoth( $line );
1132 $attributes = Sanitizer
::fixTagAttributes( $attributes, 'tr' );
1133 array_pop( $tr_attributes );
1134 array_push( $tr_attributes, $attributes );
1137 $last_tag = array_pop( $last_tag_history );
1138 array_pop( $has_opened_tr );
1139 array_push( $has_opened_tr, true );
1141 if ( array_pop( $tr_history ) ) {
1145 if ( array_pop( $td_history ) ) {
1146 $line = "</{$last_tag}>{$line}";
1150 array_push( $tr_history, false );
1151 array_push( $td_history, false );
1152 array_push( $last_tag_history, '' );
1153 } elseif ( $first_character === '|'
1154 ||
$first_character === '!'
1155 ||
$first_two === '|+'
1157 # This might be cell elements, td, th or captions
1158 if ( $first_two === '|+' ) {
1159 $first_character = '+';
1160 $line = substr( $line, 2 );
1162 $line = substr( $line, 1 );
1165 // Implies both are valid for table headings.
1166 if ( $first_character === '!' ) {
1167 $line = StringUtils
::replaceMarkup( '!!', '||', $line );
1170 # Split up multiple cells on the same line.
1171 # FIXME : This can result in improper nesting of tags processed
1172 # by earlier parser steps.
1173 $cells = explode( '||', $line );
1177 # Loop through each table cell
1178 foreach ( $cells as $cell ) {
1180 if ( $first_character !== '+' ) {
1181 $tr_after = array_pop( $tr_attributes );
1182 if ( !array_pop( $tr_history ) ) {
1183 $previous = "<tr{$tr_after}>\n";
1185 array_push( $tr_history, true );
1186 array_push( $tr_attributes, '' );
1187 array_pop( $has_opened_tr );
1188 array_push( $has_opened_tr, true );
1191 $last_tag = array_pop( $last_tag_history );
1193 if ( array_pop( $td_history ) ) {
1194 $previous = "</{$last_tag}>\n{$previous}";
1197 if ( $first_character === '|' ) {
1199 } elseif ( $first_character === '!' ) {
1201 } elseif ( $first_character === '+' ) {
1202 $last_tag = 'caption';
1207 array_push( $last_tag_history, $last_tag );
1209 # A cell could contain both parameters and data
1210 $cell_data = explode( '|', $cell, 2 );
1212 # T2553: Note that a '|' inside an invalid link should not
1213 # be mistaken as delimiting cell parameters
1214 # Bug T153140: Neither should language converter markup.
1215 if ( preg_match( '/\[\[|-\{/', $cell_data[0] ) === 1 ) {
1216 $cell = "{$previous}<{$last_tag}>{$cell}";
1217 } elseif ( count( $cell_data ) == 1 ) {
1218 $cell = "{$previous}<{$last_tag}>{$cell_data[0]}";
1220 $attributes = $this->mStripState
->unstripBoth( $cell_data[0] );
1221 $attributes = Sanitizer
::fixTagAttributes( $attributes, $last_tag );
1222 $cell = "{$previous}<{$last_tag}{$attributes}>{$cell_data[1]}";
1226 array_push( $td_history, true );
1229 $out .= $outLine . "\n";
1232 # Closing open td, tr && table
1233 while ( count( $td_history ) > 0 ) {
1234 if ( array_pop( $td_history ) ) {
1237 if ( array_pop( $tr_history ) ) {
1240 if ( !array_pop( $has_opened_tr ) ) {
1241 $out .= "<tr><td></td></tr>\n";
1244 $out .= "</table>\n";
1247 # Remove trailing line-ending (b/c)
1248 if ( substr( $out, -1 ) === "\n" ) {
1249 $out = substr( $out, 0, -1 );
1252 # special case: don't return empty table
1253 if ( $out === "<table>\n<tr><td></td></tr>\n</table>" ) {
1261 * Helper function for parse() that transforms wiki markup into half-parsed
1262 * HTML. Only called for $mOutputType == self::OT_HTML.
1266 * @param string $text The text to parse
1267 * @param bool $isMain Whether this is being called from the main parse() function
1268 * @param PPFrame|bool $frame A pre-processor frame
1272 public function internalParse( $text, $isMain = true, $frame = false ) {
1276 // Avoid PHP 7.1 warning from passing $this by reference
1279 # Hook to suspend the parser in this state
1280 if ( !Hooks
::run( 'ParserBeforeInternalParse', [ &$parser, &$text, &$this->mStripState
] ) ) {
1284 # if $frame is provided, then use $frame for replacing any variables
1286 # use frame depth to infer how include/noinclude tags should be handled
1287 # depth=0 means this is the top-level document; otherwise it's an included document
1288 if ( !$frame->depth
) {
1291 $flag = Parser
::PTD_FOR_INCLUSION
;
1293 $dom = $this->preprocessToDom( $text, $flag );
1294 $text = $frame->expand( $dom );
1296 # if $frame is not provided, then use old-style replaceVariables
1297 $text = $this->replaceVariables( $text );
1300 Hooks
::run( 'InternalParseBeforeSanitize', [ &$parser, &$text, &$this->mStripState
] );
1301 $text = Sanitizer
::removeHTMLtags(
1303 [ $this, 'attributeStripCallback' ],
1305 array_keys( $this->mTransparentTagHooks
),
1307 [ $this, 'addTrackingCategory' ]
1309 Hooks
::run( 'InternalParseBeforeLinks', [ &$parser, &$text, &$this->mStripState
] );
1311 # Tables need to come after variable replacement for things to work
1312 # properly; putting them before other transformations should keep
1313 # exciting things like link expansions from showing up in surprising
1315 $text = $this->doTableStuff( $text );
1317 $text = preg_replace( '/(^|\n)-----*/', '\\1<hr />', $text );
1319 $text = $this->doDoubleUnderscore( $text );
1321 $text = $this->doHeadings( $text );
1322 $text = $this->replaceInternalLinks( $text );
1323 $text = $this->doAllQuotes( $text );
1324 $text = $this->replaceExternalLinks( $text );
1326 # replaceInternalLinks may sometimes leave behind
1327 # absolute URLs, which have to be masked to hide them from replaceExternalLinks
1328 $text = str_replace( self
::MARKER_PREFIX
. 'NOPARSE', '', $text );
1330 $text = $this->doMagicLinks( $text );
1331 $text = $this->formatHeadings( $text, $origText, $isMain );
1337 * Helper function for parse() that transforms half-parsed HTML into fully
1340 * @param string $text
1341 * @param bool $isMain
1342 * @param bool $linestart
1345 private function internalParseHalfParsed( $text, $isMain = true, $linestart = true ) {
1346 $text = $this->mStripState
->unstripGeneral( $text );
1348 // Avoid PHP 7.1 warning from passing $this by reference
1352 Hooks
::run( 'ParserAfterUnstrip', [ &$parser, &$text ] );
1355 # Clean up special characters, only run once, next-to-last before doBlockLevels
1357 # French spaces, last one Guillemet-left
1358 # only if there is something before the space
1359 '/(.) (?=\\?|:|;|!|%|\\302\\273)/' => '\\1 ',
1360 # french spaces, Guillemet-right
1361 '/(\\302\\253) /' => '\\1 ',
1362 '/ (!\s*important)/' => ' \\1', # Beware of CSS magic word !important, T13874.
1364 $text = preg_replace( array_keys( $fixtags ), array_values( $fixtags ), $text );
1366 $text = $this->doBlockLevels( $text, $linestart );
1368 $this->replaceLinkHolders( $text );
1371 * The input doesn't get language converted if
1373 * b) Content isn't converted
1374 * c) It's a conversion table
1375 * d) it is an interface message (which is in the user language)
1377 if ( !( $this->mOptions
->getDisableContentConversion()
1378 ||
isset( $this->mDoubleUnderscores
['nocontentconvert'] ) )
1380 if ( !$this->mOptions
->getInterfaceMessage() ) {
1381 # The position of the convert() call should not be changed. it
1382 # assumes that the links are all replaced and the only thing left
1383 # is the <nowiki> mark.
1384 $text = $this->getConverterLanguage()->convert( $text );
1388 $text = $this->mStripState
->unstripNoWiki( $text );
1391 Hooks
::run( 'ParserBeforeTidy', [ &$parser, &$text ] );
1394 $text = $this->replaceTransparentTags( $text );
1395 $text = $this->mStripState
->unstripGeneral( $text );
1397 $text = Sanitizer
::normalizeCharReferences( $text );
1399 if ( MWTidy
::isEnabled() ) {
1400 if ( $this->mOptions
->getTidy() ) {
1401 $text = MWTidy
::tidy( $text );
1404 # attempt to sanitize at least some nesting problems
1405 # (T4702 and quite a few others)
1407 # ''Something [http://www.cool.com cool''] -->
1408 # <i>Something</i><a href="http://www.cool.com"..><i>cool></i></a>
1409 '/(<([bi])>)(<([bi])>)?([^<]*)(<\/?a[^<]*>)([^<]*)(<\/\\4>)?(<\/\\2>)/' =>
1410 '\\1\\3\\5\\8\\9\\6\\1\\3\\7\\8\\9',
1411 # fix up an anchor inside another anchor, only
1412 # at least for a single single nested link (T5695)
1413 '/(<a[^>]+>)([^<]*)(<a[^>]+>[^<]*)<\/a>(.*)<\/a>/' =>
1414 '\\1\\2</a>\\3</a>\\1\\4</a>',
1415 # fix div inside inline elements- doBlockLevels won't wrap a line which
1416 # contains a div, so fix it up here; replace
1417 # div with escaped text
1418 '/(<([aib]) [^>]+>)([^<]*)(<div([^>]*)>)(.*)(<\/div>)([^<]*)(<\/\\2>)/' =>
1419 '\\1\\3<div\\5>\\6</div>\\8\\9',
1420 # remove empty italic or bold tag pairs, some
1421 # introduced by rules above
1422 '/<([bi])><\/\\1>/' => '',
1425 $text = preg_replace(
1426 array_keys( $tidyregs ),
1427 array_values( $tidyregs ),
1432 Hooks
::run( 'ParserAfterTidy', [ &$parser, &$text ] );
1439 * Replace special strings like "ISBN xxx" and "RFC xxx" with
1440 * magic external links.
1445 * @param string $text
1449 public function doMagicLinks( $text ) {
1450 $prots = wfUrlProtocolsWithoutProtRel();
1451 $urlChar = self
::EXT_LINK_URL_CLASS
;
1452 $addr = self
::EXT_LINK_ADDR
;
1453 $space = self
::SPACE_NOT_NL
; # non-newline space
1454 $spdash = "(?:-|$space)"; # a dash or a non-newline space
1455 $spaces = "$space++"; # possessive match of 1 or more spaces
1456 $text = preg_replace_callback(
1458 (<a[ \t\r\n>].*?</a>) | # m[1]: Skip link text
1459 (<.*?>) | # m[2]: Skip stuff inside HTML elements' . "
1460 (\b # m[3]: Free external links
1462 ($addr$urlChar*) # m[4]: Post-protocol path
1464 \b(?:RFC|PMID) $spaces # m[5]: RFC or PMID, capture number
1466 \bISBN $spaces ( # m[6]: ISBN, capture number
1467 (?: 97[89] $spdash? )? # optional 13-digit ISBN prefix
1468 (?: [0-9] $spdash? ){9} # 9 digits with opt. delimiters
1469 [0-9Xx] # check digit
1471 )!xu", [ $this, 'magicLinkCallback' ], $text );
1476 * @throws MWException
1478 * @return HTML|string
1480 public function magicLinkCallback( $m ) {
1481 if ( isset( $m[1] ) && $m[1] !== '' ) {
1484 } elseif ( isset( $m[2] ) && $m[2] !== '' ) {
1487 } elseif ( isset( $m[3] ) && $m[3] !== '' ) {
1488 # Free external link
1489 return $this->makeFreeExternalLink( $m[0], strlen( $m[4] ) );
1490 } elseif ( isset( $m[5] ) && $m[5] !== '' ) {
1492 if ( substr( $m[0], 0, 3 ) === 'RFC' ) {
1493 if ( !$this->mOptions
->getMagicRFCLinks() ) {
1498 $cssClass = 'mw-magiclink-rfc';
1499 $trackingCat = 'magiclink-tracking-rfc';
1501 } elseif ( substr( $m[0], 0, 4 ) === 'PMID' ) {
1502 if ( !$this->mOptions
->getMagicPMIDLinks() ) {
1506 $urlmsg = 'pubmedurl';
1507 $cssClass = 'mw-magiclink-pmid';
1508 $trackingCat = 'magiclink-tracking-pmid';
1511 throw new MWException( __METHOD__
. ': unrecognised match type "' .
1512 substr( $m[0], 0, 20 ) . '"' );
1514 $url = wfMessage( $urlmsg, $id )->inContentLanguage()->text();
1515 $this->addTrackingCategory( $trackingCat );
1516 return Linker
::makeExternalLink( $url, "{$keyword} {$id}", true, $cssClass, [], $this->mTitle
);
1517 } elseif ( isset( $m[6] ) && $m[6] !== ''
1518 && $this->mOptions
->getMagicISBNLinks()
1522 $space = self
::SPACE_NOT_NL
; # non-newline space
1523 $isbn = preg_replace( "/$space/", ' ', $isbn );
1524 $num = strtr( $isbn, [
1529 $this->addTrackingCategory( 'magiclink-tracking-isbn' );
1530 return $this->getLinkRenderer()->makeKnownLink(
1531 SpecialPage
::getTitleFor( 'Booksources', $num ),
1534 'class' => 'internal mw-magiclink-isbn',
1535 'title' => false // suppress title attribute
1544 * Make a free external link, given a user-supplied URL
1546 * @param string $url
1547 * @param int $numPostProto
1548 * The number of characters after the protocol.
1549 * @return string HTML
1552 public function makeFreeExternalLink( $url, $numPostProto ) {
1555 # The characters '<' and '>' (which were escaped by
1556 # removeHTMLtags()) should not be included in
1557 # URLs, per RFC 2396.
1558 # Make terminate a URL as well (bug T84937)
1561 '/&(lt|gt|nbsp|#x0*(3[CcEe]|[Aa]0)|#0*(60|62|160));/',
1566 $trail = substr( $url, $m2[0][1] ) . $trail;
1567 $url = substr( $url, 0, $m2[0][1] );
1570 # Move trailing punctuation to $trail
1572 # If there is no left bracket, then consider right brackets fair game too
1573 if ( strpos( $url, '(' ) === false ) {
1577 $urlRev = strrev( $url );
1578 $numSepChars = strspn( $urlRev, $sep );
1579 # Don't break a trailing HTML entity by moving the ; into $trail
1580 # This is in hot code, so use substr_compare to avoid having to
1581 # create a new string object for the comparison
1582 if ( $numSepChars && substr_compare( $url, ";", -$numSepChars, 1 ) === 0 ) {
1583 # more optimization: instead of running preg_match with a $
1584 # anchor, which can be slow, do the match on the reversed
1585 # string starting at the desired offset.
1586 # un-reversed regexp is: /&([a-z]+|#x[\da-f]+|#\d+)$/i
1587 if ( preg_match( '/\G([a-z]+|[\da-f]+x#|\d+#)&/i', $urlRev, $m2, 0, $numSepChars ) ) {
1591 if ( $numSepChars ) {
1592 $trail = substr( $url, -$numSepChars ) . $trail;
1593 $url = substr( $url, 0, -$numSepChars );
1596 # Verify that we still have a real URL after trail removal, and
1597 # not just lone protocol
1598 if ( strlen( $trail ) >= $numPostProto ) {
1599 return $url . $trail;
1602 $url = Sanitizer
::cleanUrl( $url );
1604 # Is this an external image?
1605 $text = $this->maybeMakeExternalImage( $url );
1606 if ( $text === false ) {
1607 # Not an image, make a link
1608 $text = Linker
::makeExternalLink( $url,
1609 $this->getConverterLanguage()->markNoConversion( $url, true ),
1611 $this->getExternalLinkAttribs( $url ), $this->mTitle
);
1612 # Register it in the output object...
1613 # Replace unnecessary URL escape codes with their equivalent characters
1614 $pasteurized = self
::normalizeLinkUrl( $url );
1615 $this->mOutput
->addExternalLink( $pasteurized );
1617 return $text . $trail;
1621 * Parse headers and return html
1625 * @param string $text
1629 public function doHeadings( $text ) {
1630 for ( $i = 6; $i >= 1; --$i ) {
1631 $h = str_repeat( '=', $i );
1632 $text = preg_replace( "/^$h(.+)$h\\s*$/m", "<h$i>\\1</h$i>", $text );
1638 * Replace single quotes with HTML markup
1641 * @param string $text
1643 * @return string The altered text
1645 public function doAllQuotes( $text ) {
1647 $lines = StringUtils
::explode( "\n", $text );
1648 foreach ( $lines as $line ) {
1649 $outtext .= $this->doQuotes( $line ) . "\n";
1651 $outtext = substr( $outtext, 0, -1 );
1656 * Helper function for doAllQuotes()
1658 * @param string $text
1662 public function doQuotes( $text ) {
1663 $arr = preg_split( "/(''+)/", $text, -1, PREG_SPLIT_DELIM_CAPTURE
);
1664 $countarr = count( $arr );
1665 if ( $countarr == 1 ) {
1669 // First, do some preliminary work. This may shift some apostrophes from
1670 // being mark-up to being text. It also counts the number of occurrences
1671 // of bold and italics mark-ups.
1674 for ( $i = 1; $i < $countarr; $i +
= 2 ) {
1675 $thislen = strlen( $arr[$i] );
1676 // If there are ever four apostrophes, assume the first is supposed to
1677 // be text, and the remaining three constitute mark-up for bold text.
1678 // (T15227: ''''foo'''' turns into ' ''' foo ' ''')
1679 if ( $thislen == 4 ) {
1680 $arr[$i - 1] .= "'";
1683 } elseif ( $thislen > 5 ) {
1684 // If there are more than 5 apostrophes in a row, assume they're all
1685 // text except for the last 5.
1686 // (T15227: ''''''foo'''''' turns into ' ''''' foo ' ''''')
1687 $arr[$i - 1] .= str_repeat( "'", $thislen - 5 );
1691 // Count the number of occurrences of bold and italics mark-ups.
1692 if ( $thislen == 2 ) {
1694 } elseif ( $thislen == 3 ) {
1696 } elseif ( $thislen == 5 ) {
1702 // If there is an odd number of both bold and italics, it is likely
1703 // that one of the bold ones was meant to be an apostrophe followed
1704 // by italics. Which one we cannot know for certain, but it is more
1705 // likely to be one that has a single-letter word before it.
1706 if ( ( $numbold %
2 == 1 ) && ( $numitalics %
2 == 1 ) ) {
1707 $firstsingleletterword = -1;
1708 $firstmultiletterword = -1;
1710 for ( $i = 1; $i < $countarr; $i +
= 2 ) {
1711 if ( strlen( $arr[$i] ) == 3 ) {
1712 $x1 = substr( $arr[$i - 1], -1 );
1713 $x2 = substr( $arr[$i - 1], -2, 1 );
1714 if ( $x1 === ' ' ) {
1715 if ( $firstspace == -1 ) {
1718 } elseif ( $x2 === ' ' ) {
1719 $firstsingleletterword = $i;
1720 // if $firstsingleletterword is set, we don't
1721 // look at the other options, so we can bail early.
1724 if ( $firstmultiletterword == -1 ) {
1725 $firstmultiletterword = $i;
1731 // If there is a single-letter word, use it!
1732 if ( $firstsingleletterword > -1 ) {
1733 $arr[$firstsingleletterword] = "''";
1734 $arr[$firstsingleletterword - 1] .= "'";
1735 } elseif ( $firstmultiletterword > -1 ) {
1736 // If not, but there's a multi-letter word, use that one.
1737 $arr[$firstmultiletterword] = "''";
1738 $arr[$firstmultiletterword - 1] .= "'";
1739 } elseif ( $firstspace > -1 ) {
1740 // ... otherwise use the first one that has neither.
1741 // (notice that it is possible for all three to be -1 if, for example,
1742 // there is only one pentuple-apostrophe in the line)
1743 $arr[$firstspace] = "''";
1744 $arr[$firstspace - 1] .= "'";
1748 // Now let's actually convert our apostrophic mush to HTML!
1753 foreach ( $arr as $r ) {
1754 if ( ( $i %
2 ) == 0 ) {
1755 if ( $state === 'both' ) {
1761 $thislen = strlen( $r );
1762 if ( $thislen == 2 ) {
1763 if ( $state === 'i' ) {
1766 } elseif ( $state === 'bi' ) {
1769 } elseif ( $state === 'ib' ) {
1770 $output .= '</b></i><b>';
1772 } elseif ( $state === 'both' ) {
1773 $output .= '<b><i>' . $buffer . '</i>';
1775 } else { // $state can be 'b' or ''
1779 } elseif ( $thislen == 3 ) {
1780 if ( $state === 'b' ) {
1783 } elseif ( $state === 'bi' ) {
1784 $output .= '</i></b><i>';
1786 } elseif ( $state === 'ib' ) {
1789 } elseif ( $state === 'both' ) {
1790 $output .= '<i><b>' . $buffer . '</b>';
1792 } else { // $state can be 'i' or ''
1796 } elseif ( $thislen == 5 ) {
1797 if ( $state === 'b' ) {
1798 $output .= '</b><i>';
1800 } elseif ( $state === 'i' ) {
1801 $output .= '</i><b>';
1803 } elseif ( $state === 'bi' ) {
1804 $output .= '</i></b>';
1806 } elseif ( $state === 'ib' ) {
1807 $output .= '</b></i>';
1809 } elseif ( $state === 'both' ) {
1810 $output .= '<i><b>' . $buffer . '</b></i>';
1812 } else { // ($state == '')
1820 // Now close all remaining tags. Notice that the order is important.
1821 if ( $state === 'b' ||
$state === 'ib' ) {
1824 if ( $state === 'i' ||
$state === 'bi' ||
$state === 'ib' ) {
1827 if ( $state === 'bi' ) {
1830 // There might be lonely ''''', so make sure we have a buffer
1831 if ( $state === 'both' && $buffer ) {
1832 $output .= '<b><i>' . $buffer . '</i></b>';
1838 * Replace external links (REL)
1840 * Note: this is all very hackish and the order of execution matters a lot.
1841 * Make sure to run tests/parser/parserTests.php if you change this code.
1845 * @param string $text
1847 * @throws MWException
1850 public function replaceExternalLinks( $text ) {
1852 $bits = preg_split( $this->mExtLinkBracketedRegex
, $text, -1, PREG_SPLIT_DELIM_CAPTURE
);
1853 if ( $bits === false ) {
1854 throw new MWException( "PCRE needs to be compiled with "
1855 . "--enable-unicode-properties in order for MediaWiki to function" );
1857 $s = array_shift( $bits );
1860 while ( $i < count( $bits ) ) {
1863 $text = $bits[$i++
];
1864 $trail = $bits[$i++
];
1866 # The characters '<' and '>' (which were escaped by
1867 # removeHTMLtags()) should not be included in
1868 # URLs, per RFC 2396.
1870 if ( preg_match( '/&(lt|gt);/', $url, $m2, PREG_OFFSET_CAPTURE
) ) {
1871 $text = substr( $url, $m2[0][1] ) . ' ' . $text;
1872 $url = substr( $url, 0, $m2[0][1] );
1875 # If the link text is an image URL, replace it with an <img> tag
1876 # This happened by accident in the original parser, but some people used it extensively
1877 $img = $this->maybeMakeExternalImage( $text );
1878 if ( $img !== false ) {
1884 # Set linktype for CSS - if URL==text, link is essentially free
1885 $linktype = ( $text === $url ) ?
'free' : 'text';
1887 # No link text, e.g. [http://domain.tld/some.link]
1888 if ( $text == '' ) {
1890 $langObj = $this->getTargetLanguage();
1891 $text = '[' . $langObj->formatNum( ++
$this->mAutonumber
) . ']';
1892 $linktype = 'autonumber';
1894 # Have link text, e.g. [http://domain.tld/some.link text]s
1896 list( $dtrail, $trail ) = Linker
::splitTrail( $trail );
1899 $text = $this->getConverterLanguage()->markNoConversion( $text );
1901 $url = Sanitizer
::cleanUrl( $url );
1903 # Use the encoded URL
1904 # This means that users can paste URLs directly into the text
1905 # Funny characters like ö aren't valid in URLs anyway
1906 # This was changed in August 2004
1907 $s .= Linker
::makeExternalLink( $url, $text, false, $linktype,
1908 $this->getExternalLinkAttribs( $url ), $this->mTitle
) . $dtrail . $trail;
1910 # Register link in the output object.
1911 # Replace unnecessary URL escape codes with the referenced character
1912 # This prevents spammers from hiding links from the filters
1913 $pasteurized = self
::normalizeLinkUrl( $url );
1914 $this->mOutput
->addExternalLink( $pasteurized );
1921 * Get the rel attribute for a particular external link.
1924 * @param string|bool $url Optional URL, to extract the domain from for rel =>
1925 * nofollow if appropriate
1926 * @param Title $title Optional Title, for wgNoFollowNsExceptions lookups
1927 * @return string|null Rel attribute for $url
1929 public static function getExternalLinkRel( $url = false, $title = null ) {
1930 global $wgNoFollowLinks, $wgNoFollowNsExceptions, $wgNoFollowDomainExceptions;
1931 $ns = $title ?
$title->getNamespace() : false;
1932 if ( $wgNoFollowLinks && !in_array( $ns, $wgNoFollowNsExceptions )
1933 && !wfMatchesDomainList( $url, $wgNoFollowDomainExceptions )
1941 * Get an associative array of additional HTML attributes appropriate for a
1942 * particular external link. This currently may include rel => nofollow
1943 * (depending on configuration, namespace, and the URL's domain) and/or a
1944 * target attribute (depending on configuration).
1946 * @param string $url URL to extract the domain from for rel =>
1947 * nofollow if appropriate
1948 * @return array Associative array of HTML attributes
1950 public function getExternalLinkAttribs( $url ) {
1952 $rel = self
::getExternalLinkRel( $url, $this->mTitle
);
1954 $target = $this->mOptions
->getExternalLinkTarget();
1956 $attribs['target'] = $target;
1957 if ( !in_array( $target, [ '_self', '_parent', '_top' ] ) ) {
1958 // T133507. New windows can navigate parent cross-origin.
1959 // Including noreferrer due to lacking browser
1960 // support of noopener. Eventually noreferrer should be removed.
1961 if ( $rel !== '' ) {
1964 $rel .= 'noreferrer noopener';
1967 $attribs['rel'] = $rel;
1972 * Replace unusual escape codes in a URL with their equivalent characters
1974 * This generally follows the syntax defined in RFC 3986, with special
1975 * consideration for HTTP query strings.
1977 * @param string $url
1980 public static function normalizeLinkUrl( $url ) {
1981 # First, make sure unsafe characters are encoded
1982 $url = preg_replace_callback( '/[\x00-\x20"<>\[\\\\\]^`{|}\x7F-\xFF]/',
1984 return rawurlencode( $m[0] );
1990 $end = strlen( $url );
1992 # Fragment part - 'fragment'
1993 $start = strpos( $url, '#' );
1994 if ( $start !== false && $start < $end ) {
1995 $ret = self
::normalizeUrlComponent(
1996 substr( $url, $start, $end - $start ), '"#%<>[\]^`{|}' ) . $ret;
2000 # Query part - 'query' minus &=+;
2001 $start = strpos( $url, '?' );
2002 if ( $start !== false && $start < $end ) {
2003 $ret = self
::normalizeUrlComponent(
2004 substr( $url, $start, $end - $start ), '"#%<>[\]^`{|}&=+;' ) . $ret;
2008 # Scheme and path part - 'pchar'
2009 # (we assume no userinfo or encoded colons in the host)
2010 $ret = self
::normalizeUrlComponent(
2011 substr( $url, 0, $end ), '"#%<>[\]^`{|}/?' ) . $ret;
2016 private static function normalizeUrlComponent( $component, $unsafe ) {
2017 $callback = function ( $matches ) use ( $unsafe ) {
2018 $char = urldecode( $matches[0] );
2019 $ord = ord( $char );
2020 if ( $ord > 32 && $ord < 127 && strpos( $unsafe, $char ) === false ) {
2024 # Leave it escaped, but use uppercase for a-f
2025 return strtoupper( $matches[0] );
2028 return preg_replace_callback( '/%[0-9A-Fa-f]{2}/', $callback, $component );
2032 * make an image if it's allowed, either through the global
2033 * option, through the exception, or through the on-wiki whitelist
2035 * @param string $url
2039 private function maybeMakeExternalImage( $url ) {
2040 $imagesfrom = $this->mOptions
->getAllowExternalImagesFrom();
2041 $imagesexception = !empty( $imagesfrom );
2043 # $imagesfrom could be either a single string or an array of strings, parse out the latter
2044 if ( $imagesexception && is_array( $imagesfrom ) ) {
2045 $imagematch = false;
2046 foreach ( $imagesfrom as $match ) {
2047 if ( strpos( $url, $match ) === 0 ) {
2052 } elseif ( $imagesexception ) {
2053 $imagematch = ( strpos( $url, $imagesfrom ) === 0 );
2055 $imagematch = false;
2058 if ( $this->mOptions
->getAllowExternalImages()
2059 ||
( $imagesexception && $imagematch )
2061 if ( preg_match( self
::EXT_IMAGE_REGEX
, $url ) ) {
2063 $text = Linker
::makeExternalImage( $url );
2066 if ( !$text && $this->mOptions
->getEnableImageWhitelist()
2067 && preg_match( self
::EXT_IMAGE_REGEX
, $url )
2069 $whitelist = explode(
2071 wfMessage( 'external_image_whitelist' )->inContentLanguage()->text()
2074 foreach ( $whitelist as $entry ) {
2075 # Sanitize the regex fragment, make it case-insensitive, ignore blank entries/comments
2076 if ( strpos( $entry, '#' ) === 0 ||
$entry === '' ) {
2079 if ( preg_match( '/' . str_replace( '/', '\\/', $entry ) . '/i', $url ) ) {
2080 # Image matches a whitelist entry
2081 $text = Linker
::makeExternalImage( $url );
2090 * Process [[ ]] wikilinks
2094 * @return string Processed text
2098 public function replaceInternalLinks( $s ) {
2099 $this->mLinkHolders
->merge( $this->replaceInternalLinks2( $s ) );
2104 * Process [[ ]] wikilinks (RIL)
2106 * @throws MWException
2107 * @return LinkHolderArray
2111 public function replaceInternalLinks2( &$s ) {
2112 global $wgExtraInterlanguageLinkPrefixes;
2114 static $tc = false, $e1, $e1_img;
2115 # the % is needed to support urlencoded titles as well
2117 $tc = Title
::legalChars() . '#%';
2118 # Match a link having the form [[namespace:link|alternate]]trail
2119 $e1 = "/^([{$tc}]+)(?:\\|(.+?))?]](.*)\$/sD";
2120 # Match cases where there is no "]]", which might still be images
2121 $e1_img = "/^([{$tc}]+)\\|(.*)\$/sD";
2124 $holders = new LinkHolderArray( $this );
2126 # split the entire text string on occurrences of [[
2127 $a = StringUtils
::explode( '[[', ' ' . $s );
2128 # get the first element (all text up to first [[), and remove the space we added
2131 $line = $a->current(); # Workaround for broken ArrayIterator::next() that returns "void"
2132 $s = substr( $s, 1 );
2134 $useLinkPrefixExtension = $this->getTargetLanguage()->linkPrefixExtension();
2136 if ( $useLinkPrefixExtension ) {
2137 # Match the end of a line for a word that's not followed by whitespace,
2138 # e.g. in the case of 'The Arab al[[Razi]]', 'al' will be matched
2140 $charset = $wgContLang->linkPrefixCharset();
2141 $e2 = "/^((?>.*[^$charset]|))(.+)$/sDu";
2144 if ( is_null( $this->mTitle
) ) {
2145 throw new MWException( __METHOD__
. ": \$this->mTitle is null\n" );
2147 $nottalk = !$this->mTitle
->isTalkPage();
2149 if ( $useLinkPrefixExtension ) {
2151 if ( preg_match( $e2, $s, $m ) ) {
2152 $first_prefix = $m[2];
2154 $first_prefix = false;
2160 $useSubpages = $this->areSubpagesAllowed();
2162 // @codingStandardsIgnoreStart Squiz.WhiteSpace.SemicolonSpacing.Incorrect
2163 # Loop for each link
2164 for ( ; $line !== false && $line !== null; $a->next(), $line = $a->current() ) {
2165 // @codingStandardsIgnoreEnd
2167 # Check for excessive memory usage
2168 if ( $holders->isBig() ) {
2170 # Do the existence check, replace the link holders and clear the array
2171 $holders->replace( $s );
2175 if ( $useLinkPrefixExtension ) {
2176 if ( preg_match( $e2, $s, $m ) ) {
2183 if ( $first_prefix ) {
2184 $prefix = $first_prefix;
2185 $first_prefix = false;
2189 $might_be_img = false;
2191 if ( preg_match( $e1, $line, $m ) ) { # page with normal text or alt
2193 # If we get a ] at the beginning of $m[3] that means we have a link that's something like:
2194 # [[Image:Foo.jpg|[http://example.com desc]]] <- having three ] in a row fucks up,
2195 # the real problem is with the $e1 regex
2197 # Still some problems for cases where the ] is meant to be outside punctuation,
2198 # and no image is in sight. See T4095.
2200 && substr( $m[3], 0, 1 ) === ']'
2201 && strpos( $text, '[' ) !== false
2203 $text .= ']'; # so that replaceExternalLinks($text) works later
2204 $m[3] = substr( $m[3], 1 );
2206 # fix up urlencoded title texts
2207 if ( strpos( $m[1], '%' ) !== false ) {
2208 # Should anchors '#' also be rejected?
2209 $m[1] = str_replace( [ '<', '>' ], [ '<', '>' ], rawurldecode( $m[1] ) );
2212 } elseif ( preg_match( $e1_img, $line, $m ) ) {
2213 # Invalid, but might be an image with a link in its caption
2214 $might_be_img = true;
2216 if ( strpos( $m[1], '%' ) !== false ) {
2217 $m[1] = str_replace( [ '<', '>' ], [ '<', '>' ], rawurldecode( $m[1] ) );
2220 } else { # Invalid form; output directly
2221 $s .= $prefix . '[[' . $line;
2225 $origLink = ltrim( $m[1], ' ' );
2227 # Don't allow internal links to pages containing
2228 # PROTO: where PROTO is a valid URL protocol; these
2229 # should be external links.
2230 if ( preg_match( '/^(?i:' . $this->mUrlProtocols
. ')/', $origLink ) ) {
2231 $s .= $prefix . '[[' . $line;
2235 # Make subpage if necessary
2236 if ( $useSubpages ) {
2237 $link = $this->maybeDoSubpageLink( $origLink, $text );
2242 $noforce = ( substr( $origLink, 0, 1 ) !== ':' );
2244 # Strip off leading ':'
2245 $link = substr( $link, 1 );
2248 $unstrip = $this->mStripState
->unstripNoWiki( $link );
2249 $nt = is_string( $unstrip ) ? Title
::newFromText( $unstrip ) : null;
2250 if ( $nt === null ) {
2251 $s .= $prefix . '[[' . $line;
2255 $ns = $nt->getNamespace();
2256 $iw = $nt->getInterwiki();
2258 if ( $might_be_img ) { # if this is actually an invalid link
2259 if ( $ns == NS_FILE
&& $noforce ) { # but might be an image
2262 # look at the next 'line' to see if we can close it there
2264 $next_line = $a->current();
2265 if ( $next_line === false ||
$next_line === null ) {
2268 $m = explode( ']]', $next_line, 3 );
2269 if ( count( $m ) == 3 ) {
2270 # the first ]] closes the inner link, the second the image
2272 $text .= "[[{$m[0]}]]{$m[1]}";
2275 } elseif ( count( $m ) == 2 ) {
2276 # if there's exactly one ]] that's fine, we'll keep looking
2277 $text .= "[[{$m[0]}]]{$m[1]}";
2279 # if $next_line is invalid too, we need look no further
2280 $text .= '[[' . $next_line;
2285 # we couldn't find the end of this imageLink, so output it raw
2286 # but don't ignore what might be perfectly normal links in the text we've examined
2287 $holders->merge( $this->replaceInternalLinks2( $text ) );
2288 $s .= "{$prefix}[[$link|$text";
2289 # note: no $trail, because without an end, there *is* no trail
2292 } else { # it's not an image, so output it raw
2293 $s .= "{$prefix}[[$link|$text";
2294 # note: no $trail, because without an end, there *is* no trail
2299 $wasblank = ( $text == '' );
2303 # T6598 madness. Handle the quotes only if they come from the alternate part
2304 # [[Lista d''e paise d''o munno]] -> <a href="...">Lista d''e paise d''o munno</a>
2305 # [[Criticism of Harry Potter|Criticism of ''Harry Potter'']]
2306 # -> <a href="Criticism of Harry Potter">Criticism of <i>Harry Potter</i></a>
2307 $text = $this->doQuotes( $text );
2310 # Link not escaped by : , create the various objects
2311 if ( $noforce && !$nt->wasLocalInterwiki() ) {
2314 $iw && $this->mOptions
->getInterwikiMagic() && $nottalk && (
2315 Language
::fetchLanguageName( $iw, null, 'mw' ) ||
2316 in_array( $iw, $wgExtraInterlanguageLinkPrefixes )
2319 # T26502: filter duplicates
2320 if ( !isset( $this->mLangLinkLanguages
[$iw] ) ) {
2321 $this->mLangLinkLanguages
[$iw] = true;
2322 $this->mOutput
->addLanguageLink( $nt->getFullText() );
2325 $s = rtrim( $s . $prefix );
2326 $s .= trim( $trail, "\n" ) == '' ?
'': $prefix . $trail;
2330 if ( $ns == NS_FILE
) {
2331 if ( !wfIsBadImage( $nt->getDBkey(), $this->mTitle
) ) {
2333 # if no parameters were passed, $text
2334 # becomes something like "File:Foo.png",
2335 # which we don't want to pass on to the
2339 # recursively parse links inside the image caption
2340 # actually, this will parse them in any other parameters, too,
2341 # but it might be hard to fix that, and it doesn't matter ATM
2342 $text = $this->replaceExternalLinks( $text );
2343 $holders->merge( $this->replaceInternalLinks2( $text ) );
2345 # cloak any absolute URLs inside the image markup, so replaceExternalLinks() won't touch them
2346 $s .= $prefix . $this->armorLinks(
2347 $this->makeImage( $nt, $text, $holders ) ) . $trail;
2350 } elseif ( $ns == NS_CATEGORY
) {
2351 $s = rtrim( $s . "\n" ); # T2087
2354 $sortkey = $this->getDefaultSort();
2358 $sortkey = Sanitizer
::decodeCharReferences( $sortkey );
2359 $sortkey = str_replace( "\n", '', $sortkey );
2360 $sortkey = $this->getConverterLanguage()->convertCategoryKey( $sortkey );
2361 $this->mOutput
->addCategory( $nt->getDBkey(), $sortkey );
2364 * Strip the whitespace Category links produce, see T2087
2366 $s .= trim( $prefix . $trail, "\n" ) == '' ?
'' : $prefix . $trail;
2372 # Self-link checking. For some languages, variants of the title are checked in
2373 # LinkHolderArray::doVariants() to allow batching the existence checks necessary
2374 # for linking to a different variant.
2375 if ( $ns != NS_SPECIAL
&& $nt->equals( $this->mTitle
) && !$nt->hasFragment() ) {
2376 $s .= $prefix . Linker
::makeSelfLinkObj( $nt, $text, '', $trail );
2380 # NS_MEDIA is a pseudo-namespace for linking directly to a file
2381 # @todo FIXME: Should do batch file existence checks, see comment below
2382 if ( $ns == NS_MEDIA
) {
2383 # Give extensions a chance to select the file revision for us
2386 Hooks
::run( 'BeforeParserFetchFileAndTitle',
2387 [ $this, $nt, &$options, &$descQuery ] );
2388 # Fetch and register the file (file title may be different via hooks)
2389 list( $file, $nt ) = $this->fetchFileAndTitle( $nt, $options );
2390 # Cloak with NOPARSE to avoid replacement in replaceExternalLinks
2391 $s .= $prefix . $this->armorLinks(
2392 Linker
::makeMediaLinkFile( $nt, $file, $text ) ) . $trail;
2396 # Some titles, such as valid special pages or files in foreign repos, should
2397 # be shown as bluelinks even though they're not included in the page table
2398 # @todo FIXME: isAlwaysKnown() can be expensive for file links; we should really do
2399 # batch file existence checks for NS_FILE and NS_MEDIA
2400 if ( $iw == '' && $nt->isAlwaysKnown() ) {
2401 $this->mOutput
->addLink( $nt );
2402 $s .= $this->makeKnownLinkHolder( $nt, $text, $trail, $prefix );
2404 # Links will be added to the output link list after checking
2405 $s .= $holders->makeHolder( $nt, $text, [], $trail, $prefix );
2412 * Render a forced-blue link inline; protect against double expansion of
2413 * URLs if we're in a mode that prepends full URL prefixes to internal links.
2414 * Since this little disaster has to split off the trail text to avoid
2415 * breaking URLs in the following text without breaking trails on the
2416 * wiki links, it's been made into a horrible function.
2419 * @param string $text
2420 * @param string $trail
2421 * @param string $prefix
2422 * @return string HTML-wikitext mix oh yuck
2424 protected function makeKnownLinkHolder( $nt, $text = '', $trail = '', $prefix = '' ) {
2425 list( $inside, $trail ) = Linker
::splitTrail( $trail );
2427 if ( $text == '' ) {
2428 $text = htmlspecialchars( $nt->getPrefixedText() );
2431 $link = $this->getLinkRenderer()->makeKnownLink(
2432 $nt, new HtmlArmor( "$prefix$text$inside" )
2435 return $this->armorLinks( $link ) . $trail;
2439 * Insert a NOPARSE hacky thing into any inline links in a chunk that's
2440 * going to go through further parsing steps before inline URL expansion.
2442 * Not needed quite as much as it used to be since free links are a bit
2443 * more sensible these days. But bracketed links are still an issue.
2445 * @param string $text More-or-less HTML
2446 * @return string Less-or-more HTML with NOPARSE bits
2448 public function armorLinks( $text ) {
2449 return preg_replace( '/\b((?i)' . $this->mUrlProtocols
. ')/',
2450 self
::MARKER_PREFIX
. "NOPARSE$1", $text );
2454 * Return true if subpage links should be expanded on this page.
2457 public function areSubpagesAllowed() {
2458 # Some namespaces don't allow subpages
2459 return MWNamespace
::hasSubpages( $this->mTitle
->getNamespace() );
2463 * Handle link to subpage if necessary
2465 * @param string $target The source of the link
2466 * @param string &$text The link text, modified as necessary
2467 * @return string The full name of the link
2470 public function maybeDoSubpageLink( $target, &$text ) {
2471 return Linker
::normalizeSubpageLink( $this->mTitle
, $target, $text );
2475 * Make lists from lines starting with ':', '*', '#', etc. (DBL)
2477 * @param string $text
2478 * @param bool $linestart Whether or not this is at the start of a line.
2480 * @return string The lists rendered as HTML
2482 public function doBlockLevels( $text, $linestart ) {
2483 return BlockLevelPass
::doBlockLevels( $text, $linestart );
2487 * Return value of a magic variable (like PAGENAME)
2491 * @param string $index Magic variable identifier as mapped in MagicWord::$mVariableIDs
2492 * @param bool|PPFrame $frame
2494 * @throws MWException
2497 public function getVariableValue( $index, $frame = false ) {
2498 global $wgContLang, $wgSitename, $wgServer, $wgServerName;
2499 global $wgArticlePath, $wgScriptPath, $wgStylePath;
2501 if ( is_null( $this->mTitle
) ) {
2502 // If no title set, bad things are going to happen
2503 // later. Title should always be set since this
2504 // should only be called in the middle of a parse
2505 // operation (but the unit-tests do funky stuff)
2506 throw new MWException( __METHOD__
. ' Should only be '
2507 . ' called while parsing (no title set)' );
2510 // Avoid PHP 7.1 warning from passing $this by reference
2514 * Some of these require message or data lookups and can be
2515 * expensive to check many times.
2517 if ( Hooks
::run( 'ParserGetVariableValueVarCache', [ &$parser, &$this->mVarCache
] ) ) {
2518 if ( isset( $this->mVarCache
[$index] ) ) {
2519 return $this->mVarCache
[$index];
2523 $ts = wfTimestamp( TS_UNIX
, $this->mOptions
->getTimestamp() );
2524 Hooks
::run( 'ParserGetVariableValueTs', [ &$parser, &$ts ] );
2526 $pageLang = $this->getFunctionLang();
2532 case 'currentmonth':
2533 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'm' ) );
2535 case 'currentmonth1':
2536 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2538 case 'currentmonthname':
2539 $value = $pageLang->getMonthName( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2541 case 'currentmonthnamegen':
2542 $value = $pageLang->getMonthNameGen( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2544 case 'currentmonthabbrev':
2545 $value = $pageLang->getMonthAbbreviation( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2548 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'j' ) );
2551 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'd' ) );
2554 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'm' ) );
2557 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2559 case 'localmonthname':
2560 $value = $pageLang->getMonthName( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2562 case 'localmonthnamegen':
2563 $value = $pageLang->getMonthNameGen( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2565 case 'localmonthabbrev':
2566 $value = $pageLang->getMonthAbbreviation( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2569 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'j' ) );
2572 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'd' ) );
2575 $value = wfEscapeWikiText( $this->mTitle
->getText() );
2578 $value = wfEscapeWikiText( $this->mTitle
->getPartialURL() );
2580 case 'fullpagename':
2581 $value = wfEscapeWikiText( $this->mTitle
->getPrefixedText() );
2583 case 'fullpagenamee':
2584 $value = wfEscapeWikiText( $this->mTitle
->getPrefixedURL() );
2587 $value = wfEscapeWikiText( $this->mTitle
->getSubpageText() );
2589 case 'subpagenamee':
2590 $value = wfEscapeWikiText( $this->mTitle
->getSubpageUrlForm() );
2592 case 'rootpagename':
2593 $value = wfEscapeWikiText( $this->mTitle
->getRootText() );
2595 case 'rootpagenamee':
2596 $value = wfEscapeWikiText( wfUrlencode( str_replace(
2599 $this->mTitle
->getRootText()
2602 case 'basepagename':
2603 $value = wfEscapeWikiText( $this->mTitle
->getBaseText() );
2605 case 'basepagenamee':
2606 $value = wfEscapeWikiText( wfUrlencode( str_replace(
2609 $this->mTitle
->getBaseText()
2612 case 'talkpagename':
2613 if ( $this->mTitle
->canTalk() ) {
2614 $talkPage = $this->mTitle
->getTalkPage();
2615 $value = wfEscapeWikiText( $talkPage->getPrefixedText() );
2620 case 'talkpagenamee':
2621 if ( $this->mTitle
->canTalk() ) {
2622 $talkPage = $this->mTitle
->getTalkPage();
2623 $value = wfEscapeWikiText( $talkPage->getPrefixedURL() );
2628 case 'subjectpagename':
2629 $subjPage = $this->mTitle
->getSubjectPage();
2630 $value = wfEscapeWikiText( $subjPage->getPrefixedText() );
2632 case 'subjectpagenamee':
2633 $subjPage = $this->mTitle
->getSubjectPage();
2634 $value = wfEscapeWikiText( $subjPage->getPrefixedURL() );
2636 case 'pageid': // requested in T25427
2637 $pageid = $this->getTitle()->getArticleID();
2638 if ( $pageid == 0 ) {
2639 # 0 means the page doesn't exist in the database,
2640 # which means the user is previewing a new page.
2641 # The vary-revision flag must be set, because the magic word
2642 # will have a different value once the page is saved.
2643 $this->mOutput
->setFlag( 'vary-revision' );
2644 wfDebug( __METHOD__
. ": {{PAGEID}} used in a new page, setting vary-revision...\n" );
2646 $value = $pageid ?
$pageid : null;
2649 # Let the edit saving system know we should parse the page
2650 # *after* a revision ID has been assigned.
2651 $this->mOutput
->setFlag( 'vary-revision-id' );
2652 wfDebug( __METHOD__
. ": {{REVISIONID}} used, setting vary-revision-id...\n" );
2653 $value = $this->mRevisionId
;
2654 if ( !$value && $this->mOptions
->getSpeculativeRevIdCallback() ) {
2655 $value = call_user_func( $this->mOptions
->getSpeculativeRevIdCallback() );
2656 $this->mOutput
->setSpeculativeRevIdUsed( $value );
2660 # Let the edit saving system know we should parse the page
2661 # *after* a revision ID has been assigned. This is for null edits.
2662 $this->mOutput
->setFlag( 'vary-revision' );
2663 wfDebug( __METHOD__
. ": {{REVISIONDAY}} used, setting vary-revision...\n" );
2664 $value = intval( substr( $this->getRevisionTimestamp(), 6, 2 ) );
2666 case 'revisionday2':
2667 # Let the edit saving system know we should parse the page
2668 # *after* a revision ID has been assigned. This is for null edits.
2669 $this->mOutput
->setFlag( 'vary-revision' );
2670 wfDebug( __METHOD__
. ": {{REVISIONDAY2}} used, setting vary-revision...\n" );
2671 $value = substr( $this->getRevisionTimestamp(), 6, 2 );
2673 case 'revisionmonth':
2674 # Let the edit saving system know we should parse the page
2675 # *after* a revision ID has been assigned. This is for null edits.
2676 $this->mOutput
->setFlag( 'vary-revision' );
2677 wfDebug( __METHOD__
. ": {{REVISIONMONTH}} used, setting vary-revision...\n" );
2678 $value = substr( $this->getRevisionTimestamp(), 4, 2 );
2680 case 'revisionmonth1':
2681 # Let the edit saving system know we should parse the page
2682 # *after* a revision ID has been assigned. This is for null edits.
2683 $this->mOutput
->setFlag( 'vary-revision' );
2684 wfDebug( __METHOD__
. ": {{REVISIONMONTH1}} used, setting vary-revision...\n" );
2685 $value = intval( substr( $this->getRevisionTimestamp(), 4, 2 ) );
2687 case 'revisionyear':
2688 # Let the edit saving system know we should parse the page
2689 # *after* a revision ID has been assigned. This is for null edits.
2690 $this->mOutput
->setFlag( 'vary-revision' );
2691 wfDebug( __METHOD__
. ": {{REVISIONYEAR}} used, setting vary-revision...\n" );
2692 $value = substr( $this->getRevisionTimestamp(), 0, 4 );
2694 case 'revisiontimestamp':
2695 # Let the edit saving system know we should parse the page
2696 # *after* a revision ID has been assigned. This is for null edits.
2697 $this->mOutput
->setFlag( 'vary-revision' );
2698 wfDebug( __METHOD__
. ": {{REVISIONTIMESTAMP}} used, setting vary-revision...\n" );
2699 $value = $this->getRevisionTimestamp();
2701 case 'revisionuser':
2702 # Let the edit saving system know we should parse the page
2703 # *after* a revision ID has been assigned for null edits.
2704 $this->mOutput
->setFlag( 'vary-user' );
2705 wfDebug( __METHOD__
. ": {{REVISIONUSER}} used, setting vary-user...\n" );
2706 $value = $this->getRevisionUser();
2708 case 'revisionsize':
2709 $value = $this->getRevisionSize();
2712 $value = str_replace( '_', ' ', $wgContLang->getNsText( $this->mTitle
->getNamespace() ) );
2715 $value = wfUrlencode( $wgContLang->getNsText( $this->mTitle
->getNamespace() ) );
2717 case 'namespacenumber':
2718 $value = $this->mTitle
->getNamespace();
2721 $value = $this->mTitle
->canTalk()
2722 ?
str_replace( '_', ' ', $this->mTitle
->getTalkNsText() )
2726 $value = $this->mTitle
->canTalk() ?
wfUrlencode( $this->mTitle
->getTalkNsText() ) : '';
2728 case 'subjectspace':
2729 $value = str_replace( '_', ' ', $this->mTitle
->getSubjectNsText() );
2731 case 'subjectspacee':
2732 $value = ( wfUrlencode( $this->mTitle
->getSubjectNsText() ) );
2734 case 'currentdayname':
2735 $value = $pageLang->getWeekdayName( (int)MWTimestamp
::getInstance( $ts )->format( 'w' ) +
1 );
2738 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'Y' ), true );
2741 $value = $pageLang->time( wfTimestamp( TS_MW
, $ts ), false, false );
2744 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'H' ), true );
2747 # @bug T6594 PHP5 has it zero padded, PHP4 does not, cast to
2748 # int to remove the padding
2749 $value = $pageLang->formatNum( (int)MWTimestamp
::getInstance( $ts )->format( 'W' ) );
2752 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'w' ) );
2754 case 'localdayname':
2755 $value = $pageLang->getWeekdayName(
2756 (int)MWTimestamp
::getLocalInstance( $ts )->format( 'w' ) +
1
2760 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'Y' ), true );
2763 $value = $pageLang->time(
2764 MWTimestamp
::getLocalInstance( $ts )->format( 'YmdHis' ),
2770 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'H' ), true );
2773 # @bug T6594 PHP5 has it zero padded, PHP4 does not, cast to
2774 # int to remove the padding
2775 $value = $pageLang->formatNum( (int)MWTimestamp
::getLocalInstance( $ts )->format( 'W' ) );
2778 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'w' ) );
2780 case 'numberofarticles':
2781 $value = $pageLang->formatNum( SiteStats
::articles() );
2783 case 'numberoffiles':
2784 $value = $pageLang->formatNum( SiteStats
::images() );
2786 case 'numberofusers':
2787 $value = $pageLang->formatNum( SiteStats
::users() );
2789 case 'numberofactiveusers':
2790 $value = $pageLang->formatNum( SiteStats
::activeUsers() );
2792 case 'numberofpages':
2793 $value = $pageLang->formatNum( SiteStats
::pages() );
2795 case 'numberofadmins':
2796 $value = $pageLang->formatNum( SiteStats
::numberingroup( 'sysop' ) );
2798 case 'numberofedits':
2799 $value = $pageLang->formatNum( SiteStats
::edits() );
2801 case 'currenttimestamp':
2802 $value = wfTimestamp( TS_MW
, $ts );
2804 case 'localtimestamp':
2805 $value = MWTimestamp
::getLocalInstance( $ts )->format( 'YmdHis' );
2807 case 'currentversion':
2808 $value = SpecialVersion
::getVersion();
2811 return $wgArticlePath;
2817 return $wgServerName;
2819 return $wgScriptPath;
2821 return $wgStylePath;
2822 case 'directionmark':
2823 return $pageLang->getDirMark();
2824 case 'contentlanguage':
2825 global $wgLanguageCode;
2826 return $wgLanguageCode;
2827 case 'pagelanguage':
2828 $value = $pageLang->getCode();
2830 case 'cascadingsources':
2831 $value = CoreParserFunctions
::cascadingsources( $this );
2836 'ParserGetVariableValueSwitch',
2837 [ &$parser, &$this->mVarCache
, &$index, &$ret, &$frame ]
2844 $this->mVarCache
[$index] = $value;
2851 * initialise the magic variables (like CURRENTMONTHNAME) and substitution modifiers
2855 public function initialiseVariables() {
2856 $variableIDs = MagicWord
::getVariableIDs();
2857 $substIDs = MagicWord
::getSubstIDs();
2859 $this->mVariables
= new MagicWordArray( $variableIDs );
2860 $this->mSubstWords
= new MagicWordArray( $substIDs );
2864 * Preprocess some wikitext and return the document tree.
2865 * This is the ghost of replace_variables().
2867 * @param string $text The text to parse
2868 * @param int $flags Bitwise combination of:
2869 * - self::PTD_FOR_INCLUSION: Handle "<noinclude>" and "<includeonly>" as if the text is being
2870 * included. Default is to assume a direct page view.
2872 * The generated DOM tree must depend only on the input text and the flags.
2873 * The DOM tree must be the same in OT_HTML and OT_WIKI mode, to avoid a regression of T6899.
2875 * Any flag added to the $flags parameter here, or any other parameter liable to cause a
2876 * change in the DOM tree for a given text, must be passed through the section identifier
2877 * in the section edit link and thus back to extractSections().
2879 * The output of this function is currently only cached in process memory, but a persistent
2880 * cache may be implemented at a later date which takes further advantage of these strict
2881 * dependency requirements.
2885 public function preprocessToDom( $text, $flags = 0 ) {
2886 $dom = $this->getPreprocessor()->preprocessToObj( $text, $flags );
2891 * Return a three-element array: leading whitespace, string contents, trailing whitespace
2897 public static function splitWhitespace( $s ) {
2898 $ltrimmed = ltrim( $s );
2899 $w1 = substr( $s, 0, strlen( $s ) - strlen( $ltrimmed ) );
2900 $trimmed = rtrim( $ltrimmed );
2901 $diff = strlen( $ltrimmed ) - strlen( $trimmed );
2903 $w2 = substr( $ltrimmed, -$diff );
2907 return [ $w1, $trimmed, $w2 ];
2911 * Replace magic variables, templates, and template arguments
2912 * with the appropriate text. Templates are substituted recursively,
2913 * taking care to avoid infinite loops.
2915 * Note that the substitution depends on value of $mOutputType:
2916 * self::OT_WIKI: only {{subst:}} templates
2917 * self::OT_PREPROCESS: templates but not extension tags
2918 * self::OT_HTML: all templates and extension tags
2920 * @param string $text The text to transform
2921 * @param bool|PPFrame $frame Object describing the arguments passed to the
2922 * template. Arguments may also be provided as an associative array, as
2923 * was the usual case before MW1.12. Providing arguments this way may be
2924 * useful for extensions wishing to perform variable replacement
2926 * @param bool $argsOnly Only do argument (triple-brace) expansion, not
2927 * double-brace expansion.
2930 public function replaceVariables( $text, $frame = false, $argsOnly = false ) {
2931 # Is there any text? Also, Prevent too big inclusions!
2932 $textSize = strlen( $text );
2933 if ( $textSize < 1 ||
$textSize > $this->mOptions
->getMaxIncludeSize() ) {
2937 if ( $frame === false ) {
2938 $frame = $this->getPreprocessor()->newFrame();
2939 } elseif ( !( $frame instanceof PPFrame
) ) {
2940 wfDebug( __METHOD__
. " called using plain parameters instead of "
2941 . "a PPFrame instance. Creating custom frame.\n" );
2942 $frame = $this->getPreprocessor()->newCustomFrame( $frame );
2945 $dom = $this->preprocessToDom( $text );
2946 $flags = $argsOnly ? PPFrame
::NO_TEMPLATES
: 0;
2947 $text = $frame->expand( $dom, $flags );
2953 * Clean up argument array - refactored in 1.9 so parserfunctions can use it, too.
2955 * @param array $args
2959 public static function createAssocArgs( $args ) {
2962 foreach ( $args as $arg ) {
2963 $eqpos = strpos( $arg, '=' );
2964 if ( $eqpos === false ) {
2965 $assocArgs[$index++
] = $arg;
2967 $name = trim( substr( $arg, 0, $eqpos ) );
2968 $value = trim( substr( $arg, $eqpos +
1 ) );
2969 if ( $value === false ) {
2972 if ( $name !== false ) {
2973 $assocArgs[$name] = $value;
2982 * Warn the user when a parser limitation is reached
2983 * Will warn at most once the user per limitation type
2985 * The results are shown during preview and run through the Parser (See EditPage.php)
2987 * @param string $limitationType Should be one of:
2988 * 'expensive-parserfunction' (corresponding messages:
2989 * 'expensive-parserfunction-warning',
2990 * 'expensive-parserfunction-category')
2991 * 'post-expand-template-argument' (corresponding messages:
2992 * 'post-expand-template-argument-warning',
2993 * 'post-expand-template-argument-category')
2994 * 'post-expand-template-inclusion' (corresponding messages:
2995 * 'post-expand-template-inclusion-warning',
2996 * 'post-expand-template-inclusion-category')
2997 * 'node-count-exceeded' (corresponding messages:
2998 * 'node-count-exceeded-warning',
2999 * 'node-count-exceeded-category')
3000 * 'expansion-depth-exceeded' (corresponding messages:
3001 * 'expansion-depth-exceeded-warning',
3002 * 'expansion-depth-exceeded-category')
3003 * @param string|int|null $current Current value
3004 * @param string|int|null $max Maximum allowed, when an explicit limit has been
3005 * exceeded, provide the values (optional)
3007 public function limitationWarn( $limitationType, $current = '', $max = '' ) {
3008 # does no harm if $current and $max are present but are unnecessary for the message
3009 # Not doing ->inLanguage( $this->mOptions->getUserLangObj() ), since this is shown
3010 # only during preview, and that would split the parser cache unnecessarily.
3011 $warning = wfMessage( "$limitationType-warning" )->numParams( $current, $max )
3013 $this->mOutput
->addWarning( $warning );
3014 $this->addTrackingCategory( "$limitationType-category" );
3018 * Return the text of a template, after recursively
3019 * replacing any variables or templates within the template.
3021 * @param array $piece The parts of the template
3022 * $piece['title']: the title, i.e. the part before the |
3023 * $piece['parts']: the parameter array
3024 * $piece['lineStart']: whether the brace was at the start of a line
3025 * @param PPFrame $frame The current frame, contains template arguments
3027 * @return string The text of the template
3029 public function braceSubstitution( $piece, $frame ) {
3033 // $text has been filled
3035 // wiki markup in $text should be escaped
3037 // $text is HTML, armour it against wikitext transformation
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;
3046 # Title object, where $text came from
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 );
3055 # Original title text preserved for various purposes
3056 $originalTitle = $part1;
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'];
3063 $profileSection = null; // profile templates
3067 $substMatch = $this->mSubstWords
->matchStartAndRemove( $part1 );
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
3075 $literal = false; # expand when in PST with subst: or safesubst:
3078 if ( $substMatch == 'subst' ) {
3079 $literal = true; # literal when not in PST with plain subst:
3081 $literal = false; # expand when not in PST with safesubst: or no prefix
3085 $text = $frame->virtualBracketedImplode( '{{', '|', '}}', $titleWithSpaces, $args );
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 ) );
3103 # MSG, MSGNW and RAW
3106 $mwMsgnw = MagicWord
::get( 'msgnw' );
3107 if ( $mwMsgnw->matchStartAndRemove( $part1 ) ) {
3110 # Remove obsolete MSG:
3111 $mwMsg = MagicWord
::get( 'msg' );
3112 $mwMsg->matchStartAndRemove( $part1 );
3116 $mwRaw = MagicWord
::get( 'raw' );
3117 if ( $mwRaw->matchStartAndRemove( $part1 ) ) {
3118 $forceRawInterwiki = true;
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 );
3133 $result = $this->callParserFunction( $frame, $func, $funcArgs );
3134 } catch ( Exception
$ex ) {
3138 # The interface for parser functions allows for extracting
3139 # flags into the local scope. Extract any forwarded flags
3145 # Finish mangling title and then check for loops.
3146 # Set $title to a Title object and $titleText to the PDBK
3149 # Split the title into page and subpage
3151 $relative = $this->maybeDoSubpageLink( $part1, $subpage );
3152 if ( $part1 !== $relative ) {
3154 $ns = $this->mTitle
->getNamespace();
3156 $title = Title
::newFromText( $part1, $ns );
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 );
3163 # Do recursion depth check
3164 $limit = $this->mOptions
->getMaxTemplateDepth();
3165 if ( $frame->depth
>= $limit ) {
3167 $text = '<span class="error">'
3168 . wfMessage( 'parser-template-recursion-depth-warning' )
3169 ->numParams( $limit )->inContentLanguage()->text()
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']
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.
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;
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() );
3205 // If this page is cached, then we better not be per user.
3206 $context->setUser( User
::newFromName( '127.0.0.1', false ) );
3208 $context->setLanguage( $this->mOptions
->getUserLangObj() );
3209 $ret = SpecialPageFactory
::capturePath(
3210 $title, $context, $this->getLinkRenderer() );
3212 $text = $context->getOutput()->getHTML();
3213 $this->mOutput
->addOutputPageMetadata( $context->getOutput() );
3216 if ( $specialPage && $specialPage->maxIncludeCacheTime() !== false ) {
3217 $this->mOutput
->updateRuntimeAdaptiveExpiry(
3218 $specialPage->maxIncludeCacheTime()
3222 } elseif ( MWNamespace
::isNonincludable( $title->getNamespace() ) ) {
3223 $found = false; # access denied
3224 wfDebug( __METHOD__
. ": template inclusion denied for " .
3225 $title->getPrefixedDBkey() . "\n" );
3227 list( $text, $title ) = $this->getTemplateDom( $title );
3228 if ( $text !== false ) {
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]]";
3239 } elseif ( $title->isTrans() ) {
3240 # Interwiki transclusion
3241 if ( $this->ot
['html'] && !$forceRawInterwiki ) {
3242 $text = $this->interwikiTransclude( $title, 'render' );
3245 $text = $this->interwikiTransclude( $title, 'raw' );
3246 # Preprocess it like a template
3247 $text = $this->preprocessToDom( $text, self
::PTD_FOR_INCLUSION
);
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 ) ) {
3257 $text = '<span class="error">'
3258 . wfMessage( 'parser-template-loop-warning', $titleText )->inContentLanguage()->text()
3260 $this->addTrackingCategory( 'template-loop-category' );
3261 wfDebug( __METHOD__
. ": template loop broken at '$titleText'\n" );
3265 # If we haven't found text to substitute by now, we're done
3266 # Recover the source wikitext and return it
3268 $text = $frame->virtualBracketedImplode( '{{', '|', '}}', $titleWithSpaces, $args );
3269 if ( $profileSection ) {
3270 $this->mProfiler
->scopedProfileOut( $profileSection );
3272 return [ 'object' => $text ];
3275 # Expand DOM-style return values in a child frame
3276 if ( $isChildObj ) {
3277 # Clean up argument array
3278 $newFrame = $frame->newChild( $args, $title );
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 );
3286 # Uncached expansion
3287 $text = $newFrame->expand( $text );
3290 if ( $isLocalObj && $nowiki ) {
3291 $text = $frame->expand( $text, PPFrame
::RECOVER_ORIG
);
3292 $isLocalObj = false;
3295 if ( $profileSection ) {
3296 $this->mProfiler
->scopedProfileOut( $profileSection );
3299 # Replace raw HTML by a placeholder
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 )
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;
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]]";
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]]";
3326 $text .= $this->insertStripItem( '<!-- WARNING: template omitted, '
3327 . 'post-expand include size too large -->' );
3328 $this->limitationWarn( 'post-expand-template-inclusion' );
3331 if ( $isLocalObj ) {
3332 $ret = [ 'object' => $text ];
3334 $ret = [ 'text' => $text ];
3341 * Call a parser function and return an array with text and flags.
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
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
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
3359 public function callParserFunction( $frame, $function, array $args = [] ) {
3362 # Case sensitive functions
3363 if ( isset( $this->mFunctionSynonyms
[1][$function] ) ) {
3364 $function = $this->mFunctionSynonyms
[1][$function];
3366 # Case insensitive functions
3367 $function = $wgContLang->lc( $function );
3368 if ( isset( $this->mFunctionSynonyms
[0][$function] ) ) {
3369 $function = $this->mFunctionSynonyms
[0][$function];
3371 return [ 'found' => false ];
3375 list( $callback, $flags ) = $this->mFunctionHooks
[$function];
3377 # Workaround for PHP bug 35229 and similar
3378 if ( !is_callable( $callback ) ) {
3379 throw new MWException( "Tag hook for $function is not callable\n" );
3382 // Avoid PHP 7.1 warning from passing $this by reference
3385 $allArgs = [ &$parser ];
3386 if ( $flags & self
::SFH_OBJECT_ARGS
) {
3387 # Convert arguments to PPNodes and collect for appending to $allArgs
3389 foreach ( $args as $k => $v ) {
3390 if ( $v instanceof PPNode ||
$k === 0 ) {
3393 $funcArgs[] = $this->mPreprocessor
->newPartNodeArray( [ $k => $v ] )->item( 0 );
3397 # Add a frame parameter, and pass the arguments as an array
3398 $allArgs[] = $frame;
3399 $allArgs[] = $funcArgs;
3401 # Convert arguments to plain text and append to $allArgs
3402 foreach ( $args as $k => $v ) {
3403 if ( $v instanceof PPNode
) {
3404 $allArgs[] = trim( $frame->expand( $v ) );
3405 } elseif ( is_int( $k ) && $k >= 0 ) {
3406 $allArgs[] = trim( $v );
3408 $allArgs[] = trim( "$k=$v" );
3413 $result = call_user_func_array( $callback, $allArgs );
3415 # The interface for function hooks allows them to return a wikitext
3416 # string or an array containing the string and any flags. This mungs
3417 # things around to match what this method should return.
3418 if ( !is_array( $result ) ) {
3424 if ( isset( $result[0] ) && !isset( $result['text'] ) ) {
3425 $result['text'] = $result[0];
3427 unset( $result[0] );
3434 $preprocessFlags = 0;
3435 if ( isset( $result['noparse'] ) ) {
3436 $noparse = $result['noparse'];
3438 if ( isset( $result['preprocessFlags'] ) ) {
3439 $preprocessFlags = $result['preprocessFlags'];
3443 $result['text'] = $this->preprocessToDom( $result['text'], $preprocessFlags );
3444 $result['isChildObj'] = true;
3451 * Get the semi-parsed DOM representation of a template with a given title,
3452 * and its redirect destination title. Cached.
3454 * @param Title $title
3458 public function getTemplateDom( $title ) {
3459 $cacheTitle = $title;
3460 $titleText = $title->getPrefixedDBkey();
3462 if ( isset( $this->mTplRedirCache
[$titleText] ) ) {
3463 list( $ns, $dbk ) = $this->mTplRedirCache
[$titleText];
3464 $title = Title
::makeTitle( $ns, $dbk );
3465 $titleText = $title->getPrefixedDBkey();
3467 if ( isset( $this->mTplDomCache
[$titleText] ) ) {
3468 return [ $this->mTplDomCache
[$titleText], $title ];
3471 # Cache miss, go to the database
3472 list( $text, $title ) = $this->fetchTemplateAndTitle( $title );
3474 if ( $text === false ) {
3475 $this->mTplDomCache
[$titleText] = false;
3476 return [ false, $title ];
3479 $dom = $this->preprocessToDom( $text, self
::PTD_FOR_INCLUSION
);
3480 $this->mTplDomCache
[$titleText] = $dom;
3482 if ( !$title->equals( $cacheTitle ) ) {
3483 $this->mTplRedirCache
[$cacheTitle->getPrefixedDBkey()] =
3484 [ $title->getNamespace(), $cdb = $title->getDBkey() ];
3487 return [ $dom, $title ];
3491 * Fetch the current revision of a given title. Note that the revision
3492 * (and even the title) may not exist in the database, so everything
3493 * contributing to the output of the parser should use this method
3494 * where possible, rather than getting the revisions themselves. This
3495 * method also caches its results, so using it benefits performance.
3498 * @param Title $title
3501 public function fetchCurrentRevisionOfTitle( $title ) {
3502 $cacheKey = $title->getPrefixedDBkey();
3503 if ( !$this->currentRevisionCache
) {
3504 $this->currentRevisionCache
= new MapCacheLRU( 100 );
3506 if ( !$this->currentRevisionCache
->has( $cacheKey ) ) {
3507 $this->currentRevisionCache
->set( $cacheKey,
3508 // Defaults to Parser::statelessFetchRevision()
3509 call_user_func( $this->mOptions
->getCurrentRevisionCallback(), $title, $this )
3512 return $this->currentRevisionCache
->get( $cacheKey );
3516 * Wrapper around Revision::newFromTitle to allow passing additional parameters
3517 * without passing them on to it.
3520 * @param Title $title
3521 * @param Parser|bool $parser
3522 * @return Revision|bool False if missing
3524 public static function statelessFetchRevision( Title
$title, $parser = false ) {
3525 $pageId = $title->getArticleID();
3526 $revId = $title->getLatestRevID();
3528 $rev = Revision
::newKnownCurrent( wfGetDB( DB_REPLICA
), $pageId, $revId );
3530 $rev->setTitle( $title );
3537 * Fetch the unparsed text of a template and register a reference to it.
3538 * @param Title $title
3539 * @return array ( string or false, Title )
3541 public function fetchTemplateAndTitle( $title ) {
3542 // Defaults to Parser::statelessFetchTemplate()
3543 $templateCb = $this->mOptions
->getTemplateCallback();
3544 $stuff = call_user_func( $templateCb, $title, $this );
3545 // We use U+007F DELETE to distinguish strip markers from regular text.
3546 $text = $stuff['text'];
3547 if ( is_string( $stuff['text'] ) ) {
3548 $text = strtr( $text, "\x7f", "?" );
3550 $finalTitle = isset( $stuff['finalTitle'] ) ?
$stuff['finalTitle'] : $title;
3551 if ( isset( $stuff['deps'] ) ) {
3552 foreach ( $stuff['deps'] as $dep ) {
3553 $this->mOutput
->addTemplate( $dep['title'], $dep['page_id'], $dep['rev_id'] );
3554 if ( $dep['title']->equals( $this->getTitle() ) ) {
3555 // If we transclude ourselves, the final result
3556 // will change based on the new version of the page
3557 $this->mOutput
->setFlag( 'vary-revision' );
3561 return [ $text, $finalTitle ];
3565 * Fetch the unparsed text of a template and register a reference to it.
3566 * @param Title $title
3567 * @return string|bool
3569 public function fetchTemplate( $title ) {
3570 return $this->fetchTemplateAndTitle( $title )[0];
3574 * Static function to get a template
3575 * Can be overridden via ParserOptions::setTemplateCallback().
3577 * @param Title $title
3578 * @param bool|Parser $parser
3582 public static function statelessFetchTemplate( $title, $parser = false ) {
3583 $text = $skip = false;
3584 $finalTitle = $title;
3587 # Loop to fetch the article, with up to 1 redirect
3588 // @codingStandardsIgnoreStart Generic.CodeAnalysis.ForLoopWithTestFunctionCall.NotAllowed
3589 for ( $i = 0; $i < 2 && is_object( $title ); $i++
) {
3590 // @codingStandardsIgnoreEnd
3591 # Give extensions a chance to select the revision instead
3592 $id = false; # Assume current
3593 Hooks
::run( 'BeforeParserFetchTemplateAndtitle',
3594 [ $parser, $title, &$skip, &$id ] );
3600 'page_id' => $title->getArticleID(),
3607 $rev = Revision
::newFromId( $id );
3608 } elseif ( $parser ) {
3609 $rev = $parser->fetchCurrentRevisionOfTitle( $title );
3611 $rev = Revision
::newFromTitle( $title );
3613 $rev_id = $rev ?
$rev->getId() : 0;
3614 # If there is no current revision, there is no page
3615 if ( $id === false && !$rev ) {
3616 $linkCache = LinkCache
::singleton();
3617 $linkCache->addBadLinkObj( $title );
3622 'page_id' => $title->getArticleID(),
3623 'rev_id' => $rev_id ];
3624 if ( $rev && !$title->equals( $rev->getTitle() ) ) {
3625 # We fetched a rev from a different title; register it too...
3627 'title' => $rev->getTitle(),
3628 'page_id' => $rev->getPage(),
3629 'rev_id' => $rev_id ];
3633 $content = $rev->getContent();
3634 $text = $content ?
$content->getWikitextForTransclusion() : null;
3636 Hooks
::run( 'ParserFetchTemplate',
3637 [ $parser, $title, $rev, &$text, &$deps ] );
3639 if ( $text === false ||
$text === null ) {
3643 } elseif ( $title->getNamespace() == NS_MEDIAWIKI
) {
3645 $message = wfMessage( $wgContLang->lcfirst( $title->getText() ) )->inContentLanguage();
3646 if ( !$message->exists() ) {
3650 $content = $message->content();
3651 $text = $message->plain();
3659 $finalTitle = $title;
3660 $title = $content->getRedirectTarget();
3664 'finalTitle' => $finalTitle,
3669 * Fetch a file and its title and register a reference to it.
3670 * If 'broken' is a key in $options then the file will appear as a broken thumbnail.
3671 * @param Title $title
3672 * @param array $options Array of options to RepoGroup::findFile
3675 public function fetchFile( $title, $options = [] ) {
3676 return $this->fetchFileAndTitle( $title, $options )[0];
3680 * Fetch a file and its title and register a reference to it.
3681 * If 'broken' is a key in $options then the file will appear as a broken thumbnail.
3682 * @param Title $title
3683 * @param array $options Array of options to RepoGroup::findFile
3684 * @return array ( File or false, Title of file )
3686 public function fetchFileAndTitle( $title, $options = [] ) {
3687 $file = $this->fetchFileNoRegister( $title, $options );
3689 $time = $file ?
$file->getTimestamp() : false;
3690 $sha1 = $file ?
$file->getSha1() : false;
3691 # Register the file as a dependency...
3692 $this->mOutput
->addImage( $title->getDBkey(), $time, $sha1 );
3693 if ( $file && !$title->equals( $file->getTitle() ) ) {
3694 # Update fetched file title
3695 $title = $file->getTitle();
3696 $this->mOutput
->addImage( $title->getDBkey(), $time, $sha1 );
3698 return [ $file, $title ];
3702 * Helper function for fetchFileAndTitle.
3704 * Also useful if you need to fetch a file but not use it yet,
3705 * for example to get the file's handler.
3707 * @param Title $title
3708 * @param array $options Array of options to RepoGroup::findFile
3711 protected function fetchFileNoRegister( $title, $options = [] ) {
3712 if ( isset( $options['broken'] ) ) {
3713 $file = false; // broken thumbnail forced by hook
3714 } elseif ( isset( $options['sha1'] ) ) { // get by (sha1,timestamp)
3715 $file = RepoGroup
::singleton()->findFileFromKey( $options['sha1'], $options );
3716 } else { // get by (name,timestamp)
3717 $file = wfFindFile( $title, $options );
3723 * Transclude an interwiki link.
3725 * @param Title $title
3726 * @param string $action
3730 public function interwikiTransclude( $title, $action ) {
3731 global $wgEnableScaryTranscluding;
3733 if ( !$wgEnableScaryTranscluding ) {
3734 return wfMessage( 'scarytranscludedisabled' )->inContentLanguage()->text();
3737 $url = $title->getFullURL( [ 'action' => $action ] );
3739 if ( strlen( $url ) > 255 ) {
3740 return wfMessage( 'scarytranscludetoolong' )->inContentLanguage()->text();
3742 return $this->fetchScaryTemplateMaybeFromCache( $url );
3746 * @param string $url
3747 * @return mixed|string
3749 public function fetchScaryTemplateMaybeFromCache( $url ) {
3750 global $wgTranscludeCacheExpiry;
3751 $dbr = wfGetDB( DB_REPLICA
);
3752 $tsCond = $dbr->timestamp( time() - $wgTranscludeCacheExpiry );
3753 $obj = $dbr->selectRow( 'transcache', [ 'tc_time', 'tc_contents' ],
3754 [ 'tc_url' => $url, "tc_time >= " . $dbr->addQuotes( $tsCond ) ] );
3756 return $obj->tc_contents
;
3759 $req = MWHttpRequest
::factory( $url, [], __METHOD__
);
3760 $status = $req->execute(); // Status object
3761 if ( $status->isOK() ) {
3762 $text = $req->getContent();
3763 } elseif ( $req->getStatus() != 200 ) {
3764 // Though we failed to fetch the content, this status is useless.
3765 return wfMessage( 'scarytranscludefailed-httpstatus' )
3766 ->params( $url, $req->getStatus() /* HTTP status */ )->inContentLanguage()->text();
3768 return wfMessage( 'scarytranscludefailed', $url )->inContentLanguage()->text();
3771 $dbw = wfGetDB( DB_MASTER
);
3772 $dbw->replace( 'transcache', [ 'tc_url' ], [
3774 'tc_time' => $dbw->timestamp( time() ),
3775 'tc_contents' => $text
3781 * Triple brace replacement -- used for template arguments
3784 * @param array $piece
3785 * @param PPFrame $frame
3789 public function argSubstitution( $piece, $frame ) {
3792 $parts = $piece['parts'];
3793 $nameWithSpaces = $frame->expand( $piece['title'] );
3794 $argName = trim( $nameWithSpaces );
3796 $text = $frame->getArgument( $argName );
3797 if ( $text === false && $parts->getLength() > 0
3798 && ( $this->ot
['html']
3800 ||
( $this->ot
['wiki'] && $frame->isTemplate() )
3803 # No match in frame, use the supplied default
3804 $object = $parts->item( 0 )->getChildren();
3806 if ( !$this->incrementIncludeSize( 'arg', strlen( $text ) ) ) {
3807 $error = '<!-- WARNING: argument omitted, expansion size too large -->';
3808 $this->limitationWarn( 'post-expand-template-argument' );
3811 if ( $text === false && $object === false ) {
3813 $object = $frame->virtualBracketedImplode( '{{{', '|', '}}}', $nameWithSpaces, $parts );
3815 if ( $error !== false ) {
3818 if ( $object !== false ) {
3819 $ret = [ 'object' => $object ];
3821 $ret = [ 'text' => $text ];
3828 * Return the text to be used for a given extension tag.
3829 * This is the ghost of strip().
3831 * @param array $params Associative array of parameters:
3832 * name PPNode for the tag name
3833 * attr PPNode for unparsed text where tag attributes are thought to be
3834 * attributes Optional associative array of parsed attributes
3835 * inner Contents of extension element
3836 * noClose Original text did not have a close tag
3837 * @param PPFrame $frame
3839 * @throws MWException
3842 public function extensionSubstitution( $params, $frame ) {
3843 static $errorStr = '<span class="error">';
3844 static $errorLen = 20;
3846 $name = $frame->expand( $params['name'] );
3847 if ( substr( $name, 0, $errorLen ) === $errorStr ) {
3848 // Probably expansion depth or node count exceeded. Just punt the
3853 $attrText = !isset( $params['attr'] ) ?
null : $frame->expand( $params['attr'] );
3854 if ( substr( $attrText, 0, $errorLen ) === $errorStr ) {
3859 // We can't safely check if the expansion for $content resulted in an
3860 // error, because the content could happen to be the error string
3862 $content = !isset( $params['inner'] ) ?
null : $frame->expand( $params['inner'] );
3864 $marker = self
::MARKER_PREFIX
. "-$name-"
3865 . sprintf( '%08X', $this->mMarkerIndex++
) . self
::MARKER_SUFFIX
;
3867 $isFunctionTag = isset( $this->mFunctionTagHooks
[strtolower( $name )] ) &&
3868 ( $this->ot
['html'] ||
$this->ot
['pre'] );
3869 if ( $isFunctionTag ) {
3870 $markerType = 'none';
3872 $markerType = 'general';
3874 if ( $this->ot
['html'] ||
$isFunctionTag ) {
3875 $name = strtolower( $name );
3876 $attributes = Sanitizer
::decodeTagAttributes( $attrText );
3877 if ( isset( $params['attributes'] ) ) {
3878 $attributes = $attributes +
$params['attributes'];
3881 if ( isset( $this->mTagHooks
[$name] ) ) {
3882 # Workaround for PHP bug 35229 and similar
3883 if ( !is_callable( $this->mTagHooks
[$name] ) ) {
3884 throw new MWException( "Tag hook for $name is not callable\n" );
3886 $output = call_user_func_array( $this->mTagHooks
[$name],
3887 [ $content, $attributes, $this, $frame ] );
3888 } elseif ( isset( $this->mFunctionTagHooks
[$name] ) ) {
3889 list( $callback, ) = $this->mFunctionTagHooks
[$name];
3890 if ( !is_callable( $callback ) ) {
3891 throw new MWException( "Tag hook for $name is not callable\n" );
3894 // Avoid PHP 7.1 warning from passing $this by reference
3896 $output = call_user_func_array( $callback, [ &$parser, $frame, $content, $attributes ] );
3898 $output = '<span class="error">Invalid tag extension name: ' .
3899 htmlspecialchars( $name ) . '</span>';
3902 if ( is_array( $output ) ) {
3903 # Extract flags to local scope (to override $markerType)
3905 $output = $flags[0];
3910 if ( is_null( $attrText ) ) {
3913 if ( isset( $params['attributes'] ) ) {
3914 foreach ( $params['attributes'] as $attrName => $attrValue ) {
3915 $attrText .= ' ' . htmlspecialchars( $attrName ) . '="' .
3916 htmlspecialchars( $attrValue ) . '"';
3919 if ( $content === null ) {
3920 $output = "<$name$attrText/>";
3922 $close = is_null( $params['close'] ) ?
'' : $frame->expand( $params['close'] );
3923 if ( substr( $close, 0, $errorLen ) === $errorStr ) {
3927 $output = "<$name$attrText>$content$close";
3931 if ( $markerType === 'none' ) {
3933 } elseif ( $markerType === 'nowiki' ) {
3934 $this->mStripState
->addNoWiki( $marker, $output );
3935 } elseif ( $markerType === 'general' ) {
3936 $this->mStripState
->addGeneral( $marker, $output );
3938 throw new MWException( __METHOD__
. ': invalid marker type' );
3944 * Increment an include size counter
3946 * @param string $type The type of expansion
3947 * @param int $size The size of the text
3948 * @return bool False if this inclusion would take it over the maximum, true otherwise
3950 public function incrementIncludeSize( $type, $size ) {
3951 if ( $this->mIncludeSizes
[$type] +
$size > $this->mOptions
->getMaxIncludeSize() ) {
3954 $this->mIncludeSizes
[$type] +
= $size;
3960 * Increment the expensive function count
3962 * @return bool False if the limit has been exceeded
3964 public function incrementExpensiveFunctionCount() {
3965 $this->mExpensiveFunctionCount++
;
3966 return $this->mExpensiveFunctionCount
<= $this->mOptions
->getExpensiveParserFunctionLimit();
3970 * Strip double-underscore items like __NOGALLERY__ and __NOTOC__
3971 * Fills $this->mDoubleUnderscores, returns the modified text
3973 * @param string $text
3977 public function doDoubleUnderscore( $text ) {
3979 # The position of __TOC__ needs to be recorded
3980 $mw = MagicWord
::get( 'toc' );
3981 if ( $mw->match( $text ) ) {
3982 $this->mShowToc
= true;
3983 $this->mForceTocPosition
= true;
3985 # Set a placeholder. At the end we'll fill it in with the TOC.
3986 $text = $mw->replace( '<!--MWTOC-->', $text, 1 );
3988 # Only keep the first one.
3989 $text = $mw->replace( '', $text );
3992 # Now match and remove the rest of them
3993 $mwa = MagicWord
::getDoubleUnderscoreArray();
3994 $this->mDoubleUnderscores
= $mwa->matchAndRemove( $text );
3996 if ( isset( $this->mDoubleUnderscores
['nogallery'] ) ) {
3997 $this->mOutput
->mNoGallery
= true;
3999 if ( isset( $this->mDoubleUnderscores
['notoc'] ) && !$this->mForceTocPosition
) {
4000 $this->mShowToc
= false;
4002 if ( isset( $this->mDoubleUnderscores
['hiddencat'] )
4003 && $this->mTitle
->getNamespace() == NS_CATEGORY
4005 $this->addTrackingCategory( 'hidden-category-category' );
4007 # (T10068) Allow control over whether robots index a page.
4008 # __INDEX__ always overrides __NOINDEX__, see T16899
4009 if ( isset( $this->mDoubleUnderscores
['noindex'] ) && $this->mTitle
->canUseNoindex() ) {
4010 $this->mOutput
->setIndexPolicy( 'noindex' );
4011 $this->addTrackingCategory( 'noindex-category' );
4013 if ( isset( $this->mDoubleUnderscores
['index'] ) && $this->mTitle
->canUseNoindex() ) {
4014 $this->mOutput
->setIndexPolicy( 'index' );
4015 $this->addTrackingCategory( 'index-category' );
4018 # Cache all double underscores in the database
4019 foreach ( $this->mDoubleUnderscores
as $key => $val ) {
4020 $this->mOutput
->setProperty( $key, '' );
4027 * @see ParserOutput::addTrackingCategory()
4028 * @param string $msg Message key
4029 * @return bool Whether the addition was successful
4031 public function addTrackingCategory( $msg ) {
4032 return $this->mOutput
->addTrackingCategory( $msg, $this->mTitle
);
4036 * This function accomplishes several tasks:
4037 * 1) Auto-number headings if that option is enabled
4038 * 2) Add an [edit] link to sections for users who have enabled the option and can edit the page
4039 * 3) Add a Table of contents on the top for users who have enabled the option
4040 * 4) Auto-anchor headings
4042 * It loops through all headlines, collects the necessary data, then splits up the
4043 * string and re-inserts the newly formatted headlines.
4045 * @param string $text
4046 * @param string $origText Original, untouched wikitext
4047 * @param bool $isMain
4048 * @return mixed|string
4051 public function formatHeadings( $text, $origText, $isMain = true ) {
4052 global $wgMaxTocLevel, $wgExperimentalHtmlIds;
4054 # Inhibit editsection links if requested in the page
4055 if ( isset( $this->mDoubleUnderscores
['noeditsection'] ) ) {
4056 $maybeShowEditLink = $showEditLink = false;
4058 $maybeShowEditLink = true; /* Actual presence will depend on ParserOptions option */
4059 $showEditLink = $this->mOptions
->getEditSection();
4061 if ( $showEditLink ) {
4062 $this->mOutput
->setEditSectionTokens( true );
4065 # Get all headlines for numbering them and adding funky stuff like [edit]
4066 # links - this is for later, but we need the number of headlines right now
4068 $numMatches = preg_match_all(
4069 '/<H(?P<level>[1-6])(?P<attrib>.*?>)\s*(?P<header>[\s\S]*?)\s*<\/H[1-6] *>/i',
4074 # if there are fewer than 4 headlines in the article, do not show TOC
4075 # unless it's been explicitly enabled.
4076 $enoughToc = $this->mShowToc
&&
4077 ( ( $numMatches >= 4 ) ||
$this->mForceTocPosition
);
4079 # Allow user to stipulate that a page should have a "new section"
4080 # link added via __NEWSECTIONLINK__
4081 if ( isset( $this->mDoubleUnderscores
['newsectionlink'] ) ) {
4082 $this->mOutput
->setNewSection( true );
4085 # Allow user to remove the "new section"
4086 # link via __NONEWSECTIONLINK__
4087 if ( isset( $this->mDoubleUnderscores
['nonewsectionlink'] ) ) {
4088 $this->mOutput
->hideNewSection( true );
4091 # if the string __FORCETOC__ (not case-sensitive) occurs in the HTML,
4092 # override above conditions and always show TOC above first header
4093 if ( isset( $this->mDoubleUnderscores
['forcetoc'] ) ) {
4094 $this->mShowToc
= true;
4102 # Ugh .. the TOC should have neat indentation levels which can be
4103 # passed to the skin functions. These are determined here
4107 $sublevelCount = [];
4113 $markerRegex = self
::MARKER_PREFIX
. "-h-(\d+)-" . self
::MARKER_SUFFIX
;
4114 $baseTitleText = $this->mTitle
->getPrefixedDBkey();
4115 $oldType = $this->mOutputType
;
4116 $this->setOutputType( self
::OT_WIKI
);
4117 $frame = $this->getPreprocessor()->newFrame();
4118 $root = $this->preprocessToDom( $origText );
4119 $node = $root->getFirstChild();
4124 $headlines = $numMatches !== false ?
$matches[3] : [];
4126 foreach ( $headlines as $headline ) {
4127 $isTemplate = false;
4129 $sectionIndex = false;
4131 $markerMatches = [];
4132 if ( preg_match( "/^$markerRegex/", $headline, $markerMatches ) ) {
4133 $serial = $markerMatches[1];
4134 list( $titleText, $sectionIndex ) = $this->mHeadings
[$serial];
4135 $isTemplate = ( $titleText != $baseTitleText );
4136 $headline = preg_replace( "/^$markerRegex\\s*/", "", $headline );
4140 $prevlevel = $level;
4142 $level = $matches[1][$headlineCount];
4144 if ( $level > $prevlevel ) {
4145 # Increase TOC level
4147 $sublevelCount[$toclevel] = 0;
4148 if ( $toclevel < $wgMaxTocLevel ) {
4149 $prevtoclevel = $toclevel;
4150 $toc .= Linker
::tocIndent();
4153 } elseif ( $level < $prevlevel && $toclevel > 1 ) {
4154 # Decrease TOC level, find level to jump to
4156 for ( $i = $toclevel; $i > 0; $i-- ) {
4157 if ( $levelCount[$i] == $level ) {
4158 # Found last matching level
4161 } elseif ( $levelCount[$i] < $level ) {
4162 # Found first matching level below current level
4170 if ( $toclevel < $wgMaxTocLevel ) {
4171 if ( $prevtoclevel < $wgMaxTocLevel ) {
4172 # Unindent only if the previous toc level was shown :p
4173 $toc .= Linker
::tocUnindent( $prevtoclevel - $toclevel );
4174 $prevtoclevel = $toclevel;
4176 $toc .= Linker
::tocLineEnd();
4180 # No change in level, end TOC line
4181 if ( $toclevel < $wgMaxTocLevel ) {
4182 $toc .= Linker
::tocLineEnd();
4186 $levelCount[$toclevel] = $level;
4188 # count number of headlines for each level
4189 $sublevelCount[$toclevel]++
;
4191 for ( $i = 1; $i <= $toclevel; $i++
) {
4192 if ( !empty( $sublevelCount[$i] ) ) {
4196 $numbering .= $this->getTargetLanguage()->formatNum( $sublevelCount[$i] );
4201 # The safe header is a version of the header text safe to use for links
4203 # Remove link placeholders by the link text.
4204 # <!--LINK number-->
4206 # link text with suffix
4207 # Do this before unstrip since link text can contain strip markers
4208 $safeHeadline = $this->replaceLinkHoldersText( $headline );
4210 # Avoid insertion of weird stuff like <math> by expanding the relevant sections
4211 $safeHeadline = $this->mStripState
->unstripBoth( $safeHeadline );
4213 # Strip out HTML (first regex removes any tag not allowed)
4215 # * <sup> and <sub> (T10393)
4219 # * <span dir="rtl"> and <span dir="ltr"> (T37167)
4220 # * <s> and <strike> (T35715)
4221 # We strip any parameter from accepted tags (second regex), except dir="rtl|ltr" from <span>,
4222 # to allow setting directionality in toc items.
4223 $tocline = preg_replace(
4225 '#<(?!/?(span|sup|sub|bdi|i|b|s|strike)(?: [^>]*)?>).*?>#',
4226 '#<(/?(?:span(?: dir="(?:rtl|ltr)")?|sup|sub|bdi|i|b|s|strike))(?: .*?)?>#'
4232 # Strip '<span></span>', which is the result from the above if
4233 # <span id="foo"></span> is used to produce an additional anchor
4235 $tocline = str_replace( '<span></span>', '', $tocline );
4237 $tocline = trim( $tocline );
4239 # For the anchor, strip out HTML-y stuff period
4240 $safeHeadline = preg_replace( '/<.*?>/', '', $safeHeadline );
4241 $safeHeadline = Sanitizer
::normalizeSectionNameWhitespace( $safeHeadline );
4243 # Save headline for section edit hint before it's escaped
4244 $headlineHint = $safeHeadline;
4246 if ( $wgExperimentalHtmlIds ) {
4247 # For reverse compatibility, provide an id that's
4248 # HTML4-compatible, like we used to.
4249 # It may be worth noting, academically, that it's possible for
4250 # the legacy anchor to conflict with a non-legacy headline
4251 # anchor on the page. In this case likely the "correct" thing
4252 # would be to either drop the legacy anchors or make sure
4253 # they're numbered first. However, this would require people
4254 # to type in section names like "abc_.D7.93.D7.90.D7.A4"
4255 # manually, so let's not bother worrying about it.
4256 $legacyHeadline = Sanitizer
::escapeId( $safeHeadline,
4257 [ 'noninitial', 'legacy' ] );
4258 $safeHeadline = Sanitizer
::escapeId( $safeHeadline );
4260 if ( $legacyHeadline == $safeHeadline ) {
4261 # No reason to have both (in fact, we can't)
4262 $legacyHeadline = false;
4265 $legacyHeadline = false;
4266 $safeHeadline = Sanitizer
::escapeId( $safeHeadline,
4270 # HTML names must be case-insensitively unique (T12721).
4271 # This does not apply to Unicode characters per
4272 # https://www.w3.org/TR/html5/infrastructure.html#case-sensitivity-and-string-comparison
4273 # @todo FIXME: We may be changing them depending on the current locale.
4274 $arrayKey = strtolower( $safeHeadline );
4275 if ( $legacyHeadline === false ) {
4276 $legacyArrayKey = false;
4278 $legacyArrayKey = strtolower( $legacyHeadline );
4281 # Create the anchor for linking from the TOC to the section
4282 $anchor = $safeHeadline;
4283 $legacyAnchor = $legacyHeadline;
4284 if ( isset( $refers[$arrayKey] ) ) {
4285 // @codingStandardsIgnoreStart
4286 for ( $i = 2; isset( $refers["${arrayKey}_$i"] ); ++
$i );
4287 // @codingStandardsIgnoreEnd
4289 $refers["${arrayKey}_$i"] = true;
4291 $refers[$arrayKey] = true;
4293 if ( $legacyHeadline !== false && isset( $refers[$legacyArrayKey] ) ) {
4294 // @codingStandardsIgnoreStart
4295 for ( $i = 2; isset( $refers["${legacyArrayKey}_$i"] ); ++
$i );
4296 // @codingStandardsIgnoreEnd
4297 $legacyAnchor .= "_$i";
4298 $refers["${legacyArrayKey}_$i"] = true;
4300 $refers[$legacyArrayKey] = true;
4303 # Don't number the heading if it is the only one (looks silly)
4304 if ( count( $matches[3] ) > 1 && $this->mOptions
->getNumberHeadings() ) {
4305 # the two are different if the line contains a link
4306 $headline = Html
::element(
4308 [ 'class' => 'mw-headline-number' ],
4310 ) . ' ' . $headline;
4313 if ( $enoughToc && ( !isset( $wgMaxTocLevel ) ||
$toclevel < $wgMaxTocLevel ) ) {
4314 $toc .= Linker
::tocLine( $anchor, $tocline,
4315 $numbering, $toclevel, ( $isTemplate ?
false : $sectionIndex ) );
4318 # Add the section to the section tree
4319 # Find the DOM node for this header
4320 $noOffset = ( $isTemplate ||
$sectionIndex === false );
4321 while ( $node && !$noOffset ) {
4322 if ( $node->getName() === 'h' ) {
4323 $bits = $node->splitHeading();
4324 if ( $bits['i'] == $sectionIndex ) {
4328 $byteOffset +
= mb_strlen( $this->mStripState
->unstripBoth(
4329 $frame->expand( $node, PPFrame
::RECOVER_ORIG
) ) );
4330 $node = $node->getNextSibling();
4333 'toclevel' => $toclevel,
4336 'number' => $numbering,
4337 'index' => ( $isTemplate ?
'T-' : '' ) . $sectionIndex,
4338 'fromtitle' => $titleText,
4339 'byteoffset' => ( $noOffset ?
null : $byteOffset ),
4340 'anchor' => $anchor,
4343 # give headline the correct <h#> tag
4344 if ( $maybeShowEditLink && $sectionIndex !== false ) {
4345 // Output edit section links as markers with styles that can be customized by skins
4346 if ( $isTemplate ) {
4347 # Put a T flag in the section identifier, to indicate to extractSections()
4348 # that sections inside <includeonly> should be counted.
4349 $editsectionPage = $titleText;
4350 $editsectionSection = "T-$sectionIndex";
4351 $editsectionContent = null;
4353 $editsectionPage = $this->mTitle
->getPrefixedText();
4354 $editsectionSection = $sectionIndex;
4355 $editsectionContent = $headlineHint;
4357 // We use a bit of pesudo-xml for editsection markers. The
4358 // language converter is run later on. Using a UNIQ style marker
4359 // leads to the converter screwing up the tokens when it
4360 // converts stuff. And trying to insert strip tags fails too. At
4361 // this point all real inputted tags have already been escaped,
4362 // so we don't have to worry about a user trying to input one of
4363 // these markers directly. We use a page and section attribute
4364 // to stop the language converter from converting these
4365 // important bits of data, but put the headline hint inside a
4366 // content block because the language converter is supposed to
4367 // be able to convert that piece of data.
4368 // Gets replaced with html in ParserOutput::getText
4369 $editlink = '<mw:editsection page="' . htmlspecialchars( $editsectionPage );
4370 $editlink .= '" section="' . htmlspecialchars( $editsectionSection ) . '"';
4371 if ( $editsectionContent !== null ) {
4372 $editlink .= '>' . $editsectionContent . '</mw:editsection>';
4379 $head[$headlineCount] = Linker
::makeHeadline( $level,
4380 $matches['attrib'][$headlineCount], $anchor, $headline,
4381 $editlink, $legacyAnchor );
4386 $this->setOutputType( $oldType );
4388 # Never ever show TOC if no headers
4389 if ( $numVisible < 1 ) {
4394 if ( $prevtoclevel > 0 && $prevtoclevel < $wgMaxTocLevel ) {
4395 $toc .= Linker
::tocUnindent( $prevtoclevel - 1 );
4397 $toc = Linker
::tocList( $toc, $this->mOptions
->getUserLangObj() );
4398 $this->mOutput
->setTOCHTML( $toc );
4399 $toc = self
::TOC_START
. $toc . self
::TOC_END
;
4400 $this->mOutput
->addModules( 'mediawiki.toc' );
4404 $this->mOutput
->setSections( $tocraw );
4407 # split up and insert constructed headlines
4408 $blocks = preg_split( '/<H[1-6].*?>[\s\S]*?<\/H[1-6]>/i', $text );
4411 // build an array of document sections
4413 foreach ( $blocks as $block ) {
4414 // $head is zero-based, sections aren't.
4415 if ( empty( $head[$i - 1] ) ) {
4416 $sections[$i] = $block;
4418 $sections[$i] = $head[$i - 1] . $block;
4422 * Send a hook, one per section.
4423 * The idea here is to be able to make section-level DIVs, but to do so in a
4424 * lower-impact, more correct way than r50769
4427 * $section : the section number
4428 * &$sectionContent : ref to the content of the section
4429 * $showEditLinks : boolean describing whether this section has an edit link
4431 Hooks
::run( 'ParserSectionCreate', [ $this, $i, &$sections[$i], $showEditLink ] );
4436 if ( $enoughToc && $isMain && !$this->mForceTocPosition
) {
4437 // append the TOC at the beginning
4438 // Top anchor now in skin
4439 $sections[0] = $sections[0] . $toc . "\n";
4442 $full .= implode( '', $sections );
4444 if ( $this->mForceTocPosition
) {
4445 return str_replace( '<!--MWTOC-->', $toc, $full );
4452 * Transform wiki markup when saving a page by doing "\r\n" -> "\n"
4453 * conversion, substituting signatures, {{subst:}} templates, etc.
4455 * @param string $text The text to transform
4456 * @param Title $title The Title object for the current article
4457 * @param User $user The User object describing the current user
4458 * @param ParserOptions $options Parsing options
4459 * @param bool $clearState Whether to clear the parser state first
4460 * @return string The altered wiki markup
4462 public function preSaveTransform( $text, Title
$title, User
$user,
4463 ParserOptions
$options, $clearState = true
4465 if ( $clearState ) {
4466 $magicScopeVariable = $this->lock();
4468 $this->startParse( $title, $options, self
::OT_WIKI
, $clearState );
4469 $this->setUser( $user );
4471 // Strip U+0000 NULL (T159174)
4472 $text = str_replace( "\000", '', $text );
4474 // We still normalize line endings for backwards-compatibility
4475 // with other code that just calls PST, but this should already
4476 // be handled in TextContent subclasses
4477 $text = TextContent
::normalizeLineEndings( $text );
4479 if ( $options->getPreSaveTransform() ) {
4480 $text = $this->pstPass2( $text, $user );
4482 $text = $this->mStripState
->unstripBoth( $text );
4484 $this->setUser( null ); # Reset
4490 * Pre-save transform helper function
4492 * @param string $text
4497 private function pstPass2( $text, $user ) {
4500 # Note: This is the timestamp saved as hardcoded wikitext to
4501 # the database, we use $wgContLang here in order to give
4502 # everyone the same signature and use the default one rather
4503 # than the one selected in each user's preferences.
4505 $ts = $this->mOptions
->getTimestamp();
4506 $timestamp = MWTimestamp
::getLocalInstance( $ts );
4507 $ts = $timestamp->format( 'YmdHis' );
4508 $tzMsg = $timestamp->getTimezoneMessage()->inContentLanguage()->text();
4510 $d = $wgContLang->timeanddate( $ts, false, false ) . " ($tzMsg)";
4512 # Variable replacement
4513 # Because mOutputType is OT_WIKI, this will only process {{subst:xxx}} type tags
4514 $text = $this->replaceVariables( $text );
4516 # This works almost by chance, as the replaceVariables are done before the getUserSig(),
4517 # which may corrupt this parser instance via its wfMessage()->text() call-
4520 $sigText = $this->getUserSig( $user );
4521 $text = strtr( $text, [
4523 '~~~~' => "$sigText $d",
4527 # Context links ("pipe tricks"): [[|name]] and [[name (context)|]]
4528 $tc = '[' . Title
::legalChars() . ']';
4529 $nc = '[ _0-9A-Za-z\x80-\xff-]'; # Namespaces can use non-ascii!
4531 // [[ns:page (context)|]]
4532 $p1 = "/\[\[(:?$nc+:|:|)($tc+?)( ?\\($tc+\\))\\|]]/";
4533 // [[ns:page(context)|]] (double-width brackets, added in r40257)
4534 $p4 = "/\[\[(:?$nc+:|:|)($tc+?)( ?($tc+))\\|]]/";
4535 // [[ns:page (context), context|]] (using either single or double-width comma)
4536 $p3 = "/\[\[(:?$nc+:|:|)($tc+?)( ?\\($tc+\\)|)((?:, |,)$tc+|)\\|]]/";
4537 // [[|page]] (reverse pipe trick: add context from page title)
4538 $p2 = "/\[\[\\|($tc+)]]/";
4540 # try $p1 first, to turn "[[A, B (C)|]]" into "[[A, B (C)|A, B]]"
4541 $text = preg_replace( $p1, '[[\\1\\2\\3|\\2]]', $text );
4542 $text = preg_replace( $p4, '[[\\1\\2\\3|\\2]]', $text );
4543 $text = preg_replace( $p3, '[[\\1\\2\\3\\4|\\2]]', $text );
4545 $t = $this->mTitle
->getText();
4547 if ( preg_match( "/^($nc+:|)$tc+?( \\($tc+\\))$/", $t, $m ) ) {
4548 $text = preg_replace( $p2, "[[$m[1]\\1$m[2]|\\1]]", $text );
4549 } elseif ( preg_match( "/^($nc+:|)$tc+?(, $tc+|)$/", $t, $m ) && "$m[1]$m[2]" != '' ) {
4550 $text = preg_replace( $p2, "[[$m[1]\\1$m[2]|\\1]]", $text );
4552 # if there's no context, don't bother duplicating the title
4553 $text = preg_replace( $p2, '[[\\1]]', $text );
4560 * Fetch the user's signature text, if any, and normalize to
4561 * validated, ready-to-insert wikitext.
4562 * If you have pre-fetched the nickname or the fancySig option, you can
4563 * specify them here to save a database query.
4564 * Do not reuse this parser instance after calling getUserSig(),
4565 * as it may have changed if it's the $wgParser.
4568 * @param string|bool $nickname Nickname to use or false to use user's default nickname
4569 * @param bool|null $fancySig whether the nicknname is the complete signature
4570 * or null to use default value
4573 public function getUserSig( &$user, $nickname = false, $fancySig = null ) {
4574 global $wgMaxSigChars;
4576 $username = $user->getName();
4578 # If not given, retrieve from the user object.
4579 if ( $nickname === false ) {
4580 $nickname = $user->getOption( 'nickname' );
4583 if ( is_null( $fancySig ) ) {
4584 $fancySig = $user->getBoolOption( 'fancysig' );
4587 $nickname = $nickname == null ?
$username : $nickname;
4589 if ( mb_strlen( $nickname ) > $wgMaxSigChars ) {
4590 $nickname = $username;
4591 wfDebug( __METHOD__
. ": $username has overlong signature.\n" );
4592 } elseif ( $fancySig !== false ) {
4593 # Sig. might contain markup; validate this
4594 if ( $this->validateSig( $nickname ) !== false ) {
4595 # Validated; clean up (if needed) and return it
4596 return $this->cleanSig( $nickname, true );
4598 # Failed to validate; fall back to the default
4599 $nickname = $username;
4600 wfDebug( __METHOD__
. ": $username has bad XML tags in signature.\n" );
4604 # Make sure nickname doesnt get a sig in a sig
4605 $nickname = self
::cleanSigInSig( $nickname );
4607 # If we're still here, make it a link to the user page
4608 $userText = wfEscapeWikiText( $username );
4609 $nickText = wfEscapeWikiText( $nickname );
4610 $msgName = $user->isAnon() ?
'signature-anon' : 'signature';
4612 return wfMessage( $msgName, $userText, $nickText )->inContentLanguage()
4613 ->title( $this->getTitle() )->text();
4617 * Check that the user's signature contains no bad XML
4619 * @param string $text
4620 * @return string|bool An expanded string, or false if invalid.
4622 public function validateSig( $text ) {
4623 return Xml
::isWellFormedXmlFragment( $text ) ?
$text : false;
4627 * Clean up signature text
4629 * 1) Strip 3, 4 or 5 tildes out of signatures @see cleanSigInSig
4630 * 2) Substitute all transclusions
4632 * @param string $text
4633 * @param bool $parsing Whether we're cleaning (preferences save) or parsing
4634 * @return string Signature text
4636 public function cleanSig( $text, $parsing = false ) {
4639 $magicScopeVariable = $this->lock();
4640 $this->startParse( $wgTitle, new ParserOptions
, self
::OT_PREPROCESS
, true );
4643 # Option to disable this feature
4644 if ( !$this->mOptions
->getCleanSignatures() ) {
4648 # @todo FIXME: Regex doesn't respect extension tags or nowiki
4649 # => Move this logic to braceSubstitution()
4650 $substWord = MagicWord
::get( 'subst' );
4651 $substRegex = '/\{\{(?!(?:' . $substWord->getBaseRegex() . '))/x' . $substWord->getRegexCase();
4652 $substText = '{{' . $substWord->getSynonym( 0 );
4654 $text = preg_replace( $substRegex, $substText, $text );
4655 $text = self
::cleanSigInSig( $text );
4656 $dom = $this->preprocessToDom( $text );
4657 $frame = $this->getPreprocessor()->newFrame();
4658 $text = $frame->expand( $dom );
4661 $text = $this->mStripState
->unstripBoth( $text );
4668 * Strip 3, 4 or 5 tildes out of signatures.
4670 * @param string $text
4671 * @return string Signature text with /~{3,5}/ removed
4673 public static function cleanSigInSig( $text ) {
4674 $text = preg_replace( '/~{3,5}/', '', $text );
4679 * Set up some variables which are usually set up in parse()
4680 * so that an external function can call some class members with confidence
4682 * @param Title|null $title
4683 * @param ParserOptions $options
4684 * @param int $outputType
4685 * @param bool $clearState
4687 public function startExternalParse( Title
$title = null, ParserOptions
$options,
4688 $outputType, $clearState = true
4690 $this->startParse( $title, $options, $outputType, $clearState );
4694 * @param Title|null $title
4695 * @param ParserOptions $options
4696 * @param int $outputType
4697 * @param bool $clearState
4699 private function startParse( Title
$title = null, ParserOptions
$options,
4700 $outputType, $clearState = true
4702 $this->setTitle( $title );
4703 $this->mOptions
= $options;
4704 $this->setOutputType( $outputType );
4705 if ( $clearState ) {
4706 $this->clearState();
4711 * Wrapper for preprocess()
4713 * @param string $text The text to preprocess
4714 * @param ParserOptions $options Options
4715 * @param Title|null $title Title object or null to use $wgTitle
4718 public function transformMsg( $text, $options, $title = null ) {
4719 static $executing = false;
4721 # Guard against infinite recursion
4732 $text = $this->preprocess( $text, $title, $options );
4739 * Create an HTML-style tag, e.g. "<yourtag>special text</yourtag>"
4740 * The callback should have the following form:
4741 * function myParserHook( $text, $params, $parser, $frame ) { ... }
4743 * Transform and return $text. Use $parser for any required context, e.g. use
4744 * $parser->getTitle() and $parser->getOptions() not $wgTitle or $wgOut->mParserOptions
4746 * Hooks may return extended information by returning an array, of which the
4747 * first numbered element (index 0) must be the return string, and all other
4748 * entries are extracted into local variables within an internal function
4749 * in the Parser class.
4751 * This interface (introduced r61913) appears to be undocumented, but
4752 * 'markerType' is used by some core tag hooks to override which strip
4753 * array their results are placed in. **Use great caution if attempting
4754 * this interface, as it is not documented and injudicious use could smash
4755 * private variables.**
4757 * @param string $tag The tag to use, e.g. 'hook' for "<hook>"
4758 * @param callable $callback The callback function (and object) to use for the tag
4759 * @throws MWException
4760 * @return callable|null The old value of the mTagHooks array associated with the hook
4762 public function setHook( $tag, $callback ) {
4763 $tag = strtolower( $tag );
4764 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
4765 throw new MWException( "Invalid character {$m[0]} in setHook('$tag', ...) call" );
4767 $oldVal = isset( $this->mTagHooks
[$tag] ) ?
$this->mTagHooks
[$tag] : null;
4768 $this->mTagHooks
[$tag] = $callback;
4769 if ( !in_array( $tag, $this->mStripList
) ) {
4770 $this->mStripList
[] = $tag;
4777 * As setHook(), but letting the contents be parsed.
4779 * Transparent tag hooks are like regular XML-style tag hooks, except they
4780 * operate late in the transformation sequence, on HTML instead of wikitext.
4782 * This is probably obsoleted by things dealing with parser frames?
4783 * The only extension currently using it is geoserver.
4786 * @todo better document or deprecate this
4788 * @param string $tag The tag to use, e.g. 'hook' for "<hook>"
4789 * @param callable $callback The callback function (and object) to use for the tag
4790 * @throws MWException
4791 * @return callable|null The old value of the mTagHooks array associated with the hook
4793 public function setTransparentTagHook( $tag, $callback ) {
4794 $tag = strtolower( $tag );
4795 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
4796 throw new MWException( "Invalid character {$m[0]} in setTransparentHook('$tag', ...) call" );
4798 $oldVal = isset( $this->mTransparentTagHooks
[$tag] ) ?
$this->mTransparentTagHooks
[$tag] : null;
4799 $this->mTransparentTagHooks
[$tag] = $callback;
4805 * Remove all tag hooks
4807 public function clearTagHooks() {
4808 $this->mTagHooks
= [];
4809 $this->mFunctionTagHooks
= [];
4810 $this->mStripList
= $this->mDefaultStripList
;
4814 * Create a function, e.g. {{sum:1|2|3}}
4815 * The callback function should have the form:
4816 * function myParserFunction( &$parser, $arg1, $arg2, $arg3 ) { ... }
4818 * Or with Parser::SFH_OBJECT_ARGS:
4819 * function myParserFunction( $parser, $frame, $args ) { ... }
4821 * The callback may either return the text result of the function, or an array with the text
4822 * in element 0, and a number of flags in the other elements. The names of the flags are
4823 * specified in the keys. Valid flags are:
4824 * found The text returned is valid, stop processing the template. This
4826 * nowiki Wiki markup in the return value should be escaped
4827 * isHTML The returned text is HTML, armour it against wikitext transformation
4829 * @param string $id The magic word ID
4830 * @param callable $callback The callback function (and object) to use
4831 * @param int $flags A combination of the following flags:
4832 * Parser::SFH_NO_HASH No leading hash, i.e. {{plural:...}} instead of {{#if:...}}
4834 * Parser::SFH_OBJECT_ARGS Pass the template arguments as PPNode objects instead of text.
4835 * This allows for conditional expansion of the parse tree, allowing you to eliminate dead
4836 * branches and thus speed up parsing. It is also possible to analyse the parse tree of
4837 * the arguments, and to control the way they are expanded.
4839 * The $frame parameter is a PPFrame. This can be used to produce expanded text from the
4840 * arguments, for instance:
4841 * $text = isset( $args[0] ) ? $frame->expand( $args[0] ) : '';
4843 * For technical reasons, $args[0] is pre-expanded and will be a string. This may change in
4844 * future versions. Please call $frame->expand() on it anyway so that your code keeps
4845 * working if/when this is changed.
4847 * If you want whitespace to be trimmed from $args, you need to do it yourself, post-
4850 * Please read the documentation in includes/parser/Preprocessor.php for more information
4851 * about the methods available in PPFrame and PPNode.
4853 * @throws MWException
4854 * @return string|callable The old callback function for this name, if any
4856 public function setFunctionHook( $id, $callback, $flags = 0 ) {
4859 $oldVal = isset( $this->mFunctionHooks
[$id] ) ?
$this->mFunctionHooks
[$id][0] : null;
4860 $this->mFunctionHooks
[$id] = [ $callback, $flags ];
4862 # Add to function cache
4863 $mw = MagicWord
::get( $id );
4865 throw new MWException( __METHOD__
. '() expecting a magic word identifier.' );
4868 $synonyms = $mw->getSynonyms();
4869 $sensitive = intval( $mw->isCaseSensitive() );
4871 foreach ( $synonyms as $syn ) {
4873 if ( !$sensitive ) {
4874 $syn = $wgContLang->lc( $syn );
4877 if ( !( $flags & self
::SFH_NO_HASH
) ) {
4880 # Remove trailing colon
4881 if ( substr( $syn, -1, 1 ) === ':' ) {
4882 $syn = substr( $syn, 0, -1 );
4884 $this->mFunctionSynonyms
[$sensitive][$syn] = $id;
4890 * Get all registered function hook identifiers
4894 public function getFunctionHooks() {
4895 return array_keys( $this->mFunctionHooks
);
4899 * Create a tag function, e.g. "<test>some stuff</test>".
4900 * Unlike tag hooks, tag functions are parsed at preprocessor level.
4901 * Unlike parser functions, their content is not preprocessed.
4902 * @param string $tag
4903 * @param callable $callback
4905 * @throws MWException
4908 public function setFunctionTagHook( $tag, $callback, $flags ) {
4909 $tag = strtolower( $tag );
4910 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
4911 throw new MWException( "Invalid character {$m[0]} in setFunctionTagHook('$tag', ...) call" );
4913 $old = isset( $this->mFunctionTagHooks
[$tag] ) ?
4914 $this->mFunctionTagHooks
[$tag] : null;
4915 $this->mFunctionTagHooks
[$tag] = [ $callback, $flags ];
4917 if ( !in_array( $tag, $this->mStripList
) ) {
4918 $this->mStripList
[] = $tag;
4925 * Replace "<!--LINK-->" link placeholders with actual links, in the buffer
4926 * Placeholders created in Linker::link()
4928 * @param string $text
4929 * @param int $options
4931 public function replaceLinkHolders( &$text, $options = 0 ) {
4932 $this->mLinkHolders
->replace( $text );
4936 * Replace "<!--LINK-->" link placeholders with plain text of links
4937 * (not HTML-formatted).
4939 * @param string $text
4942 public function replaceLinkHoldersText( $text ) {
4943 return $this->mLinkHolders
->replaceText( $text );
4947 * Renders an image gallery from a text with one line per image.
4948 * text labels may be given by using |-style alternative text. E.g.
4949 * Image:one.jpg|The number "1"
4950 * Image:tree.jpg|A tree
4951 * given as text will return the HTML of a gallery with two images,
4952 * labeled 'The number "1"' and
4955 * @param string $text
4956 * @param array $params
4957 * @return string HTML
4959 public function renderImageGallery( $text, $params ) {
4962 if ( isset( $params['mode'] ) ) {
4963 $mode = $params['mode'];
4967 $ig = ImageGalleryBase
::factory( $mode );
4968 } catch ( Exception
$e ) {
4969 // If invalid type set, fallback to default.
4970 $ig = ImageGalleryBase
::factory( false );
4973 $ig->setContextTitle( $this->mTitle
);
4974 $ig->setShowBytes( false );
4975 $ig->setShowFilename( false );
4976 $ig->setParser( $this );
4977 $ig->setHideBadImages();
4978 $ig->setAttributes( Sanitizer
::validateTagAttributes( $params, 'table' ) );
4980 if ( isset( $params['showfilename'] ) ) {
4981 $ig->setShowFilename( true );
4983 $ig->setShowFilename( false );
4985 if ( isset( $params['caption'] ) ) {
4986 $caption = $params['caption'];
4987 $caption = htmlspecialchars( $caption );
4988 $caption = $this->replaceInternalLinks( $caption );
4989 $ig->setCaptionHtml( $caption );
4991 if ( isset( $params['perrow'] ) ) {
4992 $ig->setPerRow( $params['perrow'] );
4994 if ( isset( $params['widths'] ) ) {
4995 $ig->setWidths( $params['widths'] );
4997 if ( isset( $params['heights'] ) ) {
4998 $ig->setHeights( $params['heights'] );
5000 $ig->setAdditionalOptions( $params );
5002 // Avoid PHP 7.1 warning from passing $this by reference
5004 Hooks
::run( 'BeforeParserrenderImageGallery', [ &$parser, &$ig ] );
5006 $lines = StringUtils
::explode( "\n", $text );
5007 foreach ( $lines as $line ) {
5008 # match lines like these:
5009 # Image:someimage.jpg|This is some image
5011 preg_match( "/^([^|]+)(\\|(.*))?$/", $line, $matches );
5013 if ( count( $matches ) == 0 ) {
5017 if ( strpos( $matches[0], '%' ) !== false ) {
5018 $matches[1] = rawurldecode( $matches[1] );
5020 $title = Title
::newFromText( $matches[1], NS_FILE
);
5021 if ( is_null( $title ) ) {
5022 # Bogus title. Ignore these so we don't bomb out later.
5026 # We need to get what handler the file uses, to figure out parameters.
5027 # Note, a hook can overide the file name, and chose an entirely different
5028 # file (which potentially could be of a different type and have different handler).
5031 Hooks
::run( 'BeforeParserFetchFileAndTitle',
5032 [ $this, $title, &$options, &$descQuery ] );
5033 # Don't register it now, as TraditionalImageGallery does that later.
5034 $file = $this->fetchFileNoRegister( $title, $options );
5035 $handler = $file ?
$file->getHandler() : false;
5038 'img_alt' => 'gallery-internal-alt',
5039 'img_link' => 'gallery-internal-link',
5042 $paramMap = $paramMap +
$handler->getParamMap();
5043 // We don't want people to specify per-image widths.
5044 // Additionally the width parameter would need special casing anyhow.
5045 unset( $paramMap['img_width'] );
5048 $mwArray = new MagicWordArray( array_keys( $paramMap ) );
5053 $handlerOptions = [];
5054 if ( isset( $matches[3] ) ) {
5055 // look for an |alt= definition while trying not to break existing
5056 // captions with multiple pipes (|) in it, until a more sensible grammar
5057 // is defined for images in galleries
5059 // FIXME: Doing recursiveTagParse at this stage, and the trim before
5060 // splitting on '|' is a bit odd, and different from makeImage.
5061 $matches[3] = $this->recursiveTagParse( trim( $matches[3] ) );
5062 // Protect LanguageConverter markup
5063 $parameterMatches = StringUtils
::delimiterExplode(
5064 '-{', '}-', '|', $matches[3], true /* nested */
5067 foreach ( $parameterMatches as $parameterMatch ) {
5068 list( $magicName, $match ) = $mwArray->matchVariableStartToEnd( $parameterMatch );
5070 $paramName = $paramMap[$magicName];
5072 switch ( $paramName ) {
5073 case 'gallery-internal-alt':
5074 $alt = $this->stripAltText( $match, false );
5076 case 'gallery-internal-link':
5077 $linkValue = strip_tags( $this->replaceLinkHoldersText( $match ) );
5078 $chars = self
::EXT_LINK_URL_CLASS
;
5079 $addr = self
::EXT_LINK_ADDR
;
5080 $prots = $this->mUrlProtocols
;
5081 // check to see if link matches an absolute url, if not then it must be a wiki link.
5082 if ( preg_match( '/^-{R|(.*)}-$/', $linkValue ) ) {
5083 // Result of LanguageConverter::markNoConversion
5084 // invoked on an external link.
5085 $linkValue = substr( $linkValue, 4, -2 );
5087 if ( preg_match( "/^($prots)$addr$chars*$/u", $linkValue ) ) {
5090 $localLinkTitle = Title
::newFromText( $linkValue );
5091 if ( $localLinkTitle !== null ) {
5092 $link = $localLinkTitle->getLinkURL();
5097 // Must be a handler specific parameter.
5098 if ( $handler->validateParam( $paramName, $match ) ) {
5099 $handlerOptions[$paramName] = $match;
5101 // Guess not, consider it as caption.
5102 wfDebug( "$parameterMatch failed parameter validation\n" );
5103 $label = '|' . $parameterMatch;
5109 $label = '|' . $parameterMatch;
5113 $label = substr( $label, 1 );
5116 $ig->add( $title, $label, $alt, $link, $handlerOptions );
5118 $html = $ig->toHTML();
5119 Hooks
::run( 'AfterParserFetchFileAndTitle', [ $this, $ig, &$html ] );
5124 * @param MediaHandler $handler
5127 public function getImageParams( $handler ) {
5129 $handlerClass = get_class( $handler );
5133 if ( !isset( $this->mImageParams
[$handlerClass] ) ) {
5134 # Initialise static lists
5135 static $internalParamNames = [
5136 'horizAlign' => [ 'left', 'right', 'center', 'none' ],
5137 'vertAlign' => [ 'baseline', 'sub', 'super', 'top', 'text-top', 'middle',
5138 'bottom', 'text-bottom' ],
5139 'frame' => [ 'thumbnail', 'manualthumb', 'framed', 'frameless',
5140 'upright', 'border', 'link', 'alt', 'class' ],
5142 static $internalParamMap;
5143 if ( !$internalParamMap ) {
5144 $internalParamMap = [];
5145 foreach ( $internalParamNames as $type => $names ) {
5146 foreach ( $names as $name ) {
5147 $magicName = str_replace( '-', '_', "img_$name" );
5148 $internalParamMap[$magicName] = [ $type, $name ];
5153 # Add handler params
5154 $paramMap = $internalParamMap;
5156 $handlerParamMap = $handler->getParamMap();
5157 foreach ( $handlerParamMap as $magic => $paramName ) {
5158 $paramMap[$magic] = [ 'handler', $paramName ];
5161 $this->mImageParams
[$handlerClass] = $paramMap;
5162 $this->mImageParamsMagicArray
[$handlerClass] = new MagicWordArray( array_keys( $paramMap ) );
5164 return [ $this->mImageParams
[$handlerClass], $this->mImageParamsMagicArray
[$handlerClass] ];
5168 * Parse image options text and use it to make an image
5170 * @param Title $title
5171 * @param string $options
5172 * @param LinkHolderArray|bool $holders
5173 * @return string HTML
5175 public function makeImage( $title, $options, $holders = false ) {
5176 # Check if the options text is of the form "options|alt text"
5178 # * thumbnail make a thumbnail with enlarge-icon and caption, alignment depends on lang
5179 # * left no resizing, just left align. label is used for alt= only
5180 # * right same, but right aligned
5181 # * none same, but not aligned
5182 # * ___px scale to ___ pixels width, no aligning. e.g. use in taxobox
5183 # * center center the image
5184 # * frame Keep original image size, no magnify-button.
5185 # * framed Same as "frame"
5186 # * frameless like 'thumb' but without a frame. Keeps user preferences for width
5187 # * upright reduce width for upright images, rounded to full __0 px
5188 # * border draw a 1px border around the image
5189 # * alt Text for HTML alt attribute (defaults to empty)
5190 # * class Set a class for img node
5191 # * link Set the target of the image link. Can be external, interwiki, or local
5192 # vertical-align values (no % or length right now):
5202 # Protect LanguageConverter markup when splitting into parts
5203 $parts = StringUtils
::delimiterExplode(
5204 '-{', '}-', '|', $options, true /* allow nesting */
5207 # Give extensions a chance to select the file revision for us
5210 Hooks
::run( 'BeforeParserFetchFileAndTitle',
5211 [ $this, $title, &$options, &$descQuery ] );
5212 # Fetch and register the file (file title may be different via hooks)
5213 list( $file, $title ) = $this->fetchFileAndTitle( $title, $options );
5216 $handler = $file ?
$file->getHandler() : false;
5218 list( $paramMap, $mwArray ) = $this->getImageParams( $handler );
5221 $this->addTrackingCategory( 'broken-file-category' );
5224 # Process the input parameters
5226 $params = [ 'frame' => [], 'handler' => [],
5227 'horizAlign' => [], 'vertAlign' => [] ];
5228 $seenformat = false;
5229 foreach ( $parts as $part ) {
5230 $part = trim( $part );
5231 list( $magicName, $value ) = $mwArray->matchVariableStartToEnd( $part );
5233 if ( isset( $paramMap[$magicName] ) ) {
5234 list( $type, $paramName ) = $paramMap[$magicName];
5236 # Special case; width and height come in one variable together
5237 if ( $type === 'handler' && $paramName === 'width' ) {
5238 $parsedWidthParam = $this->parseWidthParam( $value );
5239 if ( isset( $parsedWidthParam['width'] ) ) {
5240 $width = $parsedWidthParam['width'];
5241 if ( $handler->validateParam( 'width', $width ) ) {
5242 $params[$type]['width'] = $width;
5246 if ( isset( $parsedWidthParam['height'] ) ) {
5247 $height = $parsedWidthParam['height'];
5248 if ( $handler->validateParam( 'height', $height ) ) {
5249 $params[$type]['height'] = $height;
5253 # else no validation -- T15436
5255 if ( $type === 'handler' ) {
5256 # Validate handler parameter
5257 $validated = $handler->validateParam( $paramName, $value );
5259 # Validate internal parameters
5260 switch ( $paramName ) {
5264 # @todo FIXME: Possibly check validity here for
5265 # manualthumb? downstream behavior seems odd with
5266 # missing manual thumbs.
5268 $value = $this->stripAltText( $value, $holders );
5271 $chars = self
::EXT_LINK_URL_CLASS
;
5272 $addr = self
::EXT_LINK_ADDR
;
5273 $prots = $this->mUrlProtocols
;
5274 if ( $value === '' ) {
5275 $paramName = 'no-link';
5278 } elseif ( preg_match( "/^((?i)$prots)/", $value ) ) {
5279 if ( preg_match( "/^((?i)$prots)$addr$chars*$/u", $value, $m ) ) {
5280 $paramName = 'link-url';
5281 $this->mOutput
->addExternalLink( $value );
5282 if ( $this->mOptions
->getExternalLinkTarget() ) {
5283 $params[$type]['link-target'] = $this->mOptions
->getExternalLinkTarget();
5288 $linkTitle = Title
::newFromText( $value );
5290 $paramName = 'link-title';
5291 $value = $linkTitle;
5292 $this->mOutput
->addLink( $linkTitle );
5300 // use first appearing option, discard others.
5301 $validated = !$seenformat;
5305 # Most other things appear to be empty or numeric...
5306 $validated = ( $value === false ||
is_numeric( trim( $value ) ) );
5311 $params[$type][$paramName] = $value;
5315 if ( !$validated ) {
5320 # Process alignment parameters
5321 if ( $params['horizAlign'] ) {
5322 $params['frame']['align'] = key( $params['horizAlign'] );
5324 if ( $params['vertAlign'] ) {
5325 $params['frame']['valign'] = key( $params['vertAlign'] );
5328 $params['frame']['caption'] = $caption;
5330 # Will the image be presented in a frame, with the caption below?
5331 $imageIsFramed = isset( $params['frame']['frame'] )
5332 ||
isset( $params['frame']['framed'] )
5333 ||
isset( $params['frame']['thumbnail'] )
5334 ||
isset( $params['frame']['manualthumb'] );
5336 # In the old days, [[Image:Foo|text...]] would set alt text. Later it
5337 # came to also set the caption, ordinary text after the image -- which
5338 # makes no sense, because that just repeats the text multiple times in
5339 # screen readers. It *also* came to set the title attribute.
5340 # Now that we have an alt attribute, we should not set the alt text to
5341 # equal the caption: that's worse than useless, it just repeats the
5342 # text. This is the framed/thumbnail case. If there's no caption, we
5343 # use the unnamed parameter for alt text as well, just for the time be-
5344 # ing, if the unnamed param is set and the alt param is not.
5345 # For the future, we need to figure out if we want to tweak this more,
5346 # e.g., introducing a title= parameter for the title; ignoring the un-
5347 # named parameter entirely for images without a caption; adding an ex-
5348 # plicit caption= parameter and preserving the old magic unnamed para-
5350 if ( $imageIsFramed ) { # Framed image
5351 if ( $caption === '' && !isset( $params['frame']['alt'] ) ) {
5352 # No caption or alt text, add the filename as the alt text so
5353 # that screen readers at least get some description of the image
5354 $params['frame']['alt'] = $title->getText();
5356 # Do not set $params['frame']['title'] because tooltips don't make sense
5358 } else { # Inline image
5359 if ( !isset( $params['frame']['alt'] ) ) {
5360 # No alt text, use the "caption" for the alt text
5361 if ( $caption !== '' ) {
5362 $params['frame']['alt'] = $this->stripAltText( $caption, $holders );
5364 # No caption, fall back to using the filename for the
5366 $params['frame']['alt'] = $title->getText();
5369 # Use the "caption" for the tooltip text
5370 $params['frame']['title'] = $this->stripAltText( $caption, $holders );
5373 Hooks
::run( 'ParserMakeImageParams', [ $title, $file, &$params, $this ] );
5375 # Linker does the rest
5376 $time = isset( $options['time'] ) ?
$options['time'] : false;
5377 $ret = Linker
::makeImageLink( $this, $title, $file, $params['frame'], $params['handler'],
5378 $time, $descQuery, $this->mOptions
->getThumbSize() );
5380 # Give the handler a chance to modify the parser object
5382 $handler->parserTransformHook( $this, $file );
5389 * @param string $caption
5390 * @param LinkHolderArray|bool $holders
5391 * @return mixed|string
5393 protected function stripAltText( $caption, $holders ) {
5394 # Strip bad stuff out of the title (tooltip). We can't just use
5395 # replaceLinkHoldersText() here, because if this function is called
5396 # from replaceInternalLinks2(), mLinkHolders won't be up-to-date.
5398 $tooltip = $holders->replaceText( $caption );
5400 $tooltip = $this->replaceLinkHoldersText( $caption );
5403 # make sure there are no placeholders in thumbnail attributes
5404 # that are later expanded to html- so expand them now and
5406 $tooltip = $this->mStripState
->unstripBoth( $tooltip );
5407 $tooltip = Sanitizer
::stripAllTags( $tooltip );
5413 * Set a flag in the output object indicating that the content is dynamic and
5414 * shouldn't be cached.
5415 * @deprecated since 1.28; use getOutput()->updateCacheExpiry()
5417 public function disableCache() {
5418 wfDebug( "Parser output marked as uncacheable.\n" );
5419 if ( !$this->mOutput
) {
5420 throw new MWException( __METHOD__
.
5421 " can only be called when actually parsing something" );
5423 $this->mOutput
->updateCacheExpiry( 0 ); // new style, for consistency
5427 * Callback from the Sanitizer for expanding items found in HTML attribute
5428 * values, so they can be safely tested and escaped.
5430 * @param string $text
5431 * @param bool|PPFrame $frame
5434 public function attributeStripCallback( &$text, $frame = false ) {
5435 $text = $this->replaceVariables( $text, $frame );
5436 $text = $this->mStripState
->unstripBoth( $text );
5445 public function getTags() {
5447 array_keys( $this->mTransparentTagHooks
),
5448 array_keys( $this->mTagHooks
),
5449 array_keys( $this->mFunctionTagHooks
)
5454 * Replace transparent tags in $text with the values given by the callbacks.
5456 * Transparent tag hooks are like regular XML-style tag hooks, except they
5457 * operate late in the transformation sequence, on HTML instead of wikitext.
5459 * @param string $text
5463 public function replaceTransparentTags( $text ) {
5465 $elements = array_keys( $this->mTransparentTagHooks
);
5466 $text = self
::extractTagsAndParams( $elements, $text, $matches );
5469 foreach ( $matches as $marker => $data ) {
5470 list( $element, $content, $params, $tag ) = $data;
5471 $tagName = strtolower( $element );
5472 if ( isset( $this->mTransparentTagHooks
[$tagName] ) ) {
5473 $output = call_user_func_array(
5474 $this->mTransparentTagHooks
[$tagName],
5475 [ $content, $params, $this ]
5480 $replacements[$marker] = $output;
5482 return strtr( $text, $replacements );
5486 * Break wikitext input into sections, and either pull or replace
5487 * some particular section's text.
5489 * External callers should use the getSection and replaceSection methods.
5491 * @param string $text Page wikitext
5492 * @param string|int $sectionId A section identifier string of the form:
5493 * "<flag1> - <flag2> - ... - <section number>"
5495 * Currently the only recognised flag is "T", which means the target section number
5496 * was derived during a template inclusion parse, in other words this is a template
5497 * section edit link. If no flags are given, it was an ordinary section edit link.
5498 * This flag is required to avoid a section numbering mismatch when a section is
5499 * enclosed by "<includeonly>" (T8563).
5501 * The section number 0 pulls the text before the first heading; other numbers will
5502 * pull the given section along with its lower-level subsections. If the section is
5503 * not found, $mode=get will return $newtext, and $mode=replace will return $text.
5505 * Section 0 is always considered to exist, even if it only contains the empty
5506 * string. If $text is the empty string and section 0 is replaced, $newText is
5509 * @param string $mode One of "get" or "replace"
5510 * @param string $newText Replacement text for section data.
5511 * @return string For "get", the extracted section text.
5512 * for "replace", the whole page with the section replaced.
5514 private function extractSections( $text, $sectionId, $mode, $newText = '' ) {
5515 global $wgTitle; # not generally used but removes an ugly failure mode
5517 $magicScopeVariable = $this->lock();
5518 $this->startParse( $wgTitle, new ParserOptions
, self
::OT_PLAIN
, true );
5520 $frame = $this->getPreprocessor()->newFrame();
5522 # Process section extraction flags
5524 $sectionParts = explode( '-', $sectionId );
5525 $sectionIndex = array_pop( $sectionParts );
5526 foreach ( $sectionParts as $part ) {
5527 if ( $part === 'T' ) {
5528 $flags |
= self
::PTD_FOR_INCLUSION
;
5532 # Check for empty input
5533 if ( strval( $text ) === '' ) {
5534 # Only sections 0 and T-0 exist in an empty document
5535 if ( $sectionIndex == 0 ) {
5536 if ( $mode === 'get' ) {
5542 if ( $mode === 'get' ) {
5550 # Preprocess the text
5551 $root = $this->preprocessToDom( $text, $flags );
5553 # <h> nodes indicate section breaks
5554 # They can only occur at the top level, so we can find them by iterating the root's children
5555 $node = $root->getFirstChild();
5557 # Find the target section
5558 if ( $sectionIndex == 0 ) {
5559 # Section zero doesn't nest, level=big
5560 $targetLevel = 1000;
5563 if ( $node->getName() === 'h' ) {
5564 $bits = $node->splitHeading();
5565 if ( $bits['i'] == $sectionIndex ) {
5566 $targetLevel = $bits['level'];
5570 if ( $mode === 'replace' ) {
5571 $outText .= $frame->expand( $node, PPFrame
::RECOVER_ORIG
);
5573 $node = $node->getNextSibling();
5579 if ( $mode === 'get' ) {
5586 # Find the end of the section, including nested sections
5588 if ( $node->getName() === 'h' ) {
5589 $bits = $node->splitHeading();
5590 $curLevel = $bits['level'];
5591 if ( $bits['i'] != $sectionIndex && $curLevel <= $targetLevel ) {
5595 if ( $mode === 'get' ) {
5596 $outText .= $frame->expand( $node, PPFrame
::RECOVER_ORIG
);
5598 $node = $node->getNextSibling();
5601 # Write out the remainder (in replace mode only)
5602 if ( $mode === 'replace' ) {
5603 # Output the replacement text
5604 # Add two newlines on -- trailing whitespace in $newText is conventionally
5605 # stripped by the editor, so we need both newlines to restore the paragraph gap
5606 # Only add trailing whitespace if there is newText
5607 if ( $newText != "" ) {
5608 $outText .= $newText . "\n\n";
5612 $outText .= $frame->expand( $node, PPFrame
::RECOVER_ORIG
);
5613 $node = $node->getNextSibling();
5617 if ( is_string( $outText ) ) {
5618 # Re-insert stripped tags
5619 $outText = rtrim( $this->mStripState
->unstripBoth( $outText ) );
5626 * This function returns the text of a section, specified by a number ($section).
5627 * A section is text under a heading like == Heading == or \<h1\>Heading\</h1\>, or
5628 * the first section before any such heading (section 0).
5630 * If a section contains subsections, these are also returned.
5632 * @param string $text Text to look in
5633 * @param string|int $sectionId Section identifier as a number or string
5634 * (e.g. 0, 1 or 'T-1').
5635 * @param string $defaultText Default to return if section is not found
5637 * @return string Text of the requested section
5639 public function getSection( $text, $sectionId, $defaultText = '' ) {
5640 return $this->extractSections( $text, $sectionId, 'get', $defaultText );
5644 * This function returns $oldtext after the content of the section
5645 * specified by $section has been replaced with $text. If the target
5646 * section does not exist, $oldtext is returned unchanged.
5648 * @param string $oldText Former text of the article
5649 * @param string|int $sectionId Section identifier as a number or string
5650 * (e.g. 0, 1 or 'T-1').
5651 * @param string $newText Replacing text
5653 * @return string Modified text
5655 public function replaceSection( $oldText, $sectionId, $newText ) {
5656 return $this->extractSections( $oldText, $sectionId, 'replace', $newText );
5660 * Get the ID of the revision we are parsing
5664 public function getRevisionId() {
5665 return $this->mRevisionId
;
5669 * Get the revision object for $this->mRevisionId
5671 * @return Revision|null Either a Revision object or null
5672 * @since 1.23 (public since 1.23)
5674 public function getRevisionObject() {
5675 if ( !is_null( $this->mRevisionObject
) ) {
5676 return $this->mRevisionObject
;
5678 if ( is_null( $this->mRevisionId
) ) {
5682 $rev = call_user_func(
5683 $this->mOptions
->getCurrentRevisionCallback(), $this->getTitle(), $this
5686 # If the parse is for a new revision, then the callback should have
5687 # already been set to force the object and should match mRevisionId.
5688 # If not, try to fetch by mRevisionId for sanity.
5689 if ( $rev && $rev->getId() != $this->mRevisionId
) {
5690 $rev = Revision
::newFromId( $this->mRevisionId
);
5693 $this->mRevisionObject
= $rev;
5695 return $this->mRevisionObject
;
5699 * Get the timestamp associated with the current revision, adjusted for
5700 * the default server-local timestamp
5703 public function getRevisionTimestamp() {
5704 if ( is_null( $this->mRevisionTimestamp
) ) {
5707 $revObject = $this->getRevisionObject();
5708 $timestamp = $revObject ?
$revObject->getTimestamp() : wfTimestampNow();
5710 # The cryptic '' timezone parameter tells to use the site-default
5711 # timezone offset instead of the user settings.
5712 # Since this value will be saved into the parser cache, served
5713 # to other users, and potentially even used inside links and such,
5714 # it needs to be consistent for all visitors.
5715 $this->mRevisionTimestamp
= $wgContLang->userAdjust( $timestamp, '' );
5718 return $this->mRevisionTimestamp
;
5722 * Get the name of the user that edited the last revision
5724 * @return string User name
5726 public function getRevisionUser() {
5727 if ( is_null( $this->mRevisionUser
) ) {
5728 $revObject = $this->getRevisionObject();
5730 # if this template is subst: the revision id will be blank,
5731 # so just use the current user's name
5733 $this->mRevisionUser
= $revObject->getUserText();
5734 } elseif ( $this->ot
['wiki'] ||
$this->mOptions
->getIsPreview() ) {
5735 $this->mRevisionUser
= $this->getUser()->getName();
5738 return $this->mRevisionUser
;
5742 * Get the size of the revision
5744 * @return int|null Revision size
5746 public function getRevisionSize() {
5747 if ( is_null( $this->mRevisionSize
) ) {
5748 $revObject = $this->getRevisionObject();
5750 # if this variable is subst: the revision id will be blank,
5751 # so just use the parser input size, because the own substituation
5752 # will change the size.
5754 $this->mRevisionSize
= $revObject->getSize();
5756 $this->mRevisionSize
= $this->mInputSize
;
5759 return $this->mRevisionSize
;
5763 * Mutator for $mDefaultSort
5765 * @param string $sort New value
5767 public function setDefaultSort( $sort ) {
5768 $this->mDefaultSort
= $sort;
5769 $this->mOutput
->setProperty( 'defaultsort', $sort );
5773 * Accessor for $mDefaultSort
5774 * Will use the empty string if none is set.
5776 * This value is treated as a prefix, so the
5777 * empty string is equivalent to sorting by
5782 public function getDefaultSort() {
5783 if ( $this->mDefaultSort
!== false ) {
5784 return $this->mDefaultSort
;
5791 * Accessor for $mDefaultSort
5792 * Unlike getDefaultSort(), will return false if none is set
5794 * @return string|bool
5796 public function getCustomDefaultSort() {
5797 return $this->mDefaultSort
;
5801 * Try to guess the section anchor name based on a wikitext fragment
5802 * presumably extracted from a heading, for example "Header" from
5805 * @param string $text
5809 public function guessSectionNameFromWikiText( $text ) {
5810 # Strip out wikitext links(they break the anchor)
5811 $text = $this->stripSectionName( $text );
5812 $text = Sanitizer
::normalizeSectionNameWhitespace( $text );
5813 return '#' . Sanitizer
::escapeId( $text, 'noninitial' );
5817 * Same as guessSectionNameFromWikiText(), but produces legacy anchors
5818 * instead. For use in redirects, since IE6 interprets Redirect: headers
5819 * as something other than UTF-8 (apparently?), resulting in breakage.
5821 * @param string $text The section name
5822 * @return string An anchor
5824 public function guessLegacySectionNameFromWikiText( $text ) {
5825 # Strip out wikitext links(they break the anchor)
5826 $text = $this->stripSectionName( $text );
5827 $text = Sanitizer
::normalizeSectionNameWhitespace( $text );
5828 return '#' . Sanitizer
::escapeId( $text, [ 'noninitial', 'legacy' ] );
5832 * Strips a text string of wikitext for use in a section anchor
5834 * Accepts a text string and then removes all wikitext from the
5835 * string and leaves only the resultant text (i.e. the result of
5836 * [[User:WikiSysop|Sysop]] would be "Sysop" and the result of
5837 * [[User:WikiSysop]] would be "User:WikiSysop") - this is intended
5838 * to create valid section anchors by mimicing the output of the
5839 * parser when headings are parsed.
5841 * @param string $text Text string to be stripped of wikitext
5842 * for use in a Section anchor
5843 * @return string Filtered text string
5845 public function stripSectionName( $text ) {
5846 # Strip internal link markup
5847 $text = preg_replace( '/\[\[:?([^[|]+)\|([^[]+)\]\]/', '$2', $text );
5848 $text = preg_replace( '/\[\[:?([^[]+)\|?\]\]/', '$1', $text );
5850 # Strip external link markup
5851 # @todo FIXME: Not tolerant to blank link text
5852 # I.E. [https://www.mediawiki.org] will render as [1] or something depending
5853 # on how many empty links there are on the page - need to figure that out.
5854 $text = preg_replace( '/\[(?i:' . $this->mUrlProtocols
. ')([^ ]+?) ([^[]+)\]/', '$2', $text );
5856 # Parse wikitext quotes (italics & bold)
5857 $text = $this->doQuotes( $text );
5860 $text = StringUtils
::delimiterReplace( '<', '>', '', $text );
5865 * strip/replaceVariables/unstrip for preprocessor regression testing
5867 * @param string $text
5868 * @param Title $title
5869 * @param ParserOptions $options
5870 * @param int $outputType
5874 public function testSrvus( $text, Title
$title, ParserOptions
$options,
5875 $outputType = self
::OT_HTML
5877 $magicScopeVariable = $this->lock();
5878 $this->startParse( $title, $options, $outputType, true );
5880 $text = $this->replaceVariables( $text );
5881 $text = $this->mStripState
->unstripBoth( $text );
5882 $text = Sanitizer
::removeHTMLtags( $text );
5887 * @param string $text
5888 * @param Title $title
5889 * @param ParserOptions $options
5892 public function testPst( $text, Title
$title, ParserOptions
$options ) {
5893 return $this->preSaveTransform( $text, $title, $options->getUser(), $options );
5897 * @param string $text
5898 * @param Title $title
5899 * @param ParserOptions $options
5902 public function testPreprocess( $text, Title
$title, ParserOptions
$options ) {
5903 return $this->testSrvus( $text, $title, $options, self
::OT_PREPROCESS
);
5907 * Call a callback function on all regions of the given text that are not
5908 * inside strip markers, and replace those regions with the return value
5909 * of the callback. For example, with input:
5913 * This will call the callback function twice, with 'aaa' and 'bbb'. Those
5914 * two strings will be replaced with the value returned by the callback in
5918 * @param callable $callback
5922 public function markerSkipCallback( $s, $callback ) {
5925 while ( $i < strlen( $s ) ) {
5926 $markerStart = strpos( $s, self
::MARKER_PREFIX
, $i );
5927 if ( $markerStart === false ) {
5928 $out .= call_user_func( $callback, substr( $s, $i ) );
5931 $out .= call_user_func( $callback, substr( $s, $i, $markerStart - $i ) );
5932 $markerEnd = strpos( $s, self
::MARKER_SUFFIX
, $markerStart );
5933 if ( $markerEnd === false ) {
5934 $out .= substr( $s, $markerStart );
5937 $markerEnd +
= strlen( self
::MARKER_SUFFIX
);
5938 $out .= substr( $s, $markerStart, $markerEnd - $markerStart );
5947 * Remove any strip markers found in the given text.
5949 * @param string $text Input string
5952 public function killMarkers( $text ) {
5953 return $this->mStripState
->killMarkers( $text );
5957 * Save the parser state required to convert the given half-parsed text to
5958 * HTML. "Half-parsed" in this context means the output of
5959 * recursiveTagParse() or internalParse(). This output has strip markers
5960 * from replaceVariables (extensionSubstitution() etc.), and link
5961 * placeholders from replaceLinkHolders().
5963 * Returns an array which can be serialized and stored persistently. This
5964 * array can later be loaded into another parser instance with
5965 * unserializeHalfParsedText(). The text can then be safely incorporated into
5966 * the return value of a parser hook.
5968 * @param string $text
5972 public function serializeHalfParsedText( $text ) {
5975 'version' => self
::HALF_PARSED_VERSION
,
5976 'stripState' => $this->mStripState
->getSubState( $text ),
5977 'linkHolders' => $this->mLinkHolders
->getSubArray( $text )
5983 * Load the parser state given in the $data array, which is assumed to
5984 * have been generated by serializeHalfParsedText(). The text contents is
5985 * extracted from the array, and its markers are transformed into markers
5986 * appropriate for the current Parser instance. This transformed text is
5987 * returned, and can be safely included in the return value of a parser
5990 * If the $data array has been stored persistently, the caller should first
5991 * check whether it is still valid, by calling isValidHalfParsedText().
5993 * @param array $data Serialized data
5994 * @throws MWException
5997 public function unserializeHalfParsedText( $data ) {
5998 if ( !isset( $data['version'] ) ||
$data['version'] != self
::HALF_PARSED_VERSION
) {
5999 throw new MWException( __METHOD__
. ': invalid version' );
6002 # First, extract the strip state.
6003 $texts = [ $data['text'] ];
6004 $texts = $this->mStripState
->merge( $data['stripState'], $texts );
6006 # Now renumber links
6007 $texts = $this->mLinkHolders
->mergeForeign( $data['linkHolders'], $texts );
6009 # Should be good to go.
6014 * Returns true if the given array, presumed to be generated by
6015 * serializeHalfParsedText(), is compatible with the current version of the
6018 * @param array $data
6022 public function isValidHalfParsedText( $data ) {
6023 return isset( $data['version'] ) && $data['version'] == self
::HALF_PARSED_VERSION
;
6027 * Parsed a width param of imagelink like 300px or 200x300px
6029 * @param string $value
6034 public function parseWidthParam( $value ) {
6035 $parsedWidthParam = [];
6036 if ( $value === '' ) {
6037 return $parsedWidthParam;
6040 # (T15500) In both cases (width/height and width only),
6041 # permit trailing "px" for backward compatibility.
6042 if ( preg_match( '/^([0-9]*)x([0-9]*)\s*(?:px)?\s*$/', $value, $m ) ) {
6043 $width = intval( $m[1] );
6044 $height = intval( $m[2] );
6045 $parsedWidthParam['width'] = $width;
6046 $parsedWidthParam['height'] = $height;
6047 } elseif ( preg_match( '/^[0-9]*\s*(?:px)?\s*$/', $value ) ) {
6048 $width = intval( $value );
6049 $parsedWidthParam['width'] = $width;
6051 return $parsedWidthParam;
6055 * Lock the current instance of the parser.
6057 * This is meant to stop someone from calling the parser
6058 * recursively and messing up all the strip state.
6060 * @throws MWException If parser is in a parse
6061 * @return ScopedCallback The lock will be released once the return value goes out of scope.
6063 protected function lock() {
6064 if ( $this->mInParse
) {
6065 throw new MWException( "Parser state cleared while parsing. "
6066 . "Did you call Parser::parse recursively?" );
6068 $this->mInParse
= true;
6070 $recursiveCheck = new ScopedCallback( function() {
6071 $this->mInParse
= false;
6074 return $recursiveCheck;
6078 * Strip outer <p></p> tag from the HTML source of a single paragraph.
6080 * Returns original HTML if the <p/> tag has any attributes, if there's no wrapping <p/> tag,
6081 * or if there is more than one <p/> tag in the input HTML.
6083 * @param string $html
6087 public static function stripOuterParagraph( $html ) {
6089 if ( preg_match( '/^<p>(.*)\n?<\/p>\n?$/sU', $html, $m ) ) {
6090 if ( strpos( $m[1], '</p>' ) === false ) {
6099 * Return this parser if it is not doing anything, otherwise
6100 * get a fresh parser. You can use this method by doing
6101 * $myParser = $wgParser->getFreshParser(), or more simply
6102 * $wgParser->getFreshParser()->parse( ... );
6103 * if you're unsure if $wgParser is safe to use.
6106 * @return Parser A parser object that is not parsing anything
6108 public function getFreshParser() {
6109 global $wgParserConf;
6110 if ( $this->mInParse
) {
6111 return new $wgParserConf['class']( $wgParserConf );
6118 * Set's up the PHP implementation of OOUI for use in this request
6119 * and instructs OutputPage to enable OOUI for itself.
6123 public function enableOOUI() {
6124 OutputPage
::setupOOUI();
6125 $this->mOutput
->setEnableOOUI( true );