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
;
27 * @defgroup Parser Parser
31 * PHP Parser - Processes wiki markup (which uses a more user-friendly
32 * syntax, such as "[[link]]" for making links), and provides a one-way
33 * transformation of that wiki markup it into (X)HTML output / markup
34 * (which in turn the browser understands, and can display).
36 * There are seven main entry points into the Parser class:
39 * produces HTML output
40 * - Parser::preSaveTransform()
41 * produces altered wiki markup
42 * - Parser::preprocess()
43 * removes HTML comments and expands templates
44 * - Parser::cleanSig() and Parser::cleanSigInSig()
45 * cleans a signature before saving it to preferences
46 * - Parser::getSection()
47 * return the content of a section from an article for section editing
48 * - Parser::replaceSection()
49 * replaces a section by number inside an article
50 * - Parser::getPreloadText()
51 * removes <noinclude> sections and <includeonly> tags
56 * @warning $wgUser or $wgTitle or $wgRequest or $wgLang. Keep them away!
59 * $wgNamespacesWithSubpages
61 * @par Settings only within ParserOptions:
62 * $wgAllowExternalImages
63 * $wgAllowSpecialInclusion
71 * Update this version number when the ParserOutput format
72 * changes in an incompatible way, so the parser cache
73 * can automatically discard old data.
75 const VERSION
= '1.6.4';
78 * Update this version number when the output of serialiseHalfParsedText()
79 * changes in an incompatible way
81 const HALF_PARSED_VERSION
= 2;
83 # Flags for Parser::setFunctionHook
84 const SFH_NO_HASH
= 1;
85 const SFH_OBJECT_ARGS
= 2;
87 # Constants needed for external link processing
88 # Everything except bracket, space, or control characters
89 # \p{Zs} is unicode 'separator, space' category. It covers the space 0x20
90 # as well as U+3000 is IDEOGRAPHIC SPACE for bug 19052
91 const EXT_LINK_URL_CLASS
= '[^][<>"\\x00-\\x20\\x7F\p{Zs}]';
92 # Simplified expression to match an IPv4 or IPv6 address, or
93 # at least one character of a host name (embeds EXT_LINK_URL_CLASS)
94 const EXT_LINK_ADDR
= '(?:[0-9.]+|\\[(?i:[0-9a-f:.]+)\\]|[^][<>"\\x00-\\x20\\x7F\p{Zs}])';
95 # RegExp to make image URLs (embeds IPv6 part of EXT_LINK_ADDR)
96 // @codingStandardsIgnoreStart Generic.Files.LineLength
97 const EXT_IMAGE_REGEX
= '/^(http:\/\/|https:\/\/)((?:\\[(?i:[0-9a-f:.]+)\\])?[^][<>"\\x00-\\x20\\x7F\p{Zs}]+)
98 \\/([A-Za-z0-9_.,~%\\-+&;#*?!=()@\\x80-\\xFF]+)\\.((?i)gif|png|jpg|jpeg)$/Sxu';
99 // @codingStandardsIgnoreEnd
101 # Regular expression for a non-newline space
102 const SPACE_NOT_NL
= '(?:\t| |&\#0*160;|&\#[Xx]0*[Aa]0;|\p{Zs})';
104 # Flags for preprocessToDom
105 const PTD_FOR_INCLUSION
= 1;
107 # Allowed values for $this->mOutputType
108 # Parameter to startExternalParse().
109 const OT_HTML
= 1; # like parse()
110 const OT_WIKI
= 2; # like preSaveTransform()
111 const OT_PREPROCESS
= 3; # like preprocess()
113 const OT_PLAIN
= 4; # like extractSections() - portions of the original are returned unchanged.
116 * @var string Prefix and suffix for temporary replacement strings
117 * for the multipass parser.
119 * \x7f should never appear in input as it's disallowed in XML.
120 * Using it at the front also gives us a little extra robustness
121 * since it shouldn't match when butted up against identifier-like
124 * Must not consist of all title characters, or else it will change
125 * the behavior of <nowiki> in a link.
127 * Must have a character that needs escaping in attributes, otherwise
128 * someone could put a strip marker in an attribute, to get around
129 * escaping quote marks, and break out of the attribute. Thus we add
132 const MARKER_SUFFIX
= "-QINU`\"'\x7f";
133 const MARKER_PREFIX
= "\x7f'\"`UNIQ-";
135 # Markers used for wrapping the table of contents
136 const TOC_START
= '<mw:toc>';
137 const TOC_END
= '</mw:toc>';
140 public $mTagHooks = [];
141 public $mTransparentTagHooks = [];
142 public $mFunctionHooks = [];
143 public $mFunctionSynonyms = [ 0 => [], 1 => [] ];
144 public $mFunctionTagHooks = [];
145 public $mStripList = [];
146 public $mDefaultStripList = [];
147 public $mVarCache = [];
148 public $mImageParams = [];
149 public $mImageParamsMagicArray = [];
150 public $mMarkerIndex = 0;
151 public $mFirstCall = true;
153 # Initialised by initialiseVariables()
156 * @var MagicWordArray
161 * @var MagicWordArray
164 # Initialised in constructor
165 public $mConf, $mExtLinkBracketedRegex, $mUrlProtocols;
167 # Initialized in getPreprocessor()
168 /** @var Preprocessor */
169 public $mPreprocessor;
171 # Cleared with clearState():
183 public $mIncludeCount;
185 * @var LinkHolderArray
187 public $mLinkHolders;
190 public $mIncludeSizes, $mPPNodeCount, $mGeneratedPPNodeCount, $mHighestExpansionDepth;
191 public $mDefaultSort;
192 public $mTplRedirCache, $mTplDomCache, $mHeadings, $mDoubleUnderscores;
193 public $mExpensiveFunctionCount; # number of expensive parser function calls
194 public $mShowToc, $mForceTocPosition;
199 public $mUser; # User object; only used when doing pre-save transform
202 # These are variables reset at least once per parse regardless of $clearState
212 public $mTitle; # Title context, used for self-link rendering and similar things
213 public $mOutputType; # Output type, one of the OT_xxx constants
214 public $ot; # Shortcut alias, see setOutputType()
215 public $mRevisionObject; # The revision object of the specified revision ID
216 public $mRevisionId; # ID to display in {{REVISIONID}} tags
217 public $mRevisionTimestamp; # The timestamp of the specified revision ID
218 public $mRevisionUser; # User to display in {{REVISIONUSER}} tag
219 public $mRevisionSize; # Size to display in {{REVISIONSIZE}} variable
220 public $mRevIdForTs; # The revision ID which was used to fetch the timestamp
221 public $mInputSize = false; # For {{PAGESIZE}} on current page.
224 * @var string Deprecated accessor for the strip marker prefix.
225 * @deprecated since 1.26; use Parser::MARKER_PREFIX instead.
227 public $mUniqPrefix = Parser
::MARKER_PREFIX
;
230 * @var array Array with the language name of each language link (i.e. the
231 * interwiki prefix) in the key, value arbitrary. Used to avoid sending
232 * duplicate language links to the ParserOutput.
234 public $mLangLinkLanguages;
237 * @var MapCacheLRU|null
240 * A cache of the current revisions of titles. Keys are $title->getPrefixedDbKey()
242 public $currentRevisionCache;
245 * @var bool Recursive call protection.
246 * This variable should be treated as if it were private.
248 public $mInParse = false;
250 /** @var SectionProfiler */
251 protected $mProfiler;
256 protected $mLinkRenderer;
261 public function __construct( $conf = [] ) {
262 $this->mConf
= $conf;
263 $this->mUrlProtocols
= wfUrlProtocols();
264 $this->mExtLinkBracketedRegex
= '/\[(((?i)' . $this->mUrlProtocols
. ')' .
265 self
::EXT_LINK_ADDR
.
266 self
::EXT_LINK_URL_CLASS
. '*)\p{Zs}*([^\]\\x00-\\x08\\x0a-\\x1F]*?)\]/Su';
267 if ( isset( $conf['preprocessorClass'] ) ) {
268 $this->mPreprocessorClass
= $conf['preprocessorClass'];
269 } elseif ( defined( 'HPHP_VERSION' ) ) {
270 # Preprocessor_Hash is much faster than Preprocessor_DOM under HipHop
271 $this->mPreprocessorClass
= 'Preprocessor_Hash';
272 } elseif ( extension_loaded( 'domxml' ) ) {
273 # PECL extension that conflicts with the core DOM extension (bug 13770)
274 wfDebug( "Warning: you have the obsolete domxml extension for PHP. Please remove it!\n" );
275 $this->mPreprocessorClass
= 'Preprocessor_Hash';
276 } elseif ( extension_loaded( 'dom' ) ) {
277 $this->mPreprocessorClass
= 'Preprocessor_DOM';
279 $this->mPreprocessorClass
= 'Preprocessor_Hash';
281 wfDebug( __CLASS__
. ": using preprocessor: {$this->mPreprocessorClass}\n" );
285 * Reduce memory usage to reduce the impact of circular references
287 public function __destruct() {
288 if ( isset( $this->mLinkHolders
) ) {
289 unset( $this->mLinkHolders
);
291 foreach ( $this as $name => $value ) {
292 unset( $this->$name );
297 * Allow extensions to clean up when the parser is cloned
299 public function __clone() {
300 $this->mInParse
= false;
302 // Bug 56226: When you create a reference "to" an object field, that
303 // makes the object field itself be a reference too (until the other
304 // reference goes out of scope). When cloning, any field that's a
305 // reference is copied as a reference in the new object. Both of these
306 // are defined PHP5 behaviors, as inconvenient as it is for us when old
307 // hooks from PHP4 days are passing fields by reference.
308 foreach ( [ 'mStripState', 'mVarCache' ] as $k ) {
309 // Make a non-reference copy of the field, then rebind the field to
310 // reference the new copy.
316 Hooks
::run( 'ParserCloned', [ $this ] );
320 * Do various kinds of initialisation on the first call of the parser
322 public function firstCallInit() {
323 if ( !$this->mFirstCall
) {
326 $this->mFirstCall
= false;
328 CoreParserFunctions
::register( $this );
329 CoreTagHooks
::register( $this );
330 $this->initialiseVariables();
332 Hooks
::run( 'ParserFirstCallInit', [ &$this ] );
340 public function clearState() {
341 if ( $this->mFirstCall
) {
342 $this->firstCallInit();
344 $this->mOutput
= new ParserOutput
;
345 $this->mOptions
->registerWatcher( [ $this->mOutput
, 'recordOption' ] );
346 $this->mAutonumber
= 0;
347 $this->mIncludeCount
= [];
348 $this->mLinkHolders
= new LinkHolderArray( $this );
350 $this->mRevisionObject
= $this->mRevisionTimestamp
=
351 $this->mRevisionId
= $this->mRevisionUser
= $this->mRevisionSize
= null;
352 $this->mVarCache
= [];
354 $this->mLangLinkLanguages
= [];
355 $this->currentRevisionCache
= null;
357 $this->mStripState
= new StripState
;
359 # Clear these on every parse, bug 4549
360 $this->mTplRedirCache
= $this->mTplDomCache
= [];
362 $this->mShowToc
= true;
363 $this->mForceTocPosition
= false;
364 $this->mIncludeSizes
= [
368 $this->mPPNodeCount
= 0;
369 $this->mGeneratedPPNodeCount
= 0;
370 $this->mHighestExpansionDepth
= 0;
371 $this->mDefaultSort
= false;
372 $this->mHeadings
= [];
373 $this->mDoubleUnderscores
= [];
374 $this->mExpensiveFunctionCount
= 0;
377 if ( isset( $this->mPreprocessor
) && $this->mPreprocessor
->parser
!== $this ) {
378 $this->mPreprocessor
= null;
381 $this->mProfiler
= new SectionProfiler();
383 Hooks
::run( 'ParserClearState', [ &$this ] );
387 * Convert wikitext to HTML
388 * Do not call this function recursively.
390 * @param string $text Text we want to parse
391 * @param Title $title
392 * @param ParserOptions $options
393 * @param bool $linestart
394 * @param bool $clearState
395 * @param int $revid Number to pass in {{REVISIONID}}
396 * @return ParserOutput A ParserOutput
398 public function parse( $text, Title
$title, ParserOptions
$options,
399 $linestart = true, $clearState = true, $revid = null
402 * First pass--just handle <nowiki> sections, pass the rest off
403 * to internalParse() which does all the real work.
406 global $wgShowHostnames;
409 // We use U+007F DELETE to construct strip markers, so we have to make
410 // sure that this character does not occur in the input text.
411 $text = strtr( $text, "\x7f", "?" );
412 $magicScopeVariable = $this->lock();
415 $this->startParse( $title, $options, self
::OT_HTML
, $clearState );
417 $this->currentRevisionCache
= null;
418 $this->mInputSize
= strlen( $text );
419 if ( $this->mOptions
->getEnableLimitReport() ) {
420 $this->mOutput
->resetParseStartTime();
423 $oldRevisionId = $this->mRevisionId
;
424 $oldRevisionObject = $this->mRevisionObject
;
425 $oldRevisionTimestamp = $this->mRevisionTimestamp
;
426 $oldRevisionUser = $this->mRevisionUser
;
427 $oldRevisionSize = $this->mRevisionSize
;
428 if ( $revid !== null ) {
429 $this->mRevisionId
= $revid;
430 $this->mRevisionObject
= null;
431 $this->mRevisionTimestamp
= null;
432 $this->mRevisionUser
= null;
433 $this->mRevisionSize
= null;
436 Hooks
::run( 'ParserBeforeStrip', [ &$this, &$text, &$this->mStripState
] );
438 Hooks
::run( 'ParserAfterStrip', [ &$this, &$text, &$this->mStripState
] );
439 $text = $this->internalParse( $text );
440 Hooks
::run( 'ParserAfterParse', [ &$this, &$text, &$this->mStripState
] );
442 $text = $this->internalParseHalfParsed( $text, true, $linestart );
445 * A converted title will be provided in the output object if title and
446 * content conversion are enabled, the article text does not contain
447 * a conversion-suppressing double-underscore tag, and no
448 * {{DISPLAYTITLE:...}} is present. DISPLAYTITLE takes precedence over
449 * automatic link conversion.
451 if ( !( $options->getDisableTitleConversion()
452 ||
isset( $this->mDoubleUnderscores
['nocontentconvert'] )
453 ||
isset( $this->mDoubleUnderscores
['notitleconvert'] )
454 ||
$this->mOutput
->getDisplayTitle() !== false )
456 $convruletitle = $this->getConverterLanguage()->getConvRuleTitle();
457 if ( $convruletitle ) {
458 $this->mOutput
->setTitleText( $convruletitle );
460 $titleText = $this->getConverterLanguage()->convertTitle( $title );
461 $this->mOutput
->setTitleText( $titleText );
465 if ( $this->mExpensiveFunctionCount
> $this->mOptions
->getExpensiveParserFunctionLimit() ) {
466 $this->limitationWarn( 'expensive-parserfunction',
467 $this->mExpensiveFunctionCount
,
468 $this->mOptions
->getExpensiveParserFunctionLimit()
472 # Information on include size limits, for the benefit of users who try to skirt them
473 if ( $this->mOptions
->getEnableLimitReport() ) {
474 $max = $this->mOptions
->getMaxIncludeSize();
476 $cpuTime = $this->mOutput
->getTimeSinceStart( 'cpu' );
477 if ( $cpuTime !== null ) {
478 $this->mOutput
->setLimitReportData( 'limitreport-cputime',
479 sprintf( "%.3f", $cpuTime )
483 $wallTime = $this->mOutput
->getTimeSinceStart( 'wall' );
484 $this->mOutput
->setLimitReportData( 'limitreport-walltime',
485 sprintf( "%.3f", $wallTime )
488 $this->mOutput
->setLimitReportData( 'limitreport-ppvisitednodes',
489 [ $this->mPPNodeCount
, $this->mOptions
->getMaxPPNodeCount() ]
491 $this->mOutput
->setLimitReportData( 'limitreport-ppgeneratednodes',
492 [ $this->mGeneratedPPNodeCount
, $this->mOptions
->getMaxGeneratedPPNodeCount() ]
494 $this->mOutput
->setLimitReportData( 'limitreport-postexpandincludesize',
495 [ $this->mIncludeSizes
['post-expand'], $max ]
497 $this->mOutput
->setLimitReportData( 'limitreport-templateargumentsize',
498 [ $this->mIncludeSizes
['arg'], $max ]
500 $this->mOutput
->setLimitReportData( 'limitreport-expansiondepth',
501 [ $this->mHighestExpansionDepth
, $this->mOptions
->getMaxPPExpandDepth() ]
503 $this->mOutput
->setLimitReportData( 'limitreport-expensivefunctioncount',
504 [ $this->mExpensiveFunctionCount
, $this->mOptions
->getExpensiveParserFunctionLimit() ]
506 Hooks
::run( 'ParserLimitReportPrepare', [ $this, $this->mOutput
] );
508 $limitReport = "NewPP limit report\n";
509 if ( $wgShowHostnames ) {
510 $limitReport .= 'Parsed by ' . wfHostname() . "\n";
512 $limitReport .= 'Cached time: ' . $this->mOutput
->getCacheTime() . "\n";
513 $limitReport .= 'Cache expiry: ' . $this->mOutput
->getCacheExpiry() . "\n";
514 $limitReport .= 'Dynamic content: ' .
515 ( $this->mOutput
->hasDynamicContent() ?
'true' : 'false' ) .
518 foreach ( $this->mOutput
->getLimitReportData() as $key => $value ) {
519 if ( Hooks
::run( 'ParserLimitReportFormat',
520 [ $key, &$value, &$limitReport, false, false ]
522 $keyMsg = wfMessage( $key )->inLanguage( 'en' )->useDatabase( false );
523 $valueMsg = wfMessage( [ "$key-value-text", "$key-value" ] )
524 ->inLanguage( 'en' )->useDatabase( false );
525 if ( !$valueMsg->exists() ) {
526 $valueMsg = new RawMessage( '$1' );
528 if ( !$keyMsg->isDisabled() && !$valueMsg->isDisabled() ) {
529 $valueMsg->params( $value );
530 $limitReport .= "{$keyMsg->text()}: {$valueMsg->text()}\n";
534 // Since we're not really outputting HTML, decode the entities and
535 // then re-encode the things that need hiding inside HTML comments.
536 $limitReport = htmlspecialchars_decode( $limitReport );
537 Hooks
::run( 'ParserLimitReport', [ $this, &$limitReport ] );
539 // Sanitize for comment. Note '‐' in the replacement is U+2010,
540 // which looks much like the problematic '-'.
541 $limitReport = str_replace( [ '-', '&' ], [ '‐', '&' ], $limitReport );
542 $text .= "\n<!-- \n$limitReport-->\n";
544 // Add on template profiling data
545 $dataByFunc = $this->mProfiler
->getFunctionStats();
546 uasort( $dataByFunc, function ( $a, $b ) {
547 return $a['real'] < $b['real']; // descending order
549 $profileReport = "Transclusion expansion time report (%,ms,calls,template)\n";
550 foreach ( array_slice( $dataByFunc, 0, 10 ) as $item ) {
551 $profileReport .= sprintf( "%6.2f%% %8.3f %6d - %s\n",
552 $item['%real'], $item['real'], $item['calls'],
553 htmlspecialchars( $item['name'] ) );
555 $text .= "\n<!-- \n$profileReport-->\n";
557 if ( $this->mGeneratedPPNodeCount
> $this->mOptions
->getMaxGeneratedPPNodeCount() / 10 ) {
558 wfDebugLog( 'generated-pp-node-count', $this->mGeneratedPPNodeCount
. ' ' .
559 $this->mTitle
->getPrefixedDBkey() );
562 $this->mOutput
->setText( $text );
564 $this->mRevisionId
= $oldRevisionId;
565 $this->mRevisionObject
= $oldRevisionObject;
566 $this->mRevisionTimestamp
= $oldRevisionTimestamp;
567 $this->mRevisionUser
= $oldRevisionUser;
568 $this->mRevisionSize
= $oldRevisionSize;
569 $this->mInputSize
= false;
570 $this->currentRevisionCache
= null;
572 return $this->mOutput
;
576 * Half-parse wikitext to half-parsed HTML. This recursive parser entry point
577 * can be called from an extension tag hook.
579 * The output of this function IS NOT SAFE PARSED HTML; it is "half-parsed"
580 * instead, which means that lists and links have not been fully parsed yet,
581 * and strip markers are still present.
583 * Use recursiveTagParseFully() to fully parse wikitext to output-safe HTML.
585 * Use this function if you're a parser tag hook and you want to parse
586 * wikitext before or after applying additional transformations, and you
587 * intend to *return the result as hook output*, which will cause it to go
588 * through the rest of parsing process automatically.
590 * If $frame is not provided, then template variables (e.g., {{{1}}}) within
591 * $text are not expanded
593 * @param string $text Text extension wants to have parsed
594 * @param bool|PPFrame $frame The frame to use for expanding any template variables
595 * @return string UNSAFE half-parsed HTML
597 public function recursiveTagParse( $text, $frame = false ) {
598 Hooks
::run( 'ParserBeforeStrip', [ &$this, &$text, &$this->mStripState
] );
599 Hooks
::run( 'ParserAfterStrip', [ &$this, &$text, &$this->mStripState
] );
600 $text = $this->internalParse( $text, false, $frame );
605 * Fully parse wikitext to fully parsed HTML. This recursive parser entry
606 * point can be called from an extension tag hook.
608 * The output of this function is fully-parsed HTML that is safe for output.
609 * If you're a parser tag hook, you might want to use recursiveTagParse()
612 * If $frame is not provided, then template variables (e.g., {{{1}}}) within
613 * $text are not expanded
617 * @param string $text Text extension wants to have parsed
618 * @param bool|PPFrame $frame The frame to use for expanding any template variables
619 * @return string Fully parsed HTML
621 public function recursiveTagParseFully( $text, $frame = false ) {
622 $text = $this->recursiveTagParse( $text, $frame );
623 $text = $this->internalParseHalfParsed( $text, false );
628 * Expand templates and variables in the text, producing valid, static wikitext.
629 * Also removes comments.
630 * Do not call this function recursively.
631 * @param string $text
632 * @param Title $title
633 * @param ParserOptions $options
634 * @param int|null $revid
635 * @param bool|PPFrame $frame
636 * @return mixed|string
638 public function preprocess( $text, Title
$title = null,
639 ParserOptions
$options, $revid = null, $frame = false
641 $magicScopeVariable = $this->lock();
642 $this->startParse( $title, $options, self
::OT_PREPROCESS
, true );
643 if ( $revid !== null ) {
644 $this->mRevisionId
= $revid;
646 Hooks
::run( 'ParserBeforeStrip', [ &$this, &$text, &$this->mStripState
] );
647 Hooks
::run( 'ParserAfterStrip', [ &$this, &$text, &$this->mStripState
] );
648 $text = $this->replaceVariables( $text, $frame );
649 $text = $this->mStripState
->unstripBoth( $text );
654 * Recursive parser entry point that can be called from an extension tag
657 * @param string $text Text to be expanded
658 * @param bool|PPFrame $frame The frame to use for expanding any template variables
662 public function recursivePreprocess( $text, $frame = false ) {
663 $text = $this->replaceVariables( $text, $frame );
664 $text = $this->mStripState
->unstripBoth( $text );
669 * Process the wikitext for the "?preload=" feature. (bug 5210)
671 * "<noinclude>", "<includeonly>" etc. are parsed as for template
672 * transclusion, comments, templates, arguments, tags hooks and parser
673 * functions are untouched.
675 * @param string $text
676 * @param Title $title
677 * @param ParserOptions $options
678 * @param array $params
681 public function getPreloadText( $text, Title
$title, ParserOptions
$options, $params = [] ) {
682 $msg = new RawMessage( $text );
683 $text = $msg->params( $params )->plain();
685 # Parser (re)initialisation
686 $magicScopeVariable = $this->lock();
687 $this->startParse( $title, $options, self
::OT_PLAIN
, true );
689 $flags = PPFrame
::NO_ARGS | PPFrame
::NO_TEMPLATES
;
690 $dom = $this->preprocessToDom( $text, self
::PTD_FOR_INCLUSION
);
691 $text = $this->getPreprocessor()->newFrame()->expand( $dom, $flags );
692 $text = $this->mStripState
->unstripBoth( $text );
697 * Get a random string
700 * @deprecated since 1.26; use wfRandomString() instead.
702 public static function getRandomString() {
703 wfDeprecated( __METHOD__
, '1.26' );
704 return wfRandomString( 16 );
708 * Set the current user.
709 * Should only be used when doing pre-save transform.
711 * @param User|null $user User object or null (to reset)
713 public function setUser( $user ) {
714 $this->mUser
= $user;
718 * Accessor for mUniqPrefix.
721 * @deprecated since 1.26; use Parser::MARKER_PREFIX instead.
723 public function uniqPrefix() {
724 wfDeprecated( __METHOD__
, '1.26' );
725 return self
::MARKER_PREFIX
;
729 * Set the context title
733 public function setTitle( $t ) {
735 $t = Title
::newFromText( 'NO TITLE' );
738 if ( $t->hasFragment() ) {
739 # Strip the fragment to avoid various odd effects
740 $this->mTitle
= $t->createFragmentTarget( '' );
747 * Accessor for the Title object
751 public function getTitle() {
752 return $this->mTitle
;
756 * Accessor/mutator for the Title object
758 * @param Title $x Title object or null to just get the current one
761 public function Title( $x = null ) {
762 return wfSetVar( $this->mTitle
, $x );
766 * Set the output type
768 * @param int $ot New value
770 public function setOutputType( $ot ) {
771 $this->mOutputType
= $ot;
774 'html' => $ot == self
::OT_HTML
,
775 'wiki' => $ot == self
::OT_WIKI
,
776 'pre' => $ot == self
::OT_PREPROCESS
,
777 'plain' => $ot == self
::OT_PLAIN
,
782 * Accessor/mutator for the output type
784 * @param int|null $x New value or null to just get the current one
787 public function OutputType( $x = null ) {
788 return wfSetVar( $this->mOutputType
, $x );
792 * Get the ParserOutput object
794 * @return ParserOutput
796 public function getOutput() {
797 return $this->mOutput
;
801 * Get the ParserOptions object
803 * @return ParserOptions
805 public function getOptions() {
806 return $this->mOptions
;
810 * Accessor/mutator for the ParserOptions object
812 * @param ParserOptions $x New value or null to just get the current one
813 * @return ParserOptions Current ParserOptions object
815 public function Options( $x = null ) {
816 return wfSetVar( $this->mOptions
, $x );
822 public function nextLinkID() {
823 return $this->mLinkID++
;
829 public function setLinkID( $id ) {
830 $this->mLinkID
= $id;
834 * Get a language object for use in parser functions such as {{FORMATNUM:}}
837 public function getFunctionLang() {
838 return $this->getTargetLanguage();
842 * Get the target language for the content being parsed. This is usually the
843 * language that the content is in.
847 * @throws MWException
850 public function getTargetLanguage() {
851 $target = $this->mOptions
->getTargetLanguage();
853 if ( $target !== null ) {
855 } elseif ( $this->mOptions
->getInterfaceMessage() ) {
856 return $this->mOptions
->getUserLangObj();
857 } elseif ( is_null( $this->mTitle
) ) {
858 throw new MWException( __METHOD__
. ': $this->mTitle is null' );
861 return $this->mTitle
->getPageLanguage();
865 * Get the language object for language conversion
866 * @return Language|null
868 public function getConverterLanguage() {
869 return $this->getTargetLanguage();
873 * Get a User object either from $this->mUser, if set, or from the
874 * ParserOptions object otherwise
878 public function getUser() {
879 if ( !is_null( $this->mUser
) ) {
882 return $this->mOptions
->getUser();
886 * Get a preprocessor object
888 * @return Preprocessor
890 public function getPreprocessor() {
891 if ( !isset( $this->mPreprocessor
) ) {
892 $class = $this->mPreprocessorClass
;
893 $this->mPreprocessor
= new $class( $this );
895 return $this->mPreprocessor
;
899 * Get a LinkRenderer instance to make links with
902 * @return LinkRenderer
904 public function getLinkRenderer() {
905 if ( !$this->mLinkRenderer
) {
906 $this->mLinkRenderer
= MediaWikiServices
::getInstance()
907 ->getLinkRendererFactory()->create();
908 $this->mLinkRenderer
->setStubThreshold(
909 $this->getOptions()->getStubThreshold()
913 return $this->mLinkRenderer
;
917 * Replaces all occurrences of HTML-style comments and the given tags
918 * in the text with a random marker and returns the next text. The output
919 * parameter $matches will be an associative array filled with data in
923 * 'UNIQ-xxxxx' => array(
926 * array( 'param' => 'x' ),
927 * '<element param="x">tag content</element>' ) )
930 * @param array $elements List of element names. Comments are always extracted.
931 * @param string $text Source text string.
932 * @param array $matches Out parameter, Array: extracted tags
933 * @param string|null $uniq_prefix
934 * @return string Stripped text
935 * @since 1.26 The uniq_prefix argument is deprecated.
937 public static function extractTagsAndParams( $elements, $text, &$matches, $uniq_prefix = null ) {
938 if ( $uniq_prefix !== null ) {
939 wfDeprecated( __METHOD__
. ' called with $prefix argument', '1.26' );
945 $taglist = implode( '|', $elements );
946 $start = "/<($taglist)(\\s+[^>]*?|\\s*?)(\/?" . ">)|<(!--)/i";
948 while ( $text != '' ) {
949 $p = preg_split( $start, $text, 2, PREG_SPLIT_DELIM_CAPTURE
);
951 if ( count( $p ) < 5 ) {
954 if ( count( $p ) > 5 ) {
968 $marker = self
::MARKER_PREFIX
. "-$element-" . sprintf( '%08X', $n++
) . self
::MARKER_SUFFIX
;
969 $stripped .= $marker;
971 if ( $close === '/>' ) {
972 # Empty element tag, <tag />
977 if ( $element === '!--' ) {
980 $end = "/(<\\/$element\\s*>)/i";
982 $q = preg_split( $end, $inside, 2, PREG_SPLIT_DELIM_CAPTURE
);
984 if ( count( $q ) < 3 ) {
985 # No end tag -- let it run out to the end of the text.
994 $matches[$marker] = [ $element,
996 Sanitizer
::decodeTagAttributes( $attributes ),
997 "<$element$attributes$close$content$tail" ];
1003 * Get a list of strippable XML-like elements
1007 public function getStripList() {
1008 return $this->mStripList
;
1012 * Add an item to the strip state
1013 * Returns the unique tag which must be inserted into the stripped text
1014 * The tag will be replaced with the original text in unstrip()
1016 * @param string $text
1020 public function insertStripItem( $text ) {
1021 $marker = self
::MARKER_PREFIX
. "-item-{$this->mMarkerIndex}-" . self
::MARKER_SUFFIX
;
1022 $this->mMarkerIndex++
;
1023 $this->mStripState
->addGeneral( $marker, $text );
1028 * parse the wiki syntax used to render tables
1031 * @param string $text
1034 public function doTableStuff( $text ) {
1036 $lines = StringUtils
::explode( "\n", $text );
1038 $td_history = []; # Is currently a td tag open?
1039 $last_tag_history = []; # Save history of last lag activated (td, th or caption)
1040 $tr_history = []; # Is currently a tr tag open?
1041 $tr_attributes = []; # history of tr attributes
1042 $has_opened_tr = []; # Did this table open a <tr> element?
1043 $indent_level = 0; # indent level of the table
1045 foreach ( $lines as $outLine ) {
1046 $line = trim( $outLine );
1048 if ( $line === '' ) { # empty line, go to next line
1049 $out .= $outLine . "\n";
1053 $first_character = $line[0];
1054 $first_two = substr( $line, 0, 2 );
1057 if ( preg_match( '/^(:*)\s*\{\|(.*)$/', $line, $matches ) ) {
1058 # First check if we are starting a new table
1059 $indent_level = strlen( $matches[1] );
1061 $attributes = $this->mStripState
->unstripBoth( $matches[2] );
1062 $attributes = Sanitizer
::fixTagAttributes( $attributes, 'table' );
1064 $outLine = str_repeat( '<dl><dd>', $indent_level ) . "<table{$attributes}>";
1065 array_push( $td_history, false );
1066 array_push( $last_tag_history, '' );
1067 array_push( $tr_history, false );
1068 array_push( $tr_attributes, '' );
1069 array_push( $has_opened_tr, false );
1070 } elseif ( count( $td_history ) == 0 ) {
1071 # Don't do any of the following
1072 $out .= $outLine . "\n";
1074 } elseif ( $first_two === '|}' ) {
1075 # We are ending a table
1076 $line = '</table>' . substr( $line, 2 );
1077 $last_tag = array_pop( $last_tag_history );
1079 if ( !array_pop( $has_opened_tr ) ) {
1080 $line = "<tr><td></td></tr>{$line}";
1083 if ( array_pop( $tr_history ) ) {
1084 $line = "</tr>{$line}";
1087 if ( array_pop( $td_history ) ) {
1088 $line = "</{$last_tag}>{$line}";
1090 array_pop( $tr_attributes );
1091 $outLine = $line . str_repeat( '</dd></dl>', $indent_level );
1092 } elseif ( $first_two === '|-' ) {
1093 # Now we have a table row
1094 $line = preg_replace( '#^\|-+#', '', $line );
1096 # Whats after the tag is now only attributes
1097 $attributes = $this->mStripState
->unstripBoth( $line );
1098 $attributes = Sanitizer
::fixTagAttributes( $attributes, 'tr' );
1099 array_pop( $tr_attributes );
1100 array_push( $tr_attributes, $attributes );
1103 $last_tag = array_pop( $last_tag_history );
1104 array_pop( $has_opened_tr );
1105 array_push( $has_opened_tr, true );
1107 if ( array_pop( $tr_history ) ) {
1111 if ( array_pop( $td_history ) ) {
1112 $line = "</{$last_tag}>{$line}";
1116 array_push( $tr_history, false );
1117 array_push( $td_history, false );
1118 array_push( $last_tag_history, '' );
1119 } elseif ( $first_character === '|'
1120 ||
$first_character === '!'
1121 ||
$first_two === '|+'
1123 # This might be cell elements, td, th or captions
1124 if ( $first_two === '|+' ) {
1125 $first_character = '+';
1126 $line = substr( $line, 2 );
1128 $line = substr( $line, 1 );
1131 // Implies both are valid for table headings.
1132 if ( $first_character === '!' ) {
1133 $line = StringUtils
::replaceMarkup( '!!', '||', $line );
1136 # Split up multiple cells on the same line.
1137 # FIXME : This can result in improper nesting of tags processed
1138 # by earlier parser steps.
1139 $cells = explode( '||', $line );
1143 # Loop through each table cell
1144 foreach ( $cells as $cell ) {
1146 if ( $first_character !== '+' ) {
1147 $tr_after = array_pop( $tr_attributes );
1148 if ( !array_pop( $tr_history ) ) {
1149 $previous = "<tr{$tr_after}>\n";
1151 array_push( $tr_history, true );
1152 array_push( $tr_attributes, '' );
1153 array_pop( $has_opened_tr );
1154 array_push( $has_opened_tr, true );
1157 $last_tag = array_pop( $last_tag_history );
1159 if ( array_pop( $td_history ) ) {
1160 $previous = "</{$last_tag}>\n{$previous}";
1163 if ( $first_character === '|' ) {
1165 } elseif ( $first_character === '!' ) {
1167 } elseif ( $first_character === '+' ) {
1168 $last_tag = 'caption';
1173 array_push( $last_tag_history, $last_tag );
1175 # A cell could contain both parameters and data
1176 $cell_data = explode( '|', $cell, 2 );
1178 # Bug 553: Note that a '|' inside an invalid link should not
1179 # be mistaken as delimiting cell parameters
1180 if ( strpos( $cell_data[0], '[[' ) !== false ) {
1181 $cell = "{$previous}<{$last_tag}>{$cell}";
1182 } elseif ( count( $cell_data ) == 1 ) {
1183 $cell = "{$previous}<{$last_tag}>{$cell_data[0]}";
1185 $attributes = $this->mStripState
->unstripBoth( $cell_data[0] );
1186 $attributes = Sanitizer
::fixTagAttributes( $attributes, $last_tag );
1187 $cell = "{$previous}<{$last_tag}{$attributes}>{$cell_data[1]}";
1191 array_push( $td_history, true );
1194 $out .= $outLine . "\n";
1197 # Closing open td, tr && table
1198 while ( count( $td_history ) > 0 ) {
1199 if ( array_pop( $td_history ) ) {
1202 if ( array_pop( $tr_history ) ) {
1205 if ( !array_pop( $has_opened_tr ) ) {
1206 $out .= "<tr><td></td></tr>\n";
1209 $out .= "</table>\n";
1212 # Remove trailing line-ending (b/c)
1213 if ( substr( $out, -1 ) === "\n" ) {
1214 $out = substr( $out, 0, -1 );
1217 # special case: don't return empty table
1218 if ( $out === "<table>\n<tr><td></td></tr>\n</table>" ) {
1226 * Helper function for parse() that transforms wiki markup into half-parsed
1227 * HTML. Only called for $mOutputType == self::OT_HTML.
1231 * @param string $text The text to parse
1232 * @param bool $isMain Whether this is being called from the main parse() function
1233 * @param PPFrame|bool $frame A pre-processor frame
1237 public function internalParse( $text, $isMain = true, $frame = false ) {
1241 # Hook to suspend the parser in this state
1242 if ( !Hooks
::run( 'ParserBeforeInternalParse', [ &$this, &$text, &$this->mStripState
] ) ) {
1246 # if $frame is provided, then use $frame for replacing any variables
1248 # use frame depth to infer how include/noinclude tags should be handled
1249 # depth=0 means this is the top-level document; otherwise it's an included document
1250 if ( !$frame->depth
) {
1253 $flag = Parser
::PTD_FOR_INCLUSION
;
1255 $dom = $this->preprocessToDom( $text, $flag );
1256 $text = $frame->expand( $dom );
1258 # if $frame is not provided, then use old-style replaceVariables
1259 $text = $this->replaceVariables( $text );
1262 Hooks
::run( 'InternalParseBeforeSanitize', [ &$this, &$text, &$this->mStripState
] );
1263 $text = Sanitizer
::removeHTMLtags(
1265 [ &$this, 'attributeStripCallback' ],
1267 array_keys( $this->mTransparentTagHooks
)
1269 Hooks
::run( 'InternalParseBeforeLinks', [ &$this, &$text, &$this->mStripState
] );
1271 # Tables need to come after variable replacement for things to work
1272 # properly; putting them before other transformations should keep
1273 # exciting things like link expansions from showing up in surprising
1275 $text = $this->doTableStuff( $text );
1277 $text = preg_replace( '/(^|\n)-----*/', '\\1<hr />', $text );
1279 $text = $this->doDoubleUnderscore( $text );
1281 $text = $this->doHeadings( $text );
1282 $text = $this->replaceInternalLinks( $text );
1283 $text = $this->doAllQuotes( $text );
1284 $text = $this->replaceExternalLinks( $text );
1286 # replaceInternalLinks may sometimes leave behind
1287 # absolute URLs, which have to be masked to hide them from replaceExternalLinks
1288 $text = str_replace( self
::MARKER_PREFIX
. 'NOPARSE', '', $text );
1290 $text = $this->doMagicLinks( $text );
1291 $text = $this->formatHeadings( $text, $origText, $isMain );
1297 * Helper function for parse() that transforms half-parsed HTML into fully
1300 * @param string $text
1301 * @param bool $isMain
1302 * @param bool $linestart
1305 private function internalParseHalfParsed( $text, $isMain = true, $linestart = true ) {
1306 $text = $this->mStripState
->unstripGeneral( $text );
1309 Hooks
::run( 'ParserAfterUnstrip', [ &$this, &$text ] );
1312 # Clean up special characters, only run once, next-to-last before doBlockLevels
1314 # french spaces, last one Guillemet-left
1315 # only if there is something before the space
1316 '/(.) (?=\\?|:|;|!|%|\\302\\273)/' => '\\1 ',
1317 # french spaces, Guillemet-right
1318 '/(\\302\\253) /' => '\\1 ',
1319 '/ (!\s*important)/' => ' \\1', # Beware of CSS magic word !important, bug #11874.
1321 $text = preg_replace( array_keys( $fixtags ), array_values( $fixtags ), $text );
1323 $text = $this->doBlockLevels( $text, $linestart );
1325 $this->replaceLinkHolders( $text );
1328 * The input doesn't get language converted if
1330 * b) Content isn't converted
1331 * c) It's a conversion table
1332 * d) it is an interface message (which is in the user language)
1334 if ( !( $this->mOptions
->getDisableContentConversion()
1335 ||
isset( $this->mDoubleUnderscores
['nocontentconvert'] ) )
1337 if ( !$this->mOptions
->getInterfaceMessage() ) {
1338 # The position of the convert() call should not be changed. it
1339 # assumes that the links are all replaced and the only thing left
1340 # is the <nowiki> mark.
1341 $text = $this->getConverterLanguage()->convert( $text );
1345 $text = $this->mStripState
->unstripNoWiki( $text );
1348 Hooks
::run( 'ParserBeforeTidy', [ &$this, &$text ] );
1351 $text = $this->replaceTransparentTags( $text );
1352 $text = $this->mStripState
->unstripGeneral( $text );
1354 $text = Sanitizer
::normalizeCharReferences( $text );
1356 if ( MWTidy
::isEnabled() && $this->mOptions
->getTidy() ) {
1357 $text = MWTidy
::tidy( $text );
1358 $this->mOutput
->addModuleStyles( MWTidy
::getModuleStyles() );
1360 # attempt to sanitize at least some nesting problems
1361 # (bug #2702 and quite a few others)
1363 # ''Something [http://www.cool.com cool''] -->
1364 # <i>Something</i><a href="http://www.cool.com"..><i>cool></i></a>
1365 '/(<([bi])>)(<([bi])>)?([^<]*)(<\/?a[^<]*>)([^<]*)(<\/\\4>)?(<\/\\2>)/' =>
1366 '\\1\\3\\5\\8\\9\\6\\1\\3\\7\\8\\9',
1367 # fix up an anchor inside another anchor, only
1368 # at least for a single single nested link (bug 3695)
1369 '/(<a[^>]+>)([^<]*)(<a[^>]+>[^<]*)<\/a>(.*)<\/a>/' =>
1370 '\\1\\2</a>\\3</a>\\1\\4</a>',
1371 # fix div inside inline elements- doBlockLevels won't wrap a line which
1372 # contains a div, so fix it up here; replace
1373 # div with escaped text
1374 '/(<([aib]) [^>]+>)([^<]*)(<div([^>]*)>)(.*)(<\/div>)([^<]*)(<\/\\2>)/' =>
1375 '\\1\\3<div\\5>\\6</div>\\8\\9',
1376 # remove empty italic or bold tag pairs, some
1377 # introduced by rules above
1378 '/<([bi])><\/\\1>/' => '',
1381 $text = preg_replace(
1382 array_keys( $tidyregs ),
1383 array_values( $tidyregs ),
1388 Hooks
::run( 'ParserAfterTidy', [ &$this, &$text ] );
1395 * Replace special strings like "ISBN xxx" and "RFC xxx" with
1396 * magic external links.
1401 * @param string $text
1405 public function doMagicLinks( $text ) {
1406 $prots = wfUrlProtocolsWithoutProtRel();
1407 $urlChar = self
::EXT_LINK_URL_CLASS
;
1408 $addr = self
::EXT_LINK_ADDR
;
1409 $space = self
::SPACE_NOT_NL
; # non-newline space
1410 $spdash = "(?:-|$space)"; # a dash or a non-newline space
1411 $spaces = "$space++"; # possessive match of 1 or more spaces
1412 $text = preg_replace_callback(
1414 (<a[ \t\r\n>].*?</a>) | # m[1]: Skip link text
1415 (<.*?>) | # m[2]: Skip stuff inside
1416 # HTML elements' . "
1417 (\b(?i:$prots)($addr$urlChar*)) | # m[3]: Free external links
1418 # m[4]: Post-protocol path
1419 \b(?:RFC|PMID) $spaces # m[5]: RFC or PMID, capture number
1421 \bISBN $spaces ( # m[6]: ISBN, capture number
1422 (?: 97[89] $spdash? )? # optional 13-digit ISBN prefix
1423 (?: [0-9] $spdash? ){9} # 9 digits with opt. delimiters
1424 [0-9Xx] # check digit
1426 )!xu", [ &$this, 'magicLinkCallback' ], $text );
1431 * @throws MWException
1433 * @return HTML|string
1435 public function magicLinkCallback( $m ) {
1436 if ( isset( $m[1] ) && $m[1] !== '' ) {
1439 } elseif ( isset( $m[2] ) && $m[2] !== '' ) {
1442 } elseif ( isset( $m[3] ) && $m[3] !== '' ) {
1443 # Free external link
1444 return $this->makeFreeExternalLink( $m[0], strlen( $m[4] ) );
1445 } elseif ( isset( $m[5] ) && $m[5] !== '' ) {
1447 if ( substr( $m[0], 0, 3 ) === 'RFC' ) {
1450 $cssClass = 'mw-magiclink-rfc';
1452 } elseif ( substr( $m[0], 0, 4 ) === 'PMID' ) {
1454 $urlmsg = 'pubmedurl';
1455 $cssClass = 'mw-magiclink-pmid';
1458 throw new MWException( __METHOD__
. ': unrecognised match type "' .
1459 substr( $m[0], 0, 20 ) . '"' );
1461 $url = wfMessage( $urlmsg, $id )->inContentLanguage()->text();
1462 return Linker
::makeExternalLink( $url, "{$keyword} {$id}", true, $cssClass, [], $this->mTitle
);
1463 } elseif ( isset( $m[6] ) && $m[6] !== '' ) {
1466 $space = self
::SPACE_NOT_NL
; # non-newline space
1467 $isbn = preg_replace( "/$space/", ' ', $isbn );
1468 $num = strtr( $isbn, [
1473 return $this->getLinkRenderer()->makeKnownLink(
1474 SpecialPage
::getTitleFor( 'Booksources', $num ),
1477 'class' => 'internal mw-magiclink-isbn',
1478 'title' => false // suppress title attribute
1487 * Make a free external link, given a user-supplied URL
1489 * @param string $url
1490 * @param int $numPostProto
1491 * The number of characters after the protocol.
1492 * @return string HTML
1495 public function makeFreeExternalLink( $url, $numPostProto ) {
1498 # The characters '<' and '>' (which were escaped by
1499 # removeHTMLtags()) should not be included in
1500 # URLs, per RFC 2396.
1501 # Make terminate a URL as well (bug T84937)
1504 '/&(lt|gt|nbsp|#x0*(3[CcEe]|[Aa]0)|#0*(60|62|160));/',
1509 $trail = substr( $url, $m2[0][1] ) . $trail;
1510 $url = substr( $url, 0, $m2[0][1] );
1513 # Move trailing punctuation to $trail
1515 # If there is no left bracket, then consider right brackets fair game too
1516 if ( strpos( $url, '(' ) === false ) {
1520 $urlRev = strrev( $url );
1521 $numSepChars = strspn( $urlRev, $sep );
1522 # Don't break a trailing HTML entity by moving the ; into $trail
1523 # This is in hot code, so use substr_compare to avoid having to
1524 # create a new string object for the comparison
1525 if ( $numSepChars && substr_compare( $url, ";", -$numSepChars, 1 ) === 0 ) {
1526 # more optimization: instead of running preg_match with a $
1527 # anchor, which can be slow, do the match on the reversed
1528 # string starting at the desired offset.
1529 # un-reversed regexp is: /&([a-z]+|#x[\da-f]+|#\d+)$/i
1530 if ( preg_match( '/\G([a-z]+|[\da-f]+x#|\d+#)&/i', $urlRev, $m2, 0, $numSepChars ) ) {
1534 if ( $numSepChars ) {
1535 $trail = substr( $url, -$numSepChars ) . $trail;
1536 $url = substr( $url, 0, -$numSepChars );
1539 # Verify that we still have a real URL after trail removal, and
1540 # not just lone protocol
1541 if ( strlen( $trail ) >= $numPostProto ) {
1542 return $url . $trail;
1545 $url = Sanitizer
::cleanUrl( $url );
1547 # Is this an external image?
1548 $text = $this->maybeMakeExternalImage( $url );
1549 if ( $text === false ) {
1550 # Not an image, make a link
1551 $text = Linker
::makeExternalLink( $url,
1552 $this->getConverterLanguage()->markNoConversion( $url, true ),
1554 $this->getExternalLinkAttribs( $url ), $this->mTitle
);
1555 # Register it in the output object...
1556 # Replace unnecessary URL escape codes with their equivalent characters
1557 $pasteurized = self
::normalizeLinkUrl( $url );
1558 $this->mOutput
->addExternalLink( $pasteurized );
1560 return $text . $trail;
1564 * Parse headers and return html
1568 * @param string $text
1572 public function doHeadings( $text ) {
1573 for ( $i = 6; $i >= 1; --$i ) {
1574 $h = str_repeat( '=', $i );
1575 $text = preg_replace( "/^$h(.+)$h\\s*$/m", "<h$i>\\1</h$i>", $text );
1581 * Replace single quotes with HTML markup
1584 * @param string $text
1586 * @return string The altered text
1588 public function doAllQuotes( $text ) {
1590 $lines = StringUtils
::explode( "\n", $text );
1591 foreach ( $lines as $line ) {
1592 $outtext .= $this->doQuotes( $line ) . "\n";
1594 $outtext = substr( $outtext, 0, -1 );
1599 * Helper function for doAllQuotes()
1601 * @param string $text
1605 public function doQuotes( $text ) {
1606 $arr = preg_split( "/(''+)/", $text, -1, PREG_SPLIT_DELIM_CAPTURE
);
1607 $countarr = count( $arr );
1608 if ( $countarr == 1 ) {
1612 // First, do some preliminary work. This may shift some apostrophes from
1613 // being mark-up to being text. It also counts the number of occurrences
1614 // of bold and italics mark-ups.
1617 for ( $i = 1; $i < $countarr; $i +
= 2 ) {
1618 $thislen = strlen( $arr[$i] );
1619 // If there are ever four apostrophes, assume the first is supposed to
1620 // be text, and the remaining three constitute mark-up for bold text.
1621 // (bug 13227: ''''foo'''' turns into ' ''' foo ' ''')
1622 if ( $thislen == 4 ) {
1623 $arr[$i - 1] .= "'";
1626 } elseif ( $thislen > 5 ) {
1627 // If there are more than 5 apostrophes in a row, assume they're all
1628 // text except for the last 5.
1629 // (bug 13227: ''''''foo'''''' turns into ' ''''' foo ' ''''')
1630 $arr[$i - 1] .= str_repeat( "'", $thislen - 5 );
1634 // Count the number of occurrences of bold and italics mark-ups.
1635 if ( $thislen == 2 ) {
1637 } elseif ( $thislen == 3 ) {
1639 } elseif ( $thislen == 5 ) {
1645 // If there is an odd number of both bold and italics, it is likely
1646 // that one of the bold ones was meant to be an apostrophe followed
1647 // by italics. Which one we cannot know for certain, but it is more
1648 // likely to be one that has a single-letter word before it.
1649 if ( ( $numbold %
2 == 1 ) && ( $numitalics %
2 == 1 ) ) {
1650 $firstsingleletterword = -1;
1651 $firstmultiletterword = -1;
1653 for ( $i = 1; $i < $countarr; $i +
= 2 ) {
1654 if ( strlen( $arr[$i] ) == 3 ) {
1655 $x1 = substr( $arr[$i - 1], -1 );
1656 $x2 = substr( $arr[$i - 1], -2, 1 );
1657 if ( $x1 === ' ' ) {
1658 if ( $firstspace == -1 ) {
1661 } elseif ( $x2 === ' ' ) {
1662 $firstsingleletterword = $i;
1663 // if $firstsingleletterword is set, we don't
1664 // look at the other options, so we can bail early.
1667 if ( $firstmultiletterword == -1 ) {
1668 $firstmultiletterword = $i;
1674 // If there is a single-letter word, use it!
1675 if ( $firstsingleletterword > -1 ) {
1676 $arr[$firstsingleletterword] = "''";
1677 $arr[$firstsingleletterword - 1] .= "'";
1678 } elseif ( $firstmultiletterword > -1 ) {
1679 // If not, but there's a multi-letter word, use that one.
1680 $arr[$firstmultiletterword] = "''";
1681 $arr[$firstmultiletterword - 1] .= "'";
1682 } elseif ( $firstspace > -1 ) {
1683 // ... otherwise use the first one that has neither.
1684 // (notice that it is possible for all three to be -1 if, for example,
1685 // there is only one pentuple-apostrophe in the line)
1686 $arr[$firstspace] = "''";
1687 $arr[$firstspace - 1] .= "'";
1691 // Now let's actually convert our apostrophic mush to HTML!
1696 foreach ( $arr as $r ) {
1697 if ( ( $i %
2 ) == 0 ) {
1698 if ( $state === 'both' ) {
1704 $thislen = strlen( $r );
1705 if ( $thislen == 2 ) {
1706 if ( $state === 'i' ) {
1709 } elseif ( $state === 'bi' ) {
1712 } elseif ( $state === 'ib' ) {
1713 $output .= '</b></i><b>';
1715 } elseif ( $state === 'both' ) {
1716 $output .= '<b><i>' . $buffer . '</i>';
1718 } else { // $state can be 'b' or ''
1722 } elseif ( $thislen == 3 ) {
1723 if ( $state === 'b' ) {
1726 } elseif ( $state === 'bi' ) {
1727 $output .= '</i></b><i>';
1729 } elseif ( $state === 'ib' ) {
1732 } elseif ( $state === 'both' ) {
1733 $output .= '<i><b>' . $buffer . '</b>';
1735 } else { // $state can be 'i' or ''
1739 } elseif ( $thislen == 5 ) {
1740 if ( $state === 'b' ) {
1741 $output .= '</b><i>';
1743 } elseif ( $state === 'i' ) {
1744 $output .= '</i><b>';
1746 } elseif ( $state === 'bi' ) {
1747 $output .= '</i></b>';
1749 } elseif ( $state === 'ib' ) {
1750 $output .= '</b></i>';
1752 } elseif ( $state === 'both' ) {
1753 $output .= '<i><b>' . $buffer . '</b></i>';
1755 } else { // ($state == '')
1763 // Now close all remaining tags. Notice that the order is important.
1764 if ( $state === 'b' ||
$state === 'ib' ) {
1767 if ( $state === 'i' ||
$state === 'bi' ||
$state === 'ib' ) {
1770 if ( $state === 'bi' ) {
1773 // There might be lonely ''''', so make sure we have a buffer
1774 if ( $state === 'both' && $buffer ) {
1775 $output .= '<b><i>' . $buffer . '</i></b>';
1781 * Replace external links (REL)
1783 * Note: this is all very hackish and the order of execution matters a lot.
1784 * Make sure to run tests/parserTests.php if you change this code.
1788 * @param string $text
1790 * @throws MWException
1793 public function replaceExternalLinks( $text ) {
1795 $bits = preg_split( $this->mExtLinkBracketedRegex
, $text, -1, PREG_SPLIT_DELIM_CAPTURE
);
1796 if ( $bits === false ) {
1797 throw new MWException( "PCRE needs to be compiled with "
1798 . "--enable-unicode-properties in order for MediaWiki to function" );
1800 $s = array_shift( $bits );
1803 while ( $i < count( $bits ) ) {
1806 $text = $bits[$i++
];
1807 $trail = $bits[$i++
];
1809 # The characters '<' and '>' (which were escaped by
1810 # removeHTMLtags()) should not be included in
1811 # URLs, per RFC 2396.
1813 if ( preg_match( '/&(lt|gt);/', $url, $m2, PREG_OFFSET_CAPTURE
) ) {
1814 $text = substr( $url, $m2[0][1] ) . ' ' . $text;
1815 $url = substr( $url, 0, $m2[0][1] );
1818 # If the link text is an image URL, replace it with an <img> tag
1819 # This happened by accident in the original parser, but some people used it extensively
1820 $img = $this->maybeMakeExternalImage( $text );
1821 if ( $img !== false ) {
1827 # Set linktype for CSS - if URL==text, link is essentially free
1828 $linktype = ( $text === $url ) ?
'free' : 'text';
1830 # No link text, e.g. [http://domain.tld/some.link]
1831 if ( $text == '' ) {
1833 $langObj = $this->getTargetLanguage();
1834 $text = '[' . $langObj->formatNum( ++
$this->mAutonumber
) . ']';
1835 $linktype = 'autonumber';
1837 # Have link text, e.g. [http://domain.tld/some.link text]s
1839 list( $dtrail, $trail ) = Linker
::splitTrail( $trail );
1842 $text = $this->getConverterLanguage()->markNoConversion( $text );
1844 $url = Sanitizer
::cleanUrl( $url );
1846 # Use the encoded URL
1847 # This means that users can paste URLs directly into the text
1848 # Funny characters like ö aren't valid in URLs anyway
1849 # This was changed in August 2004
1850 $s .= Linker
::makeExternalLink( $url, $text, false, $linktype,
1851 $this->getExternalLinkAttribs( $url ), $this->mTitle
) . $dtrail . $trail;
1853 # Register link in the output object.
1854 # Replace unnecessary URL escape codes with the referenced character
1855 # This prevents spammers from hiding links from the filters
1856 $pasteurized = self
::normalizeLinkUrl( $url );
1857 $this->mOutput
->addExternalLink( $pasteurized );
1864 * Get the rel attribute for a particular external link.
1867 * @param string|bool $url Optional URL, to extract the domain from for rel =>
1868 * nofollow if appropriate
1869 * @param Title $title Optional Title, for wgNoFollowNsExceptions lookups
1870 * @return string|null Rel attribute for $url
1872 public static function getExternalLinkRel( $url = false, $title = null ) {
1873 global $wgNoFollowLinks, $wgNoFollowNsExceptions, $wgNoFollowDomainExceptions;
1874 $ns = $title ?
$title->getNamespace() : false;
1875 if ( $wgNoFollowLinks && !in_array( $ns, $wgNoFollowNsExceptions )
1876 && !wfMatchesDomainList( $url, $wgNoFollowDomainExceptions )
1884 * Get an associative array of additional HTML attributes appropriate for a
1885 * particular external link. This currently may include rel => nofollow
1886 * (depending on configuration, namespace, and the URL's domain) and/or a
1887 * target attribute (depending on configuration).
1889 * @param string $url URL to extract the domain from for rel =>
1890 * nofollow if appropriate
1891 * @return array Associative array of HTML attributes
1893 public function getExternalLinkAttribs( $url ) {
1895 $rel = self
::getExternalLinkRel( $url, $this->mTitle
);
1897 $target = $this->mOptions
->getExternalLinkTarget();
1899 $attribs['target'] = $target;
1900 if ( !in_array( $target, [ '_self', '_parent', '_top' ] ) ) {
1901 // T133507. New windows can navigate parent cross-origin.
1902 // Including noreferrer due to lacking browser
1903 // support of noopener. Eventually noreferrer should be removed.
1904 if ( $rel !== '' ) {
1907 $rel .= 'noreferrer noopener';
1910 $attribs['rel'] = $rel;
1915 * Replace unusual escape codes in a URL with their equivalent characters
1917 * @deprecated since 1.24, use normalizeLinkUrl
1918 * @param string $url
1921 public static function replaceUnusualEscapes( $url ) {
1922 wfDeprecated( __METHOD__
, '1.24' );
1923 return self
::normalizeLinkUrl( $url );
1927 * Replace unusual escape codes in a URL with their equivalent characters
1929 * This generally follows the syntax defined in RFC 3986, with special
1930 * consideration for HTTP query strings.
1932 * @param string $url
1935 public static function normalizeLinkUrl( $url ) {
1936 # First, make sure unsafe characters are encoded
1937 $url = preg_replace_callback( '/[\x00-\x20"<>\[\\\\\]^`{|}\x7F-\xFF]/',
1939 return rawurlencode( $m[0] );
1945 $end = strlen( $url );
1947 # Fragment part - 'fragment'
1948 $start = strpos( $url, '#' );
1949 if ( $start !== false && $start < $end ) {
1950 $ret = self
::normalizeUrlComponent(
1951 substr( $url, $start, $end - $start ), '"#%<>[\]^`{|}' ) . $ret;
1955 # Query part - 'query' minus &=+;
1956 $start = strpos( $url, '?' );
1957 if ( $start !== false && $start < $end ) {
1958 $ret = self
::normalizeUrlComponent(
1959 substr( $url, $start, $end - $start ), '"#%<>[\]^`{|}&=+;' ) . $ret;
1963 # Scheme and path part - 'pchar'
1964 # (we assume no userinfo or encoded colons in the host)
1965 $ret = self
::normalizeUrlComponent(
1966 substr( $url, 0, $end ), '"#%<>[\]^`{|}/?' ) . $ret;
1971 private static function normalizeUrlComponent( $component, $unsafe ) {
1972 $callback = function ( $matches ) use ( $unsafe ) {
1973 $char = urldecode( $matches[0] );
1974 $ord = ord( $char );
1975 if ( $ord > 32 && $ord < 127 && strpos( $unsafe, $char ) === false ) {
1979 # Leave it escaped, but use uppercase for a-f
1980 return strtoupper( $matches[0] );
1983 return preg_replace_callback( '/%[0-9A-Fa-f]{2}/', $callback, $component );
1987 * make an image if it's allowed, either through the global
1988 * option, through the exception, or through the on-wiki whitelist
1990 * @param string $url
1994 private function maybeMakeExternalImage( $url ) {
1995 $imagesfrom = $this->mOptions
->getAllowExternalImagesFrom();
1996 $imagesexception = !empty( $imagesfrom );
1998 # $imagesfrom could be either a single string or an array of strings, parse out the latter
1999 if ( $imagesexception && is_array( $imagesfrom ) ) {
2000 $imagematch = false;
2001 foreach ( $imagesfrom as $match ) {
2002 if ( strpos( $url, $match ) === 0 ) {
2007 } elseif ( $imagesexception ) {
2008 $imagematch = ( strpos( $url, $imagesfrom ) === 0 );
2010 $imagematch = false;
2013 if ( $this->mOptions
->getAllowExternalImages()
2014 ||
( $imagesexception && $imagematch )
2016 if ( preg_match( self
::EXT_IMAGE_REGEX
, $url ) ) {
2018 $text = Linker
::makeExternalImage( $url );
2021 if ( !$text && $this->mOptions
->getEnableImageWhitelist()
2022 && preg_match( self
::EXT_IMAGE_REGEX
, $url )
2024 $whitelist = explode(
2026 wfMessage( 'external_image_whitelist' )->inContentLanguage()->text()
2029 foreach ( $whitelist as $entry ) {
2030 # Sanitize the regex fragment, make it case-insensitive, ignore blank entries/comments
2031 if ( strpos( $entry, '#' ) === 0 ||
$entry === '' ) {
2034 if ( preg_match( '/' . str_replace( '/', '\\/', $entry ) . '/i', $url ) ) {
2035 # Image matches a whitelist entry
2036 $text = Linker
::makeExternalImage( $url );
2045 * Process [[ ]] wikilinks
2049 * @return string Processed text
2053 public function replaceInternalLinks( $s ) {
2054 $this->mLinkHolders
->merge( $this->replaceInternalLinks2( $s ) );
2059 * Process [[ ]] wikilinks (RIL)
2061 * @throws MWException
2062 * @return LinkHolderArray
2066 public function replaceInternalLinks2( &$s ) {
2067 global $wgExtraInterlanguageLinkPrefixes;
2069 static $tc = false, $e1, $e1_img;
2070 # the % is needed to support urlencoded titles as well
2072 $tc = Title
::legalChars() . '#%';
2073 # Match a link having the form [[namespace:link|alternate]]trail
2074 $e1 = "/^([{$tc}]+)(?:\\|(.+?))?]](.*)\$/sD";
2075 # Match cases where there is no "]]", which might still be images
2076 $e1_img = "/^([{$tc}]+)\\|(.*)\$/sD";
2079 $holders = new LinkHolderArray( $this );
2081 # split the entire text string on occurrences of [[
2082 $a = StringUtils
::explode( '[[', ' ' . $s );
2083 # get the first element (all text up to first [[), and remove the space we added
2086 $line = $a->current(); # Workaround for broken ArrayIterator::next() that returns "void"
2087 $s = substr( $s, 1 );
2089 $useLinkPrefixExtension = $this->getTargetLanguage()->linkPrefixExtension();
2091 if ( $useLinkPrefixExtension ) {
2092 # Match the end of a line for a word that's not followed by whitespace,
2093 # e.g. in the case of 'The Arab al[[Razi]]', 'al' will be matched
2095 $charset = $wgContLang->linkPrefixCharset();
2096 $e2 = "/^((?>.*[^$charset]|))(.+)$/sDu";
2099 if ( is_null( $this->mTitle
) ) {
2100 throw new MWException( __METHOD__
. ": \$this->mTitle is null\n" );
2102 $nottalk = !$this->mTitle
->isTalkPage();
2104 if ( $useLinkPrefixExtension ) {
2106 if ( preg_match( $e2, $s, $m ) ) {
2107 $first_prefix = $m[2];
2109 $first_prefix = false;
2115 $useSubpages = $this->areSubpagesAllowed();
2117 // @codingStandardsIgnoreStart Squiz.WhiteSpace.SemicolonSpacing.Incorrect
2118 # Loop for each link
2119 for ( ; $line !== false && $line !== null; $a->next(), $line = $a->current() ) {
2120 // @codingStandardsIgnoreEnd
2122 # Check for excessive memory usage
2123 if ( $holders->isBig() ) {
2125 # Do the existence check, replace the link holders and clear the array
2126 $holders->replace( $s );
2130 if ( $useLinkPrefixExtension ) {
2131 if ( preg_match( $e2, $s, $m ) ) {
2138 if ( $first_prefix ) {
2139 $prefix = $first_prefix;
2140 $first_prefix = false;
2144 $might_be_img = false;
2146 if ( preg_match( $e1, $line, $m ) ) { # page with normal text or alt
2148 # If we get a ] at the beginning of $m[3] that means we have a link that's something like:
2149 # [[Image:Foo.jpg|[http://example.com desc]]] <- having three ] in a row fucks up,
2150 # the real problem is with the $e1 regex
2152 # Still some problems for cases where the ] is meant to be outside punctuation,
2153 # and no image is in sight. See bug 2095.
2155 && substr( $m[3], 0, 1 ) === ']'
2156 && strpos( $text, '[' ) !== false
2158 $text .= ']'; # so that replaceExternalLinks($text) works later
2159 $m[3] = substr( $m[3], 1 );
2161 # fix up urlencoded title texts
2162 if ( strpos( $m[1], '%' ) !== false ) {
2163 # Should anchors '#' also be rejected?
2164 $m[1] = str_replace( [ '<', '>' ], [ '<', '>' ], rawurldecode( $m[1] ) );
2167 } elseif ( preg_match( $e1_img, $line, $m ) ) {
2168 # Invalid, but might be an image with a link in its caption
2169 $might_be_img = true;
2171 if ( strpos( $m[1], '%' ) !== false ) {
2172 $m[1] = rawurldecode( $m[1] );
2175 } else { # Invalid form; output directly
2176 $s .= $prefix . '[[' . $line;
2182 # Don't allow internal links to pages containing
2183 # PROTO: where PROTO is a valid URL protocol; these
2184 # should be external links.
2185 if ( preg_match( '/^(?i:' . $this->mUrlProtocols
. ')/', $origLink ) ) {
2186 $s .= $prefix . '[[' . $line;
2190 # Make subpage if necessary
2191 if ( $useSubpages ) {
2192 $link = $this->maybeDoSubpageLink( $origLink, $text );
2197 $noforce = ( substr( $origLink, 0, 1 ) !== ':' );
2199 # Strip off leading ':'
2200 $link = substr( $link, 1 );
2203 $unstrip = $this->mStripState
->unstripNoWiki( $link );
2204 $nt = is_string( $unstrip ) ? Title
::newFromText( $unstrip ) : null;
2205 if ( $nt === null ) {
2206 $s .= $prefix . '[[' . $line;
2210 $ns = $nt->getNamespace();
2211 $iw = $nt->getInterwiki();
2213 if ( $might_be_img ) { # if this is actually an invalid link
2214 if ( $ns == NS_FILE
&& $noforce ) { # but might be an image
2217 # look at the next 'line' to see if we can close it there
2219 $next_line = $a->current();
2220 if ( $next_line === false ||
$next_line === null ) {
2223 $m = explode( ']]', $next_line, 3 );
2224 if ( count( $m ) == 3 ) {
2225 # the first ]] closes the inner link, the second the image
2227 $text .= "[[{$m[0]}]]{$m[1]}";
2230 } elseif ( count( $m ) == 2 ) {
2231 # if there's exactly one ]] that's fine, we'll keep looking
2232 $text .= "[[{$m[0]}]]{$m[1]}";
2234 # if $next_line is invalid too, we need look no further
2235 $text .= '[[' . $next_line;
2240 # we couldn't find the end of this imageLink, so output it raw
2241 # but don't ignore what might be perfectly normal links in the text we've examined
2242 $holders->merge( $this->replaceInternalLinks2( $text ) );
2243 $s .= "{$prefix}[[$link|$text";
2244 # note: no $trail, because without an end, there *is* no trail
2247 } else { # it's not an image, so output it raw
2248 $s .= "{$prefix}[[$link|$text";
2249 # note: no $trail, because without an end, there *is* no trail
2254 $wasblank = ( $text == '' );
2258 # Bug 4598 madness. Handle the quotes only if they come from the alternate part
2259 # [[Lista d''e paise d''o munno]] -> <a href="...">Lista d''e paise d''o munno</a>
2260 # [[Criticism of Harry Potter|Criticism of ''Harry Potter'']]
2261 # -> <a href="Criticism of Harry Potter">Criticism of <i>Harry Potter</i></a>
2262 $text = $this->doQuotes( $text );
2265 # Link not escaped by : , create the various objects
2266 if ( $noforce && !$nt->wasLocalInterwiki() ) {
2269 $iw && $this->mOptions
->getInterwikiMagic() && $nottalk && (
2270 Language
::fetchLanguageName( $iw, null, 'mw' ) ||
2271 in_array( $iw, $wgExtraInterlanguageLinkPrefixes )
2274 # Bug 24502: filter duplicates
2275 if ( !isset( $this->mLangLinkLanguages
[$iw] ) ) {
2276 $this->mLangLinkLanguages
[$iw] = true;
2277 $this->mOutput
->addLanguageLink( $nt->getFullText() );
2280 $s = rtrim( $s . $prefix );
2281 $s .= trim( $trail, "\n" ) == '' ?
'': $prefix . $trail;
2285 if ( $ns == NS_FILE
) {
2286 if ( !wfIsBadImage( $nt->getDBkey(), $this->mTitle
) ) {
2288 # if no parameters were passed, $text
2289 # becomes something like "File:Foo.png",
2290 # which we don't want to pass on to the
2294 # recursively parse links inside the image caption
2295 # actually, this will parse them in any other parameters, too,
2296 # but it might be hard to fix that, and it doesn't matter ATM
2297 $text = $this->replaceExternalLinks( $text );
2298 $holders->merge( $this->replaceInternalLinks2( $text ) );
2300 # cloak any absolute URLs inside the image markup, so replaceExternalLinks() won't touch them
2301 $s .= $prefix . $this->armorLinks(
2302 $this->makeImage( $nt, $text, $holders ) ) . $trail;
2305 } elseif ( $ns == NS_CATEGORY
) {
2306 $s = rtrim( $s . "\n" ); # bug 87
2309 $sortkey = $this->getDefaultSort();
2313 $sortkey = Sanitizer
::decodeCharReferences( $sortkey );
2314 $sortkey = str_replace( "\n", '', $sortkey );
2315 $sortkey = $this->getConverterLanguage()->convertCategoryKey( $sortkey );
2316 $this->mOutput
->addCategory( $nt->getDBkey(), $sortkey );
2319 * Strip the whitespace Category links produce, see bug 87
2321 $s .= trim( $prefix . $trail, "\n" ) == '' ?
'' : $prefix . $trail;
2327 # Self-link checking. For some languages, variants of the title are checked in
2328 # LinkHolderArray::doVariants() to allow batching the existence checks necessary
2329 # for linking to a different variant.
2330 if ( $ns != NS_SPECIAL
&& $nt->equals( $this->mTitle
) && !$nt->hasFragment() ) {
2331 $s .= $prefix . Linker
::makeSelfLinkObj( $nt, $text, '', $trail );
2335 # NS_MEDIA is a pseudo-namespace for linking directly to a file
2336 # @todo FIXME: Should do batch file existence checks, see comment below
2337 if ( $ns == NS_MEDIA
) {
2338 # Give extensions a chance to select the file revision for us
2341 Hooks
::run( 'BeforeParserFetchFileAndTitle',
2342 [ $this, $nt, &$options, &$descQuery ] );
2343 # Fetch and register the file (file title may be different via hooks)
2344 list( $file, $nt ) = $this->fetchFileAndTitle( $nt, $options );
2345 # Cloak with NOPARSE to avoid replacement in replaceExternalLinks
2346 $s .= $prefix . $this->armorLinks(
2347 Linker
::makeMediaLinkFile( $nt, $file, $text ) ) . $trail;
2351 # Some titles, such as valid special pages or files in foreign repos, should
2352 # be shown as bluelinks even though they're not included in the page table
2353 # @todo FIXME: isAlwaysKnown() can be expensive for file links; we should really do
2354 # batch file existence checks for NS_FILE and NS_MEDIA
2355 if ( $iw == '' && $nt->isAlwaysKnown() ) {
2356 $this->mOutput
->addLink( $nt );
2357 $s .= $this->makeKnownLinkHolder( $nt, $text, $trail, $prefix );
2359 # Links will be added to the output link list after checking
2360 $s .= $holders->makeHolder( $nt, $text, [], $trail, $prefix );
2367 * Render a forced-blue link inline; protect against double expansion of
2368 * URLs if we're in a mode that prepends full URL prefixes to internal links.
2369 * Since this little disaster has to split off the trail text to avoid
2370 * breaking URLs in the following text without breaking trails on the
2371 * wiki links, it's been made into a horrible function.
2374 * @param string $text
2375 * @param string $trail
2376 * @param string $prefix
2377 * @return string HTML-wikitext mix oh yuck
2379 protected function makeKnownLinkHolder( $nt, $text = '', $trail = '', $prefix = '' ) {
2380 list( $inside, $trail ) = Linker
::splitTrail( $trail );
2382 if ( $text == '' ) {
2383 $text = htmlspecialchars( $nt->getPrefixedText() );
2386 $link = $this->getLinkRenderer()->makeKnownLink(
2387 $nt, new HtmlArmor( "$prefix$text$inside" )
2390 return $this->armorLinks( $link ) . $trail;
2394 * Insert a NOPARSE hacky thing into any inline links in a chunk that's
2395 * going to go through further parsing steps before inline URL expansion.
2397 * Not needed quite as much as it used to be since free links are a bit
2398 * more sensible these days. But bracketed links are still an issue.
2400 * @param string $text More-or-less HTML
2401 * @return string Less-or-more HTML with NOPARSE bits
2403 public function armorLinks( $text ) {
2404 return preg_replace( '/\b((?i)' . $this->mUrlProtocols
. ')/',
2405 self
::MARKER_PREFIX
. "NOPARSE$1", $text );
2409 * Return true if subpage links should be expanded on this page.
2412 public function areSubpagesAllowed() {
2413 # Some namespaces don't allow subpages
2414 return MWNamespace
::hasSubpages( $this->mTitle
->getNamespace() );
2418 * Handle link to subpage if necessary
2420 * @param string $target The source of the link
2421 * @param string &$text The link text, modified as necessary
2422 * @return string The full name of the link
2425 public function maybeDoSubpageLink( $target, &$text ) {
2426 return Linker
::normalizeSubpageLink( $this->mTitle
, $target, $text );
2430 * Make lists from lines starting with ':', '*', '#', etc. (DBL)
2432 * @param string $text
2433 * @param bool $linestart Whether or not this is at the start of a line.
2435 * @return string The lists rendered as HTML
2437 public function doBlockLevels( $text, $linestart ) {
2438 return BlockLevelPass
::doBlockLevels( $text, $linestart );
2442 * Return value of a magic variable (like PAGENAME)
2447 * @param bool|PPFrame $frame
2449 * @throws MWException
2452 public function getVariableValue( $index, $frame = false ) {
2453 global $wgContLang, $wgSitename, $wgServer, $wgServerName;
2454 global $wgArticlePath, $wgScriptPath, $wgStylePath;
2456 if ( is_null( $this->mTitle
) ) {
2457 // If no title set, bad things are going to happen
2458 // later. Title should always be set since this
2459 // should only be called in the middle of a parse
2460 // operation (but the unit-tests do funky stuff)
2461 throw new MWException( __METHOD__
. ' Should only be '
2462 . ' called while parsing (no title set)' );
2466 * Some of these require message or data lookups and can be
2467 * expensive to check many times.
2469 if ( Hooks
::run( 'ParserGetVariableValueVarCache', [ &$this, &$this->mVarCache
] ) ) {
2470 if ( isset( $this->mVarCache
[$index] ) ) {
2471 return $this->mVarCache
[$index];
2475 $ts = wfTimestamp( TS_UNIX
, $this->mOptions
->getTimestamp() );
2476 Hooks
::run( 'ParserGetVariableValueTs', [ &$this, &$ts ] );
2478 $pageLang = $this->getFunctionLang();
2484 case 'currentmonth':
2485 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'm' ) );
2487 case 'currentmonth1':
2488 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2490 case 'currentmonthname':
2491 $value = $pageLang->getMonthName( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2493 case 'currentmonthnamegen':
2494 $value = $pageLang->getMonthNameGen( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2496 case 'currentmonthabbrev':
2497 $value = $pageLang->getMonthAbbreviation( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2500 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'j' ) );
2503 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'd' ) );
2506 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'm' ) );
2509 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2511 case 'localmonthname':
2512 $value = $pageLang->getMonthName( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2514 case 'localmonthnamegen':
2515 $value = $pageLang->getMonthNameGen( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2517 case 'localmonthabbrev':
2518 $value = $pageLang->getMonthAbbreviation( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2521 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'j' ) );
2524 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'd' ) );
2527 $value = wfEscapeWikiText( $this->mTitle
->getText() );
2530 $value = wfEscapeWikiText( $this->mTitle
->getPartialURL() );
2532 case 'fullpagename':
2533 $value = wfEscapeWikiText( $this->mTitle
->getPrefixedText() );
2535 case 'fullpagenamee':
2536 $value = wfEscapeWikiText( $this->mTitle
->getPrefixedURL() );
2539 $value = wfEscapeWikiText( $this->mTitle
->getSubpageText() );
2541 case 'subpagenamee':
2542 $value = wfEscapeWikiText( $this->mTitle
->getSubpageUrlForm() );
2544 case 'rootpagename':
2545 $value = wfEscapeWikiText( $this->mTitle
->getRootText() );
2547 case 'rootpagenamee':
2548 $value = wfEscapeWikiText( wfUrlencode( str_replace(
2551 $this->mTitle
->getRootText()
2554 case 'basepagename':
2555 $value = wfEscapeWikiText( $this->mTitle
->getBaseText() );
2557 case 'basepagenamee':
2558 $value = wfEscapeWikiText( wfUrlencode( str_replace(
2561 $this->mTitle
->getBaseText()
2564 case 'talkpagename':
2565 if ( $this->mTitle
->canTalk() ) {
2566 $talkPage = $this->mTitle
->getTalkPage();
2567 $value = wfEscapeWikiText( $talkPage->getPrefixedText() );
2572 case 'talkpagenamee':
2573 if ( $this->mTitle
->canTalk() ) {
2574 $talkPage = $this->mTitle
->getTalkPage();
2575 $value = wfEscapeWikiText( $talkPage->getPrefixedURL() );
2580 case 'subjectpagename':
2581 $subjPage = $this->mTitle
->getSubjectPage();
2582 $value = wfEscapeWikiText( $subjPage->getPrefixedText() );
2584 case 'subjectpagenamee':
2585 $subjPage = $this->mTitle
->getSubjectPage();
2586 $value = wfEscapeWikiText( $subjPage->getPrefixedURL() );
2588 case 'pageid': // requested in bug 23427
2589 $pageid = $this->getTitle()->getArticleID();
2590 if ( $pageid == 0 ) {
2591 # 0 means the page doesn't exist in the database,
2592 # which means the user is previewing a new page.
2593 # The vary-revision flag must be set, because the magic word
2594 # will have a different value once the page is saved.
2595 $this->mOutput
->setFlag( 'vary-revision' );
2596 wfDebug( __METHOD__
. ": {{PAGEID}} used in a new page, setting vary-revision...\n" );
2598 $value = $pageid ?
$pageid : null;
2601 # Let the edit saving system know we should parse the page
2602 # *after* a revision ID has been assigned.
2603 $this->mOutput
->setFlag( 'vary-revision' );
2604 wfDebug( __METHOD__
. ": {{REVISIONID}} used, setting vary-revision...\n" );
2605 $value = $this->mRevisionId
;
2608 # Let the edit saving system know we should parse the page
2609 # *after* a revision ID has been assigned. This is for null edits.
2610 $this->mOutput
->setFlag( 'vary-revision' );
2611 wfDebug( __METHOD__
. ": {{REVISIONDAY}} used, setting vary-revision...\n" );
2612 $value = intval( substr( $this->getRevisionTimestamp(), 6, 2 ) );
2614 case 'revisionday2':
2615 # Let the edit saving system know we should parse the page
2616 # *after* a revision ID has been assigned. This is for null edits.
2617 $this->mOutput
->setFlag( 'vary-revision' );
2618 wfDebug( __METHOD__
. ": {{REVISIONDAY2}} used, setting vary-revision...\n" );
2619 $value = substr( $this->getRevisionTimestamp(), 6, 2 );
2621 case 'revisionmonth':
2622 # Let the edit saving system know we should parse the page
2623 # *after* a revision ID has been assigned. This is for null edits.
2624 $this->mOutput
->setFlag( 'vary-revision' );
2625 wfDebug( __METHOD__
. ": {{REVISIONMONTH}} used, setting vary-revision...\n" );
2626 $value = substr( $this->getRevisionTimestamp(), 4, 2 );
2628 case 'revisionmonth1':
2629 # Let the edit saving system know we should parse the page
2630 # *after* a revision ID has been assigned. This is for null edits.
2631 $this->mOutput
->setFlag( 'vary-revision' );
2632 wfDebug( __METHOD__
. ": {{REVISIONMONTH1}} used, setting vary-revision...\n" );
2633 $value = intval( substr( $this->getRevisionTimestamp(), 4, 2 ) );
2635 case 'revisionyear':
2636 # Let the edit saving system know we should parse the page
2637 # *after* a revision ID has been assigned. This is for null edits.
2638 $this->mOutput
->setFlag( 'vary-revision' );
2639 wfDebug( __METHOD__
. ": {{REVISIONYEAR}} used, setting vary-revision...\n" );
2640 $value = substr( $this->getRevisionTimestamp(), 0, 4 );
2642 case 'revisiontimestamp':
2643 # Let the edit saving system know we should parse the page
2644 # *after* a revision ID has been assigned. This is for null edits.
2645 $this->mOutput
->setFlag( 'vary-revision' );
2646 wfDebug( __METHOD__
. ": {{REVISIONTIMESTAMP}} used, setting vary-revision...\n" );
2647 $value = $this->getRevisionTimestamp();
2649 case 'revisionuser':
2650 # Let the edit saving system know we should parse the page
2651 # *after* a revision ID has been assigned for null edits.
2652 $this->mOutput
->setFlag( 'vary-user' );
2653 wfDebug( __METHOD__
. ": {{REVISIONUSER}} used, setting vary-user...\n" );
2654 $value = $this->getRevisionUser();
2656 case 'revisionsize':
2657 $value = $this->getRevisionSize();
2660 $value = str_replace( '_', ' ', $wgContLang->getNsText( $this->mTitle
->getNamespace() ) );
2663 $value = wfUrlencode( $wgContLang->getNsText( $this->mTitle
->getNamespace() ) );
2665 case 'namespacenumber':
2666 $value = $this->mTitle
->getNamespace();
2669 $value = $this->mTitle
->canTalk()
2670 ?
str_replace( '_', ' ', $this->mTitle
->getTalkNsText() )
2674 $value = $this->mTitle
->canTalk() ?
wfUrlencode( $this->mTitle
->getTalkNsText() ) : '';
2676 case 'subjectspace':
2677 $value = str_replace( '_', ' ', $this->mTitle
->getSubjectNsText() );
2679 case 'subjectspacee':
2680 $value = ( wfUrlencode( $this->mTitle
->getSubjectNsText() ) );
2682 case 'currentdayname':
2683 $value = $pageLang->getWeekdayName( (int)MWTimestamp
::getInstance( $ts )->format( 'w' ) +
1 );
2686 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'Y' ), true );
2689 $value = $pageLang->time( wfTimestamp( TS_MW
, $ts ), false, false );
2692 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'H' ), true );
2695 # @bug 4594 PHP5 has it zero padded, PHP4 does not, cast to
2696 # int to remove the padding
2697 $value = $pageLang->formatNum( (int)MWTimestamp
::getInstance( $ts )->format( 'W' ) );
2700 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'w' ) );
2702 case 'localdayname':
2703 $value = $pageLang->getWeekdayName(
2704 (int)MWTimestamp
::getLocalInstance( $ts )->format( 'w' ) +
1
2708 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'Y' ), true );
2711 $value = $pageLang->time(
2712 MWTimestamp
::getLocalInstance( $ts )->format( 'YmdHis' ),
2718 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'H' ), true );
2721 # @bug 4594 PHP5 has it zero padded, PHP4 does not, cast to
2722 # int to remove the padding
2723 $value = $pageLang->formatNum( (int)MWTimestamp
::getLocalInstance( $ts )->format( 'W' ) );
2726 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'w' ) );
2728 case 'numberofarticles':
2729 $value = $pageLang->formatNum( SiteStats
::articles() );
2731 case 'numberoffiles':
2732 $value = $pageLang->formatNum( SiteStats
::images() );
2734 case 'numberofusers':
2735 $value = $pageLang->formatNum( SiteStats
::users() );
2737 case 'numberofactiveusers':
2738 $value = $pageLang->formatNum( SiteStats
::activeUsers() );
2740 case 'numberofpages':
2741 $value = $pageLang->formatNum( SiteStats
::pages() );
2743 case 'numberofadmins':
2744 $value = $pageLang->formatNum( SiteStats
::numberingroup( 'sysop' ) );
2746 case 'numberofedits':
2747 $value = $pageLang->formatNum( SiteStats
::edits() );
2749 case 'currenttimestamp':
2750 $value = wfTimestamp( TS_MW
, $ts );
2752 case 'localtimestamp':
2753 $value = MWTimestamp
::getLocalInstance( $ts )->format( 'YmdHis' );
2755 case 'currentversion':
2756 $value = SpecialVersion
::getVersion();
2759 return $wgArticlePath;
2765 return $wgServerName;
2767 return $wgScriptPath;
2769 return $wgStylePath;
2770 case 'directionmark':
2771 return $pageLang->getDirMark();
2772 case 'contentlanguage':
2773 global $wgLanguageCode;
2774 return $wgLanguageCode;
2775 case 'cascadingsources':
2776 $value = CoreParserFunctions
::cascadingsources( $this );
2781 'ParserGetVariableValueSwitch',
2782 [ &$this, &$this->mVarCache
, &$index, &$ret, &$frame ]
2789 $this->mVarCache
[$index] = $value;
2796 * initialise the magic variables (like CURRENTMONTHNAME) and substitution modifiers
2800 public function initialiseVariables() {
2801 $variableIDs = MagicWord
::getVariableIDs();
2802 $substIDs = MagicWord
::getSubstIDs();
2804 $this->mVariables
= new MagicWordArray( $variableIDs );
2805 $this->mSubstWords
= new MagicWordArray( $substIDs );
2809 * Preprocess some wikitext and return the document tree.
2810 * This is the ghost of replace_variables().
2812 * @param string $text The text to parse
2813 * @param int $flags Bitwise combination of:
2814 * - self::PTD_FOR_INCLUSION: Handle "<noinclude>" and "<includeonly>" as if the text is being
2815 * included. Default is to assume a direct page view.
2817 * The generated DOM tree must depend only on the input text and the flags.
2818 * The DOM tree must be the same in OT_HTML and OT_WIKI mode, to avoid a regression of bug 4899.
2820 * Any flag added to the $flags parameter here, or any other parameter liable to cause a
2821 * change in the DOM tree for a given text, must be passed through the section identifier
2822 * in the section edit link and thus back to extractSections().
2824 * The output of this function is currently only cached in process memory, but a persistent
2825 * cache may be implemented at a later date which takes further advantage of these strict
2826 * dependency requirements.
2830 public function preprocessToDom( $text, $flags = 0 ) {
2831 $dom = $this->getPreprocessor()->preprocessToObj( $text, $flags );
2836 * Return a three-element array: leading whitespace, string contents, trailing whitespace
2842 public static function splitWhitespace( $s ) {
2843 $ltrimmed = ltrim( $s );
2844 $w1 = substr( $s, 0, strlen( $s ) - strlen( $ltrimmed ) );
2845 $trimmed = rtrim( $ltrimmed );
2846 $diff = strlen( $ltrimmed ) - strlen( $trimmed );
2848 $w2 = substr( $ltrimmed, -$diff );
2852 return [ $w1, $trimmed, $w2 ];
2856 * Replace magic variables, templates, and template arguments
2857 * with the appropriate text. Templates are substituted recursively,
2858 * taking care to avoid infinite loops.
2860 * Note that the substitution depends on value of $mOutputType:
2861 * self::OT_WIKI: only {{subst:}} templates
2862 * self::OT_PREPROCESS: templates but not extension tags
2863 * self::OT_HTML: all templates and extension tags
2865 * @param string $text The text to transform
2866 * @param bool|PPFrame $frame Object describing the arguments passed to the
2867 * template. Arguments may also be provided as an associative array, as
2868 * was the usual case before MW1.12. Providing arguments this way may be
2869 * useful for extensions wishing to perform variable replacement
2871 * @param bool $argsOnly Only do argument (triple-brace) expansion, not
2872 * double-brace expansion.
2875 public function replaceVariables( $text, $frame = false, $argsOnly = false ) {
2876 # Is there any text? Also, Prevent too big inclusions!
2877 $textSize = strlen( $text );
2878 if ( $textSize < 1 ||
$textSize > $this->mOptions
->getMaxIncludeSize() ) {
2882 if ( $frame === false ) {
2883 $frame = $this->getPreprocessor()->newFrame();
2884 } elseif ( !( $frame instanceof PPFrame
) ) {
2885 wfDebug( __METHOD__
. " called using plain parameters instead of "
2886 . "a PPFrame instance. Creating custom frame.\n" );
2887 $frame = $this->getPreprocessor()->newCustomFrame( $frame );
2890 $dom = $this->preprocessToDom( $text );
2891 $flags = $argsOnly ? PPFrame
::NO_TEMPLATES
: 0;
2892 $text = $frame->expand( $dom, $flags );
2898 * Clean up argument array - refactored in 1.9 so parserfunctions can use it, too.
2900 * @param array $args
2904 public static function createAssocArgs( $args ) {
2907 foreach ( $args as $arg ) {
2908 $eqpos = strpos( $arg, '=' );
2909 if ( $eqpos === false ) {
2910 $assocArgs[$index++
] = $arg;
2912 $name = trim( substr( $arg, 0, $eqpos ) );
2913 $value = trim( substr( $arg, $eqpos +
1 ) );
2914 if ( $value === false ) {
2917 if ( $name !== false ) {
2918 $assocArgs[$name] = $value;
2927 * Warn the user when a parser limitation is reached
2928 * Will warn at most once the user per limitation type
2930 * The results are shown during preview and run through the Parser (See EditPage.php)
2932 * @param string $limitationType Should be one of:
2933 * 'expensive-parserfunction' (corresponding messages:
2934 * 'expensive-parserfunction-warning',
2935 * 'expensive-parserfunction-category')
2936 * 'post-expand-template-argument' (corresponding messages:
2937 * 'post-expand-template-argument-warning',
2938 * 'post-expand-template-argument-category')
2939 * 'post-expand-template-inclusion' (corresponding messages:
2940 * 'post-expand-template-inclusion-warning',
2941 * 'post-expand-template-inclusion-category')
2942 * 'node-count-exceeded' (corresponding messages:
2943 * 'node-count-exceeded-warning',
2944 * 'node-count-exceeded-category')
2945 * 'expansion-depth-exceeded' (corresponding messages:
2946 * 'expansion-depth-exceeded-warning',
2947 * 'expansion-depth-exceeded-category')
2948 * @param string|int|null $current Current value
2949 * @param string|int|null $max Maximum allowed, when an explicit limit has been
2950 * exceeded, provide the values (optional)
2952 public function limitationWarn( $limitationType, $current = '', $max = '' ) {
2953 # does no harm if $current and $max are present but are unnecessary for the message
2954 # Not doing ->inLanguage( $this->mOptions->getUserLangObj() ), since this is shown
2955 # only during preview, and that would split the parser cache unnecessarily.
2956 $warning = wfMessage( "$limitationType-warning" )->numParams( $current, $max )
2958 $this->mOutput
->addWarning( $warning );
2959 $this->addTrackingCategory( "$limitationType-category" );
2963 * Return the text of a template, after recursively
2964 * replacing any variables or templates within the template.
2966 * @param array $piece The parts of the template
2967 * $piece['title']: the title, i.e. the part before the |
2968 * $piece['parts']: the parameter array
2969 * $piece['lineStart']: whether the brace was at the start of a line
2970 * @param PPFrame $frame The current frame, contains template arguments
2972 * @return string The text of the template
2974 public function braceSubstitution( $piece, $frame ) {
2978 // $text has been filled
2980 // wiki markup in $text should be escaped
2982 // $text is HTML, armour it against wikitext transformation
2984 // Force interwiki transclusion to be done in raw mode not rendered
2985 $forceRawInterwiki = false;
2986 // $text is a DOM node needing expansion in a child frame
2987 $isChildObj = false;
2988 // $text is a DOM node needing expansion in the current frame
2989 $isLocalObj = false;
2991 # Title object, where $text came from
2994 # $part1 is the bit before the first |, and must contain only title characters.
2995 # Various prefixes will be stripped from it later.
2996 $titleWithSpaces = $frame->expand( $piece['title'] );
2997 $part1 = trim( $titleWithSpaces );
3000 # Original title text preserved for various purposes
3001 $originalTitle = $part1;
3003 # $args is a list of argument nodes, starting from index 0, not including $part1
3004 # @todo FIXME: If piece['parts'] is null then the call to getLength()
3005 # below won't work b/c this $args isn't an object
3006 $args = ( null == $piece['parts'] ) ?
[] : $piece['parts'];
3008 $profileSection = null; // profile templates
3012 $substMatch = $this->mSubstWords
->matchStartAndRemove( $part1 );
3014 # Possibilities for substMatch: "subst", "safesubst" or FALSE
3015 # Decide whether to expand template or keep wikitext as-is.
3016 if ( $this->ot
['wiki'] ) {
3017 if ( $substMatch === false ) {
3018 $literal = true; # literal when in PST with no prefix
3020 $literal = false; # expand when in PST with subst: or safesubst:
3023 if ( $substMatch == 'subst' ) {
3024 $literal = true; # literal when not in PST with plain subst:
3026 $literal = false; # expand when not in PST with safesubst: or no prefix
3030 $text = $frame->virtualBracketedImplode( '{{', '|', '}}', $titleWithSpaces, $args );
3037 if ( !$found && $args->getLength() == 0 ) {
3038 $id = $this->mVariables
->matchStartToEnd( $part1 );
3039 if ( $id !== false ) {
3040 $text = $this->getVariableValue( $id, $frame );
3041 if ( MagicWord
::getCacheTTL( $id ) > -1 ) {
3042 $this->mOutput
->updateCacheExpiry( MagicWord
::getCacheTTL( $id ) );
3048 # MSG, MSGNW and RAW
3051 $mwMsgnw = MagicWord
::get( 'msgnw' );
3052 if ( $mwMsgnw->matchStartAndRemove( $part1 ) ) {
3055 # Remove obsolete MSG:
3056 $mwMsg = MagicWord
::get( 'msg' );
3057 $mwMsg->matchStartAndRemove( $part1 );
3061 $mwRaw = MagicWord
::get( 'raw' );
3062 if ( $mwRaw->matchStartAndRemove( $part1 ) ) {
3063 $forceRawInterwiki = true;
3069 $colonPos = strpos( $part1, ':' );
3070 if ( $colonPos !== false ) {
3071 $func = substr( $part1, 0, $colonPos );
3072 $funcArgs = [ trim( substr( $part1, $colonPos +
1 ) ) ];
3073 $argsLength = $args->getLength();
3074 for ( $i = 0; $i < $argsLength; $i++
) {
3075 $funcArgs[] = $args->item( $i );
3078 $result = $this->callParserFunction( $frame, $func, $funcArgs );
3079 } catch ( Exception
$ex ) {
3083 # The interface for parser functions allows for extracting
3084 # flags into the local scope. Extract any forwarded flags
3090 # Finish mangling title and then check for loops.
3091 # Set $title to a Title object and $titleText to the PDBK
3094 # Split the title into page and subpage
3096 $relative = $this->maybeDoSubpageLink( $part1, $subpage );
3097 if ( $part1 !== $relative ) {
3099 $ns = $this->mTitle
->getNamespace();
3101 $title = Title
::newFromText( $part1, $ns );
3103 $titleText = $title->getPrefixedText();
3104 # Check for language variants if the template is not found
3105 if ( $this->getConverterLanguage()->hasVariants() && $title->getArticleID() == 0 ) {
3106 $this->getConverterLanguage()->findVariantLink( $part1, $title, true );
3108 # Do recursion depth check
3109 $limit = $this->mOptions
->getMaxTemplateDepth();
3110 if ( $frame->depth
>= $limit ) {
3112 $text = '<span class="error">'
3113 . wfMessage( 'parser-template-recursion-depth-warning' )
3114 ->numParams( $limit )->inContentLanguage()->text()
3120 # Load from database
3121 if ( !$found && $title ) {
3122 $profileSection = $this->mProfiler
->scopedProfileIn( $title->getPrefixedDBkey() );
3123 if ( !$title->isExternal() ) {
3124 if ( $title->isSpecialPage()
3125 && $this->mOptions
->getAllowSpecialInclusion()
3126 && $this->ot
['html']
3128 $specialPage = SpecialPageFactory
::getPage( $title->getDBkey() );
3129 // Pass the template arguments as URL parameters.
3130 // "uselang" will have no effect since the Language object
3131 // is forced to the one defined in ParserOptions.
3133 $argsLength = $args->getLength();
3134 for ( $i = 0; $i < $argsLength; $i++
) {
3135 $bits = $args->item( $i )->splitArg();
3136 if ( strval( $bits['index'] ) === '' ) {
3137 $name = trim( $frame->expand( $bits['name'], PPFrame
::STRIP_COMMENTS
) );
3138 $value = trim( $frame->expand( $bits['value'] ) );
3139 $pageArgs[$name] = $value;
3143 // Create a new context to execute the special page
3144 $context = new RequestContext
;
3145 $context->setTitle( $title );
3146 $context->setRequest( new FauxRequest( $pageArgs ) );
3147 if ( $specialPage && $specialPage->maxIncludeCacheTime() === 0 ) {
3148 $context->setUser( $this->getUser() );
3150 // If this page is cached, then we better not be per user.
3151 $context->setUser( User
::newFromName( '127.0.0.1', false ) );
3153 $context->setLanguage( $this->mOptions
->getUserLangObj() );
3154 $ret = SpecialPageFactory
::capturePath( $title, $context, $this->getLinkRenderer() );
3156 $text = $context->getOutput()->getHTML();
3157 $this->mOutput
->addOutputPageMetadata( $context->getOutput() );
3160 if ( $specialPage && $specialPage->maxIncludeCacheTime() !== false ) {
3161 $this->mOutput
->updateCacheExpiry( $specialPage->maxIncludeCacheTime() );
3164 } elseif ( MWNamespace
::isNonincludable( $title->getNamespace() ) ) {
3165 $found = false; # access denied
3166 wfDebug( __METHOD__
. ": template inclusion denied for " .
3167 $title->getPrefixedDBkey() . "\n" );
3169 list( $text, $title ) = $this->getTemplateDom( $title );
3170 if ( $text !== false ) {
3176 # If the title is valid but undisplayable, make a link to it
3177 if ( !$found && ( $this->ot
['html'] ||
$this->ot
['pre'] ) ) {
3178 $text = "[[:$titleText]]";
3181 } elseif ( $title->isTrans() ) {
3182 # Interwiki transclusion
3183 if ( $this->ot
['html'] && !$forceRawInterwiki ) {
3184 $text = $this->interwikiTransclude( $title, 'render' );
3187 $text = $this->interwikiTransclude( $title, 'raw' );
3188 # Preprocess it like a template
3189 $text = $this->preprocessToDom( $text, self
::PTD_FOR_INCLUSION
);
3195 # Do infinite loop check
3196 # This has to be done after redirect resolution to avoid infinite loops via redirects
3197 if ( !$frame->loopCheck( $title ) ) {
3199 $text = '<span class="error">'
3200 . wfMessage( 'parser-template-loop-warning', $titleText )->inContentLanguage()->text()
3202 wfDebug( __METHOD__
. ": template loop broken at '$titleText'\n" );
3206 # If we haven't found text to substitute by now, we're done
3207 # Recover the source wikitext and return it
3209 $text = $frame->virtualBracketedImplode( '{{', '|', '}}', $titleWithSpaces, $args );
3210 if ( $profileSection ) {
3211 $this->mProfiler
->scopedProfileOut( $profileSection );
3213 return [ 'object' => $text ];
3216 # Expand DOM-style return values in a child frame
3217 if ( $isChildObj ) {
3218 # Clean up argument array
3219 $newFrame = $frame->newChild( $args, $title );
3222 $text = $newFrame->expand( $text, PPFrame
::RECOVER_ORIG
);
3223 } elseif ( $titleText !== false && $newFrame->isEmpty() ) {
3224 # Expansion is eligible for the empty-frame cache
3225 $text = $newFrame->cachedExpand( $titleText, $text );
3227 # Uncached expansion
3228 $text = $newFrame->expand( $text );
3231 if ( $isLocalObj && $nowiki ) {
3232 $text = $frame->expand( $text, PPFrame
::RECOVER_ORIG
);
3233 $isLocalObj = false;
3236 if ( $profileSection ) {
3237 $this->mProfiler
->scopedProfileOut( $profileSection );
3240 # Replace raw HTML by a placeholder
3242 $text = $this->insertStripItem( $text );
3243 } elseif ( $nowiki && ( $this->ot
['html'] ||
$this->ot
['pre'] ) ) {
3244 # Escape nowiki-style return values
3245 $text = wfEscapeWikiText( $text );
3246 } elseif ( is_string( $text )
3247 && !$piece['lineStart']
3248 && preg_match( '/^(?:{\\||:|;|#|\*)/', $text )
3250 # Bug 529: if the template begins with a table or block-level
3251 # element, it should be treated as beginning a new line.
3252 # This behavior is somewhat controversial.
3253 $text = "\n" . $text;
3256 if ( is_string( $text ) && !$this->incrementIncludeSize( 'post-expand', strlen( $text ) ) ) {
3257 # Error, oversize inclusion
3258 if ( $titleText !== false ) {
3259 # Make a working, properly escaped link if possible (bug 23588)
3260 $text = "[[:$titleText]]";
3262 # This will probably not be a working link, but at least it may
3263 # provide some hint of where the problem is
3264 preg_replace( '/^:/', '', $originalTitle );
3265 $text = "[[:$originalTitle]]";
3267 $text .= $this->insertStripItem( '<!-- WARNING: template omitted, '
3268 . 'post-expand include size too large -->' );
3269 $this->limitationWarn( 'post-expand-template-inclusion' );
3272 if ( $isLocalObj ) {
3273 $ret = [ 'object' => $text ];
3275 $ret = [ 'text' => $text ];
3282 * Call a parser function and return an array with text and flags.
3284 * The returned array will always contain a boolean 'found', indicating
3285 * whether the parser function was found or not. It may also contain the
3287 * text: string|object, resulting wikitext or PP DOM object
3288 * isHTML: bool, $text is HTML, armour it against wikitext transformation
3289 * isChildObj: bool, $text is a DOM node needing expansion in a child frame
3290 * isLocalObj: bool, $text is a DOM node needing expansion in the current frame
3291 * nowiki: bool, wiki markup in $text should be escaped
3294 * @param PPFrame $frame The current frame, contains template arguments
3295 * @param string $function Function name
3296 * @param array $args Arguments to the function
3297 * @throws MWException
3300 public function callParserFunction( $frame, $function, array $args = [] ) {
3303 # Case sensitive functions
3304 if ( isset( $this->mFunctionSynonyms
[1][$function] ) ) {
3305 $function = $this->mFunctionSynonyms
[1][$function];
3307 # Case insensitive functions
3308 $function = $wgContLang->lc( $function );
3309 if ( isset( $this->mFunctionSynonyms
[0][$function] ) ) {
3310 $function = $this->mFunctionSynonyms
[0][$function];
3312 return [ 'found' => false ];
3316 list( $callback, $flags ) = $this->mFunctionHooks
[$function];
3318 # Workaround for PHP bug 35229 and similar
3319 if ( !is_callable( $callback ) ) {
3320 throw new MWException( "Tag hook for $function is not callable\n" );
3323 $allArgs = [ &$this ];
3324 if ( $flags & self
::SFH_OBJECT_ARGS
) {
3325 # Convert arguments to PPNodes and collect for appending to $allArgs
3327 foreach ( $args as $k => $v ) {
3328 if ( $v instanceof PPNode ||
$k === 0 ) {
3331 $funcArgs[] = $this->mPreprocessor
->newPartNodeArray( [ $k => $v ] )->item( 0 );
3335 # Add a frame parameter, and pass the arguments as an array
3336 $allArgs[] = $frame;
3337 $allArgs[] = $funcArgs;
3339 # Convert arguments to plain text and append to $allArgs
3340 foreach ( $args as $k => $v ) {
3341 if ( $v instanceof PPNode
) {
3342 $allArgs[] = trim( $frame->expand( $v ) );
3343 } elseif ( is_int( $k ) && $k >= 0 ) {
3344 $allArgs[] = trim( $v );
3346 $allArgs[] = trim( "$k=$v" );
3351 $result = call_user_func_array( $callback, $allArgs );
3353 # The interface for function hooks allows them to return a wikitext
3354 # string or an array containing the string and any flags. This mungs
3355 # things around to match what this method should return.
3356 if ( !is_array( $result ) ) {
3362 if ( isset( $result[0] ) && !isset( $result['text'] ) ) {
3363 $result['text'] = $result[0];
3365 unset( $result[0] );
3372 $preprocessFlags = 0;
3373 if ( isset( $result['noparse'] ) ) {
3374 $noparse = $result['noparse'];
3376 if ( isset( $result['preprocessFlags'] ) ) {
3377 $preprocessFlags = $result['preprocessFlags'];
3381 $result['text'] = $this->preprocessToDom( $result['text'], $preprocessFlags );
3382 $result['isChildObj'] = true;
3389 * Get the semi-parsed DOM representation of a template with a given title,
3390 * and its redirect destination title. Cached.
3392 * @param Title $title
3396 public function getTemplateDom( $title ) {
3397 $cacheTitle = $title;
3398 $titleText = $title->getPrefixedDBkey();
3400 if ( isset( $this->mTplRedirCache
[$titleText] ) ) {
3401 list( $ns, $dbk ) = $this->mTplRedirCache
[$titleText];
3402 $title = Title
::makeTitle( $ns, $dbk );
3403 $titleText = $title->getPrefixedDBkey();
3405 if ( isset( $this->mTplDomCache
[$titleText] ) ) {
3406 return [ $this->mTplDomCache
[$titleText], $title ];
3409 # Cache miss, go to the database
3410 list( $text, $title ) = $this->fetchTemplateAndTitle( $title );
3412 if ( $text === false ) {
3413 $this->mTplDomCache
[$titleText] = false;
3414 return [ false, $title ];
3417 $dom = $this->preprocessToDom( $text, self
::PTD_FOR_INCLUSION
);
3418 $this->mTplDomCache
[$titleText] = $dom;
3420 if ( !$title->equals( $cacheTitle ) ) {
3421 $this->mTplRedirCache
[$cacheTitle->getPrefixedDBkey()] =
3422 [ $title->getNamespace(), $cdb = $title->getDBkey() ];
3425 return [ $dom, $title ];
3429 * Fetch the current revision of a given title. Note that the revision
3430 * (and even the title) may not exist in the database, so everything
3431 * contributing to the output of the parser should use this method
3432 * where possible, rather than getting the revisions themselves. This
3433 * method also caches its results, so using it benefits performance.
3436 * @param Title $title
3439 public function fetchCurrentRevisionOfTitle( $title ) {
3440 $cacheKey = $title->getPrefixedDBkey();
3441 if ( !$this->currentRevisionCache
) {
3442 $this->currentRevisionCache
= new MapCacheLRU( 100 );
3444 if ( !$this->currentRevisionCache
->has( $cacheKey ) ) {
3445 $this->currentRevisionCache
->set( $cacheKey,
3446 // Defaults to Parser::statelessFetchRevision()
3447 call_user_func( $this->mOptions
->getCurrentRevisionCallback(), $title, $this )
3450 return $this->currentRevisionCache
->get( $cacheKey );
3454 * Wrapper around Revision::newFromTitle to allow passing additional parameters
3455 * without passing them on to it.
3458 * @param Title $title
3459 * @param Parser|bool $parser
3462 public static function statelessFetchRevision( $title, $parser = false ) {
3463 return Revision
::newFromTitle( $title );
3467 * Fetch the unparsed text of a template and register a reference to it.
3468 * @param Title $title
3469 * @return array ( string or false, Title )
3471 public function fetchTemplateAndTitle( $title ) {
3472 // Defaults to Parser::statelessFetchTemplate()
3473 $templateCb = $this->mOptions
->getTemplateCallback();
3474 $stuff = call_user_func( $templateCb, $title, $this );
3475 // We use U+007F DELETE to distinguish strip markers from regular text.
3476 $text = $stuff['text'];
3477 if ( is_string( $stuff['text'] ) ) {
3478 $text = strtr( $text, "\x7f", "?" );
3480 $finalTitle = isset( $stuff['finalTitle'] ) ?
$stuff['finalTitle'] : $title;
3481 if ( isset( $stuff['deps'] ) ) {
3482 foreach ( $stuff['deps'] as $dep ) {
3483 $this->mOutput
->addTemplate( $dep['title'], $dep['page_id'], $dep['rev_id'] );
3484 if ( $dep['title']->equals( $this->getTitle() ) ) {
3485 // If we transclude ourselves, the final result
3486 // will change based on the new version of the page
3487 $this->mOutput
->setFlag( 'vary-revision' );
3491 return [ $text, $finalTitle ];
3495 * Fetch the unparsed text of a template and register a reference to it.
3496 * @param Title $title
3497 * @return string|bool
3499 public function fetchTemplate( $title ) {
3500 return $this->fetchTemplateAndTitle( $title )[0];
3504 * Static function to get a template
3505 * Can be overridden via ParserOptions::setTemplateCallback().
3507 * @param Title $title
3508 * @param bool|Parser $parser
3512 public static function statelessFetchTemplate( $title, $parser = false ) {
3513 $text = $skip = false;
3514 $finalTitle = $title;
3517 # Loop to fetch the article, with up to 1 redirect
3518 // @codingStandardsIgnoreStart Generic.CodeAnalysis.ForLoopWithTestFunctionCall.NotAllowed
3519 for ( $i = 0; $i < 2 && is_object( $title ); $i++
) {
3520 // @codingStandardsIgnoreEnd
3521 # Give extensions a chance to select the revision instead
3522 $id = false; # Assume current
3523 Hooks
::run( 'BeforeParserFetchTemplateAndtitle',
3524 [ $parser, $title, &$skip, &$id ] );
3530 'page_id' => $title->getArticleID(),
3537 $rev = Revision
::newFromId( $id );
3538 } elseif ( $parser ) {
3539 $rev = $parser->fetchCurrentRevisionOfTitle( $title );
3541 $rev = Revision
::newFromTitle( $title );
3543 $rev_id = $rev ?
$rev->getId() : 0;
3544 # If there is no current revision, there is no page
3545 if ( $id === false && !$rev ) {
3546 $linkCache = LinkCache
::singleton();
3547 $linkCache->addBadLinkObj( $title );
3552 'page_id' => $title->getArticleID(),
3553 'rev_id' => $rev_id ];
3554 if ( $rev && !$title->equals( $rev->getTitle() ) ) {
3555 # We fetched a rev from a different title; register it too...
3557 'title' => $rev->getTitle(),
3558 'page_id' => $rev->getPage(),
3559 'rev_id' => $rev_id ];
3563 $content = $rev->getContent();
3564 $text = $content ?
$content->getWikitextForTransclusion() : null;
3566 if ( $text === false ||
$text === null ) {
3570 } elseif ( $title->getNamespace() == NS_MEDIAWIKI
) {
3572 $message = wfMessage( $wgContLang->lcfirst( $title->getText() ) )->inContentLanguage();
3573 if ( !$message->exists() ) {
3577 $content = $message->content();
3578 $text = $message->plain();
3586 $finalTitle = $title;
3587 $title = $content->getRedirectTarget();
3591 'finalTitle' => $finalTitle,
3596 * Fetch a file and its title and register a reference to it.
3597 * If 'broken' is a key in $options then the file will appear as a broken thumbnail.
3598 * @param Title $title
3599 * @param array $options Array of options to RepoGroup::findFile
3602 public function fetchFile( $title, $options = [] ) {
3603 return $this->fetchFileAndTitle( $title, $options )[0];
3607 * Fetch a file and its title and register a reference to it.
3608 * If 'broken' is a key in $options then the file will appear as a broken thumbnail.
3609 * @param Title $title
3610 * @param array $options Array of options to RepoGroup::findFile
3611 * @return array ( File or false, Title of file )
3613 public function fetchFileAndTitle( $title, $options = [] ) {
3614 $file = $this->fetchFileNoRegister( $title, $options );
3616 $time = $file ?
$file->getTimestamp() : false;
3617 $sha1 = $file ?
$file->getSha1() : false;
3618 # Register the file as a dependency...
3619 $this->mOutput
->addImage( $title->getDBkey(), $time, $sha1 );
3620 if ( $file && !$title->equals( $file->getTitle() ) ) {
3621 # Update fetched file title
3622 $title = $file->getTitle();
3623 $this->mOutput
->addImage( $title->getDBkey(), $time, $sha1 );
3625 return [ $file, $title ];
3629 * Helper function for fetchFileAndTitle.
3631 * Also useful if you need to fetch a file but not use it yet,
3632 * for example to get the file's handler.
3634 * @param Title $title
3635 * @param array $options Array of options to RepoGroup::findFile
3638 protected function fetchFileNoRegister( $title, $options = [] ) {
3639 if ( isset( $options['broken'] ) ) {
3640 $file = false; // broken thumbnail forced by hook
3641 } elseif ( isset( $options['sha1'] ) ) { // get by (sha1,timestamp)
3642 $file = RepoGroup
::singleton()->findFileFromKey( $options['sha1'], $options );
3643 } else { // get by (name,timestamp)
3644 $file = wfFindFile( $title, $options );
3650 * Transclude an interwiki link.
3652 * @param Title $title
3653 * @param string $action
3657 public function interwikiTransclude( $title, $action ) {
3658 global $wgEnableScaryTranscluding;
3660 if ( !$wgEnableScaryTranscluding ) {
3661 return wfMessage( 'scarytranscludedisabled' )->inContentLanguage()->text();
3664 $url = $title->getFullURL( [ 'action' => $action ] );
3666 if ( strlen( $url ) > 255 ) {
3667 return wfMessage( 'scarytranscludetoolong' )->inContentLanguage()->text();
3669 return $this->fetchScaryTemplateMaybeFromCache( $url );
3673 * @param string $url
3674 * @return mixed|string
3676 public function fetchScaryTemplateMaybeFromCache( $url ) {
3677 global $wgTranscludeCacheExpiry;
3678 $dbr = wfGetDB( DB_SLAVE
);
3679 $tsCond = $dbr->timestamp( time() - $wgTranscludeCacheExpiry );
3680 $obj = $dbr->selectRow( 'transcache', [ 'tc_time', 'tc_contents' ],
3681 [ 'tc_url' => $url, "tc_time >= " . $dbr->addQuotes( $tsCond ) ] );
3683 return $obj->tc_contents
;
3686 $req = MWHttpRequest
::factory( $url, [], __METHOD__
);
3687 $status = $req->execute(); // Status object
3688 if ( $status->isOK() ) {
3689 $text = $req->getContent();
3690 } elseif ( $req->getStatus() != 200 ) {
3691 // Though we failed to fetch the content, this status is useless.
3692 return wfMessage( 'scarytranscludefailed-httpstatus' )
3693 ->params( $url, $req->getStatus() /* HTTP status */ )->inContentLanguage()->text();
3695 return wfMessage( 'scarytranscludefailed', $url )->inContentLanguage()->text();
3698 $dbw = wfGetDB( DB_MASTER
);
3699 $dbw->replace( 'transcache', [ 'tc_url' ], [
3701 'tc_time' => $dbw->timestamp( time() ),
3702 'tc_contents' => $text
3708 * Triple brace replacement -- used for template arguments
3711 * @param array $piece
3712 * @param PPFrame $frame
3716 public function argSubstitution( $piece, $frame ) {
3719 $parts = $piece['parts'];
3720 $nameWithSpaces = $frame->expand( $piece['title'] );
3721 $argName = trim( $nameWithSpaces );
3723 $text = $frame->getArgument( $argName );
3724 if ( $text === false && $parts->getLength() > 0
3725 && ( $this->ot
['html']
3727 ||
( $this->ot
['wiki'] && $frame->isTemplate() )
3730 # No match in frame, use the supplied default
3731 $object = $parts->item( 0 )->getChildren();
3733 if ( !$this->incrementIncludeSize( 'arg', strlen( $text ) ) ) {
3734 $error = '<!-- WARNING: argument omitted, expansion size too large -->';
3735 $this->limitationWarn( 'post-expand-template-argument' );
3738 if ( $text === false && $object === false ) {
3740 $object = $frame->virtualBracketedImplode( '{{{', '|', '}}}', $nameWithSpaces, $parts );
3742 if ( $error !== false ) {
3745 if ( $object !== false ) {
3746 $ret = [ 'object' => $object ];
3748 $ret = [ 'text' => $text ];
3755 * Return the text to be used for a given extension tag.
3756 * This is the ghost of strip().
3758 * @param array $params Associative array of parameters:
3759 * name PPNode for the tag name
3760 * attr PPNode for unparsed text where tag attributes are thought to be
3761 * attributes Optional associative array of parsed attributes
3762 * inner Contents of extension element
3763 * noClose Original text did not have a close tag
3764 * @param PPFrame $frame
3766 * @throws MWException
3769 public function extensionSubstitution( $params, $frame ) {
3770 $name = $frame->expand( $params['name'] );
3771 $attrText = !isset( $params['attr'] ) ?
null : $frame->expand( $params['attr'] );
3772 $content = !isset( $params['inner'] ) ?
null : $frame->expand( $params['inner'] );
3773 $marker = self
::MARKER_PREFIX
. "-$name-"
3774 . sprintf( '%08X', $this->mMarkerIndex++
) . self
::MARKER_SUFFIX
;
3776 $isFunctionTag = isset( $this->mFunctionTagHooks
[strtolower( $name )] ) &&
3777 ( $this->ot
['html'] ||
$this->ot
['pre'] );
3778 if ( $isFunctionTag ) {
3779 $markerType = 'none';
3781 $markerType = 'general';
3783 if ( $this->ot
['html'] ||
$isFunctionTag ) {
3784 $name = strtolower( $name );
3785 $attributes = Sanitizer
::decodeTagAttributes( $attrText );
3786 if ( isset( $params['attributes'] ) ) {
3787 $attributes = $attributes +
$params['attributes'];
3790 if ( isset( $this->mTagHooks
[$name] ) ) {
3791 # Workaround for PHP bug 35229 and similar
3792 if ( !is_callable( $this->mTagHooks
[$name] ) ) {
3793 throw new MWException( "Tag hook for $name is not callable\n" );
3795 $output = call_user_func_array( $this->mTagHooks
[$name],
3796 [ $content, $attributes, $this, $frame ] );
3797 } elseif ( isset( $this->mFunctionTagHooks
[$name] ) ) {
3798 list( $callback, ) = $this->mFunctionTagHooks
[$name];
3799 if ( !is_callable( $callback ) ) {
3800 throw new MWException( "Tag hook for $name is not callable\n" );
3803 $output = call_user_func_array( $callback, [ &$this, $frame, $content, $attributes ] );
3805 $output = '<span class="error">Invalid tag extension name: ' .
3806 htmlspecialchars( $name ) . '</span>';
3809 if ( is_array( $output ) ) {
3810 # Extract flags to local scope (to override $markerType)
3812 $output = $flags[0];
3817 if ( is_null( $attrText ) ) {
3820 if ( isset( $params['attributes'] ) ) {
3821 foreach ( $params['attributes'] as $attrName => $attrValue ) {
3822 $attrText .= ' ' . htmlspecialchars( $attrName ) . '="' .
3823 htmlspecialchars( $attrValue ) . '"';
3826 if ( $content === null ) {
3827 $output = "<$name$attrText/>";
3829 $close = is_null( $params['close'] ) ?
'' : $frame->expand( $params['close'] );
3830 $output = "<$name$attrText>$content$close";
3834 if ( $markerType === 'none' ) {
3836 } elseif ( $markerType === 'nowiki' ) {
3837 $this->mStripState
->addNoWiki( $marker, $output );
3838 } elseif ( $markerType === 'general' ) {
3839 $this->mStripState
->addGeneral( $marker, $output );
3841 throw new MWException( __METHOD__
. ': invalid marker type' );
3847 * Increment an include size counter
3849 * @param string $type The type of expansion
3850 * @param int $size The size of the text
3851 * @return bool False if this inclusion would take it over the maximum, true otherwise
3853 public function incrementIncludeSize( $type, $size ) {
3854 if ( $this->mIncludeSizes
[$type] +
$size > $this->mOptions
->getMaxIncludeSize() ) {
3857 $this->mIncludeSizes
[$type] +
= $size;
3863 * Increment the expensive function count
3865 * @return bool False if the limit has been exceeded
3867 public function incrementExpensiveFunctionCount() {
3868 $this->mExpensiveFunctionCount++
;
3869 return $this->mExpensiveFunctionCount
<= $this->mOptions
->getExpensiveParserFunctionLimit();
3873 * Strip double-underscore items like __NOGALLERY__ and __NOTOC__
3874 * Fills $this->mDoubleUnderscores, returns the modified text
3876 * @param string $text
3880 public function doDoubleUnderscore( $text ) {
3882 # The position of __TOC__ needs to be recorded
3883 $mw = MagicWord
::get( 'toc' );
3884 if ( $mw->match( $text ) ) {
3885 $this->mShowToc
= true;
3886 $this->mForceTocPosition
= true;
3888 # Set a placeholder. At the end we'll fill it in with the TOC.
3889 $text = $mw->replace( '<!--MWTOC-->', $text, 1 );
3891 # Only keep the first one.
3892 $text = $mw->replace( '', $text );
3895 # Now match and remove the rest of them
3896 $mwa = MagicWord
::getDoubleUnderscoreArray();
3897 $this->mDoubleUnderscores
= $mwa->matchAndRemove( $text );
3899 if ( isset( $this->mDoubleUnderscores
['nogallery'] ) ) {
3900 $this->mOutput
->mNoGallery
= true;
3902 if ( isset( $this->mDoubleUnderscores
['notoc'] ) && !$this->mForceTocPosition
) {
3903 $this->mShowToc
= false;
3905 if ( isset( $this->mDoubleUnderscores
['hiddencat'] )
3906 && $this->mTitle
->getNamespace() == NS_CATEGORY
3908 $this->addTrackingCategory( 'hidden-category-category' );
3910 # (bug 8068) Allow control over whether robots index a page.
3911 # @todo FIXME: Bug 14899: __INDEX__ always overrides __NOINDEX__ here! This
3912 # is not desirable, the last one on the page should win.
3913 if ( isset( $this->mDoubleUnderscores
['noindex'] ) && $this->mTitle
->canUseNoindex() ) {
3914 $this->mOutput
->setIndexPolicy( 'noindex' );
3915 $this->addTrackingCategory( 'noindex-category' );
3917 if ( isset( $this->mDoubleUnderscores
['index'] ) && $this->mTitle
->canUseNoindex() ) {
3918 $this->mOutput
->setIndexPolicy( 'index' );
3919 $this->addTrackingCategory( 'index-category' );
3922 # Cache all double underscores in the database
3923 foreach ( $this->mDoubleUnderscores
as $key => $val ) {
3924 $this->mOutput
->setProperty( $key, '' );
3931 * @see ParserOutput::addTrackingCategory()
3932 * @param string $msg Message key
3933 * @return bool Whether the addition was successful
3935 public function addTrackingCategory( $msg ) {
3936 return $this->mOutput
->addTrackingCategory( $msg, $this->mTitle
);
3940 * This function accomplishes several tasks:
3941 * 1) Auto-number headings if that option is enabled
3942 * 2) Add an [edit] link to sections for users who have enabled the option and can edit the page
3943 * 3) Add a Table of contents on the top for users who have enabled the option
3944 * 4) Auto-anchor headings
3946 * It loops through all headlines, collects the necessary data, then splits up the
3947 * string and re-inserts the newly formatted headlines.
3949 * @param string $text
3950 * @param string $origText Original, untouched wikitext
3951 * @param bool $isMain
3952 * @return mixed|string
3955 public function formatHeadings( $text, $origText, $isMain = true ) {
3956 global $wgMaxTocLevel, $wgExperimentalHtmlIds;
3958 # Inhibit editsection links if requested in the page
3959 if ( isset( $this->mDoubleUnderscores
['noeditsection'] ) ) {
3960 $maybeShowEditLink = $showEditLink = false;
3962 $maybeShowEditLink = true; /* Actual presence will depend on ParserOptions option */
3963 $showEditLink = $this->mOptions
->getEditSection();
3965 if ( $showEditLink ) {
3966 $this->mOutput
->setEditSectionTokens( true );
3969 # Get all headlines for numbering them and adding funky stuff like [edit]
3970 # links - this is for later, but we need the number of headlines right now
3972 $numMatches = preg_match_all(
3973 '/<H(?P<level>[1-6])(?P<attrib>.*?>)\s*(?P<header>[\s\S]*?)\s*<\/H[1-6] *>/i',
3978 # if there are fewer than 4 headlines in the article, do not show TOC
3979 # unless it's been explicitly enabled.
3980 $enoughToc = $this->mShowToc
&&
3981 ( ( $numMatches >= 4 ) ||
$this->mForceTocPosition
);
3983 # Allow user to stipulate that a page should have a "new section"
3984 # link added via __NEWSECTIONLINK__
3985 if ( isset( $this->mDoubleUnderscores
['newsectionlink'] ) ) {
3986 $this->mOutput
->setNewSection( true );
3989 # Allow user to remove the "new section"
3990 # link via __NONEWSECTIONLINK__
3991 if ( isset( $this->mDoubleUnderscores
['nonewsectionlink'] ) ) {
3992 $this->mOutput
->hideNewSection( true );
3995 # if the string __FORCETOC__ (not case-sensitive) occurs in the HTML,
3996 # override above conditions and always show TOC above first header
3997 if ( isset( $this->mDoubleUnderscores
['forcetoc'] ) ) {
3998 $this->mShowToc
= true;
4006 # Ugh .. the TOC should have neat indentation levels which can be
4007 # passed to the skin functions. These are determined here
4011 $sublevelCount = [];
4017 $markerRegex = self
::MARKER_PREFIX
. "-h-(\d+)-" . self
::MARKER_SUFFIX
;
4018 $baseTitleText = $this->mTitle
->getPrefixedDBkey();
4019 $oldType = $this->mOutputType
;
4020 $this->setOutputType( self
::OT_WIKI
);
4021 $frame = $this->getPreprocessor()->newFrame();
4022 $root = $this->preprocessToDom( $origText );
4023 $node = $root->getFirstChild();
4028 $headlines = $numMatches !== false ?
$matches[3] : [];
4030 foreach ( $headlines as $headline ) {
4031 $isTemplate = false;
4033 $sectionIndex = false;
4035 $markerMatches = [];
4036 if ( preg_match( "/^$markerRegex/", $headline, $markerMatches ) ) {
4037 $serial = $markerMatches[1];
4038 list( $titleText, $sectionIndex ) = $this->mHeadings
[$serial];
4039 $isTemplate = ( $titleText != $baseTitleText );
4040 $headline = preg_replace( "/^$markerRegex\\s*/", "", $headline );
4044 $prevlevel = $level;
4046 $level = $matches[1][$headlineCount];
4048 if ( $level > $prevlevel ) {
4049 # Increase TOC level
4051 $sublevelCount[$toclevel] = 0;
4052 if ( $toclevel < $wgMaxTocLevel ) {
4053 $prevtoclevel = $toclevel;
4054 $toc .= Linker
::tocIndent();
4057 } elseif ( $level < $prevlevel && $toclevel > 1 ) {
4058 # Decrease TOC level, find level to jump to
4060 for ( $i = $toclevel; $i > 0; $i-- ) {
4061 if ( $levelCount[$i] == $level ) {
4062 # Found last matching level
4065 } elseif ( $levelCount[$i] < $level ) {
4066 # Found first matching level below current level
4074 if ( $toclevel < $wgMaxTocLevel ) {
4075 if ( $prevtoclevel < $wgMaxTocLevel ) {
4076 # Unindent only if the previous toc level was shown :p
4077 $toc .= Linker
::tocUnindent( $prevtoclevel - $toclevel );
4078 $prevtoclevel = $toclevel;
4080 $toc .= Linker
::tocLineEnd();
4084 # No change in level, end TOC line
4085 if ( $toclevel < $wgMaxTocLevel ) {
4086 $toc .= Linker
::tocLineEnd();
4090 $levelCount[$toclevel] = $level;
4092 # count number of headlines for each level
4093 $sublevelCount[$toclevel]++
;
4095 for ( $i = 1; $i <= $toclevel; $i++
) {
4096 if ( !empty( $sublevelCount[$i] ) ) {
4100 $numbering .= $this->getTargetLanguage()->formatNum( $sublevelCount[$i] );
4105 # The safe header is a version of the header text safe to use for links
4107 # Remove link placeholders by the link text.
4108 # <!--LINK number-->
4110 # link text with suffix
4111 # Do this before unstrip since link text can contain strip markers
4112 $safeHeadline = $this->replaceLinkHoldersText( $headline );
4114 # Avoid insertion of weird stuff like <math> by expanding the relevant sections
4115 $safeHeadline = $this->mStripState
->unstripBoth( $safeHeadline );
4117 # Strip out HTML (first regex removes any tag not allowed)
4119 # * <sup> and <sub> (bug 8393)
4122 # * <bdi> (bug 72884)
4123 # * <span dir="rtl"> and <span dir="ltr"> (bug 35167)
4124 # We strip any parameter from accepted tags (second regex), except dir="rtl|ltr" from <span>,
4125 # to allow setting directionality in toc items.
4126 $tocline = preg_replace(
4128 '#<(?!/?(span|sup|sub|bdi|i|b)(?: [^>]*)?>).*?>#',
4129 '#<(/?(?:span(?: dir="(?:rtl|ltr)")?|sup|sub|bdi|i|b))(?: .*?)?>#'
4135 # Strip '<span></span>', which is the result from the above if
4136 # <span id="foo"></span> is used to produce an additional anchor
4138 $tocline = str_replace( '<span></span>', '', $tocline );
4140 $tocline = trim( $tocline );
4142 # For the anchor, strip out HTML-y stuff period
4143 $safeHeadline = preg_replace( '/<.*?>/', '', $safeHeadline );
4144 $safeHeadline = Sanitizer
::normalizeSectionNameWhitespace( $safeHeadline );
4146 # Save headline for section edit hint before it's escaped
4147 $headlineHint = $safeHeadline;
4149 if ( $wgExperimentalHtmlIds ) {
4150 # For reverse compatibility, provide an id that's
4151 # HTML4-compatible, like we used to.
4152 # It may be worth noting, academically, that it's possible for
4153 # the legacy anchor to conflict with a non-legacy headline
4154 # anchor on the page. In this case likely the "correct" thing
4155 # would be to either drop the legacy anchors or make sure
4156 # they're numbered first. However, this would require people
4157 # to type in section names like "abc_.D7.93.D7.90.D7.A4"
4158 # manually, so let's not bother worrying about it.
4159 $legacyHeadline = Sanitizer
::escapeId( $safeHeadline,
4160 [ 'noninitial', 'legacy' ] );
4161 $safeHeadline = Sanitizer
::escapeId( $safeHeadline );
4163 if ( $legacyHeadline == $safeHeadline ) {
4164 # No reason to have both (in fact, we can't)
4165 $legacyHeadline = false;
4168 $legacyHeadline = false;
4169 $safeHeadline = Sanitizer
::escapeId( $safeHeadline,
4173 # HTML names must be case-insensitively unique (bug 10721).
4174 # This does not apply to Unicode characters per
4175 # http://www.w3.org/TR/html5/infrastructure.html#case-sensitivity-and-string-comparison
4176 # @todo FIXME: We may be changing them depending on the current locale.
4177 $arrayKey = strtolower( $safeHeadline );
4178 if ( $legacyHeadline === false ) {
4179 $legacyArrayKey = false;
4181 $legacyArrayKey = strtolower( $legacyHeadline );
4184 # Create the anchor for linking from the TOC to the section
4185 $anchor = $safeHeadline;
4186 $legacyAnchor = $legacyHeadline;
4187 if ( isset( $refers[$arrayKey] ) ) {
4188 // @codingStandardsIgnoreStart
4189 for ( $i = 2; isset( $refers["${arrayKey}_$i"] ); ++
$i );
4190 // @codingStandardsIgnoreEnd
4192 $refers["${arrayKey}_$i"] = true;
4194 $refers[$arrayKey] = true;
4196 if ( $legacyHeadline !== false && isset( $refers[$legacyArrayKey] ) ) {
4197 // @codingStandardsIgnoreStart
4198 for ( $i = 2; isset( $refers["${legacyArrayKey}_$i"] ); ++
$i );
4199 // @codingStandardsIgnoreEnd
4200 $legacyAnchor .= "_$i";
4201 $refers["${legacyArrayKey}_$i"] = true;
4203 $refers[$legacyArrayKey] = true;
4206 # Don't number the heading if it is the only one (looks silly)
4207 if ( count( $matches[3] ) > 1 && $this->mOptions
->getNumberHeadings() ) {
4208 # the two are different if the line contains a link
4209 $headline = Html
::element(
4211 [ 'class' => 'mw-headline-number' ],
4213 ) . ' ' . $headline;
4216 if ( $enoughToc && ( !isset( $wgMaxTocLevel ) ||
$toclevel < $wgMaxTocLevel ) ) {
4217 $toc .= Linker
::tocLine( $anchor, $tocline,
4218 $numbering, $toclevel, ( $isTemplate ?
false : $sectionIndex ) );
4221 # Add the section to the section tree
4222 # Find the DOM node for this header
4223 $noOffset = ( $isTemplate ||
$sectionIndex === false );
4224 while ( $node && !$noOffset ) {
4225 if ( $node->getName() === 'h' ) {
4226 $bits = $node->splitHeading();
4227 if ( $bits['i'] == $sectionIndex ) {
4231 $byteOffset +
= mb_strlen( $this->mStripState
->unstripBoth(
4232 $frame->expand( $node, PPFrame
::RECOVER_ORIG
) ) );
4233 $node = $node->getNextSibling();
4236 'toclevel' => $toclevel,
4239 'number' => $numbering,
4240 'index' => ( $isTemplate ?
'T-' : '' ) . $sectionIndex,
4241 'fromtitle' => $titleText,
4242 'byteoffset' => ( $noOffset ?
null : $byteOffset ),
4243 'anchor' => $anchor,
4246 # give headline the correct <h#> tag
4247 if ( $maybeShowEditLink && $sectionIndex !== false ) {
4248 // Output edit section links as markers with styles that can be customized by skins
4249 if ( $isTemplate ) {
4250 # Put a T flag in the section identifier, to indicate to extractSections()
4251 # that sections inside <includeonly> should be counted.
4252 $editsectionPage = $titleText;
4253 $editsectionSection = "T-$sectionIndex";
4254 $editsectionContent = null;
4256 $editsectionPage = $this->mTitle
->getPrefixedText();
4257 $editsectionSection = $sectionIndex;
4258 $editsectionContent = $headlineHint;
4260 // We use a bit of pesudo-xml for editsection markers. The
4261 // language converter is run later on. Using a UNIQ style marker
4262 // leads to the converter screwing up the tokens when it
4263 // converts stuff. And trying to insert strip tags fails too. At
4264 // this point all real inputted tags have already been escaped,
4265 // so we don't have to worry about a user trying to input one of
4266 // these markers directly. We use a page and section attribute
4267 // to stop the language converter from converting these
4268 // important bits of data, but put the headline hint inside a
4269 // content block because the language converter is supposed to
4270 // be able to convert that piece of data.
4271 // Gets replaced with html in ParserOutput::getText
4272 $editlink = '<mw:editsection page="' . htmlspecialchars( $editsectionPage );
4273 $editlink .= '" section="' . htmlspecialchars( $editsectionSection ) . '"';
4274 if ( $editsectionContent !== null ) {
4275 $editlink .= '>' . $editsectionContent . '</mw:editsection>';
4282 $head[$headlineCount] = Linker
::makeHeadline( $level,
4283 $matches['attrib'][$headlineCount], $anchor, $headline,
4284 $editlink, $legacyAnchor );
4289 $this->setOutputType( $oldType );
4291 # Never ever show TOC if no headers
4292 if ( $numVisible < 1 ) {
4297 if ( $prevtoclevel > 0 && $prevtoclevel < $wgMaxTocLevel ) {
4298 $toc .= Linker
::tocUnindent( $prevtoclevel - 1 );
4300 $toc = Linker
::tocList( $toc, $this->mOptions
->getUserLangObj() );
4301 $this->mOutput
->setTOCHTML( $toc );
4302 $toc = self
::TOC_START
. $toc . self
::TOC_END
;
4303 $this->mOutput
->addModules( 'mediawiki.toc' );
4307 $this->mOutput
->setSections( $tocraw );
4310 # split up and insert constructed headlines
4311 $blocks = preg_split( '/<H[1-6].*?>[\s\S]*?<\/H[1-6]>/i', $text );
4314 // build an array of document sections
4316 foreach ( $blocks as $block ) {
4317 // $head is zero-based, sections aren't.
4318 if ( empty( $head[$i - 1] ) ) {
4319 $sections[$i] = $block;
4321 $sections[$i] = $head[$i - 1] . $block;
4325 * Send a hook, one per section.
4326 * The idea here is to be able to make section-level DIVs, but to do so in a
4327 * lower-impact, more correct way than r50769
4330 * $section : the section number
4331 * &$sectionContent : ref to the content of the section
4332 * $showEditLinks : boolean describing whether this section has an edit link
4334 Hooks
::run( 'ParserSectionCreate', [ $this, $i, &$sections[$i], $showEditLink ] );
4339 if ( $enoughToc && $isMain && !$this->mForceTocPosition
) {
4340 // append the TOC at the beginning
4341 // Top anchor now in skin
4342 $sections[0] = $sections[0] . $toc . "\n";
4345 $full .= implode( '', $sections );
4347 if ( $this->mForceTocPosition
) {
4348 return str_replace( '<!--MWTOC-->', $toc, $full );
4355 * Transform wiki markup when saving a page by doing "\r\n" -> "\n"
4356 * conversion, substituting signatures, {{subst:}} templates, etc.
4358 * @param string $text The text to transform
4359 * @param Title $title The Title object for the current article
4360 * @param User $user The User object describing the current user
4361 * @param ParserOptions $options Parsing options
4362 * @param bool $clearState Whether to clear the parser state first
4363 * @return string The altered wiki markup
4365 public function preSaveTransform( $text, Title
$title, User
$user,
4366 ParserOptions
$options, $clearState = true
4368 if ( $clearState ) {
4369 $magicScopeVariable = $this->lock();
4371 $this->startParse( $title, $options, self
::OT_WIKI
, $clearState );
4372 $this->setUser( $user );
4378 $text = str_replace( array_keys( $pairs ), array_values( $pairs ), $text );
4379 if ( $options->getPreSaveTransform() ) {
4380 $text = $this->pstPass2( $text, $user );
4382 $text = $this->mStripState
->unstripBoth( $text );
4384 $this->setUser( null ); # Reset
4390 * Pre-save transform helper function
4392 * @param string $text
4397 private function pstPass2( $text, $user ) {
4400 # Note: This is the timestamp saved as hardcoded wikitext to
4401 # the database, we use $wgContLang here in order to give
4402 # everyone the same signature and use the default one rather
4403 # than the one selected in each user's preferences.
4404 # (see also bug 12815)
4405 $ts = $this->mOptions
->getTimestamp();
4406 $timestamp = MWTimestamp
::getLocalInstance( $ts );
4407 $ts = $timestamp->format( 'YmdHis' );
4408 $tzMsg = $timestamp->getTimezoneMessage()->inContentLanguage()->text();
4410 $d = $wgContLang->timeanddate( $ts, false, false ) . " ($tzMsg)";
4412 # Variable replacement
4413 # Because mOutputType is OT_WIKI, this will only process {{subst:xxx}} type tags
4414 $text = $this->replaceVariables( $text );
4416 # This works almost by chance, as the replaceVariables are done before the getUserSig(),
4417 # which may corrupt this parser instance via its wfMessage()->text() call-
4420 $sigText = $this->getUserSig( $user );
4421 $text = strtr( $text, [
4423 '~~~~' => "$sigText $d",
4427 # Context links ("pipe tricks"): [[|name]] and [[name (context)|]]
4428 $tc = '[' . Title
::legalChars() . ']';
4429 $nc = '[ _0-9A-Za-z\x80-\xff-]'; # Namespaces can use non-ascii!
4431 // [[ns:page (context)|]]
4432 $p1 = "/\[\[(:?$nc+:|:|)($tc+?)( ?\\($tc+\\))\\|]]/";
4433 // [[ns:page(context)|]] (double-width brackets, added in r40257)
4434 $p4 = "/\[\[(:?$nc+:|:|)($tc+?)( ?($tc+))\\|]]/";
4435 // [[ns:page (context), context|]] (using either single or double-width comma)
4436 $p3 = "/\[\[(:?$nc+:|:|)($tc+?)( ?\\($tc+\\)|)((?:, |,)$tc+|)\\|]]/";
4437 // [[|page]] (reverse pipe trick: add context from page title)
4438 $p2 = "/\[\[\\|($tc+)]]/";
4440 # try $p1 first, to turn "[[A, B (C)|]]" into "[[A, B (C)|A, B]]"
4441 $text = preg_replace( $p1, '[[\\1\\2\\3|\\2]]', $text );
4442 $text = preg_replace( $p4, '[[\\1\\2\\3|\\2]]', $text );
4443 $text = preg_replace( $p3, '[[\\1\\2\\3\\4|\\2]]', $text );
4445 $t = $this->mTitle
->getText();
4447 if ( preg_match( "/^($nc+:|)$tc+?( \\($tc+\\))$/", $t, $m ) ) {
4448 $text = preg_replace( $p2, "[[$m[1]\\1$m[2]|\\1]]", $text );
4449 } elseif ( preg_match( "/^($nc+:|)$tc+?(, $tc+|)$/", $t, $m ) && "$m[1]$m[2]" != '' ) {
4450 $text = preg_replace( $p2, "[[$m[1]\\1$m[2]|\\1]]", $text );
4452 # if there's no context, don't bother duplicating the title
4453 $text = preg_replace( $p2, '[[\\1]]', $text );
4456 # Trim trailing whitespace
4457 $text = rtrim( $text );
4463 * Fetch the user's signature text, if any, and normalize to
4464 * validated, ready-to-insert wikitext.
4465 * If you have pre-fetched the nickname or the fancySig option, you can
4466 * specify them here to save a database query.
4467 * Do not reuse this parser instance after calling getUserSig(),
4468 * as it may have changed if it's the $wgParser.
4471 * @param string|bool $nickname Nickname to use or false to use user's default nickname
4472 * @param bool|null $fancySig whether the nicknname is the complete signature
4473 * or null to use default value
4476 public function getUserSig( &$user, $nickname = false, $fancySig = null ) {
4477 global $wgMaxSigChars;
4479 $username = $user->getName();
4481 # If not given, retrieve from the user object.
4482 if ( $nickname === false ) {
4483 $nickname = $user->getOption( 'nickname' );
4486 if ( is_null( $fancySig ) ) {
4487 $fancySig = $user->getBoolOption( 'fancysig' );
4490 $nickname = $nickname == null ?
$username : $nickname;
4492 if ( mb_strlen( $nickname ) > $wgMaxSigChars ) {
4493 $nickname = $username;
4494 wfDebug( __METHOD__
. ": $username has overlong signature.\n" );
4495 } elseif ( $fancySig !== false ) {
4496 # Sig. might contain markup; validate this
4497 if ( $this->validateSig( $nickname ) !== false ) {
4498 # Validated; clean up (if needed) and return it
4499 return $this->cleanSig( $nickname, true );
4501 # Failed to validate; fall back to the default
4502 $nickname = $username;
4503 wfDebug( __METHOD__
. ": $username has bad XML tags in signature.\n" );
4507 # Make sure nickname doesnt get a sig in a sig
4508 $nickname = self
::cleanSigInSig( $nickname );
4510 # If we're still here, make it a link to the user page
4511 $userText = wfEscapeWikiText( $username );
4512 $nickText = wfEscapeWikiText( $nickname );
4513 $msgName = $user->isAnon() ?
'signature-anon' : 'signature';
4515 return wfMessage( $msgName, $userText, $nickText )->inContentLanguage()
4516 ->title( $this->getTitle() )->text();
4520 * Check that the user's signature contains no bad XML
4522 * @param string $text
4523 * @return string|bool An expanded string, or false if invalid.
4525 public function validateSig( $text ) {
4526 return Xml
::isWellFormedXmlFragment( $text ) ?
$text : false;
4530 * Clean up signature text
4532 * 1) Strip 3, 4 or 5 tildes out of signatures @see cleanSigInSig
4533 * 2) Substitute all transclusions
4535 * @param string $text
4536 * @param bool $parsing Whether we're cleaning (preferences save) or parsing
4537 * @return string Signature text
4539 public function cleanSig( $text, $parsing = false ) {
4542 $magicScopeVariable = $this->lock();
4543 $this->startParse( $wgTitle, new ParserOptions
, self
::OT_PREPROCESS
, true );
4546 # Option to disable this feature
4547 if ( !$this->mOptions
->getCleanSignatures() ) {
4551 # @todo FIXME: Regex doesn't respect extension tags or nowiki
4552 # => Move this logic to braceSubstitution()
4553 $substWord = MagicWord
::get( 'subst' );
4554 $substRegex = '/\{\{(?!(?:' . $substWord->getBaseRegex() . '))/x' . $substWord->getRegexCase();
4555 $substText = '{{' . $substWord->getSynonym( 0 );
4557 $text = preg_replace( $substRegex, $substText, $text );
4558 $text = self
::cleanSigInSig( $text );
4559 $dom = $this->preprocessToDom( $text );
4560 $frame = $this->getPreprocessor()->newFrame();
4561 $text = $frame->expand( $dom );
4564 $text = $this->mStripState
->unstripBoth( $text );
4571 * Strip 3, 4 or 5 tildes out of signatures.
4573 * @param string $text
4574 * @return string Signature text with /~{3,5}/ removed
4576 public static function cleanSigInSig( $text ) {
4577 $text = preg_replace( '/~{3,5}/', '', $text );
4582 * Set up some variables which are usually set up in parse()
4583 * so that an external function can call some class members with confidence
4585 * @param Title|null $title
4586 * @param ParserOptions $options
4587 * @param int $outputType
4588 * @param bool $clearState
4590 public function startExternalParse( Title
$title = null, ParserOptions
$options,
4591 $outputType, $clearState = true
4593 $this->startParse( $title, $options, $outputType, $clearState );
4597 * @param Title|null $title
4598 * @param ParserOptions $options
4599 * @param int $outputType
4600 * @param bool $clearState
4602 private function startParse( Title
$title = null, ParserOptions
$options,
4603 $outputType, $clearState = true
4605 $this->setTitle( $title );
4606 $this->mOptions
= $options;
4607 $this->setOutputType( $outputType );
4608 if ( $clearState ) {
4609 $this->clearState();
4614 * Wrapper for preprocess()
4616 * @param string $text The text to preprocess
4617 * @param ParserOptions $options Options
4618 * @param Title|null $title Title object or null to use $wgTitle
4621 public function transformMsg( $text, $options, $title = null ) {
4622 static $executing = false;
4624 # Guard against infinite recursion
4635 $text = $this->preprocess( $text, $title, $options );
4642 * Create an HTML-style tag, e.g. "<yourtag>special text</yourtag>"
4643 * The callback should have the following form:
4644 * function myParserHook( $text, $params, $parser, $frame ) { ... }
4646 * Transform and return $text. Use $parser for any required context, e.g. use
4647 * $parser->getTitle() and $parser->getOptions() not $wgTitle or $wgOut->mParserOptions
4649 * Hooks may return extended information by returning an array, of which the
4650 * first numbered element (index 0) must be the return string, and all other
4651 * entries are extracted into local variables within an internal function
4652 * in the Parser class.
4654 * This interface (introduced r61913) appears to be undocumented, but
4655 * 'markerType' is used by some core tag hooks to override which strip
4656 * array their results are placed in. **Use great caution if attempting
4657 * this interface, as it is not documented and injudicious use could smash
4658 * private variables.**
4660 * @param string $tag The tag to use, e.g. 'hook' for "<hook>"
4661 * @param callable $callback The callback function (and object) to use for the tag
4662 * @throws MWException
4663 * @return callable|null The old value of the mTagHooks array associated with the hook
4665 public function setHook( $tag, $callback ) {
4666 $tag = strtolower( $tag );
4667 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
4668 throw new MWException( "Invalid character {$m[0]} in setHook('$tag', ...) call" );
4670 $oldVal = isset( $this->mTagHooks
[$tag] ) ?
$this->mTagHooks
[$tag] : null;
4671 $this->mTagHooks
[$tag] = $callback;
4672 if ( !in_array( $tag, $this->mStripList
) ) {
4673 $this->mStripList
[] = $tag;
4680 * As setHook(), but letting the contents be parsed.
4682 * Transparent tag hooks are like regular XML-style tag hooks, except they
4683 * operate late in the transformation sequence, on HTML instead of wikitext.
4685 * This is probably obsoleted by things dealing with parser frames?
4686 * The only extension currently using it is geoserver.
4689 * @todo better document or deprecate this
4691 * @param string $tag The tag to use, e.g. 'hook' for "<hook>"
4692 * @param callable $callback The callback function (and object) to use for the tag
4693 * @throws MWException
4694 * @return callable|null The old value of the mTagHooks array associated with the hook
4696 public function setTransparentTagHook( $tag, $callback ) {
4697 $tag = strtolower( $tag );
4698 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
4699 throw new MWException( "Invalid character {$m[0]} in setTransparentHook('$tag', ...) call" );
4701 $oldVal = isset( $this->mTransparentTagHooks
[$tag] ) ?
$this->mTransparentTagHooks
[$tag] : null;
4702 $this->mTransparentTagHooks
[$tag] = $callback;
4708 * Remove all tag hooks
4710 public function clearTagHooks() {
4711 $this->mTagHooks
= [];
4712 $this->mFunctionTagHooks
= [];
4713 $this->mStripList
= $this->mDefaultStripList
;
4717 * Create a function, e.g. {{sum:1|2|3}}
4718 * The callback function should have the form:
4719 * function myParserFunction( &$parser, $arg1, $arg2, $arg3 ) { ... }
4721 * Or with Parser::SFH_OBJECT_ARGS:
4722 * function myParserFunction( $parser, $frame, $args ) { ... }
4724 * The callback may either return the text result of the function, or an array with the text
4725 * in element 0, and a number of flags in the other elements. The names of the flags are
4726 * specified in the keys. Valid flags are:
4727 * found The text returned is valid, stop processing the template. This
4729 * nowiki Wiki markup in the return value should be escaped
4730 * isHTML The returned text is HTML, armour it against wikitext transformation
4732 * @param string $id The magic word ID
4733 * @param callable $callback The callback function (and object) to use
4734 * @param int $flags A combination of the following flags:
4735 * Parser::SFH_NO_HASH No leading hash, i.e. {{plural:...}} instead of {{#if:...}}
4737 * Parser::SFH_OBJECT_ARGS Pass the template arguments as PPNode objects instead of text.
4738 * This allows for conditional expansion of the parse tree, allowing you to eliminate dead
4739 * branches and thus speed up parsing. It is also possible to analyse the parse tree of
4740 * the arguments, and to control the way they are expanded.
4742 * The $frame parameter is a PPFrame. This can be used to produce expanded text from the
4743 * arguments, for instance:
4744 * $text = isset( $args[0] ) ? $frame->expand( $args[0] ) : '';
4746 * For technical reasons, $args[0] is pre-expanded and will be a string. This may change in
4747 * future versions. Please call $frame->expand() on it anyway so that your code keeps
4748 * working if/when this is changed.
4750 * If you want whitespace to be trimmed from $args, you need to do it yourself, post-
4753 * Please read the documentation in includes/parser/Preprocessor.php for more information
4754 * about the methods available in PPFrame and PPNode.
4756 * @throws MWException
4757 * @return string|callable The old callback function for this name, if any
4759 public function setFunctionHook( $id, $callback, $flags = 0 ) {
4762 $oldVal = isset( $this->mFunctionHooks
[$id] ) ?
$this->mFunctionHooks
[$id][0] : null;
4763 $this->mFunctionHooks
[$id] = [ $callback, $flags ];
4765 # Add to function cache
4766 $mw = MagicWord
::get( $id );
4768 throw new MWException( __METHOD__
. '() expecting a magic word identifier.' );
4771 $synonyms = $mw->getSynonyms();
4772 $sensitive = intval( $mw->isCaseSensitive() );
4774 foreach ( $synonyms as $syn ) {
4776 if ( !$sensitive ) {
4777 $syn = $wgContLang->lc( $syn );
4780 if ( !( $flags & self
::SFH_NO_HASH
) ) {
4783 # Remove trailing colon
4784 if ( substr( $syn, -1, 1 ) === ':' ) {
4785 $syn = substr( $syn, 0, -1 );
4787 $this->mFunctionSynonyms
[$sensitive][$syn] = $id;
4793 * Get all registered function hook identifiers
4797 public function getFunctionHooks() {
4798 return array_keys( $this->mFunctionHooks
);
4802 * Create a tag function, e.g. "<test>some stuff</test>".
4803 * Unlike tag hooks, tag functions are parsed at preprocessor level.
4804 * Unlike parser functions, their content is not preprocessed.
4805 * @param string $tag
4806 * @param callable $callback
4808 * @throws MWException
4811 public function setFunctionTagHook( $tag, $callback, $flags ) {
4812 $tag = strtolower( $tag );
4813 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
4814 throw new MWException( "Invalid character {$m[0]} in setFunctionTagHook('$tag', ...) call" );
4816 $old = isset( $this->mFunctionTagHooks
[$tag] ) ?
4817 $this->mFunctionTagHooks
[$tag] : null;
4818 $this->mFunctionTagHooks
[$tag] = [ $callback, $flags ];
4820 if ( !in_array( $tag, $this->mStripList
) ) {
4821 $this->mStripList
[] = $tag;
4828 * Replace "<!--LINK-->" link placeholders with actual links, in the buffer
4829 * Placeholders created in Linker::link()
4831 * @param string $text
4832 * @param int $options
4834 public function replaceLinkHolders( &$text, $options = 0 ) {
4835 $this->mLinkHolders
->replace( $text );
4839 * Replace "<!--LINK-->" link placeholders with plain text of links
4840 * (not HTML-formatted).
4842 * @param string $text
4845 public function replaceLinkHoldersText( $text ) {
4846 return $this->mLinkHolders
->replaceText( $text );
4850 * Renders an image gallery from a text with one line per image.
4851 * text labels may be given by using |-style alternative text. E.g.
4852 * Image:one.jpg|The number "1"
4853 * Image:tree.jpg|A tree
4854 * given as text will return the HTML of a gallery with two images,
4855 * labeled 'The number "1"' and
4858 * @param string $text
4859 * @param array $params
4860 * @return string HTML
4862 public function renderImageGallery( $text, $params ) {
4865 if ( isset( $params['mode'] ) ) {
4866 $mode = $params['mode'];
4870 $ig = ImageGalleryBase
::factory( $mode );
4871 } catch ( Exception
$e ) {
4872 // If invalid type set, fallback to default.
4873 $ig = ImageGalleryBase
::factory( false );
4876 $ig->setContextTitle( $this->mTitle
);
4877 $ig->setShowBytes( false );
4878 $ig->setShowFilename( false );
4879 $ig->setParser( $this );
4880 $ig->setHideBadImages();
4881 $ig->setAttributes( Sanitizer
::validateTagAttributes( $params, 'table' ) );
4883 if ( isset( $params['showfilename'] ) ) {
4884 $ig->setShowFilename( true );
4886 $ig->setShowFilename( false );
4888 if ( isset( $params['caption'] ) ) {
4889 $caption = $params['caption'];
4890 $caption = htmlspecialchars( $caption );
4891 $caption = $this->replaceInternalLinks( $caption );
4892 $ig->setCaptionHtml( $caption );
4894 if ( isset( $params['perrow'] ) ) {
4895 $ig->setPerRow( $params['perrow'] );
4897 if ( isset( $params['widths'] ) ) {
4898 $ig->setWidths( $params['widths'] );
4900 if ( isset( $params['heights'] ) ) {
4901 $ig->setHeights( $params['heights'] );
4903 $ig->setAdditionalOptions( $params );
4905 Hooks
::run( 'BeforeParserrenderImageGallery', [ &$this, &$ig ] );
4907 $lines = StringUtils
::explode( "\n", $text );
4908 foreach ( $lines as $line ) {
4909 # match lines like these:
4910 # Image:someimage.jpg|This is some image
4912 preg_match( "/^([^|]+)(\\|(.*))?$/", $line, $matches );
4914 if ( count( $matches ) == 0 ) {
4918 if ( strpos( $matches[0], '%' ) !== false ) {
4919 $matches[1] = rawurldecode( $matches[1] );
4921 $title = Title
::newFromText( $matches[1], NS_FILE
);
4922 if ( is_null( $title ) ) {
4923 # Bogus title. Ignore these so we don't bomb out later.
4927 # We need to get what handler the file uses, to figure out parameters.
4928 # Note, a hook can overide the file name, and chose an entirely different
4929 # file (which potentially could be of a different type and have different handler).
4932 Hooks
::run( 'BeforeParserFetchFileAndTitle',
4933 [ $this, $title, &$options, &$descQuery ] );
4934 # Don't register it now, as ImageGallery does that later.
4935 $file = $this->fetchFileNoRegister( $title, $options );
4936 $handler = $file ?
$file->getHandler() : false;
4939 'img_alt' => 'gallery-internal-alt',
4940 'img_link' => 'gallery-internal-link',
4943 $paramMap = $paramMap +
$handler->getParamMap();
4944 // We don't want people to specify per-image widths.
4945 // Additionally the width parameter would need special casing anyhow.
4946 unset( $paramMap['img_width'] );
4949 $mwArray = new MagicWordArray( array_keys( $paramMap ) );
4954 $handlerOptions = [];
4955 if ( isset( $matches[3] ) ) {
4956 // look for an |alt= definition while trying not to break existing
4957 // captions with multiple pipes (|) in it, until a more sensible grammar
4958 // is defined for images in galleries
4960 // FIXME: Doing recursiveTagParse at this stage, and the trim before
4961 // splitting on '|' is a bit odd, and different from makeImage.
4962 $matches[3] = $this->recursiveTagParse( trim( $matches[3] ) );
4963 $parameterMatches = StringUtils
::explode( '|', $matches[3] );
4965 foreach ( $parameterMatches as $parameterMatch ) {
4966 list( $magicName, $match ) = $mwArray->matchVariableStartToEnd( $parameterMatch );
4968 $paramName = $paramMap[$magicName];
4970 switch ( $paramName ) {
4971 case 'gallery-internal-alt':
4972 $alt = $this->stripAltText( $match, false );
4974 case 'gallery-internal-link':
4975 $linkValue = strip_tags( $this->replaceLinkHoldersText( $match ) );
4976 $chars = self
::EXT_LINK_URL_CLASS
;
4977 $addr = self
::EXT_LINK_ADDR
;
4978 $prots = $this->mUrlProtocols
;
4979 // check to see if link matches an absolute url, if not then it must be a wiki link.
4980 if ( preg_match( "/^($prots)$addr$chars*$/u", $linkValue ) ) {
4983 $localLinkTitle = Title
::newFromText( $linkValue );
4984 if ( $localLinkTitle !== null ) {
4985 $link = $localLinkTitle->getLinkURL();
4990 // Must be a handler specific parameter.
4991 if ( $handler->validateParam( $paramName, $match ) ) {
4992 $handlerOptions[$paramName] = $match;
4994 // Guess not, consider it as caption.
4995 wfDebug( "$parameterMatch failed parameter validation\n" );
4996 $label = '|' . $parameterMatch;
5002 $label = '|' . $parameterMatch;
5006 $label = substr( $label, 1 );
5009 $ig->add( $title, $label, $alt, $link, $handlerOptions );
5011 $html = $ig->toHTML();
5012 Hooks
::run( 'AfterParserFetchFileAndTitle', [ $this, $ig, &$html ] );
5017 * @param MediaHandler $handler
5020 public function getImageParams( $handler ) {
5022 $handlerClass = get_class( $handler );
5026 if ( !isset( $this->mImageParams
[$handlerClass] ) ) {
5027 # Initialise static lists
5028 static $internalParamNames = [
5029 'horizAlign' => [ 'left', 'right', 'center', 'none' ],
5030 'vertAlign' => [ 'baseline', 'sub', 'super', 'top', 'text-top', 'middle',
5031 'bottom', 'text-bottom' ],
5032 'frame' => [ 'thumbnail', 'manualthumb', 'framed', 'frameless',
5033 'upright', 'border', 'link', 'alt', 'class' ],
5035 static $internalParamMap;
5036 if ( !$internalParamMap ) {
5037 $internalParamMap = [];
5038 foreach ( $internalParamNames as $type => $names ) {
5039 foreach ( $names as $name ) {
5040 $magicName = str_replace( '-', '_', "img_$name" );
5041 $internalParamMap[$magicName] = [ $type, $name ];
5046 # Add handler params
5047 $paramMap = $internalParamMap;
5049 $handlerParamMap = $handler->getParamMap();
5050 foreach ( $handlerParamMap as $magic => $paramName ) {
5051 $paramMap[$magic] = [ 'handler', $paramName ];
5054 $this->mImageParams
[$handlerClass] = $paramMap;
5055 $this->mImageParamsMagicArray
[$handlerClass] = new MagicWordArray( array_keys( $paramMap ) );
5057 return [ $this->mImageParams
[$handlerClass], $this->mImageParamsMagicArray
[$handlerClass] ];
5061 * Parse image options text and use it to make an image
5063 * @param Title $title
5064 * @param string $options
5065 * @param LinkHolderArray|bool $holders
5066 * @return string HTML
5068 public function makeImage( $title, $options, $holders = false ) {
5069 # Check if the options text is of the form "options|alt text"
5071 # * thumbnail make a thumbnail with enlarge-icon and caption, alignment depends on lang
5072 # * left no resizing, just left align. label is used for alt= only
5073 # * right same, but right aligned
5074 # * none same, but not aligned
5075 # * ___px scale to ___ pixels width, no aligning. e.g. use in taxobox
5076 # * center center the image
5077 # * frame Keep original image size, no magnify-button.
5078 # * framed Same as "frame"
5079 # * frameless like 'thumb' but without a frame. Keeps user preferences for width
5080 # * upright reduce width for upright images, rounded to full __0 px
5081 # * border draw a 1px border around the image
5082 # * alt Text for HTML alt attribute (defaults to empty)
5083 # * class Set a class for img node
5084 # * link Set the target of the image link. Can be external, interwiki, or local
5085 # vertical-align values (no % or length right now):
5095 $parts = StringUtils
::explode( "|", $options );
5097 # Give extensions a chance to select the file revision for us
5100 Hooks
::run( 'BeforeParserFetchFileAndTitle',
5101 [ $this, $title, &$options, &$descQuery ] );
5102 # Fetch and register the file (file title may be different via hooks)
5103 list( $file, $title ) = $this->fetchFileAndTitle( $title, $options );
5106 $handler = $file ?
$file->getHandler() : false;
5108 list( $paramMap, $mwArray ) = $this->getImageParams( $handler );
5111 $this->addTrackingCategory( 'broken-file-category' );
5114 # Process the input parameters
5116 $params = [ 'frame' => [], 'handler' => [],
5117 'horizAlign' => [], 'vertAlign' => [] ];
5118 $seenformat = false;
5119 foreach ( $parts as $part ) {
5120 $part = trim( $part );
5121 list( $magicName, $value ) = $mwArray->matchVariableStartToEnd( $part );
5123 if ( isset( $paramMap[$magicName] ) ) {
5124 list( $type, $paramName ) = $paramMap[$magicName];
5126 # Special case; width and height come in one variable together
5127 if ( $type === 'handler' && $paramName === 'width' ) {
5128 $parsedWidthParam = $this->parseWidthParam( $value );
5129 if ( isset( $parsedWidthParam['width'] ) ) {
5130 $width = $parsedWidthParam['width'];
5131 if ( $handler->validateParam( 'width', $width ) ) {
5132 $params[$type]['width'] = $width;
5136 if ( isset( $parsedWidthParam['height'] ) ) {
5137 $height = $parsedWidthParam['height'];
5138 if ( $handler->validateParam( 'height', $height ) ) {
5139 $params[$type]['height'] = $height;
5143 # else no validation -- bug 13436
5145 if ( $type === 'handler' ) {
5146 # Validate handler parameter
5147 $validated = $handler->validateParam( $paramName, $value );
5149 # Validate internal parameters
5150 switch ( $paramName ) {
5154 # @todo FIXME: Possibly check validity here for
5155 # manualthumb? downstream behavior seems odd with
5156 # missing manual thumbs.
5158 $value = $this->stripAltText( $value, $holders );
5161 $chars = self
::EXT_LINK_URL_CLASS
;
5162 $addr = self
::EXT_LINK_ADDR
;
5163 $prots = $this->mUrlProtocols
;
5164 if ( $value === '' ) {
5165 $paramName = 'no-link';
5168 } elseif ( preg_match( "/^((?i)$prots)/", $value ) ) {
5169 if ( preg_match( "/^((?i)$prots)$addr$chars*$/u", $value, $m ) ) {
5170 $paramName = 'link-url';
5171 $this->mOutput
->addExternalLink( $value );
5172 if ( $this->mOptions
->getExternalLinkTarget() ) {
5173 $params[$type]['link-target'] = $this->mOptions
->getExternalLinkTarget();
5178 $linkTitle = Title
::newFromText( $value );
5180 $paramName = 'link-title';
5181 $value = $linkTitle;
5182 $this->mOutput
->addLink( $linkTitle );
5190 // use first appearing option, discard others.
5191 $validated = ! $seenformat;
5195 # Most other things appear to be empty or numeric...
5196 $validated = ( $value === false ||
is_numeric( trim( $value ) ) );
5201 $params[$type][$paramName] = $value;
5205 if ( !$validated ) {
5210 # Process alignment parameters
5211 if ( $params['horizAlign'] ) {
5212 $params['frame']['align'] = key( $params['horizAlign'] );
5214 if ( $params['vertAlign'] ) {
5215 $params['frame']['valign'] = key( $params['vertAlign'] );
5218 $params['frame']['caption'] = $caption;
5220 # Will the image be presented in a frame, with the caption below?
5221 $imageIsFramed = isset( $params['frame']['frame'] )
5222 ||
isset( $params['frame']['framed'] )
5223 ||
isset( $params['frame']['thumbnail'] )
5224 ||
isset( $params['frame']['manualthumb'] );
5226 # In the old days, [[Image:Foo|text...]] would set alt text. Later it
5227 # came to also set the caption, ordinary text after the image -- which
5228 # makes no sense, because that just repeats the text multiple times in
5229 # screen readers. It *also* came to set the title attribute.
5230 # Now that we have an alt attribute, we should not set the alt text to
5231 # equal the caption: that's worse than useless, it just repeats the
5232 # text. This is the framed/thumbnail case. If there's no caption, we
5233 # use the unnamed parameter for alt text as well, just for the time be-
5234 # ing, if the unnamed param is set and the alt param is not.
5235 # For the future, we need to figure out if we want to tweak this more,
5236 # e.g., introducing a title= parameter for the title; ignoring the un-
5237 # named parameter entirely for images without a caption; adding an ex-
5238 # plicit caption= parameter and preserving the old magic unnamed para-
5240 if ( $imageIsFramed ) { # Framed image
5241 if ( $caption === '' && !isset( $params['frame']['alt'] ) ) {
5242 # No caption or alt text, add the filename as the alt text so
5243 # that screen readers at least get some description of the image
5244 $params['frame']['alt'] = $title->getText();
5246 # Do not set $params['frame']['title'] because tooltips don't make sense
5248 } else { # Inline image
5249 if ( !isset( $params['frame']['alt'] ) ) {
5250 # No alt text, use the "caption" for the alt text
5251 if ( $caption !== '' ) {
5252 $params['frame']['alt'] = $this->stripAltText( $caption, $holders );
5254 # No caption, fall back to using the filename for the
5256 $params['frame']['alt'] = $title->getText();
5259 # Use the "caption" for the tooltip text
5260 $params['frame']['title'] = $this->stripAltText( $caption, $holders );
5263 Hooks
::run( 'ParserMakeImageParams', [ $title, $file, &$params, $this ] );
5265 # Linker does the rest
5266 $time = isset( $options['time'] ) ?
$options['time'] : false;
5267 $ret = Linker
::makeImageLink( $this, $title, $file, $params['frame'], $params['handler'],
5268 $time, $descQuery, $this->mOptions
->getThumbSize() );
5270 # Give the handler a chance to modify the parser object
5272 $handler->parserTransformHook( $this, $file );
5279 * @param string $caption
5280 * @param LinkHolderArray|bool $holders
5281 * @return mixed|string
5283 protected function stripAltText( $caption, $holders ) {
5284 # Strip bad stuff out of the title (tooltip). We can't just use
5285 # replaceLinkHoldersText() here, because if this function is called
5286 # from replaceInternalLinks2(), mLinkHolders won't be up-to-date.
5288 $tooltip = $holders->replaceText( $caption );
5290 $tooltip = $this->replaceLinkHoldersText( $caption );
5293 # make sure there are no placeholders in thumbnail attributes
5294 # that are later expanded to html- so expand them now and
5296 $tooltip = $this->mStripState
->unstripBoth( $tooltip );
5297 $tooltip = Sanitizer
::stripAllTags( $tooltip );
5303 * Set a flag in the output object indicating that the content is dynamic and
5304 * shouldn't be cached.
5305 * @deprecated since 1.28; use getOutput()->updateCacheExpiry()
5307 public function disableCache() {
5308 wfDebug( "Parser output marked as uncacheable.\n" );
5309 if ( !$this->mOutput
) {
5310 throw new MWException( __METHOD__
.
5311 " can only be called when actually parsing something" );
5313 $this->mOutput
->updateCacheExpiry( 0 ); // new style, for consistency
5317 * Callback from the Sanitizer for expanding items found in HTML attribute
5318 * values, so they can be safely tested and escaped.
5320 * @param string $text
5321 * @param bool|PPFrame $frame
5324 public function attributeStripCallback( &$text, $frame = false ) {
5325 $text = $this->replaceVariables( $text, $frame );
5326 $text = $this->mStripState
->unstripBoth( $text );
5335 public function getTags() {
5337 array_keys( $this->mTransparentTagHooks
),
5338 array_keys( $this->mTagHooks
),
5339 array_keys( $this->mFunctionTagHooks
)
5344 * Replace transparent tags in $text with the values given by the callbacks.
5346 * Transparent tag hooks are like regular XML-style tag hooks, except they
5347 * operate late in the transformation sequence, on HTML instead of wikitext.
5349 * @param string $text
5353 public function replaceTransparentTags( $text ) {
5355 $elements = array_keys( $this->mTransparentTagHooks
);
5356 $text = self
::extractTagsAndParams( $elements, $text, $matches );
5359 foreach ( $matches as $marker => $data ) {
5360 list( $element, $content, $params, $tag ) = $data;
5361 $tagName = strtolower( $element );
5362 if ( isset( $this->mTransparentTagHooks
[$tagName] ) ) {
5363 $output = call_user_func_array(
5364 $this->mTransparentTagHooks
[$tagName],
5365 [ $content, $params, $this ]
5370 $replacements[$marker] = $output;
5372 return strtr( $text, $replacements );
5376 * Break wikitext input into sections, and either pull or replace
5377 * some particular section's text.
5379 * External callers should use the getSection and replaceSection methods.
5381 * @param string $text Page wikitext
5382 * @param string|number $sectionId A section identifier string of the form:
5383 * "<flag1> - <flag2> - ... - <section number>"
5385 * Currently the only recognised flag is "T", which means the target section number
5386 * was derived during a template inclusion parse, in other words this is a template
5387 * section edit link. If no flags are given, it was an ordinary section edit link.
5388 * This flag is required to avoid a section numbering mismatch when a section is
5389 * enclosed by "<includeonly>" (bug 6563).
5391 * The section number 0 pulls the text before the first heading; other numbers will
5392 * pull the given section along with its lower-level subsections. If the section is
5393 * not found, $mode=get will return $newtext, and $mode=replace will return $text.
5395 * Section 0 is always considered to exist, even if it only contains the empty
5396 * string. If $text is the empty string and section 0 is replaced, $newText is
5399 * @param string $mode One of "get" or "replace"
5400 * @param string $newText Replacement text for section data.
5401 * @return string For "get", the extracted section text.
5402 * for "replace", the whole page with the section replaced.
5404 private function extractSections( $text, $sectionId, $mode, $newText = '' ) {
5405 global $wgTitle; # not generally used but removes an ugly failure mode
5407 $magicScopeVariable = $this->lock();
5408 $this->startParse( $wgTitle, new ParserOptions
, self
::OT_PLAIN
, true );
5410 $frame = $this->getPreprocessor()->newFrame();
5412 # Process section extraction flags
5414 $sectionParts = explode( '-', $sectionId );
5415 $sectionIndex = array_pop( $sectionParts );
5416 foreach ( $sectionParts as $part ) {
5417 if ( $part === 'T' ) {
5418 $flags |
= self
::PTD_FOR_INCLUSION
;
5422 # Check for empty input
5423 if ( strval( $text ) === '' ) {
5424 # Only sections 0 and T-0 exist in an empty document
5425 if ( $sectionIndex == 0 ) {
5426 if ( $mode === 'get' ) {
5432 if ( $mode === 'get' ) {
5440 # Preprocess the text
5441 $root = $this->preprocessToDom( $text, $flags );
5443 # <h> nodes indicate section breaks
5444 # They can only occur at the top level, so we can find them by iterating the root's children
5445 $node = $root->getFirstChild();
5447 # Find the target section
5448 if ( $sectionIndex == 0 ) {
5449 # Section zero doesn't nest, level=big
5450 $targetLevel = 1000;
5453 if ( $node->getName() === 'h' ) {
5454 $bits = $node->splitHeading();
5455 if ( $bits['i'] == $sectionIndex ) {
5456 $targetLevel = $bits['level'];
5460 if ( $mode === 'replace' ) {
5461 $outText .= $frame->expand( $node, PPFrame
::RECOVER_ORIG
);
5463 $node = $node->getNextSibling();
5469 if ( $mode === 'get' ) {
5476 # Find the end of the section, including nested sections
5478 if ( $node->getName() === 'h' ) {
5479 $bits = $node->splitHeading();
5480 $curLevel = $bits['level'];
5481 if ( $bits['i'] != $sectionIndex && $curLevel <= $targetLevel ) {
5485 if ( $mode === 'get' ) {
5486 $outText .= $frame->expand( $node, PPFrame
::RECOVER_ORIG
);
5488 $node = $node->getNextSibling();
5491 # Write out the remainder (in replace mode only)
5492 if ( $mode === 'replace' ) {
5493 # Output the replacement text
5494 # Add two newlines on -- trailing whitespace in $newText is conventionally
5495 # stripped by the editor, so we need both newlines to restore the paragraph gap
5496 # Only add trailing whitespace if there is newText
5497 if ( $newText != "" ) {
5498 $outText .= $newText . "\n\n";
5502 $outText .= $frame->expand( $node, PPFrame
::RECOVER_ORIG
);
5503 $node = $node->getNextSibling();
5507 if ( is_string( $outText ) ) {
5508 # Re-insert stripped tags
5509 $outText = rtrim( $this->mStripState
->unstripBoth( $outText ) );
5516 * This function returns the text of a section, specified by a number ($section).
5517 * A section is text under a heading like == Heading == or \<h1\>Heading\</h1\>, or
5518 * the first section before any such heading (section 0).
5520 * If a section contains subsections, these are also returned.
5522 * @param string $text Text to look in
5523 * @param string|number $sectionId Section identifier as a number or string
5524 * (e.g. 0, 1 or 'T-1').
5525 * @param string $defaultText Default to return if section is not found
5527 * @return string Text of the requested section
5529 public function getSection( $text, $sectionId, $defaultText = '' ) {
5530 return $this->extractSections( $text, $sectionId, 'get', $defaultText );
5534 * This function returns $oldtext after the content of the section
5535 * specified by $section has been replaced with $text. If the target
5536 * section does not exist, $oldtext is returned unchanged.
5538 * @param string $oldText Former text of the article
5539 * @param string|number $sectionId Section identifier as a number or string
5540 * (e.g. 0, 1 or 'T-1').
5541 * @param string $newText Replacing text
5543 * @return string Modified text
5545 public function replaceSection( $oldText, $sectionId, $newText ) {
5546 return $this->extractSections( $oldText, $sectionId, 'replace', $newText );
5550 * Get the ID of the revision we are parsing
5554 public function getRevisionId() {
5555 return $this->mRevisionId
;
5559 * Get the revision object for $this->mRevisionId
5561 * @return Revision|null Either a Revision object or null
5562 * @since 1.23 (public since 1.23)
5564 public function getRevisionObject() {
5565 if ( !is_null( $this->mRevisionObject
) ) {
5566 return $this->mRevisionObject
;
5568 if ( is_null( $this->mRevisionId
) ) {
5572 $rev = call_user_func(
5573 $this->mOptions
->getCurrentRevisionCallback(), $this->getTitle(), $this
5576 # If the parse is for a new revision, then the callback should have
5577 # already been set to force the object and should match mRevisionId.
5578 # If not, try to fetch by mRevisionId for sanity.
5579 if ( $rev && $rev->getId() != $this->mRevisionId
) {
5580 $rev = Revision
::newFromId( $this->mRevisionId
);
5583 $this->mRevisionObject
= $rev;
5585 return $this->mRevisionObject
;
5589 * Get the timestamp associated with the current revision, adjusted for
5590 * the default server-local timestamp
5593 public function getRevisionTimestamp() {
5594 if ( is_null( $this->mRevisionTimestamp
) ) {
5597 $revObject = $this->getRevisionObject();
5598 $timestamp = $revObject ?
$revObject->getTimestamp() : wfTimestampNow();
5600 # The cryptic '' timezone parameter tells to use the site-default
5601 # timezone offset instead of the user settings.
5602 # Since this value will be saved into the parser cache, served
5603 # to other users, and potentially even used inside links and such,
5604 # it needs to be consistent for all visitors.
5605 $this->mRevisionTimestamp
= $wgContLang->userAdjust( $timestamp, '' );
5608 return $this->mRevisionTimestamp
;
5612 * Get the name of the user that edited the last revision
5614 * @return string User name
5616 public function getRevisionUser() {
5617 if ( is_null( $this->mRevisionUser
) ) {
5618 $revObject = $this->getRevisionObject();
5620 # if this template is subst: the revision id will be blank,
5621 # so just use the current user's name
5623 $this->mRevisionUser
= $revObject->getUserText();
5624 } elseif ( $this->ot
['wiki'] ||
$this->mOptions
->getIsPreview() ) {
5625 $this->mRevisionUser
= $this->getUser()->getName();
5628 return $this->mRevisionUser
;
5632 * Get the size of the revision
5634 * @return int|null Revision size
5636 public function getRevisionSize() {
5637 if ( is_null( $this->mRevisionSize
) ) {
5638 $revObject = $this->getRevisionObject();
5640 # if this variable is subst: the revision id will be blank,
5641 # so just use the parser input size, because the own substituation
5642 # will change the size.
5644 $this->mRevisionSize
= $revObject->getSize();
5646 $this->mRevisionSize
= $this->mInputSize
;
5649 return $this->mRevisionSize
;
5653 * Mutator for $mDefaultSort
5655 * @param string $sort New value
5657 public function setDefaultSort( $sort ) {
5658 $this->mDefaultSort
= $sort;
5659 $this->mOutput
->setProperty( 'defaultsort', $sort );
5663 * Accessor for $mDefaultSort
5664 * Will use the empty string if none is set.
5666 * This value is treated as a prefix, so the
5667 * empty string is equivalent to sorting by
5672 public function getDefaultSort() {
5673 if ( $this->mDefaultSort
!== false ) {
5674 return $this->mDefaultSort
;
5681 * Accessor for $mDefaultSort
5682 * Unlike getDefaultSort(), will return false if none is set
5684 * @return string|bool
5686 public function getCustomDefaultSort() {
5687 return $this->mDefaultSort
;
5691 * Try to guess the section anchor name based on a wikitext fragment
5692 * presumably extracted from a heading, for example "Header" from
5695 * @param string $text
5699 public function guessSectionNameFromWikiText( $text ) {
5700 # Strip out wikitext links(they break the anchor)
5701 $text = $this->stripSectionName( $text );
5702 $text = Sanitizer
::normalizeSectionNameWhitespace( $text );
5703 return '#' . Sanitizer
::escapeId( $text, 'noninitial' );
5707 * Same as guessSectionNameFromWikiText(), but produces legacy anchors
5708 * instead. For use in redirects, since IE6 interprets Redirect: headers
5709 * as something other than UTF-8 (apparently?), resulting in breakage.
5711 * @param string $text The section name
5712 * @return string An anchor
5714 public function guessLegacySectionNameFromWikiText( $text ) {
5715 # Strip out wikitext links(they break the anchor)
5716 $text = $this->stripSectionName( $text );
5717 $text = Sanitizer
::normalizeSectionNameWhitespace( $text );
5718 return '#' . Sanitizer
::escapeId( $text, [ 'noninitial', 'legacy' ] );
5722 * Strips a text string of wikitext for use in a section anchor
5724 * Accepts a text string and then removes all wikitext from the
5725 * string and leaves only the resultant text (i.e. the result of
5726 * [[User:WikiSysop|Sysop]] would be "Sysop" and the result of
5727 * [[User:WikiSysop]] would be "User:WikiSysop") - this is intended
5728 * to create valid section anchors by mimicing the output of the
5729 * parser when headings are parsed.
5731 * @param string $text Text string to be stripped of wikitext
5732 * for use in a Section anchor
5733 * @return string Filtered text string
5735 public function stripSectionName( $text ) {
5736 # Strip internal link markup
5737 $text = preg_replace( '/\[\[:?([^[|]+)\|([^[]+)\]\]/', '$2', $text );
5738 $text = preg_replace( '/\[\[:?([^[]+)\|?\]\]/', '$1', $text );
5740 # Strip external link markup
5741 # @todo FIXME: Not tolerant to blank link text
5742 # I.E. [https://www.mediawiki.org] will render as [1] or something depending
5743 # on how many empty links there are on the page - need to figure that out.
5744 $text = preg_replace( '/\[(?i:' . $this->mUrlProtocols
. ')([^ ]+?) ([^[]+)\]/', '$2', $text );
5746 # Parse wikitext quotes (italics & bold)
5747 $text = $this->doQuotes( $text );
5750 $text = StringUtils
::delimiterReplace( '<', '>', '', $text );
5755 * strip/replaceVariables/unstrip for preprocessor regression testing
5757 * @param string $text
5758 * @param Title $title
5759 * @param ParserOptions $options
5760 * @param int $outputType
5764 public function testSrvus( $text, Title
$title, ParserOptions
$options,
5765 $outputType = self
::OT_HTML
5767 $magicScopeVariable = $this->lock();
5768 $this->startParse( $title, $options, $outputType, true );
5770 $text = $this->replaceVariables( $text );
5771 $text = $this->mStripState
->unstripBoth( $text );
5772 $text = Sanitizer
::removeHTMLtags( $text );
5777 * @param string $text
5778 * @param Title $title
5779 * @param ParserOptions $options
5782 public function testPst( $text, Title
$title, ParserOptions
$options ) {
5783 return $this->preSaveTransform( $text, $title, $options->getUser(), $options );
5787 * @param string $text
5788 * @param Title $title
5789 * @param ParserOptions $options
5792 public function testPreprocess( $text, Title
$title, ParserOptions
$options ) {
5793 return $this->testSrvus( $text, $title, $options, self
::OT_PREPROCESS
);
5797 * Call a callback function on all regions of the given text that are not
5798 * inside strip markers, and replace those regions with the return value
5799 * of the callback. For example, with input:
5803 * This will call the callback function twice, with 'aaa' and 'bbb'. Those
5804 * two strings will be replaced with the value returned by the callback in
5808 * @param callable $callback
5812 public function markerSkipCallback( $s, $callback ) {
5815 while ( $i < strlen( $s ) ) {
5816 $markerStart = strpos( $s, self
::MARKER_PREFIX
, $i );
5817 if ( $markerStart === false ) {
5818 $out .= call_user_func( $callback, substr( $s, $i ) );
5821 $out .= call_user_func( $callback, substr( $s, $i, $markerStart - $i ) );
5822 $markerEnd = strpos( $s, self
::MARKER_SUFFIX
, $markerStart );
5823 if ( $markerEnd === false ) {
5824 $out .= substr( $s, $markerStart );
5827 $markerEnd +
= strlen( self
::MARKER_SUFFIX
);
5828 $out .= substr( $s, $markerStart, $markerEnd - $markerStart );
5837 * Remove any strip markers found in the given text.
5839 * @param string $text Input string
5842 public function killMarkers( $text ) {
5843 return $this->mStripState
->killMarkers( $text );
5847 * Save the parser state required to convert the given half-parsed text to
5848 * HTML. "Half-parsed" in this context means the output of
5849 * recursiveTagParse() or internalParse(). This output has strip markers
5850 * from replaceVariables (extensionSubstitution() etc.), and link
5851 * placeholders from replaceLinkHolders().
5853 * Returns an array which can be serialized and stored persistently. This
5854 * array can later be loaded into another parser instance with
5855 * unserializeHalfParsedText(). The text can then be safely incorporated into
5856 * the return value of a parser hook.
5858 * @param string $text
5862 public function serializeHalfParsedText( $text ) {
5865 'version' => self
::HALF_PARSED_VERSION
,
5866 'stripState' => $this->mStripState
->getSubState( $text ),
5867 'linkHolders' => $this->mLinkHolders
->getSubArray( $text )
5873 * Load the parser state given in the $data array, which is assumed to
5874 * have been generated by serializeHalfParsedText(). The text contents is
5875 * extracted from the array, and its markers are transformed into markers
5876 * appropriate for the current Parser instance. This transformed text is
5877 * returned, and can be safely included in the return value of a parser
5880 * If the $data array has been stored persistently, the caller should first
5881 * check whether it is still valid, by calling isValidHalfParsedText().
5883 * @param array $data Serialized data
5884 * @throws MWException
5887 public function unserializeHalfParsedText( $data ) {
5888 if ( !isset( $data['version'] ) ||
$data['version'] != self
::HALF_PARSED_VERSION
) {
5889 throw new MWException( __METHOD__
. ': invalid version' );
5892 # First, extract the strip state.
5893 $texts = [ $data['text'] ];
5894 $texts = $this->mStripState
->merge( $data['stripState'], $texts );
5896 # Now renumber links
5897 $texts = $this->mLinkHolders
->mergeForeign( $data['linkHolders'], $texts );
5899 # Should be good to go.
5904 * Returns true if the given array, presumed to be generated by
5905 * serializeHalfParsedText(), is compatible with the current version of the
5908 * @param array $data
5912 public function isValidHalfParsedText( $data ) {
5913 return isset( $data['version'] ) && $data['version'] == self
::HALF_PARSED_VERSION
;
5917 * Parsed a width param of imagelink like 300px or 200x300px
5919 * @param string $value
5924 public function parseWidthParam( $value ) {
5925 $parsedWidthParam = [];
5926 if ( $value === '' ) {
5927 return $parsedWidthParam;
5930 # (bug 13500) In both cases (width/height and width only),
5931 # permit trailing "px" for backward compatibility.
5932 if ( preg_match( '/^([0-9]*)x([0-9]*)\s*(?:px)?\s*$/', $value, $m ) ) {
5933 $width = intval( $m[1] );
5934 $height = intval( $m[2] );
5935 $parsedWidthParam['width'] = $width;
5936 $parsedWidthParam['height'] = $height;
5937 } elseif ( preg_match( '/^[0-9]*\s*(?:px)?\s*$/', $value ) ) {
5938 $width = intval( $value );
5939 $parsedWidthParam['width'] = $width;
5941 return $parsedWidthParam;
5945 * Lock the current instance of the parser.
5947 * This is meant to stop someone from calling the parser
5948 * recursively and messing up all the strip state.
5950 * @throws MWException If parser is in a parse
5951 * @return ScopedCallback The lock will be released once the return value goes out of scope.
5953 protected function lock() {
5954 if ( $this->mInParse
) {
5955 throw new MWException( "Parser state cleared while parsing. "
5956 . "Did you call Parser::parse recursively?" );
5958 $this->mInParse
= true;
5960 $recursiveCheck = new ScopedCallback( function() {
5961 $this->mInParse
= false;
5964 return $recursiveCheck;
5968 * Strip outer <p></p> tag from the HTML source of a single paragraph.
5970 * Returns original HTML if the <p/> tag has any attributes, if there's no wrapping <p/> tag,
5971 * or if there is more than one <p/> tag in the input HTML.
5973 * @param string $html
5977 public static function stripOuterParagraph( $html ) {
5979 if ( preg_match( '/^<p>(.*)\n?<\/p>\n?$/sU', $html, $m ) ) {
5980 if ( strpos( $m[1], '</p>' ) === false ) {
5989 * Return this parser if it is not doing anything, otherwise
5990 * get a fresh parser. You can use this method by doing
5991 * $myParser = $wgParser->getFreshParser(), or more simply
5992 * $wgParser->getFreshParser()->parse( ... );
5993 * if you're unsure if $wgParser is safe to use.
5996 * @return Parser A parser object that is not parsing anything
5998 public function getFreshParser() {
5999 global $wgParserConf;
6000 if ( $this->mInParse
) {
6001 return new $wgParserConf['class']( $wgParserConf );
6008 * Set's up the PHP implementation of OOUI for use in this request
6009 * and instructs OutputPage to enable OOUI for itself.
6013 public function enableOOUI() {
6014 OutputPage
::setupOOUI();
6015 $this->mOutput
->setEnableOOUI( true );