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
25 * @defgroup Parser Parser
29 * PHP Parser - Processes wiki markup (which uses a more user-friendly
30 * syntax, such as "[[link]]" for making links), and provides a one-way
31 * transformation of that wiki markup it into (X)HTML output / markup
32 * (which in turn the browser understands, and can display).
34 * There are seven main entry points into the Parser class:
37 * produces HTML output
38 * - Parser::preSaveTransform()
39 * produces altered wiki markup
40 * - Parser::preprocess()
41 * removes HTML comments and expands templates
42 * - Parser::cleanSig() and Parser::cleanSigInSig()
43 * cleans a signature before saving it to preferences
44 * - Parser::getSection()
45 * return the content of a section from an article for section editing
46 * - Parser::replaceSection()
47 * replaces a section by number inside an article
48 * - Parser::getPreloadText()
49 * removes <noinclude> sections and <includeonly> tags
54 * @warning $wgUser or $wgTitle or $wgRequest or $wgLang. Keep them away!
57 * $wgNamespacesWithSubpages
59 * @par Settings only within ParserOptions:
60 * $wgAllowExternalImages
61 * $wgAllowSpecialInclusion
69 * Update this version number when the ParserOutput format
70 * changes in an incompatible way, so the parser cache
71 * can automatically discard old data.
73 const VERSION
= '1.6.4';
76 * Update this version number when the output of serialiseHalfParsedText()
77 * changes in an incompatible way
79 const HALF_PARSED_VERSION
= 2;
81 # Flags for Parser::setFunctionHook
82 const SFH_NO_HASH
= 1;
83 const SFH_OBJECT_ARGS
= 2;
85 # Constants needed for external link processing
86 # Everything except bracket, space, or control characters
87 # \p{Zs} is unicode 'separator, space' category. It covers the space 0x20
88 # as well as U+3000 is IDEOGRAPHIC SPACE for bug 19052
89 const EXT_LINK_URL_CLASS
= '[^][<>"\\x00-\\x20\\x7F\p{Zs}]';
90 # Simplified expression to match an IPv4 or IPv6 address, or
91 # at least one character of a host name (embeds EXT_LINK_URL_CLASS)
92 const EXT_LINK_ADDR
= '(?:[0-9.]+|\\[(?i:[0-9a-f:.]+)\\]|[^][<>"\\x00-\\x20\\x7F\p{Zs}])';
93 # RegExp to make image URLs (embeds IPv6 part of EXT_LINK_ADDR)
94 // @codingStandardsIgnoreStart Generic.Files.LineLength
95 const EXT_IMAGE_REGEX
= '/^(http:\/\/|https:\/\/)((?:\\[(?i:[0-9a-f:.]+)\\])?[^][<>"\\x00-\\x20\\x7F\p{Zs}]+)
96 \\/([A-Za-z0-9_.,~%\\-+&;#*?!=()@\\x80-\\xFF]+)\\.((?i)gif|png|jpg|jpeg)$/Sxu';
97 // @codingStandardsIgnoreEnd
99 # Regular expression for a non-newline space
100 const SPACE_NOT_NL
= '(?:\t| |&\#0*160;|&\#[Xx]0*[Aa]0;|\p{Zs})';
102 # State constants for the definition list colon extraction
103 const COLON_STATE_TEXT
= 0;
104 const COLON_STATE_TAG
= 1;
105 const COLON_STATE_TAGSTART
= 2;
106 const COLON_STATE_CLOSETAG
= 3;
107 const COLON_STATE_TAGSLASH
= 4;
108 const COLON_STATE_COMMENT
= 5;
109 const COLON_STATE_COMMENTDASH
= 6;
110 const COLON_STATE_COMMENTDASHDASH
= 7;
112 # Flags for preprocessToDom
113 const PTD_FOR_INCLUSION
= 1;
115 # Allowed values for $this->mOutputType
116 # Parameter to startExternalParse().
117 const OT_HTML
= 1; # like parse()
118 const OT_WIKI
= 2; # like preSaveTransform()
119 const OT_PREPROCESS
= 3; # like preprocess()
121 const OT_PLAIN
= 4; # like extractSections() - portions of the original are returned unchanged.
124 * @var string Prefix and suffix for temporary replacement strings
125 * for the multipass parser.
127 * \x7f should never appear in input as it's disallowed in XML.
128 * Using it at the front also gives us a little extra robustness
129 * since it shouldn't match when butted up against identifier-like
132 * Must not consist of all title characters, or else it will change
133 * the behavior of <nowiki> in a link.
135 const MARKER_SUFFIX
= "-QINU\x7f";
136 const MARKER_PREFIX
= "\x7fUNIQ-";
138 # Markers used for wrapping the table of contents
139 const TOC_START
= '<mw:toc>';
140 const TOC_END
= '</mw:toc>';
143 public $mTagHooks = [];
144 public $mTransparentTagHooks = [];
145 public $mFunctionHooks = [];
146 public $mFunctionSynonyms = [ 0 => [], 1 => [] ];
147 public $mFunctionTagHooks = [];
148 public $mStripList = [];
149 public $mDefaultStripList = [];
150 public $mVarCache = [];
151 public $mImageParams = [];
152 public $mImageParamsMagicArray = [];
153 public $mMarkerIndex = 0;
154 public $mFirstCall = true;
156 # Initialised by initialiseVariables()
159 * @var MagicWordArray
164 * @var MagicWordArray
167 # Initialised in constructor
168 public $mConf, $mExtLinkBracketedRegex, $mUrlProtocols;
170 # Initialized in getPreprocessor()
171 /** @var Preprocessor */
172 public $mPreprocessor;
174 # Cleared with clearState():
179 public $mAutonumber, $mDTopen;
186 public $mIncludeCount, $mArgStack, $mLastSection, $mInPre;
188 * @var LinkHolderArray
190 public $mLinkHolders;
193 public $mIncludeSizes, $mPPNodeCount, $mGeneratedPPNodeCount, $mHighestExpansionDepth;
194 public $mDefaultSort;
195 public $mTplRedirCache, $mTplDomCache, $mHeadings, $mDoubleUnderscores;
196 public $mExpensiveFunctionCount; # number of expensive parser function calls
197 public $mShowToc, $mForceTocPosition;
202 public $mUser; # User object; only used when doing pre-save transform
205 # These are variables reset at least once per parse regardless of $clearState
215 public $mTitle; # Title context, used for self-link rendering and similar things
216 public $mOutputType; # Output type, one of the OT_xxx constants
217 public $ot; # Shortcut alias, see setOutputType()
218 public $mRevisionObject; # The revision object of the specified revision ID
219 public $mRevisionId; # ID to display in {{REVISIONID}} tags
220 public $mRevisionTimestamp; # The timestamp of the specified revision ID
221 public $mRevisionUser; # User to display in {{REVISIONUSER}} tag
222 public $mRevisionSize; # Size to display in {{REVISIONSIZE}} variable
223 public $mRevIdForTs; # The revision ID which was used to fetch the timestamp
224 public $mInputSize = false; # For {{PAGESIZE}} on current page.
227 * @var string Deprecated accessor for the strip marker prefix.
228 * @deprecated since 1.26; use Parser::MARKER_PREFIX instead.
230 public $mUniqPrefix = Parser
::MARKER_PREFIX
;
233 * @var array Array with the language name of each language link (i.e. the
234 * interwiki prefix) in the key, value arbitrary. Used to avoid sending
235 * duplicate language links to the ParserOutput.
237 public $mLangLinkLanguages;
240 * @var MapCacheLRU|null
243 * A cache of the current revisions of titles. Keys are $title->getPrefixedDbKey()
245 public $currentRevisionCache;
248 * @var bool Recursive call protection.
249 * This variable should be treated as if it were private.
251 public $mInParse = false;
253 /** @var SectionProfiler */
254 protected $mProfiler;
259 public function __construct( $conf = [] ) {
260 $this->mConf
= $conf;
261 $this->mUrlProtocols
= wfUrlProtocols();
262 $this->mExtLinkBracketedRegex
= '/\[(((?i)' . $this->mUrlProtocols
. ')' .
263 self
::EXT_LINK_ADDR
.
264 self
::EXT_LINK_URL_CLASS
. '*)\p{Zs}*([^\]\\x00-\\x08\\x0a-\\x1F]*?)\]/Su';
265 if ( isset( $conf['preprocessorClass'] ) ) {
266 $this->mPreprocessorClass
= $conf['preprocessorClass'];
267 } elseif ( defined( 'HPHP_VERSION' ) ) {
268 # Preprocessor_Hash is much faster than Preprocessor_DOM under HipHop
269 $this->mPreprocessorClass
= 'Preprocessor_Hash';
270 } elseif ( extension_loaded( 'domxml' ) ) {
271 # PECL extension that conflicts with the core DOM extension (bug 13770)
272 wfDebug( "Warning: you have the obsolete domxml extension for PHP. Please remove it!\n" );
273 $this->mPreprocessorClass
= 'Preprocessor_Hash';
274 } elseif ( extension_loaded( 'dom' ) ) {
275 $this->mPreprocessorClass
= 'Preprocessor_DOM';
277 $this->mPreprocessorClass
= 'Preprocessor_Hash';
279 wfDebug( __CLASS__
. ": using preprocessor: {$this->mPreprocessorClass}\n" );
283 * Reduce memory usage to reduce the impact of circular references
285 public function __destruct() {
286 if ( isset( $this->mLinkHolders
) ) {
287 unset( $this->mLinkHolders
);
289 foreach ( $this as $name => $value ) {
290 unset( $this->$name );
295 * Allow extensions to clean up when the parser is cloned
297 public function __clone() {
298 $this->mInParse
= false;
300 // Bug 56226: When you create a reference "to" an object field, that
301 // makes the object field itself be a reference too (until the other
302 // reference goes out of scope). When cloning, any field that's a
303 // reference is copied as a reference in the new object. Both of these
304 // are defined PHP5 behaviors, as inconvenient as it is for us when old
305 // hooks from PHP4 days are passing fields by reference.
306 foreach ( [ 'mStripState', 'mVarCache' ] as $k ) {
307 // Make a non-reference copy of the field, then rebind the field to
308 // reference the new copy.
314 Hooks
::run( 'ParserCloned', [ $this ] );
318 * Do various kinds of initialisation on the first call of the parser
320 public function firstCallInit() {
321 if ( !$this->mFirstCall
) {
324 $this->mFirstCall
= false;
326 CoreParserFunctions
::register( $this );
327 CoreTagHooks
::register( $this );
328 $this->initialiseVariables();
330 Hooks
::run( 'ParserFirstCallInit', [ &$this ] );
338 public function clearState() {
339 if ( $this->mFirstCall
) {
340 $this->firstCallInit();
342 $this->mOutput
= new ParserOutput
;
343 $this->mOptions
->registerWatcher( [ $this->mOutput
, 'recordOption' ] );
344 $this->mAutonumber
= 0;
345 $this->mLastSection
= '';
346 $this->mDTopen
= false;
347 $this->mIncludeCount
= [];
348 $this->mArgStack
= false;
349 $this->mInPre
= false;
350 $this->mLinkHolders
= new LinkHolderArray( $this );
352 $this->mRevisionObject
= $this->mRevisionTimestamp
=
353 $this->mRevisionId
= $this->mRevisionUser
= $this->mRevisionSize
= null;
354 $this->mVarCache
= [];
356 $this->mLangLinkLanguages
= [];
357 $this->currentRevisionCache
= null;
359 $this->mStripState
= new StripState
;
361 # Clear these on every parse, bug 4549
362 $this->mTplRedirCache
= $this->mTplDomCache
= [];
364 $this->mShowToc
= true;
365 $this->mForceTocPosition
= false;
366 $this->mIncludeSizes
= [
370 $this->mPPNodeCount
= 0;
371 $this->mGeneratedPPNodeCount
= 0;
372 $this->mHighestExpansionDepth
= 0;
373 $this->mDefaultSort
= false;
374 $this->mHeadings
= [];
375 $this->mDoubleUnderscores
= [];
376 $this->mExpensiveFunctionCount
= 0;
379 if ( isset( $this->mPreprocessor
) && $this->mPreprocessor
->parser
!== $this ) {
380 $this->mPreprocessor
= null;
383 $this->mProfiler
= new SectionProfiler();
385 Hooks
::run( 'ParserClearState', [ &$this ] );
389 * Convert wikitext to HTML
390 * Do not call this function recursively.
392 * @param string $text Text we want to parse
393 * @param Title $title
394 * @param ParserOptions $options
395 * @param bool $linestart
396 * @param bool $clearState
397 * @param int $revid Number to pass in {{REVISIONID}}
398 * @return ParserOutput A ParserOutput
400 public function parse( $text, Title
$title, ParserOptions
$options,
401 $linestart = true, $clearState = true, $revid = null
404 * First pass--just handle <nowiki> sections, pass the rest off
405 * to internalParse() which does all the real work.
408 global $wgShowHostnames;
411 // We use U+007F DELETE to construct strip markers, so we have to make
412 // sure that this character does not occur in the input text.
413 $text = strtr( $text, "\x7f", "?" );
414 $magicScopeVariable = $this->lock();
417 $this->startParse( $title, $options, self
::OT_HTML
, $clearState );
419 $this->currentRevisionCache
= null;
420 $this->mInputSize
= strlen( $text );
421 if ( $this->mOptions
->getEnableLimitReport() ) {
422 $this->mOutput
->resetParseStartTime();
425 $oldRevisionId = $this->mRevisionId
;
426 $oldRevisionObject = $this->mRevisionObject
;
427 $oldRevisionTimestamp = $this->mRevisionTimestamp
;
428 $oldRevisionUser = $this->mRevisionUser
;
429 $oldRevisionSize = $this->mRevisionSize
;
430 if ( $revid !== null ) {
431 $this->mRevisionId
= $revid;
432 $this->mRevisionObject
= null;
433 $this->mRevisionTimestamp
= null;
434 $this->mRevisionUser
= null;
435 $this->mRevisionSize
= null;
438 Hooks
::run( 'ParserBeforeStrip', [ &$this, &$text, &$this->mStripState
] );
440 Hooks
::run( 'ParserAfterStrip', [ &$this, &$text, &$this->mStripState
] );
441 $text = $this->internalParse( $text );
442 Hooks
::run( 'ParserAfterParse', [ &$this, &$text, &$this->mStripState
] );
444 $text = $this->internalParseHalfParsed( $text, true, $linestart );
447 * A converted title will be provided in the output object if title and
448 * content conversion are enabled, the article text does not contain
449 * a conversion-suppressing double-underscore tag, and no
450 * {{DISPLAYTITLE:...}} is present. DISPLAYTITLE takes precedence over
451 * automatic link conversion.
453 if ( !( $options->getDisableTitleConversion()
454 ||
isset( $this->mDoubleUnderscores
['nocontentconvert'] )
455 ||
isset( $this->mDoubleUnderscores
['notitleconvert'] )
456 ||
$this->mOutput
->getDisplayTitle() !== false )
458 $convruletitle = $this->getConverterLanguage()->getConvRuleTitle();
459 if ( $convruletitle ) {
460 $this->mOutput
->setTitleText( $convruletitle );
462 $titleText = $this->getConverterLanguage()->convertTitle( $title );
463 $this->mOutput
->setTitleText( $titleText );
467 if ( $this->mExpensiveFunctionCount
> $this->mOptions
->getExpensiveParserFunctionLimit() ) {
468 $this->limitationWarn( 'expensive-parserfunction',
469 $this->mExpensiveFunctionCount
,
470 $this->mOptions
->getExpensiveParserFunctionLimit()
474 # Information on include size limits, for the benefit of users who try to skirt them
475 if ( $this->mOptions
->getEnableLimitReport() ) {
476 $max = $this->mOptions
->getMaxIncludeSize();
478 $cpuTime = $this->mOutput
->getTimeSinceStart( 'cpu' );
479 if ( $cpuTime !== null ) {
480 $this->mOutput
->setLimitReportData( 'limitreport-cputime',
481 sprintf( "%.3f", $cpuTime )
485 $wallTime = $this->mOutput
->getTimeSinceStart( 'wall' );
486 $this->mOutput
->setLimitReportData( 'limitreport-walltime',
487 sprintf( "%.3f", $wallTime )
490 $this->mOutput
->setLimitReportData( 'limitreport-ppvisitednodes',
491 [ $this->mPPNodeCount
, $this->mOptions
->getMaxPPNodeCount() ]
493 $this->mOutput
->setLimitReportData( 'limitreport-ppgeneratednodes',
494 [ $this->mGeneratedPPNodeCount
, $this->mOptions
->getMaxGeneratedPPNodeCount() ]
496 $this->mOutput
->setLimitReportData( 'limitreport-postexpandincludesize',
497 [ $this->mIncludeSizes
['post-expand'], $max ]
499 $this->mOutput
->setLimitReportData( 'limitreport-templateargumentsize',
500 [ $this->mIncludeSizes
['arg'], $max ]
502 $this->mOutput
->setLimitReportData( 'limitreport-expansiondepth',
503 [ $this->mHighestExpansionDepth
, $this->mOptions
->getMaxPPExpandDepth() ]
505 $this->mOutput
->setLimitReportData( 'limitreport-expensivefunctioncount',
506 [ $this->mExpensiveFunctionCount
, $this->mOptions
->getExpensiveParserFunctionLimit() ]
508 Hooks
::run( 'ParserLimitReportPrepare', [ $this, $this->mOutput
] );
510 $limitReport = "NewPP limit report\n";
511 if ( $wgShowHostnames ) {
512 $limitReport .= 'Parsed by ' . wfHostname() . "\n";
514 $limitReport .= 'Cached time: ' . $this->mOutput
->getCacheTime() . "\n";
515 $limitReport .= 'Cache expiry: ' . $this->mOutput
->getCacheExpiry() . "\n";
516 $limitReport .= 'Dynamic content: ' .
517 ( $this->mOutput
->hasDynamicContent() ?
'true' : 'false' ) .
520 foreach ( $this->mOutput
->getLimitReportData() as $key => $value ) {
521 if ( Hooks
::run( 'ParserLimitReportFormat',
522 [ $key, &$value, &$limitReport, false, false ]
524 $keyMsg = wfMessage( $key )->inLanguage( 'en' )->useDatabase( false );
525 $valueMsg = wfMessage( [ "$key-value-text", "$key-value" ] )
526 ->inLanguage( 'en' )->useDatabase( false );
527 if ( !$valueMsg->exists() ) {
528 $valueMsg = new RawMessage( '$1' );
530 if ( !$keyMsg->isDisabled() && !$valueMsg->isDisabled() ) {
531 $valueMsg->params( $value );
532 $limitReport .= "{$keyMsg->text()}: {$valueMsg->text()}\n";
536 // Since we're not really outputting HTML, decode the entities and
537 // then re-encode the things that need hiding inside HTML comments.
538 $limitReport = htmlspecialchars_decode( $limitReport );
539 Hooks
::run( 'ParserLimitReport', [ $this, &$limitReport ] );
541 // Sanitize for comment. Note '‐' in the replacement is U+2010,
542 // which looks much like the problematic '-'.
543 $limitReport = str_replace( [ '-', '&' ], [ '‐', '&' ], $limitReport );
544 $text .= "\n<!-- \n$limitReport-->\n";
546 // Add on template profiling data
547 $dataByFunc = $this->mProfiler
->getFunctionStats();
548 uasort( $dataByFunc, function ( $a, $b ) {
549 return $a['real'] < $b['real']; // descending order
551 $profileReport = "Transclusion expansion time report (%,ms,calls,template)\n";
552 foreach ( array_slice( $dataByFunc, 0, 10 ) as $item ) {
553 $profileReport .= sprintf( "%6.2f%% %8.3f %6d - %s\n",
554 $item['%real'], $item['real'], $item['calls'],
555 htmlspecialchars( $item['name'] ) );
557 $text .= "\n<!-- \n$profileReport-->\n";
559 if ( $this->mGeneratedPPNodeCount
> $this->mOptions
->getMaxGeneratedPPNodeCount() / 10 ) {
560 wfDebugLog( 'generated-pp-node-count', $this->mGeneratedPPNodeCount
. ' ' .
561 $this->mTitle
->getPrefixedDBkey() );
564 $this->mOutput
->setText( $text );
566 $this->mRevisionId
= $oldRevisionId;
567 $this->mRevisionObject
= $oldRevisionObject;
568 $this->mRevisionTimestamp
= $oldRevisionTimestamp;
569 $this->mRevisionUser
= $oldRevisionUser;
570 $this->mRevisionSize
= $oldRevisionSize;
571 $this->mInputSize
= false;
572 $this->currentRevisionCache
= null;
574 return $this->mOutput
;
578 * Half-parse wikitext to half-parsed HTML. This recursive parser entry point
579 * can be called from an extension tag hook.
581 * The output of this function IS NOT SAFE PARSED HTML; it is "half-parsed"
582 * instead, which means that lists and links have not been fully parsed yet,
583 * and strip markers are still present.
585 * Use recursiveTagParseFully() to fully parse wikitext to output-safe HTML.
587 * Use this function if you're a parser tag hook and you want to parse
588 * wikitext before or after applying additional transformations, and you
589 * intend to *return the result as hook output*, which will cause it to go
590 * through the rest of parsing process automatically.
592 * If $frame is not provided, then template variables (e.g., {{{1}}}) within
593 * $text are not expanded
595 * @param string $text Text extension wants to have parsed
596 * @param bool|PPFrame $frame The frame to use for expanding any template variables
597 * @return string UNSAFE half-parsed HTML
599 public function recursiveTagParse( $text, $frame = false ) {
600 Hooks
::run( 'ParserBeforeStrip', [ &$this, &$text, &$this->mStripState
] );
601 Hooks
::run( 'ParserAfterStrip', [ &$this, &$text, &$this->mStripState
] );
602 $text = $this->internalParse( $text, false, $frame );
607 * Fully parse wikitext to fully parsed HTML. This recursive parser entry
608 * point can be called from an extension tag hook.
610 * The output of this function is fully-parsed HTML that is safe for output.
611 * If you're a parser tag hook, you might want to use recursiveTagParse()
614 * If $frame is not provided, then template variables (e.g., {{{1}}}) within
615 * $text are not expanded
619 * @param string $text Text extension wants to have parsed
620 * @param bool|PPFrame $frame The frame to use for expanding any template variables
621 * @return string Fully parsed HTML
623 public function recursiveTagParseFully( $text, $frame = false ) {
624 $text = $this->recursiveTagParse( $text, $frame );
625 $text = $this->internalParseHalfParsed( $text, false );
630 * Expand templates and variables in the text, producing valid, static wikitext.
631 * Also removes comments.
632 * Do not call this function recursively.
633 * @param string $text
634 * @param Title $title
635 * @param ParserOptions $options
636 * @param int|null $revid
637 * @param bool|PPFrame $frame
638 * @return mixed|string
640 public function preprocess( $text, Title
$title = null,
641 ParserOptions
$options, $revid = null, $frame = false
643 $magicScopeVariable = $this->lock();
644 $this->startParse( $title, $options, self
::OT_PREPROCESS
, true );
645 if ( $revid !== null ) {
646 $this->mRevisionId
= $revid;
648 Hooks
::run( 'ParserBeforeStrip', [ &$this, &$text, &$this->mStripState
] );
649 Hooks
::run( 'ParserAfterStrip', [ &$this, &$text, &$this->mStripState
] );
650 $text = $this->replaceVariables( $text, $frame );
651 $text = $this->mStripState
->unstripBoth( $text );
656 * Recursive parser entry point that can be called from an extension tag
659 * @param string $text Text to be expanded
660 * @param bool|PPFrame $frame The frame to use for expanding any template variables
664 public function recursivePreprocess( $text, $frame = false ) {
665 $text = $this->replaceVariables( $text, $frame );
666 $text = $this->mStripState
->unstripBoth( $text );
671 * Process the wikitext for the "?preload=" feature. (bug 5210)
673 * "<noinclude>", "<includeonly>" etc. are parsed as for template
674 * transclusion, comments, templates, arguments, tags hooks and parser
675 * functions are untouched.
677 * @param string $text
678 * @param Title $title
679 * @param ParserOptions $options
680 * @param array $params
683 public function getPreloadText( $text, Title
$title, ParserOptions
$options, $params = [] ) {
684 $msg = new RawMessage( $text );
685 $text = $msg->params( $params )->plain();
687 # Parser (re)initialisation
688 $magicScopeVariable = $this->lock();
689 $this->startParse( $title, $options, self
::OT_PLAIN
, true );
691 $flags = PPFrame
::NO_ARGS | PPFrame
::NO_TEMPLATES
;
692 $dom = $this->preprocessToDom( $text, self
::PTD_FOR_INCLUSION
);
693 $text = $this->getPreprocessor()->newFrame()->expand( $dom, $flags );
694 $text = $this->mStripState
->unstripBoth( $text );
699 * Get a random string
702 * @deprecated since 1.26; use wfRandomString() instead.
704 public static function getRandomString() {
705 wfDeprecated( __METHOD__
, '1.26' );
706 return wfRandomString( 16 );
710 * Set the current user.
711 * Should only be used when doing pre-save transform.
713 * @param User|null $user User object or null (to reset)
715 public function setUser( $user ) {
716 $this->mUser
= $user;
720 * Accessor for mUniqPrefix.
723 * @deprecated since 1.26; use Parser::MARKER_PREFIX instead.
725 public function uniqPrefix() {
726 wfDeprecated( __METHOD__
, '1.26' );
727 return self
::MARKER_PREFIX
;
731 * Set the context title
735 public function setTitle( $t ) {
737 $t = Title
::newFromText( 'NO TITLE' );
740 if ( $t->hasFragment() ) {
741 # Strip the fragment to avoid various odd effects
742 $this->mTitle
= clone $t;
743 $this->mTitle
->setFragment( '' );
750 * Accessor for the Title object
754 public function getTitle() {
755 return $this->mTitle
;
759 * Accessor/mutator for the Title object
761 * @param Title $x Title object or null to just get the current one
764 public function Title( $x = null ) {
765 return wfSetVar( $this->mTitle
, $x );
769 * Set the output type
771 * @param int $ot New value
773 public function setOutputType( $ot ) {
774 $this->mOutputType
= $ot;
777 'html' => $ot == self
::OT_HTML
,
778 'wiki' => $ot == self
::OT_WIKI
,
779 'pre' => $ot == self
::OT_PREPROCESS
,
780 'plain' => $ot == self
::OT_PLAIN
,
785 * Accessor/mutator for the output type
787 * @param int|null $x New value or null to just get the current one
790 public function OutputType( $x = null ) {
791 return wfSetVar( $this->mOutputType
, $x );
795 * Get the ParserOutput object
797 * @return ParserOutput
799 public function getOutput() {
800 return $this->mOutput
;
804 * Get the ParserOptions object
806 * @return ParserOptions
808 public function getOptions() {
809 return $this->mOptions
;
813 * Accessor/mutator for the ParserOptions object
815 * @param ParserOptions $x New value or null to just get the current one
816 * @return ParserOptions Current ParserOptions object
818 public function Options( $x = null ) {
819 return wfSetVar( $this->mOptions
, $x );
825 public function nextLinkID() {
826 return $this->mLinkID++
;
832 public function setLinkID( $id ) {
833 $this->mLinkID
= $id;
837 * Get a language object for use in parser functions such as {{FORMATNUM:}}
840 public function getFunctionLang() {
841 return $this->getTargetLanguage();
845 * Get the target language for the content being parsed. This is usually the
846 * language that the content is in.
850 * @throws MWException
853 public function getTargetLanguage() {
854 $target = $this->mOptions
->getTargetLanguage();
856 if ( $target !== null ) {
858 } elseif ( $this->mOptions
->getInterfaceMessage() ) {
859 return $this->mOptions
->getUserLangObj();
860 } elseif ( is_null( $this->mTitle
) ) {
861 throw new MWException( __METHOD__
. ': $this->mTitle is null' );
864 return $this->mTitle
->getPageLanguage();
868 * Get the language object for language conversion
869 * @return Language|null
871 public function getConverterLanguage() {
872 return $this->getTargetLanguage();
876 * Get a User object either from $this->mUser, if set, or from the
877 * ParserOptions object otherwise
881 public function getUser() {
882 if ( !is_null( $this->mUser
) ) {
885 return $this->mOptions
->getUser();
889 * Get a preprocessor object
891 * @return Preprocessor
893 public function getPreprocessor() {
894 if ( !isset( $this->mPreprocessor
) ) {
895 $class = $this->mPreprocessorClass
;
896 $this->mPreprocessor
= new $class( $this );
898 return $this->mPreprocessor
;
902 * Replaces all occurrences of HTML-style comments and the given tags
903 * in the text with a random marker and returns the next text. The output
904 * parameter $matches will be an associative array filled with data in
908 * 'UNIQ-xxxxx' => array(
911 * array( 'param' => 'x' ),
912 * '<element param="x">tag content</element>' ) )
915 * @param array $elements List of element names. Comments are always extracted.
916 * @param string $text Source text string.
917 * @param array $matches Out parameter, Array: extracted tags
918 * @param string|null $uniq_prefix
919 * @return string Stripped text
920 * @since 1.26 The uniq_prefix argument is deprecated.
922 public static function extractTagsAndParams( $elements, $text, &$matches, $uniq_prefix = null ) {
923 if ( $uniq_prefix !== null ) {
924 wfDeprecated( __METHOD__
. ' called with $prefix argument', '1.26' );
930 $taglist = implode( '|', $elements );
931 $start = "/<($taglist)(\\s+[^>]*?|\\s*?)(\/?" . ">)|<(!--)/i";
933 while ( $text != '' ) {
934 $p = preg_split( $start, $text, 2, PREG_SPLIT_DELIM_CAPTURE
);
936 if ( count( $p ) < 5 ) {
939 if ( count( $p ) > 5 ) {
953 $marker = self
::MARKER_PREFIX
. "-$element-" . sprintf( '%08X', $n++
) . self
::MARKER_SUFFIX
;
954 $stripped .= $marker;
956 if ( $close === '/>' ) {
957 # Empty element tag, <tag />
962 if ( $element === '!--' ) {
965 $end = "/(<\\/$element\\s*>)/i";
967 $q = preg_split( $end, $inside, 2, PREG_SPLIT_DELIM_CAPTURE
);
969 if ( count( $q ) < 3 ) {
970 # No end tag -- let it run out to the end of the text.
979 $matches[$marker] = [ $element,
981 Sanitizer
::decodeTagAttributes( $attributes ),
982 "<$element$attributes$close$content$tail" ];
988 * Get a list of strippable XML-like elements
992 public function getStripList() {
993 return $this->mStripList
;
997 * Add an item to the strip state
998 * Returns the unique tag which must be inserted into the stripped text
999 * The tag will be replaced with the original text in unstrip()
1001 * @param string $text
1005 public function insertStripItem( $text ) {
1006 $marker = self
::MARKER_PREFIX
. "-item-{$this->mMarkerIndex}-" . self
::MARKER_SUFFIX
;
1007 $this->mMarkerIndex++
;
1008 $this->mStripState
->addGeneral( $marker, $text );
1013 * parse the wiki syntax used to render tables
1016 * @param string $text
1019 public function doTableStuff( $text ) {
1021 $lines = StringUtils
::explode( "\n", $text );
1023 $td_history = []; # Is currently a td tag open?
1024 $last_tag_history = []; # Save history of last lag activated (td, th or caption)
1025 $tr_history = []; # Is currently a tr tag open?
1026 $tr_attributes = []; # history of tr attributes
1027 $has_opened_tr = []; # Did this table open a <tr> element?
1028 $indent_level = 0; # indent level of the table
1030 foreach ( $lines as $outLine ) {
1031 $line = trim( $outLine );
1033 if ( $line === '' ) { # empty line, go to next line
1034 $out .= $outLine . "\n";
1038 $first_character = $line[0];
1039 $first_two = substr( $line, 0, 2 );
1042 if ( preg_match( '/^(:*)\s*\{\|(.*)$/', $line, $matches ) ) {
1043 # First check if we are starting a new table
1044 $indent_level = strlen( $matches[1] );
1046 $attributes = $this->mStripState
->unstripBoth( $matches[2] );
1047 $attributes = Sanitizer
::fixTagAttributes( $attributes, 'table' );
1049 $outLine = str_repeat( '<dl><dd>', $indent_level ) . "<table{$attributes}>";
1050 array_push( $td_history, false );
1051 array_push( $last_tag_history, '' );
1052 array_push( $tr_history, false );
1053 array_push( $tr_attributes, '' );
1054 array_push( $has_opened_tr, false );
1055 } elseif ( count( $td_history ) == 0 ) {
1056 # Don't do any of the following
1057 $out .= $outLine . "\n";
1059 } elseif ( $first_two === '|}' ) {
1060 # We are ending a table
1061 $line = '</table>' . substr( $line, 2 );
1062 $last_tag = array_pop( $last_tag_history );
1064 if ( !array_pop( $has_opened_tr ) ) {
1065 $line = "<tr><td></td></tr>{$line}";
1068 if ( array_pop( $tr_history ) ) {
1069 $line = "</tr>{$line}";
1072 if ( array_pop( $td_history ) ) {
1073 $line = "</{$last_tag}>{$line}";
1075 array_pop( $tr_attributes );
1076 $outLine = $line . str_repeat( '</dd></dl>', $indent_level );
1077 } elseif ( $first_two === '|-' ) {
1078 # Now we have a table row
1079 $line = preg_replace( '#^\|-+#', '', $line );
1081 # Whats after the tag is now only attributes
1082 $attributes = $this->mStripState
->unstripBoth( $line );
1083 $attributes = Sanitizer
::fixTagAttributes( $attributes, 'tr' );
1084 array_pop( $tr_attributes );
1085 array_push( $tr_attributes, $attributes );
1088 $last_tag = array_pop( $last_tag_history );
1089 array_pop( $has_opened_tr );
1090 array_push( $has_opened_tr, true );
1092 if ( array_pop( $tr_history ) ) {
1096 if ( array_pop( $td_history ) ) {
1097 $line = "</{$last_tag}>{$line}";
1101 array_push( $tr_history, false );
1102 array_push( $td_history, false );
1103 array_push( $last_tag_history, '' );
1104 } elseif ( $first_character === '|'
1105 ||
$first_character === '!'
1106 ||
$first_two === '|+'
1108 # This might be cell elements, td, th or captions
1109 if ( $first_two === '|+' ) {
1110 $first_character = '+';
1111 $line = substr( $line, 2 );
1113 $line = substr( $line, 1 );
1116 // Implies both are valid for table headings.
1117 if ( $first_character === '!' ) {
1118 $line = StringUtils
::replaceMarkup( '!!', '||', $line );
1121 # Split up multiple cells on the same line.
1122 # FIXME : This can result in improper nesting of tags processed
1123 # by earlier parser steps.
1124 $cells = explode( '||', $line );
1128 # Loop through each table cell
1129 foreach ( $cells as $cell ) {
1131 if ( $first_character !== '+' ) {
1132 $tr_after = array_pop( $tr_attributes );
1133 if ( !array_pop( $tr_history ) ) {
1134 $previous = "<tr{$tr_after}>\n";
1136 array_push( $tr_history, true );
1137 array_push( $tr_attributes, '' );
1138 array_pop( $has_opened_tr );
1139 array_push( $has_opened_tr, true );
1142 $last_tag = array_pop( $last_tag_history );
1144 if ( array_pop( $td_history ) ) {
1145 $previous = "</{$last_tag}>\n{$previous}";
1148 if ( $first_character === '|' ) {
1150 } elseif ( $first_character === '!' ) {
1152 } elseif ( $first_character === '+' ) {
1153 $last_tag = 'caption';
1158 array_push( $last_tag_history, $last_tag );
1160 # A cell could contain both parameters and data
1161 $cell_data = explode( '|', $cell, 2 );
1163 # Bug 553: Note that a '|' inside an invalid link should not
1164 # be mistaken as delimiting cell parameters
1165 if ( strpos( $cell_data[0], '[[' ) !== false ) {
1166 $cell = "{$previous}<{$last_tag}>{$cell}";
1167 } elseif ( count( $cell_data ) == 1 ) {
1168 $cell = "{$previous}<{$last_tag}>{$cell_data[0]}";
1170 $attributes = $this->mStripState
->unstripBoth( $cell_data[0] );
1171 $attributes = Sanitizer
::fixTagAttributes( $attributes, $last_tag );
1172 $cell = "{$previous}<{$last_tag}{$attributes}>{$cell_data[1]}";
1176 array_push( $td_history, true );
1179 $out .= $outLine . "\n";
1182 # Closing open td, tr && table
1183 while ( count( $td_history ) > 0 ) {
1184 if ( array_pop( $td_history ) ) {
1187 if ( array_pop( $tr_history ) ) {
1190 if ( !array_pop( $has_opened_tr ) ) {
1191 $out .= "<tr><td></td></tr>\n";
1194 $out .= "</table>\n";
1197 # Remove trailing line-ending (b/c)
1198 if ( substr( $out, -1 ) === "\n" ) {
1199 $out = substr( $out, 0, -1 );
1202 # special case: don't return empty table
1203 if ( $out === "<table>\n<tr><td></td></tr>\n</table>" ) {
1211 * Helper function for parse() that transforms wiki markup into half-parsed
1212 * HTML. Only called for $mOutputType == self::OT_HTML.
1216 * @param string $text The text to parse
1217 * @param bool $isMain Whether this is being called from the main parse() function
1218 * @param PPFrame|bool $frame A pre-processor frame
1222 public function internalParse( $text, $isMain = true, $frame = false ) {
1226 # Hook to suspend the parser in this state
1227 if ( !Hooks
::run( 'ParserBeforeInternalParse', [ &$this, &$text, &$this->mStripState
] ) ) {
1231 # if $frame is provided, then use $frame for replacing any variables
1233 # use frame depth to infer how include/noinclude tags should be handled
1234 # depth=0 means this is the top-level document; otherwise it's an included document
1235 if ( !$frame->depth
) {
1238 $flag = Parser
::PTD_FOR_INCLUSION
;
1240 $dom = $this->preprocessToDom( $text, $flag );
1241 $text = $frame->expand( $dom );
1243 # if $frame is not provided, then use old-style replaceVariables
1244 $text = $this->replaceVariables( $text );
1247 Hooks
::run( 'InternalParseBeforeSanitize', [ &$this, &$text, &$this->mStripState
] );
1248 $text = Sanitizer
::removeHTMLtags(
1250 [ &$this, 'attributeStripCallback' ],
1252 array_keys( $this->mTransparentTagHooks
)
1254 Hooks
::run( 'InternalParseBeforeLinks', [ &$this, &$text, &$this->mStripState
] );
1256 # Tables need to come after variable replacement for things to work
1257 # properly; putting them before other transformations should keep
1258 # exciting things like link expansions from showing up in surprising
1260 $text = $this->doTableStuff( $text );
1262 $text = preg_replace( '/(^|\n)-----*/', '\\1<hr />', $text );
1264 $text = $this->doDoubleUnderscore( $text );
1266 $text = $this->doHeadings( $text );
1267 $text = $this->replaceInternalLinks( $text );
1268 $text = $this->doAllQuotes( $text );
1269 $text = $this->replaceExternalLinks( $text );
1271 # replaceInternalLinks may sometimes leave behind
1272 # absolute URLs, which have to be masked to hide them from replaceExternalLinks
1273 $text = str_replace( self
::MARKER_PREFIX
. 'NOPARSE', '', $text );
1275 $text = $this->doMagicLinks( $text );
1276 $text = $this->formatHeadings( $text, $origText, $isMain );
1282 * Helper function for parse() that transforms half-parsed HTML into fully
1285 * @param string $text
1286 * @param bool $isMain
1287 * @param bool $linestart
1290 private function internalParseHalfParsed( $text, $isMain = true, $linestart = true ) {
1291 $text = $this->mStripState
->unstripGeneral( $text );
1294 Hooks
::run( 'ParserAfterUnstrip', [ &$this, &$text ] );
1297 # Clean up special characters, only run once, next-to-last before doBlockLevels
1299 # french spaces, last one Guillemet-left
1300 # only if there is something before the space
1301 '/(.) (?=\\?|:|;|!|%|\\302\\273)/' => '\\1 ',
1302 # french spaces, Guillemet-right
1303 '/(\\302\\253) /' => '\\1 ',
1304 '/ (!\s*important)/' => ' \\1', # Beware of CSS magic word !important, bug #11874.
1306 $text = preg_replace( array_keys( $fixtags ), array_values( $fixtags ), $text );
1308 $text = $this->doBlockLevels( $text, $linestart );
1310 $this->replaceLinkHolders( $text );
1313 * The input doesn't get language converted if
1315 * b) Content isn't converted
1316 * c) It's a conversion table
1317 * d) it is an interface message (which is in the user language)
1319 if ( !( $this->mOptions
->getDisableContentConversion()
1320 ||
isset( $this->mDoubleUnderscores
['nocontentconvert'] ) )
1322 if ( !$this->mOptions
->getInterfaceMessage() ) {
1323 # The position of the convert() call should not be changed. it
1324 # assumes that the links are all replaced and the only thing left
1325 # is the <nowiki> mark.
1326 $text = $this->getConverterLanguage()->convert( $text );
1330 $text = $this->mStripState
->unstripNoWiki( $text );
1333 Hooks
::run( 'ParserBeforeTidy', [ &$this, &$text ] );
1336 $text = $this->replaceTransparentTags( $text );
1337 $text = $this->mStripState
->unstripGeneral( $text );
1339 $text = Sanitizer
::normalizeCharReferences( $text );
1341 if ( MWTidy
::isEnabled() && $this->mOptions
->getTidy() ) {
1342 $text = MWTidy
::tidy( $text );
1343 $this->mOutput
->addModuleStyles( MWTidy
::getModuleStyles() );
1345 # attempt to sanitize at least some nesting problems
1346 # (bug #2702 and quite a few others)
1348 # ''Something [http://www.cool.com cool''] -->
1349 # <i>Something</i><a href="http://www.cool.com"..><i>cool></i></a>
1350 '/(<([bi])>)(<([bi])>)?([^<]*)(<\/?a[^<]*>)([^<]*)(<\/\\4>)?(<\/\\2>)/' =>
1351 '\\1\\3\\5\\8\\9\\6\\1\\3\\7\\8\\9',
1352 # fix up an anchor inside another anchor, only
1353 # at least for a single single nested link (bug 3695)
1354 '/(<a[^>]+>)([^<]*)(<a[^>]+>[^<]*)<\/a>(.*)<\/a>/' =>
1355 '\\1\\2</a>\\3</a>\\1\\4</a>',
1356 # fix div inside inline elements- doBlockLevels won't wrap a line which
1357 # contains a div, so fix it up here; replace
1358 # div with escaped text
1359 '/(<([aib]) [^>]+>)([^<]*)(<div([^>]*)>)(.*)(<\/div>)([^<]*)(<\/\\2>)/' =>
1360 '\\1\\3<div\\5>\\6</div>\\8\\9',
1361 # remove empty italic or bold tag pairs, some
1362 # introduced by rules above
1363 '/<([bi])><\/\\1>/' => '',
1366 $text = preg_replace(
1367 array_keys( $tidyregs ),
1368 array_values( $tidyregs ),
1373 Hooks
::run( 'ParserAfterTidy', [ &$this, &$text ] );
1380 * Replace special strings like "ISBN xxx" and "RFC xxx" with
1381 * magic external links.
1386 * @param string $text
1390 public function doMagicLinks( $text ) {
1391 $prots = wfUrlProtocolsWithoutProtRel();
1392 $urlChar = self
::EXT_LINK_URL_CLASS
;
1393 $addr = self
::EXT_LINK_ADDR
;
1394 $space = self
::SPACE_NOT_NL
; # non-newline space
1395 $spdash = "(?:-|$space)"; # a dash or a non-newline space
1396 $spaces = "$space++"; # possessive match of 1 or more spaces
1397 $text = preg_replace_callback(
1399 (<a[ \t\r\n>].*?</a>) | # m[1]: Skip link text
1400 (<.*?>) | # m[2]: Skip stuff inside
1401 # HTML elements' . "
1402 (\b(?i:$prots)($addr$urlChar*)) | # m[3]: Free external links
1403 # m[4]: Post-protocol path
1404 \b(?:RFC|PMID) $spaces # m[5]: RFC or PMID, capture number
1406 \bISBN $spaces ( # m[6]: ISBN, capture number
1407 (?: 97[89] $spdash? )? # optional 13-digit ISBN prefix
1408 (?: [0-9] $spdash? ){9} # 9 digits with opt. delimiters
1409 [0-9Xx] # check digit
1411 )!xu", [ &$this, 'magicLinkCallback' ], $text );
1416 * @throws MWException
1418 * @return HTML|string
1420 public function magicLinkCallback( $m ) {
1421 if ( isset( $m[1] ) && $m[1] !== '' ) {
1424 } elseif ( isset( $m[2] ) && $m[2] !== '' ) {
1427 } elseif ( isset( $m[3] ) && $m[3] !== '' ) {
1428 # Free external link
1429 return $this->makeFreeExternalLink( $m[0], strlen( $m[4] ) );
1430 } elseif ( isset( $m[5] ) && $m[5] !== '' ) {
1432 if ( substr( $m[0], 0, 3 ) === 'RFC' ) {
1435 $cssClass = 'mw-magiclink-rfc';
1437 } elseif ( substr( $m[0], 0, 4 ) === 'PMID' ) {
1439 $urlmsg = 'pubmedurl';
1440 $cssClass = 'mw-magiclink-pmid';
1443 throw new MWException( __METHOD__
. ': unrecognised match type "' .
1444 substr( $m[0], 0, 20 ) . '"' );
1446 $url = wfMessage( $urlmsg, $id )->inContentLanguage()->text();
1447 return Linker
::makeExternalLink( $url, "{$keyword} {$id}", true, $cssClass );
1448 } elseif ( isset( $m[6] ) && $m[6] !== '' ) {
1451 $space = self
::SPACE_NOT_NL
; # non-newline space
1452 $isbn = preg_replace( "/$space/", ' ', $isbn );
1453 $num = strtr( $isbn, [
1458 $titleObj = SpecialPage
::getTitleFor( 'Booksources', $num );
1459 return '<a href="' .
1460 htmlspecialchars( $titleObj->getLocalURL() ) .
1461 "\" class=\"internal mw-magiclink-isbn\">ISBN $isbn</a>";
1468 * Make a free external link, given a user-supplied URL
1470 * @param string $url
1471 * @param int $numPostProto
1472 * The number of characters after the protocol.
1473 * @return string HTML
1476 public function makeFreeExternalLink( $url, $numPostProto ) {
1479 # The characters '<' and '>' (which were escaped by
1480 # removeHTMLtags()) should not be included in
1481 # URLs, per RFC 2396.
1482 # Make terminate a URL as well (bug T84937)
1485 '/&(lt|gt|nbsp|#x0*(3[CcEe]|[Aa]0)|#0*(60|62|160));/',
1490 $trail = substr( $url, $m2[0][1] ) . $trail;
1491 $url = substr( $url, 0, $m2[0][1] );
1494 # Move trailing punctuation to $trail
1496 # If there is no left bracket, then consider right brackets fair game too
1497 if ( strpos( $url, '(' ) === false ) {
1501 $urlRev = strrev( $url );
1502 $numSepChars = strspn( $urlRev, $sep );
1503 # Don't break a trailing HTML entity by moving the ; into $trail
1504 # This is in hot code, so use substr_compare to avoid having to
1505 # create a new string object for the comparison
1506 if ( $numSepChars && substr_compare( $url, ";", -$numSepChars, 1 ) === 0 ) {
1507 # more optimization: instead of running preg_match with a $
1508 # anchor, which can be slow, do the match on the reversed
1509 # string starting at the desired offset.
1510 # un-reversed regexp is: /&([a-z]+|#x[\da-f]+|#\d+)$/i
1511 if ( preg_match( '/\G([a-z]+|[\da-f]+x#|\d+#)&/i', $urlRev, $m2, 0, $numSepChars ) ) {
1515 if ( $numSepChars ) {
1516 $trail = substr( $url, -$numSepChars ) . $trail;
1517 $url = substr( $url, 0, -$numSepChars );
1520 # Verify that we still have a real URL after trail removal, and
1521 # not just lone protocol
1522 if ( strlen( $trail ) >= $numPostProto ) {
1523 return $url . $trail;
1526 $url = Sanitizer
::cleanUrl( $url );
1528 # Is this an external image?
1529 $text = $this->maybeMakeExternalImage( $url );
1530 if ( $text === false ) {
1531 # Not an image, make a link
1532 $text = Linker
::makeExternalLink( $url,
1533 $this->getConverterLanguage()->markNoConversion( $url, true ),
1535 $this->getExternalLinkAttribs( $url ) );
1536 # Register it in the output object...
1537 # Replace unnecessary URL escape codes with their equivalent characters
1538 $pasteurized = self
::normalizeLinkUrl( $url );
1539 $this->mOutput
->addExternalLink( $pasteurized );
1541 return $text . $trail;
1545 * Parse headers and return html
1549 * @param string $text
1553 public function doHeadings( $text ) {
1554 for ( $i = 6; $i >= 1; --$i ) {
1555 $h = str_repeat( '=', $i );
1556 $text = preg_replace( "/^$h(.+)$h\\s*$/m", "<h$i>\\1</h$i>", $text );
1562 * Replace single quotes with HTML markup
1565 * @param string $text
1567 * @return string The altered text
1569 public function doAllQuotes( $text ) {
1571 $lines = StringUtils
::explode( "\n", $text );
1572 foreach ( $lines as $line ) {
1573 $outtext .= $this->doQuotes( $line ) . "\n";
1575 $outtext = substr( $outtext, 0, -1 );
1580 * Helper function for doAllQuotes()
1582 * @param string $text
1586 public function doQuotes( $text ) {
1587 $arr = preg_split( "/(''+)/", $text, -1, PREG_SPLIT_DELIM_CAPTURE
);
1588 $countarr = count( $arr );
1589 if ( $countarr == 1 ) {
1593 // First, do some preliminary work. This may shift some apostrophes from
1594 // being mark-up to being text. It also counts the number of occurrences
1595 // of bold and italics mark-ups.
1598 for ( $i = 1; $i < $countarr; $i +
= 2 ) {
1599 $thislen = strlen( $arr[$i] );
1600 // If there are ever four apostrophes, assume the first is supposed to
1601 // be text, and the remaining three constitute mark-up for bold text.
1602 // (bug 13227: ''''foo'''' turns into ' ''' foo ' ''')
1603 if ( $thislen == 4 ) {
1604 $arr[$i - 1] .= "'";
1607 } elseif ( $thislen > 5 ) {
1608 // If there are more than 5 apostrophes in a row, assume they're all
1609 // text except for the last 5.
1610 // (bug 13227: ''''''foo'''''' turns into ' ''''' foo ' ''''')
1611 $arr[$i - 1] .= str_repeat( "'", $thislen - 5 );
1615 // Count the number of occurrences of bold and italics mark-ups.
1616 if ( $thislen == 2 ) {
1618 } elseif ( $thislen == 3 ) {
1620 } elseif ( $thislen == 5 ) {
1626 // If there is an odd number of both bold and italics, it is likely
1627 // that one of the bold ones was meant to be an apostrophe followed
1628 // by italics. Which one we cannot know for certain, but it is more
1629 // likely to be one that has a single-letter word before it.
1630 if ( ( $numbold %
2 == 1 ) && ( $numitalics %
2 == 1 ) ) {
1631 $firstsingleletterword = -1;
1632 $firstmultiletterword = -1;
1634 for ( $i = 1; $i < $countarr; $i +
= 2 ) {
1635 if ( strlen( $arr[$i] ) == 3 ) {
1636 $x1 = substr( $arr[$i - 1], -1 );
1637 $x2 = substr( $arr[$i - 1], -2, 1 );
1638 if ( $x1 === ' ' ) {
1639 if ( $firstspace == -1 ) {
1642 } elseif ( $x2 === ' ' ) {
1643 $firstsingleletterword = $i;
1644 // if $firstsingleletterword is set, we don't
1645 // look at the other options, so we can bail early.
1648 if ( $firstmultiletterword == -1 ) {
1649 $firstmultiletterword = $i;
1655 // If there is a single-letter word, use it!
1656 if ( $firstsingleletterword > -1 ) {
1657 $arr[$firstsingleletterword] = "''";
1658 $arr[$firstsingleletterword - 1] .= "'";
1659 } elseif ( $firstmultiletterword > -1 ) {
1660 // If not, but there's a multi-letter word, use that one.
1661 $arr[$firstmultiletterword] = "''";
1662 $arr[$firstmultiletterword - 1] .= "'";
1663 } elseif ( $firstspace > -1 ) {
1664 // ... otherwise use the first one that has neither.
1665 // (notice that it is possible for all three to be -1 if, for example,
1666 // there is only one pentuple-apostrophe in the line)
1667 $arr[$firstspace] = "''";
1668 $arr[$firstspace - 1] .= "'";
1672 // Now let's actually convert our apostrophic mush to HTML!
1677 foreach ( $arr as $r ) {
1678 if ( ( $i %
2 ) == 0 ) {
1679 if ( $state === 'both' ) {
1685 $thislen = strlen( $r );
1686 if ( $thislen == 2 ) {
1687 if ( $state === 'i' ) {
1690 } elseif ( $state === 'bi' ) {
1693 } elseif ( $state === 'ib' ) {
1694 $output .= '</b></i><b>';
1696 } elseif ( $state === 'both' ) {
1697 $output .= '<b><i>' . $buffer . '</i>';
1699 } else { // $state can be 'b' or ''
1703 } elseif ( $thislen == 3 ) {
1704 if ( $state === 'b' ) {
1707 } elseif ( $state === 'bi' ) {
1708 $output .= '</i></b><i>';
1710 } elseif ( $state === 'ib' ) {
1713 } elseif ( $state === 'both' ) {
1714 $output .= '<i><b>' . $buffer . '</b>';
1716 } else { // $state can be 'i' or ''
1720 } elseif ( $thislen == 5 ) {
1721 if ( $state === 'b' ) {
1722 $output .= '</b><i>';
1724 } elseif ( $state === 'i' ) {
1725 $output .= '</i><b>';
1727 } elseif ( $state === 'bi' ) {
1728 $output .= '</i></b>';
1730 } elseif ( $state === 'ib' ) {
1731 $output .= '</b></i>';
1733 } elseif ( $state === 'both' ) {
1734 $output .= '<i><b>' . $buffer . '</b></i>';
1736 } else { // ($state == '')
1744 // Now close all remaining tags. Notice that the order is important.
1745 if ( $state === 'b' ||
$state === 'ib' ) {
1748 if ( $state === 'i' ||
$state === 'bi' ||
$state === 'ib' ) {
1751 if ( $state === 'bi' ) {
1754 // There might be lonely ''''', so make sure we have a buffer
1755 if ( $state === 'both' && $buffer ) {
1756 $output .= '<b><i>' . $buffer . '</i></b>';
1762 * Replace external links (REL)
1764 * Note: this is all very hackish and the order of execution matters a lot.
1765 * Make sure to run tests/parserTests.php if you change this code.
1769 * @param string $text
1771 * @throws MWException
1774 public function replaceExternalLinks( $text ) {
1776 $bits = preg_split( $this->mExtLinkBracketedRegex
, $text, -1, PREG_SPLIT_DELIM_CAPTURE
);
1777 if ( $bits === false ) {
1778 throw new MWException( "PCRE needs to be compiled with "
1779 . "--enable-unicode-properties in order for MediaWiki to function" );
1781 $s = array_shift( $bits );
1784 while ( $i < count( $bits ) ) {
1787 $text = $bits[$i++
];
1788 $trail = $bits[$i++
];
1790 # The characters '<' and '>' (which were escaped by
1791 # removeHTMLtags()) should not be included in
1792 # URLs, per RFC 2396.
1794 if ( preg_match( '/&(lt|gt);/', $url, $m2, PREG_OFFSET_CAPTURE
) ) {
1795 $text = substr( $url, $m2[0][1] ) . ' ' . $text;
1796 $url = substr( $url, 0, $m2[0][1] );
1799 # If the link text is an image URL, replace it with an <img> tag
1800 # This happened by accident in the original parser, but some people used it extensively
1801 $img = $this->maybeMakeExternalImage( $text );
1802 if ( $img !== false ) {
1808 # Set linktype for CSS - if URL==text, link is essentially free
1809 $linktype = ( $text === $url ) ?
'free' : 'text';
1811 # No link text, e.g. [http://domain.tld/some.link]
1812 if ( $text == '' ) {
1814 $langObj = $this->getTargetLanguage();
1815 $text = '[' . $langObj->formatNum( ++
$this->mAutonumber
) . ']';
1816 $linktype = 'autonumber';
1818 # Have link text, e.g. [http://domain.tld/some.link text]s
1820 list( $dtrail, $trail ) = Linker
::splitTrail( $trail );
1823 $text = $this->getConverterLanguage()->markNoConversion( $text );
1825 $url = Sanitizer
::cleanUrl( $url );
1827 # Use the encoded URL
1828 # This means that users can paste URLs directly into the text
1829 # Funny characters like ö aren't valid in URLs anyway
1830 # This was changed in August 2004
1831 $s .= Linker
::makeExternalLink( $url, $text, false, $linktype,
1832 $this->getExternalLinkAttribs( $url ) ) . $dtrail . $trail;
1834 # Register link in the output object.
1835 # Replace unnecessary URL escape codes with the referenced character
1836 # This prevents spammers from hiding links from the filters
1837 $pasteurized = self
::normalizeLinkUrl( $url );
1838 $this->mOutput
->addExternalLink( $pasteurized );
1845 * Get the rel attribute for a particular external link.
1848 * @param string|bool $url Optional URL, to extract the domain from for rel =>
1849 * nofollow if appropriate
1850 * @param Title $title Optional Title, for wgNoFollowNsExceptions lookups
1851 * @return string|null Rel attribute for $url
1853 public static function getExternalLinkRel( $url = false, $title = null ) {
1854 global $wgNoFollowLinks, $wgNoFollowNsExceptions, $wgNoFollowDomainExceptions;
1855 $ns = $title ?
$title->getNamespace() : false;
1856 if ( $wgNoFollowLinks && !in_array( $ns, $wgNoFollowNsExceptions )
1857 && !wfMatchesDomainList( $url, $wgNoFollowDomainExceptions )
1865 * Get an associative array of additional HTML attributes appropriate for a
1866 * particular external link. This currently may include rel => nofollow
1867 * (depending on configuration, namespace, and the URL's domain) and/or a
1868 * target attribute (depending on configuration).
1870 * @param string|bool $url Optional URL, to extract the domain from for rel =>
1871 * nofollow if appropriate
1872 * @return array Associative array of HTML attributes
1874 public function getExternalLinkAttribs( $url = false ) {
1876 $attribs['rel'] = self
::getExternalLinkRel( $url, $this->mTitle
);
1878 if ( $this->mOptions
->getExternalLinkTarget() ) {
1879 $attribs['target'] = $this->mOptions
->getExternalLinkTarget();
1885 * Replace unusual escape codes in a URL with their equivalent characters
1887 * @deprecated since 1.24, use normalizeLinkUrl
1888 * @param string $url
1891 public static function replaceUnusualEscapes( $url ) {
1892 wfDeprecated( __METHOD__
, '1.24' );
1893 return self
::normalizeLinkUrl( $url );
1897 * Replace unusual escape codes in a URL with their equivalent characters
1899 * This generally follows the syntax defined in RFC 3986, with special
1900 * consideration for HTTP query strings.
1902 * @param string $url
1905 public static function normalizeLinkUrl( $url ) {
1906 # First, make sure unsafe characters are encoded
1907 $url = preg_replace_callback( '/[\x00-\x20"<>\[\\\\\]^`{|}\x7F-\xFF]/',
1909 return rawurlencode( $m[0] );
1915 $end = strlen( $url );
1917 # Fragment part - 'fragment'
1918 $start = strpos( $url, '#' );
1919 if ( $start !== false && $start < $end ) {
1920 $ret = self
::normalizeUrlComponent(
1921 substr( $url, $start, $end - $start ), '"#%<>[\]^`{|}' ) . $ret;
1925 # Query part - 'query' minus &=+;
1926 $start = strpos( $url, '?' );
1927 if ( $start !== false && $start < $end ) {
1928 $ret = self
::normalizeUrlComponent(
1929 substr( $url, $start, $end - $start ), '"#%<>[\]^`{|}&=+;' ) . $ret;
1933 # Scheme and path part - 'pchar'
1934 # (we assume no userinfo or encoded colons in the host)
1935 $ret = self
::normalizeUrlComponent(
1936 substr( $url, 0, $end ), '"#%<>[\]^`{|}/?' ) . $ret;
1941 private static function normalizeUrlComponent( $component, $unsafe ) {
1942 $callback = function ( $matches ) use ( $unsafe ) {
1943 $char = urldecode( $matches[0] );
1944 $ord = ord( $char );
1945 if ( $ord > 32 && $ord < 127 && strpos( $unsafe, $char ) === false ) {
1949 # Leave it escaped, but use uppercase for a-f
1950 return strtoupper( $matches[0] );
1953 return preg_replace_callback( '/%[0-9A-Fa-f]{2}/', $callback, $component );
1957 * make an image if it's allowed, either through the global
1958 * option, through the exception, or through the on-wiki whitelist
1960 * @param string $url
1964 private function maybeMakeExternalImage( $url ) {
1965 $imagesfrom = $this->mOptions
->getAllowExternalImagesFrom();
1966 $imagesexception = !empty( $imagesfrom );
1968 # $imagesfrom could be either a single string or an array of strings, parse out the latter
1969 if ( $imagesexception && is_array( $imagesfrom ) ) {
1970 $imagematch = false;
1971 foreach ( $imagesfrom as $match ) {
1972 if ( strpos( $url, $match ) === 0 ) {
1977 } elseif ( $imagesexception ) {
1978 $imagematch = ( strpos( $url, $imagesfrom ) === 0 );
1980 $imagematch = false;
1983 if ( $this->mOptions
->getAllowExternalImages()
1984 ||
( $imagesexception && $imagematch )
1986 if ( preg_match( self
::EXT_IMAGE_REGEX
, $url ) ) {
1988 $text = Linker
::makeExternalImage( $url );
1991 if ( !$text && $this->mOptions
->getEnableImageWhitelist()
1992 && preg_match( self
::EXT_IMAGE_REGEX
, $url )
1994 $whitelist = explode(
1996 wfMessage( 'external_image_whitelist' )->inContentLanguage()->text()
1999 foreach ( $whitelist as $entry ) {
2000 # Sanitize the regex fragment, make it case-insensitive, ignore blank entries/comments
2001 if ( strpos( $entry, '#' ) === 0 ||
$entry === '' ) {
2004 if ( preg_match( '/' . str_replace( '/', '\\/', $entry ) . '/i', $url ) ) {
2005 # Image matches a whitelist entry
2006 $text = Linker
::makeExternalImage( $url );
2015 * Process [[ ]] wikilinks
2019 * @return string Processed text
2023 public function replaceInternalLinks( $s ) {
2024 $this->mLinkHolders
->merge( $this->replaceInternalLinks2( $s ) );
2029 * Process [[ ]] wikilinks (RIL)
2031 * @throws MWException
2032 * @return LinkHolderArray
2036 public function replaceInternalLinks2( &$s ) {
2037 global $wgExtraInterlanguageLinkPrefixes;
2039 static $tc = false, $e1, $e1_img;
2040 # the % is needed to support urlencoded titles as well
2042 $tc = Title
::legalChars() . '#%';
2043 # Match a link having the form [[namespace:link|alternate]]trail
2044 $e1 = "/^([{$tc}]+)(?:\\|(.+?))?]](.*)\$/sD";
2045 # Match cases where there is no "]]", which might still be images
2046 $e1_img = "/^([{$tc}]+)\\|(.*)\$/sD";
2049 $holders = new LinkHolderArray( $this );
2051 # split the entire text string on occurrences of [[
2052 $a = StringUtils
::explode( '[[', ' ' . $s );
2053 # get the first element (all text up to first [[), and remove the space we added
2056 $line = $a->current(); # Workaround for broken ArrayIterator::next() that returns "void"
2057 $s = substr( $s, 1 );
2059 $useLinkPrefixExtension = $this->getTargetLanguage()->linkPrefixExtension();
2061 if ( $useLinkPrefixExtension ) {
2062 # Match the end of a line for a word that's not followed by whitespace,
2063 # e.g. in the case of 'The Arab al[[Razi]]', 'al' will be matched
2065 $charset = $wgContLang->linkPrefixCharset();
2066 $e2 = "/^((?>.*[^$charset]|))(.+)$/sDu";
2069 if ( is_null( $this->mTitle
) ) {
2070 throw new MWException( __METHOD__
. ": \$this->mTitle is null\n" );
2072 $nottalk = !$this->mTitle
->isTalkPage();
2074 if ( $useLinkPrefixExtension ) {
2076 if ( preg_match( $e2, $s, $m ) ) {
2077 $first_prefix = $m[2];
2079 $first_prefix = false;
2085 $useSubpages = $this->areSubpagesAllowed();
2087 // @codingStandardsIgnoreStart Squiz.WhiteSpace.SemicolonSpacing.Incorrect
2088 # Loop for each link
2089 for ( ; $line !== false && $line !== null; $a->next(), $line = $a->current() ) {
2090 // @codingStandardsIgnoreEnd
2092 # Check for excessive memory usage
2093 if ( $holders->isBig() ) {
2095 # Do the existence check, replace the link holders and clear the array
2096 $holders->replace( $s );
2100 if ( $useLinkPrefixExtension ) {
2101 if ( preg_match( $e2, $s, $m ) ) {
2108 if ( $first_prefix ) {
2109 $prefix = $first_prefix;
2110 $first_prefix = false;
2114 $might_be_img = false;
2116 if ( preg_match( $e1, $line, $m ) ) { # page with normal text or alt
2118 # If we get a ] at the beginning of $m[3] that means we have a link that's something like:
2119 # [[Image:Foo.jpg|[http://example.com desc]]] <- having three ] in a row fucks up,
2120 # the real problem is with the $e1 regex
2122 # Still some problems for cases where the ] is meant to be outside punctuation,
2123 # and no image is in sight. See bug 2095.
2125 && substr( $m[3], 0, 1 ) === ']'
2126 && strpos( $text, '[' ) !== false
2128 $text .= ']'; # so that replaceExternalLinks($text) works later
2129 $m[3] = substr( $m[3], 1 );
2131 # fix up urlencoded title texts
2132 if ( strpos( $m[1], '%' ) !== false ) {
2133 # Should anchors '#' also be rejected?
2134 $m[1] = str_replace( [ '<', '>' ], [ '<', '>' ], rawurldecode( $m[1] ) );
2137 } elseif ( preg_match( $e1_img, $line, $m ) ) {
2138 # Invalid, but might be an image with a link in its caption
2139 $might_be_img = true;
2141 if ( strpos( $m[1], '%' ) !== false ) {
2142 $m[1] = rawurldecode( $m[1] );
2145 } else { # Invalid form; output directly
2146 $s .= $prefix . '[[' . $line;
2152 # Don't allow internal links to pages containing
2153 # PROTO: where PROTO is a valid URL protocol; these
2154 # should be external links.
2155 if ( preg_match( '/^(?i:' . $this->mUrlProtocols
. ')/', $origLink ) ) {
2156 $s .= $prefix . '[[' . $line;
2160 # Make subpage if necessary
2161 if ( $useSubpages ) {
2162 $link = $this->maybeDoSubpageLink( $origLink, $text );
2167 $noforce = ( substr( $origLink, 0, 1 ) !== ':' );
2169 # Strip off leading ':'
2170 $link = substr( $link, 1 );
2173 $unstrip = $this->mStripState
->unstripNoWiki( $link );
2174 $nt = is_string( $unstrip ) ? Title
::newFromText( $unstrip ) : null;
2175 if ( $nt === null ) {
2176 $s .= $prefix . '[[' . $line;
2180 $ns = $nt->getNamespace();
2181 $iw = $nt->getInterwiki();
2183 if ( $might_be_img ) { # if this is actually an invalid link
2184 if ( $ns == NS_FILE
&& $noforce ) { # but might be an image
2187 # look at the next 'line' to see if we can close it there
2189 $next_line = $a->current();
2190 if ( $next_line === false ||
$next_line === null ) {
2193 $m = explode( ']]', $next_line, 3 );
2194 if ( count( $m ) == 3 ) {
2195 # the first ]] closes the inner link, the second the image
2197 $text .= "[[{$m[0]}]]{$m[1]}";
2200 } elseif ( count( $m ) == 2 ) {
2201 # if there's exactly one ]] that's fine, we'll keep looking
2202 $text .= "[[{$m[0]}]]{$m[1]}";
2204 # if $next_line is invalid too, we need look no further
2205 $text .= '[[' . $next_line;
2210 # we couldn't find the end of this imageLink, so output it raw
2211 # but don't ignore what might be perfectly normal links in the text we've examined
2212 $holders->merge( $this->replaceInternalLinks2( $text ) );
2213 $s .= "{$prefix}[[$link|$text";
2214 # note: no $trail, because without an end, there *is* no trail
2217 } else { # it's not an image, so output it raw
2218 $s .= "{$prefix}[[$link|$text";
2219 # note: no $trail, because without an end, there *is* no trail
2224 $wasblank = ( $text == '' );
2228 # Bug 4598 madness. Handle the quotes only if they come from the alternate part
2229 # [[Lista d''e paise d''o munno]] -> <a href="...">Lista d''e paise d''o munno</a>
2230 # [[Criticism of Harry Potter|Criticism of ''Harry Potter'']]
2231 # -> <a href="Criticism of Harry Potter">Criticism of <i>Harry Potter</i></a>
2232 $text = $this->doQuotes( $text );
2235 # Link not escaped by : , create the various objects
2236 if ( $noforce && !$nt->wasLocalInterwiki() ) {
2239 $iw && $this->mOptions
->getInterwikiMagic() && $nottalk && (
2240 Language
::fetchLanguageName( $iw, null, 'mw' ) ||
2241 in_array( $iw, $wgExtraInterlanguageLinkPrefixes )
2244 # Bug 24502: filter duplicates
2245 if ( !isset( $this->mLangLinkLanguages
[$iw] ) ) {
2246 $this->mLangLinkLanguages
[$iw] = true;
2247 $this->mOutput
->addLanguageLink( $nt->getFullText() );
2250 $s = rtrim( $s . $prefix );
2251 $s .= trim( $trail, "\n" ) == '' ?
'': $prefix . $trail;
2255 if ( $ns == NS_FILE
) {
2256 if ( !wfIsBadImage( $nt->getDBkey(), $this->mTitle
) ) {
2258 # if no parameters were passed, $text
2259 # becomes something like "File:Foo.png",
2260 # which we don't want to pass on to the
2264 # recursively parse links inside the image caption
2265 # actually, this will parse them in any other parameters, too,
2266 # but it might be hard to fix that, and it doesn't matter ATM
2267 $text = $this->replaceExternalLinks( $text );
2268 $holders->merge( $this->replaceInternalLinks2( $text ) );
2270 # cloak any absolute URLs inside the image markup, so replaceExternalLinks() won't touch them
2271 $s .= $prefix . $this->armorLinks(
2272 $this->makeImage( $nt, $text, $holders ) ) . $trail;
2274 $s .= $prefix . $trail;
2279 if ( $ns == NS_CATEGORY
) {
2280 $s = rtrim( $s . "\n" ); # bug 87
2283 $sortkey = $this->getDefaultSort();
2287 $sortkey = Sanitizer
::decodeCharReferences( $sortkey );
2288 $sortkey = str_replace( "\n", '', $sortkey );
2289 $sortkey = $this->getConverterLanguage()->convertCategoryKey( $sortkey );
2290 $this->mOutput
->addCategory( $nt->getDBkey(), $sortkey );
2293 * Strip the whitespace Category links produce, see bug 87
2295 $s .= trim( $prefix . $trail, "\n" ) == '' ?
'' : $prefix . $trail;
2301 # Self-link checking. For some languages, variants of the title are checked in
2302 # LinkHolderArray::doVariants() to allow batching the existence checks necessary
2303 # for linking to a different variant.
2304 if ( $ns != NS_SPECIAL
&& $nt->equals( $this->mTitle
) && !$nt->hasFragment() ) {
2305 $s .= $prefix . Linker
::makeSelfLinkObj( $nt, $text, '', $trail );
2309 # NS_MEDIA is a pseudo-namespace for linking directly to a file
2310 # @todo FIXME: Should do batch file existence checks, see comment below
2311 if ( $ns == NS_MEDIA
) {
2312 # Give extensions a chance to select the file revision for us
2315 Hooks
::run( 'BeforeParserFetchFileAndTitle',
2316 [ $this, $nt, &$options, &$descQuery ] );
2317 # Fetch and register the file (file title may be different via hooks)
2318 list( $file, $nt ) = $this->fetchFileAndTitle( $nt, $options );
2319 # Cloak with NOPARSE to avoid replacement in replaceExternalLinks
2320 $s .= $prefix . $this->armorLinks(
2321 Linker
::makeMediaLinkFile( $nt, $file, $text ) ) . $trail;
2325 # Some titles, such as valid special pages or files in foreign repos, should
2326 # be shown as bluelinks even though they're not included in the page table
2327 # @todo FIXME: isAlwaysKnown() can be expensive for file links; we should really do
2328 # batch file existence checks for NS_FILE and NS_MEDIA
2329 if ( $iw == '' && $nt->isAlwaysKnown() ) {
2330 $this->mOutput
->addLink( $nt );
2331 $s .= $this->makeKnownLinkHolder( $nt, $text, [], $trail, $prefix );
2333 # Links will be added to the output link list after checking
2334 $s .= $holders->makeHolder( $nt, $text, [], $trail, $prefix );
2341 * Render a forced-blue link inline; protect against double expansion of
2342 * URLs if we're in a mode that prepends full URL prefixes to internal links.
2343 * Since this little disaster has to split off the trail text to avoid
2344 * breaking URLs in the following text without breaking trails on the
2345 * wiki links, it's been made into a horrible function.
2348 * @param string $text
2349 * @param array|string $query
2350 * @param string $trail
2351 * @param string $prefix
2352 * @return string HTML-wikitext mix oh yuck
2354 public function makeKnownLinkHolder( $nt, $text = '', $query = [], $trail = '', $prefix = '' ) {
2355 list( $inside, $trail ) = Linker
::splitTrail( $trail );
2357 if ( is_string( $query ) ) {
2358 $query = wfCgiToArray( $query );
2360 if ( $text == '' ) {
2361 $text = htmlspecialchars( $nt->getPrefixedText() );
2364 $link = Linker
::linkKnown( $nt, "$prefix$text$inside", [], $query );
2366 return $this->armorLinks( $link ) . $trail;
2370 * Insert a NOPARSE hacky thing into any inline links in a chunk that's
2371 * going to go through further parsing steps before inline URL expansion.
2373 * Not needed quite as much as it used to be since free links are a bit
2374 * more sensible these days. But bracketed links are still an issue.
2376 * @param string $text More-or-less HTML
2377 * @return string Less-or-more HTML with NOPARSE bits
2379 public function armorLinks( $text ) {
2380 return preg_replace( '/\b((?i)' . $this->mUrlProtocols
. ')/',
2381 self
::MARKER_PREFIX
. "NOPARSE$1", $text );
2385 * Return true if subpage links should be expanded on this page.
2388 public function areSubpagesAllowed() {
2389 # Some namespaces don't allow subpages
2390 return MWNamespace
::hasSubpages( $this->mTitle
->getNamespace() );
2394 * Handle link to subpage if necessary
2396 * @param string $target The source of the link
2397 * @param string &$text The link text, modified as necessary
2398 * @return string The full name of the link
2401 public function maybeDoSubpageLink( $target, &$text ) {
2402 return Linker
::normalizeSubpageLink( $this->mTitle
, $target, $text );
2406 * Used by doBlockLevels()
2411 public function closeParagraph() {
2413 if ( $this->mLastSection
!= '' ) {
2414 $result = '</' . $this->mLastSection
. ">\n";
2416 $this->mInPre
= false;
2417 $this->mLastSection
= '';
2422 * getCommon() returns the length of the longest common substring
2423 * of both arguments, starting at the beginning of both.
2426 * @param string $st1
2427 * @param string $st2
2431 public function getCommon( $st1, $st2 ) {
2432 $fl = strlen( $st1 );
2433 $shorter = strlen( $st2 );
2434 if ( $fl < $shorter ) {
2438 for ( $i = 0; $i < $shorter; ++
$i ) {
2439 if ( $st1[$i] != $st2[$i] ) {
2447 * These next three functions open, continue, and close the list
2448 * element appropriate to the prefix character passed into them.
2451 * @param string $char
2455 public function openList( $char ) {
2456 $result = $this->closeParagraph();
2458 if ( '*' === $char ) {
2459 $result .= "<ul><li>";
2460 } elseif ( '#' === $char ) {
2461 $result .= "<ol><li>";
2462 } elseif ( ':' === $char ) {
2463 $result .= "<dl><dd>";
2464 } elseif ( ';' === $char ) {
2465 $result .= "<dl><dt>";
2466 $this->mDTopen
= true;
2468 $result = '<!-- ERR 1 -->';
2476 * @param string $char
2481 public function nextItem( $char ) {
2482 if ( '*' === $char ||
'#' === $char ) {
2483 return "</li>\n<li>";
2484 } elseif ( ':' === $char ||
';' === $char ) {
2486 if ( $this->mDTopen
) {
2489 if ( ';' === $char ) {
2490 $this->mDTopen
= true;
2491 return $close . '<dt>';
2493 $this->mDTopen
= false;
2494 return $close . '<dd>';
2497 return '<!-- ERR 2 -->';
2502 * @param string $char
2507 public function closeList( $char ) {
2508 if ( '*' === $char ) {
2509 $text = "</li></ul>";
2510 } elseif ( '#' === $char ) {
2511 $text = "</li></ol>";
2512 } elseif ( ':' === $char ) {
2513 if ( $this->mDTopen
) {
2514 $this->mDTopen
= false;
2515 $text = "</dt></dl>";
2517 $text = "</dd></dl>";
2520 return '<!-- ERR 3 -->';
2527 * Make lists from lines starting with ':', '*', '#', etc. (DBL)
2529 * @param string $text
2530 * @param bool $linestart Whether or not this is at the start of a line.
2532 * @return string The lists rendered as HTML
2534 public function doBlockLevels( $text, $linestart ) {
2536 # Parsing through the text line by line. The main thing
2537 # happening here is handling of block-level elements p, pre,
2538 # and making lists from lines starting with * # : etc.
2539 $textLines = StringUtils
::explode( "\n", $text );
2541 $lastPrefix = $output = '';
2542 $this->mDTopen
= $inBlockElem = false;
2544 $paragraphStack = false;
2545 $inBlockquote = false;
2547 foreach ( $textLines as $oLine ) {
2549 if ( !$linestart ) {
2559 $lastPrefixLength = strlen( $lastPrefix );
2560 $preCloseMatch = preg_match( '/<\\/pre/i', $oLine );
2561 $preOpenMatch = preg_match( '/<pre/i', $oLine );
2562 # If not in a <pre> element, scan for and figure out what prefixes are there.
2563 if ( !$this->mInPre
) {
2564 # Multiple prefixes may abut each other for nested lists.
2565 $prefixLength = strspn( $oLine, '*#:;' );
2566 $prefix = substr( $oLine, 0, $prefixLength );
2569 # ; and : are both from definition-lists, so they're equivalent
2570 # for the purposes of determining whether or not we need to open/close
2572 $prefix2 = str_replace( ';', ':', $prefix );
2573 $t = substr( $oLine, $prefixLength );
2574 $this->mInPre
= (bool)$preOpenMatch;
2576 # Don't interpret any other prefixes in preformatted text
2578 $prefix = $prefix2 = '';
2583 if ( $prefixLength && $lastPrefix === $prefix2 ) {
2584 # Same as the last item, so no need to deal with nesting or opening stuff
2585 $output .= $this->nextItem( substr( $prefix, -1 ) );
2586 $paragraphStack = false;
2588 if ( substr( $prefix, -1 ) === ';' ) {
2589 # The one nasty exception: definition lists work like this:
2590 # ; title : definition text
2591 # So we check for : in the remainder text to split up the
2592 # title and definition, without b0rking links.
2594 if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
2596 $output .= $term . $this->nextItem( ':' );
2599 } elseif ( $prefixLength ||
$lastPrefixLength ) {
2600 # We need to open or close prefixes, or both.
2602 # Either open or close a level...
2603 $commonPrefixLength = $this->getCommon( $prefix, $lastPrefix );
2604 $paragraphStack = false;
2606 # Close all the prefixes which aren't shared.
2607 while ( $commonPrefixLength < $lastPrefixLength ) {
2608 $output .= $this->closeList( $lastPrefix[$lastPrefixLength - 1] );
2609 --$lastPrefixLength;
2612 # Continue the current prefix if appropriate.
2613 if ( $prefixLength <= $commonPrefixLength && $commonPrefixLength > 0 ) {
2614 $output .= $this->nextItem( $prefix[$commonPrefixLength - 1] );
2617 # Open prefixes where appropriate.
2618 if ( $lastPrefix && $prefixLength > $commonPrefixLength ) {
2621 while ( $prefixLength > $commonPrefixLength ) {
2622 $char = substr( $prefix, $commonPrefixLength, 1 );
2623 $output .= $this->openList( $char );
2625 if ( ';' === $char ) {
2626 # @todo FIXME: This is dupe of code above
2627 if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
2629 $output .= $term . $this->nextItem( ':' );
2632 ++
$commonPrefixLength;
2634 if ( !$prefixLength && $lastPrefix ) {
2637 $lastPrefix = $prefix2;
2640 # If we have no prefixes, go to paragraph mode.
2641 if ( 0 == $prefixLength ) {
2642 # No prefix (not in list)--go to paragraph mode
2643 # XXX: use a stack for nestable elements like span, table and div
2644 $openmatch = preg_match(
2645 '/(?:<table|<h1|<h2|<h3|<h4|<h5|<h6|<pre|<tr|'
2646 . '<p|<ul|<ol|<dl|<li|<\\/tr|<\\/td|<\\/th)/iS',
2649 $closematch = preg_match(
2650 '/(?:<\\/table|<\\/h1|<\\/h2|<\\/h3|<\\/h4|<\\/h5|<\\/h6|'
2651 . '<td|<th|<\\/?blockquote|<\\/?div|<hr|<\\/pre|<\\/p|<\\/mw:|'
2652 . self
::MARKER_PREFIX
2653 . '-pre|<\\/li|<\\/ul|<\\/ol|<\\/dl|<\\/?center)/iS',
2657 if ( $openmatch ||
$closematch ) {
2658 $paragraphStack = false;
2659 # @todo bug 5718: paragraph closed
2660 $output .= $this->closeParagraph();
2661 if ( $preOpenMatch && !$preCloseMatch ) {
2662 $this->mInPre
= true;
2665 while ( preg_match( '/<(\\/?)blockquote[\s>]/i', $t,
2666 $bqMatch, PREG_OFFSET_CAPTURE
, $bqOffset )
2668 $inBlockquote = !$bqMatch[1][0]; // is this a close tag?
2669 $bqOffset = $bqMatch[0][1] +
strlen( $bqMatch[0][0] );
2671 $inBlockElem = !$closematch;
2672 } elseif ( !$inBlockElem && !$this->mInPre
) {
2673 if ( ' ' == substr( $t, 0, 1 )
2674 && ( $this->mLastSection
=== 'pre' ||
trim( $t ) != '' )
2678 if ( $this->mLastSection
!== 'pre' ) {
2679 $paragraphStack = false;
2680 $output .= $this->closeParagraph() . '<pre>';
2681 $this->mLastSection
= 'pre';
2683 $t = substr( $t, 1 );
2686 if ( trim( $t ) === '' ) {
2687 if ( $paragraphStack ) {
2688 $output .= $paragraphStack . '<br />';
2689 $paragraphStack = false;
2690 $this->mLastSection
= 'p';
2692 if ( $this->mLastSection
!== 'p' ) {
2693 $output .= $this->closeParagraph();
2694 $this->mLastSection
= '';
2695 $paragraphStack = '<p>';
2697 $paragraphStack = '</p><p>';
2701 if ( $paragraphStack ) {
2702 $output .= $paragraphStack;
2703 $paragraphStack = false;
2704 $this->mLastSection
= 'p';
2705 } elseif ( $this->mLastSection
!== 'p' ) {
2706 $output .= $this->closeParagraph() . '<p>';
2707 $this->mLastSection
= 'p';
2713 # somewhere above we forget to get out of pre block (bug 785)
2714 if ( $preCloseMatch && $this->mInPre
) {
2715 $this->mInPre
= false;
2717 if ( $paragraphStack === false ) {
2719 if ( $prefixLength === 0 ) {
2724 while ( $prefixLength ) {
2725 $output .= $this->closeList( $prefix2[$prefixLength - 1] );
2727 if ( !$prefixLength ) {
2731 if ( $this->mLastSection
!= '' ) {
2732 $output .= '</' . $this->mLastSection
. '>';
2733 $this->mLastSection
= '';
2740 * Split up a string on ':', ignoring any occurrences inside tags
2741 * to prevent illegal overlapping.
2743 * @param string $str The string to split
2744 * @param string &$before Set to everything before the ':'
2745 * @param string &$after Set to everything after the ':'
2746 * @throws MWException
2747 * @return string The position of the ':', or false if none found
2749 public function findColonNoLinks( $str, &$before, &$after ) {
2751 $pos = strpos( $str, ':' );
2752 if ( $pos === false ) {
2757 $lt = strpos( $str, '<' );
2758 if ( $lt === false ||
$lt > $pos ) {
2759 # Easy; no tag nesting to worry about
2760 $before = substr( $str, 0, $pos );
2761 $after = substr( $str, $pos +
1 );
2765 # Ugly state machine to walk through avoiding tags.
2766 $state = self
::COLON_STATE_TEXT
;
2768 $len = strlen( $str );
2769 for ( $i = 0; $i < $len; $i++
) {
2773 # (Using the number is a performance hack for common cases)
2774 case 0: # self::COLON_STATE_TEXT:
2777 # Could be either a <start> tag or an </end> tag
2778 $state = self
::COLON_STATE_TAGSTART
;
2781 if ( $stack == 0 ) {
2783 $before = substr( $str, 0, $i );
2784 $after = substr( $str, $i +
1 );
2787 # Embedded in a tag; don't break it.
2790 # Skip ahead looking for something interesting
2791 $colon = strpos( $str, ':', $i );
2792 if ( $colon === false ) {
2793 # Nothing else interesting
2796 $lt = strpos( $str, '<', $i );
2797 if ( $stack === 0 ) {
2798 if ( $lt === false ||
$colon < $lt ) {
2800 $before = substr( $str, 0, $colon );
2801 $after = substr( $str, $colon +
1 );
2805 if ( $lt === false ) {
2806 # Nothing else interesting to find; abort!
2807 # We're nested, but there's no close tags left. Abort!
2810 # Skip ahead to next tag start
2812 $state = self
::COLON_STATE_TAGSTART
;
2815 case 1: # self::COLON_STATE_TAG:
2820 $state = self
::COLON_STATE_TEXT
;
2823 # Slash may be followed by >?
2824 $state = self
::COLON_STATE_TAGSLASH
;
2830 case 2: # self::COLON_STATE_TAGSTART:
2833 $state = self
::COLON_STATE_CLOSETAG
;
2836 $state = self
::COLON_STATE_COMMENT
;
2839 # Illegal early close? This shouldn't happen D:
2840 $state = self
::COLON_STATE_TEXT
;
2843 $state = self
::COLON_STATE_TAG
;
2846 case 3: # self::COLON_STATE_CLOSETAG:
2851 wfDebug( __METHOD__
. ": Invalid input; too many close tags\n" );
2854 $state = self
::COLON_STATE_TEXT
;
2857 case self
::COLON_STATE_TAGSLASH
:
2859 # Yes, a self-closed tag <blah/>
2860 $state = self
::COLON_STATE_TEXT
;
2862 # Probably we're jumping the gun, and this is an attribute
2863 $state = self
::COLON_STATE_TAG
;
2866 case 5: # self::COLON_STATE_COMMENT:
2868 $state = self
::COLON_STATE_COMMENTDASH
;
2871 case self
::COLON_STATE_COMMENTDASH
:
2873 $state = self
::COLON_STATE_COMMENTDASHDASH
;
2875 $state = self
::COLON_STATE_COMMENT
;
2878 case self
::COLON_STATE_COMMENTDASHDASH
:
2880 $state = self
::COLON_STATE_TEXT
;
2882 $state = self
::COLON_STATE_COMMENT
;
2886 throw new MWException( "State machine error in " . __METHOD__
);
2890 wfDebug( __METHOD__
. ": Invalid input; not enough close tags (stack $stack, state $state)\n" );
2897 * Return value of a magic variable (like PAGENAME)
2902 * @param bool|PPFrame $frame
2904 * @throws MWException
2907 public function getVariableValue( $index, $frame = false ) {
2908 global $wgContLang, $wgSitename, $wgServer, $wgServerName;
2909 global $wgArticlePath, $wgScriptPath, $wgStylePath;
2911 if ( is_null( $this->mTitle
) ) {
2912 // If no title set, bad things are going to happen
2913 // later. Title should always be set since this
2914 // should only be called in the middle of a parse
2915 // operation (but the unit-tests do funky stuff)
2916 throw new MWException( __METHOD__
. ' Should only be '
2917 . ' called while parsing (no title set)' );
2921 * Some of these require message or data lookups and can be
2922 * expensive to check many times.
2924 if ( Hooks
::run( 'ParserGetVariableValueVarCache', [ &$this, &$this->mVarCache
] ) ) {
2925 if ( isset( $this->mVarCache
[$index] ) ) {
2926 return $this->mVarCache
[$index];
2930 $ts = wfTimestamp( TS_UNIX
, $this->mOptions
->getTimestamp() );
2931 Hooks
::run( 'ParserGetVariableValueTs', [ &$this, &$ts ] );
2933 $pageLang = $this->getFunctionLang();
2939 case 'currentmonth':
2940 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'm' ) );
2942 case 'currentmonth1':
2943 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2945 case 'currentmonthname':
2946 $value = $pageLang->getMonthName( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2948 case 'currentmonthnamegen':
2949 $value = $pageLang->getMonthNameGen( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2951 case 'currentmonthabbrev':
2952 $value = $pageLang->getMonthAbbreviation( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2955 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'j' ) );
2958 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'd' ) );
2961 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'm' ) );
2964 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2966 case 'localmonthname':
2967 $value = $pageLang->getMonthName( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2969 case 'localmonthnamegen':
2970 $value = $pageLang->getMonthNameGen( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2972 case 'localmonthabbrev':
2973 $value = $pageLang->getMonthAbbreviation( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2976 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'j' ) );
2979 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'd' ) );
2982 $value = wfEscapeWikiText( $this->mTitle
->getText() );
2985 $value = wfEscapeWikiText( $this->mTitle
->getPartialURL() );
2987 case 'fullpagename':
2988 $value = wfEscapeWikiText( $this->mTitle
->getPrefixedText() );
2990 case 'fullpagenamee':
2991 $value = wfEscapeWikiText( $this->mTitle
->getPrefixedURL() );
2994 $value = wfEscapeWikiText( $this->mTitle
->getSubpageText() );
2996 case 'subpagenamee':
2997 $value = wfEscapeWikiText( $this->mTitle
->getSubpageUrlForm() );
2999 case 'rootpagename':
3000 $value = wfEscapeWikiText( $this->mTitle
->getRootText() );
3002 case 'rootpagenamee':
3003 $value = wfEscapeWikiText( wfUrlencode( str_replace(
3006 $this->mTitle
->getRootText()
3009 case 'basepagename':
3010 $value = wfEscapeWikiText( $this->mTitle
->getBaseText() );
3012 case 'basepagenamee':
3013 $value = wfEscapeWikiText( wfUrlencode( str_replace(
3016 $this->mTitle
->getBaseText()
3019 case 'talkpagename':
3020 if ( $this->mTitle
->canTalk() ) {
3021 $talkPage = $this->mTitle
->getTalkPage();
3022 $value = wfEscapeWikiText( $talkPage->getPrefixedText() );
3027 case 'talkpagenamee':
3028 if ( $this->mTitle
->canTalk() ) {
3029 $talkPage = $this->mTitle
->getTalkPage();
3030 $value = wfEscapeWikiText( $talkPage->getPrefixedURL() );
3035 case 'subjectpagename':
3036 $subjPage = $this->mTitle
->getSubjectPage();
3037 $value = wfEscapeWikiText( $subjPage->getPrefixedText() );
3039 case 'subjectpagenamee':
3040 $subjPage = $this->mTitle
->getSubjectPage();
3041 $value = wfEscapeWikiText( $subjPage->getPrefixedURL() );
3043 case 'pageid': // requested in bug 23427
3044 $pageid = $this->getTitle()->getArticleID();
3045 if ( $pageid == 0 ) {
3046 # 0 means the page doesn't exist in the database,
3047 # which means the user is previewing a new page.
3048 # The vary-revision flag must be set, because the magic word
3049 # will have a different value once the page is saved.
3050 $this->mOutput
->setFlag( 'vary-revision' );
3051 wfDebug( __METHOD__
. ": {{PAGEID}} used in a new page, setting vary-revision...\n" );
3053 $value = $pageid ?
$pageid : null;
3056 # Let the edit saving system know we should parse the page
3057 # *after* a revision ID has been assigned.
3058 $this->mOutput
->setFlag( 'vary-revision' );
3059 wfDebug( __METHOD__
. ": {{REVISIONID}} used, setting vary-revision...\n" );
3060 $value = $this->mRevisionId
;
3063 # Let the edit saving system know we should parse the page
3064 # *after* a revision ID has been assigned. This is for null edits.
3065 $this->mOutput
->setFlag( 'vary-revision' );
3066 wfDebug( __METHOD__
. ": {{REVISIONDAY}} used, setting vary-revision...\n" );
3067 $value = intval( substr( $this->getRevisionTimestamp(), 6, 2 ) );
3069 case 'revisionday2':
3070 # Let the edit saving system know we should parse the page
3071 # *after* a revision ID has been assigned. This is for null edits.
3072 $this->mOutput
->setFlag( 'vary-revision' );
3073 wfDebug( __METHOD__
. ": {{REVISIONDAY2}} used, setting vary-revision...\n" );
3074 $value = substr( $this->getRevisionTimestamp(), 6, 2 );
3076 case 'revisionmonth':
3077 # Let the edit saving system know we should parse the page
3078 # *after* a revision ID has been assigned. This is for null edits.
3079 $this->mOutput
->setFlag( 'vary-revision' );
3080 wfDebug( __METHOD__
. ": {{REVISIONMONTH}} used, setting vary-revision...\n" );
3081 $value = substr( $this->getRevisionTimestamp(), 4, 2 );
3083 case 'revisionmonth1':
3084 # Let the edit saving system know we should parse the page
3085 # *after* a revision ID has been assigned. This is for null edits.
3086 $this->mOutput
->setFlag( 'vary-revision' );
3087 wfDebug( __METHOD__
. ": {{REVISIONMONTH1}} used, setting vary-revision...\n" );
3088 $value = intval( substr( $this->getRevisionTimestamp(), 4, 2 ) );
3090 case 'revisionyear':
3091 # Let the edit saving system know we should parse the page
3092 # *after* a revision ID has been assigned. This is for null edits.
3093 $this->mOutput
->setFlag( 'vary-revision' );
3094 wfDebug( __METHOD__
. ": {{REVISIONYEAR}} used, setting vary-revision...\n" );
3095 $value = substr( $this->getRevisionTimestamp(), 0, 4 );
3097 case 'revisiontimestamp':
3098 # Let the edit saving system know we should parse the page
3099 # *after* a revision ID has been assigned. This is for null edits.
3100 $this->mOutput
->setFlag( 'vary-revision' );
3101 wfDebug( __METHOD__
. ": {{REVISIONTIMESTAMP}} used, setting vary-revision...\n" );
3102 $value = $this->getRevisionTimestamp();
3104 case 'revisionuser':
3105 # Let the edit saving system know we should parse the page
3106 # *after* a revision ID has been assigned. This is for null edits.
3107 $this->mOutput
->setFlag( 'vary-revision' );
3108 wfDebug( __METHOD__
. ": {{REVISIONUSER}} used, setting vary-revision...\n" );
3109 $value = $this->getRevisionUser();
3111 case 'revisionsize':
3112 # Let the edit saving system know we should parse the page
3113 # *after* a revision ID has been assigned. This is for null edits.
3114 $this->mOutput
->setFlag( 'vary-revision' );
3115 wfDebug( __METHOD__
. ": {{REVISIONSIZE}} used, setting vary-revision...\n" );
3116 $value = $this->getRevisionSize();
3119 $value = str_replace( '_', ' ', $wgContLang->getNsText( $this->mTitle
->getNamespace() ) );
3122 $value = wfUrlencode( $wgContLang->getNsText( $this->mTitle
->getNamespace() ) );
3124 case 'namespacenumber':
3125 $value = $this->mTitle
->getNamespace();
3128 $value = $this->mTitle
->canTalk()
3129 ?
str_replace( '_', ' ', $this->mTitle
->getTalkNsText() )
3133 $value = $this->mTitle
->canTalk() ?
wfUrlencode( $this->mTitle
->getTalkNsText() ) : '';
3135 case 'subjectspace':
3136 $value = str_replace( '_', ' ', $this->mTitle
->getSubjectNsText() );
3138 case 'subjectspacee':
3139 $value = ( wfUrlencode( $this->mTitle
->getSubjectNsText() ) );
3141 case 'currentdayname':
3142 $value = $pageLang->getWeekdayName( (int)MWTimestamp
::getInstance( $ts )->format( 'w' ) +
1 );
3145 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'Y' ), true );
3148 $value = $pageLang->time( wfTimestamp( TS_MW
, $ts ), false, false );
3151 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'H' ), true );
3154 # @bug 4594 PHP5 has it zero padded, PHP4 does not, cast to
3155 # int to remove the padding
3156 $value = $pageLang->formatNum( (int)MWTimestamp
::getInstance( $ts )->format( 'W' ) );
3159 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'w' ) );
3161 case 'localdayname':
3162 $value = $pageLang->getWeekdayName(
3163 (int)MWTimestamp
::getLocalInstance( $ts )->format( 'w' ) +
1
3167 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'Y' ), true );
3170 $value = $pageLang->time(
3171 MWTimestamp
::getLocalInstance( $ts )->format( 'YmdHis' ),
3177 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'H' ), true );
3180 # @bug 4594 PHP5 has it zero padded, PHP4 does not, cast to
3181 # int to remove the padding
3182 $value = $pageLang->formatNum( (int)MWTimestamp
::getLocalInstance( $ts )->format( 'W' ) );
3185 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'w' ) );
3187 case 'numberofarticles':
3188 $value = $pageLang->formatNum( SiteStats
::articles() );
3190 case 'numberoffiles':
3191 $value = $pageLang->formatNum( SiteStats
::images() );
3193 case 'numberofusers':
3194 $value = $pageLang->formatNum( SiteStats
::users() );
3196 case 'numberofactiveusers':
3197 $value = $pageLang->formatNum( SiteStats
::activeUsers() );
3199 case 'numberofpages':
3200 $value = $pageLang->formatNum( SiteStats
::pages() );
3202 case 'numberofadmins':
3203 $value = $pageLang->formatNum( SiteStats
::numberingroup( 'sysop' ) );
3205 case 'numberofedits':
3206 $value = $pageLang->formatNum( SiteStats
::edits() );
3208 case 'currenttimestamp':
3209 $value = wfTimestamp( TS_MW
, $ts );
3211 case 'localtimestamp':
3212 $value = MWTimestamp
::getLocalInstance( $ts )->format( 'YmdHis' );
3214 case 'currentversion':
3215 $value = SpecialVersion
::getVersion();
3218 return $wgArticlePath;
3224 return $wgServerName;
3226 return $wgScriptPath;
3228 return $wgStylePath;
3229 case 'directionmark':
3230 return $pageLang->getDirMark();
3231 case 'contentlanguage':
3232 global $wgLanguageCode;
3233 return $wgLanguageCode;
3234 case 'cascadingsources':
3235 $value = CoreParserFunctions
::cascadingsources( $this );
3240 'ParserGetVariableValueSwitch',
3241 [ &$this, &$this->mVarCache
, &$index, &$ret, &$frame ]
3248 $this->mVarCache
[$index] = $value;
3255 * initialise the magic variables (like CURRENTMONTHNAME) and substitution modifiers
3259 public function initialiseVariables() {
3260 $variableIDs = MagicWord
::getVariableIDs();
3261 $substIDs = MagicWord
::getSubstIDs();
3263 $this->mVariables
= new MagicWordArray( $variableIDs );
3264 $this->mSubstWords
= new MagicWordArray( $substIDs );
3268 * Preprocess some wikitext and return the document tree.
3269 * This is the ghost of replace_variables().
3271 * @param string $text The text to parse
3272 * @param int $flags Bitwise combination of:
3273 * - self::PTD_FOR_INCLUSION: Handle "<noinclude>" and "<includeonly>" as if the text is being
3274 * included. Default is to assume a direct page view.
3276 * The generated DOM tree must depend only on the input text and the flags.
3277 * The DOM tree must be the same in OT_HTML and OT_WIKI mode, to avoid a regression of bug 4899.
3279 * Any flag added to the $flags parameter here, or any other parameter liable to cause a
3280 * change in the DOM tree for a given text, must be passed through the section identifier
3281 * in the section edit link and thus back to extractSections().
3283 * The output of this function is currently only cached in process memory, but a persistent
3284 * cache may be implemented at a later date which takes further advantage of these strict
3285 * dependency requirements.
3289 public function preprocessToDom( $text, $flags = 0 ) {
3290 $dom = $this->getPreprocessor()->preprocessToObj( $text, $flags );
3295 * Return a three-element array: leading whitespace, string contents, trailing whitespace
3301 public static function splitWhitespace( $s ) {
3302 $ltrimmed = ltrim( $s );
3303 $w1 = substr( $s, 0, strlen( $s ) - strlen( $ltrimmed ) );
3304 $trimmed = rtrim( $ltrimmed );
3305 $diff = strlen( $ltrimmed ) - strlen( $trimmed );
3307 $w2 = substr( $ltrimmed, -$diff );
3311 return [ $w1, $trimmed, $w2 ];
3315 * Replace magic variables, templates, and template arguments
3316 * with the appropriate text. Templates are substituted recursively,
3317 * taking care to avoid infinite loops.
3319 * Note that the substitution depends on value of $mOutputType:
3320 * self::OT_WIKI: only {{subst:}} templates
3321 * self::OT_PREPROCESS: templates but not extension tags
3322 * self::OT_HTML: all templates and extension tags
3324 * @param string $text The text to transform
3325 * @param bool|PPFrame $frame Object describing the arguments passed to the
3326 * template. Arguments may also be provided as an associative array, as
3327 * was the usual case before MW1.12. Providing arguments this way may be
3328 * useful for extensions wishing to perform variable replacement
3330 * @param bool $argsOnly Only do argument (triple-brace) expansion, not
3331 * double-brace expansion.
3334 public function replaceVariables( $text, $frame = false, $argsOnly = false ) {
3335 # Is there any text? Also, Prevent too big inclusions!
3336 $textSize = strlen( $text );
3337 if ( $textSize < 1 ||
$textSize > $this->mOptions
->getMaxIncludeSize() ) {
3341 if ( $frame === false ) {
3342 $frame = $this->getPreprocessor()->newFrame();
3343 } elseif ( !( $frame instanceof PPFrame
) ) {
3344 wfDebug( __METHOD__
. " called using plain parameters instead of "
3345 . "a PPFrame instance. Creating custom frame.\n" );
3346 $frame = $this->getPreprocessor()->newCustomFrame( $frame );
3349 $dom = $this->preprocessToDom( $text );
3350 $flags = $argsOnly ? PPFrame
::NO_TEMPLATES
: 0;
3351 $text = $frame->expand( $dom, $flags );
3357 * Clean up argument array - refactored in 1.9 so parserfunctions can use it, too.
3359 * @param array $args
3363 public static function createAssocArgs( $args ) {
3366 foreach ( $args as $arg ) {
3367 $eqpos = strpos( $arg, '=' );
3368 if ( $eqpos === false ) {
3369 $assocArgs[$index++
] = $arg;
3371 $name = trim( substr( $arg, 0, $eqpos ) );
3372 $value = trim( substr( $arg, $eqpos +
1 ) );
3373 if ( $value === false ) {
3376 if ( $name !== false ) {
3377 $assocArgs[$name] = $value;
3386 * Warn the user when a parser limitation is reached
3387 * Will warn at most once the user per limitation type
3389 * The results are shown during preview and run through the Parser (See EditPage.php)
3391 * @param string $limitationType Should be one of:
3392 * 'expensive-parserfunction' (corresponding messages:
3393 * 'expensive-parserfunction-warning',
3394 * 'expensive-parserfunction-category')
3395 * 'post-expand-template-argument' (corresponding messages:
3396 * 'post-expand-template-argument-warning',
3397 * 'post-expand-template-argument-category')
3398 * 'post-expand-template-inclusion' (corresponding messages:
3399 * 'post-expand-template-inclusion-warning',
3400 * 'post-expand-template-inclusion-category')
3401 * 'node-count-exceeded' (corresponding messages:
3402 * 'node-count-exceeded-warning',
3403 * 'node-count-exceeded-category')
3404 * 'expansion-depth-exceeded' (corresponding messages:
3405 * 'expansion-depth-exceeded-warning',
3406 * 'expansion-depth-exceeded-category')
3407 * @param string|int|null $current Current value
3408 * @param string|int|null $max Maximum allowed, when an explicit limit has been
3409 * exceeded, provide the values (optional)
3411 public function limitationWarn( $limitationType, $current = '', $max = '' ) {
3412 # does no harm if $current and $max are present but are unnecessary for the message
3413 # Not doing ->inLanguage( $this->mOptions->getUserLangObj() ), since this is shown
3414 # only during preview, and that would split the parser cache unnecessarily.
3415 $warning = wfMessage( "$limitationType-warning" )->numParams( $current, $max )
3417 $this->mOutput
->addWarning( $warning );
3418 $this->addTrackingCategory( "$limitationType-category" );
3422 * Return the text of a template, after recursively
3423 * replacing any variables or templates within the template.
3425 * @param array $piece The parts of the template
3426 * $piece['title']: the title, i.e. the part before the |
3427 * $piece['parts']: the parameter array
3428 * $piece['lineStart']: whether the brace was at the start of a line
3429 * @param PPFrame $frame The current frame, contains template arguments
3431 * @return string The text of the template
3433 public function braceSubstitution( $piece, $frame ) {
3437 // $text has been filled
3439 // wiki markup in $text should be escaped
3441 // $text is HTML, armour it against wikitext transformation
3443 // Force interwiki transclusion to be done in raw mode not rendered
3444 $forceRawInterwiki = false;
3445 // $text is a DOM node needing expansion in a child frame
3446 $isChildObj = false;
3447 // $text is a DOM node needing expansion in the current frame
3448 $isLocalObj = false;
3450 # Title object, where $text came from
3453 # $part1 is the bit before the first |, and must contain only title characters.
3454 # Various prefixes will be stripped from it later.
3455 $titleWithSpaces = $frame->expand( $piece['title'] );
3456 $part1 = trim( $titleWithSpaces );
3459 # Original title text preserved for various purposes
3460 $originalTitle = $part1;
3462 # $args is a list of argument nodes, starting from index 0, not including $part1
3463 # @todo FIXME: If piece['parts'] is null then the call to getLength()
3464 # below won't work b/c this $args isn't an object
3465 $args = ( null == $piece['parts'] ) ?
[] : $piece['parts'];
3467 $profileSection = null; // profile templates
3471 $substMatch = $this->mSubstWords
->matchStartAndRemove( $part1 );
3473 # Possibilities for substMatch: "subst", "safesubst" or FALSE
3474 # Decide whether to expand template or keep wikitext as-is.
3475 if ( $this->ot
['wiki'] ) {
3476 if ( $substMatch === false ) {
3477 $literal = true; # literal when in PST with no prefix
3479 $literal = false; # expand when in PST with subst: or safesubst:
3482 if ( $substMatch == 'subst' ) {
3483 $literal = true; # literal when not in PST with plain subst:
3485 $literal = false; # expand when not in PST with safesubst: or no prefix
3489 $text = $frame->virtualBracketedImplode( '{{', '|', '}}', $titleWithSpaces, $args );
3496 if ( !$found && $args->getLength() == 0 ) {
3497 $id = $this->mVariables
->matchStartToEnd( $part1 );
3498 if ( $id !== false ) {
3499 $text = $this->getVariableValue( $id, $frame );
3500 if ( MagicWord
::getCacheTTL( $id ) > -1 ) {
3501 $this->mOutput
->updateCacheExpiry( MagicWord
::getCacheTTL( $id ) );
3507 # MSG, MSGNW and RAW
3510 $mwMsgnw = MagicWord
::get( 'msgnw' );
3511 if ( $mwMsgnw->matchStartAndRemove( $part1 ) ) {
3514 # Remove obsolete MSG:
3515 $mwMsg = MagicWord
::get( 'msg' );
3516 $mwMsg->matchStartAndRemove( $part1 );
3520 $mwRaw = MagicWord
::get( 'raw' );
3521 if ( $mwRaw->matchStartAndRemove( $part1 ) ) {
3522 $forceRawInterwiki = true;
3528 $colonPos = strpos( $part1, ':' );
3529 if ( $colonPos !== false ) {
3530 $func = substr( $part1, 0, $colonPos );
3531 $funcArgs = [ trim( substr( $part1, $colonPos +
1 ) ) ];
3532 $argsLength = $args->getLength();
3533 for ( $i = 0; $i < $argsLength; $i++
) {
3534 $funcArgs[] = $args->item( $i );
3537 $result = $this->callParserFunction( $frame, $func, $funcArgs );
3538 } catch ( Exception
$ex ) {
3542 # The interface for parser functions allows for extracting
3543 # flags into the local scope. Extract any forwarded flags
3549 # Finish mangling title and then check for loops.
3550 # Set $title to a Title object and $titleText to the PDBK
3553 # Split the title into page and subpage
3555 $relative = $this->maybeDoSubpageLink( $part1, $subpage );
3556 if ( $part1 !== $relative ) {
3558 $ns = $this->mTitle
->getNamespace();
3560 $title = Title
::newFromText( $part1, $ns );
3562 $titleText = $title->getPrefixedText();
3563 # Check for language variants if the template is not found
3564 if ( $this->getConverterLanguage()->hasVariants() && $title->getArticleID() == 0 ) {
3565 $this->getConverterLanguage()->findVariantLink( $part1, $title, true );
3567 # Do recursion depth check
3568 $limit = $this->mOptions
->getMaxTemplateDepth();
3569 if ( $frame->depth
>= $limit ) {
3571 $text = '<span class="error">'
3572 . wfMessage( 'parser-template-recursion-depth-warning' )
3573 ->numParams( $limit )->inContentLanguage()->text()
3579 # Load from database
3580 if ( !$found && $title ) {
3581 $profileSection = $this->mProfiler
->scopedProfileIn( $title->getPrefixedDBkey() );
3582 if ( !$title->isExternal() ) {
3583 if ( $title->isSpecialPage()
3584 && $this->mOptions
->getAllowSpecialInclusion()
3585 && $this->ot
['html']
3587 // Pass the template arguments as URL parameters.
3588 // "uselang" will have no effect since the Language object
3589 // is forced to the one defined in ParserOptions.
3591 $argsLength = $args->getLength();
3592 for ( $i = 0; $i < $argsLength; $i++
) {
3593 $bits = $args->item( $i )->splitArg();
3594 if ( strval( $bits['index'] ) === '' ) {
3595 $name = trim( $frame->expand( $bits['name'], PPFrame
::STRIP_COMMENTS
) );
3596 $value = trim( $frame->expand( $bits['value'] ) );
3597 $pageArgs[$name] = $value;
3601 // Create a new context to execute the special page
3602 $context = new RequestContext
;
3603 $context->setTitle( $title );
3604 $context->setRequest( new FauxRequest( $pageArgs ) );
3605 $context->setUser( $this->getUser() );
3606 $context->setLanguage( $this->mOptions
->getUserLangObj() );
3607 $ret = SpecialPageFactory
::capturePath( $title, $context );
3609 $text = $context->getOutput()->getHTML();
3610 $this->mOutput
->addOutputPageMetadata( $context->getOutput() );
3613 $this->disableCache();
3615 } elseif ( MWNamespace
::isNonincludable( $title->getNamespace() ) ) {
3616 $found = false; # access denied
3617 wfDebug( __METHOD__
. ": template inclusion denied for " .
3618 $title->getPrefixedDBkey() . "\n" );
3620 list( $text, $title ) = $this->getTemplateDom( $title );
3621 if ( $text !== false ) {
3627 # If the title is valid but undisplayable, make a link to it
3628 if ( !$found && ( $this->ot
['html'] ||
$this->ot
['pre'] ) ) {
3629 $text = "[[:$titleText]]";
3632 } elseif ( $title->isTrans() ) {
3633 # Interwiki transclusion
3634 if ( $this->ot
['html'] && !$forceRawInterwiki ) {
3635 $text = $this->interwikiTransclude( $title, 'render' );
3638 $text = $this->interwikiTransclude( $title, 'raw' );
3639 # Preprocess it like a template
3640 $text = $this->preprocessToDom( $text, self
::PTD_FOR_INCLUSION
);
3646 # Do infinite loop check
3647 # This has to be done after redirect resolution to avoid infinite loops via redirects
3648 if ( !$frame->loopCheck( $title ) ) {
3650 $text = '<span class="error">'
3651 . wfMessage( 'parser-template-loop-warning', $titleText )->inContentLanguage()->text()
3653 wfDebug( __METHOD__
. ": template loop broken at '$titleText'\n" );
3657 # If we haven't found text to substitute by now, we're done
3658 # Recover the source wikitext and return it
3660 $text = $frame->virtualBracketedImplode( '{{', '|', '}}', $titleWithSpaces, $args );
3661 if ( $profileSection ) {
3662 $this->mProfiler
->scopedProfileOut( $profileSection );
3664 return [ 'object' => $text ];
3667 # Expand DOM-style return values in a child frame
3668 if ( $isChildObj ) {
3669 # Clean up argument array
3670 $newFrame = $frame->newChild( $args, $title );
3673 $text = $newFrame->expand( $text, PPFrame
::RECOVER_ORIG
);
3674 } elseif ( $titleText !== false && $newFrame->isEmpty() ) {
3675 # Expansion is eligible for the empty-frame cache
3676 $text = $newFrame->cachedExpand( $titleText, $text );
3678 # Uncached expansion
3679 $text = $newFrame->expand( $text );
3682 if ( $isLocalObj && $nowiki ) {
3683 $text = $frame->expand( $text, PPFrame
::RECOVER_ORIG
);
3684 $isLocalObj = false;
3687 if ( $profileSection ) {
3688 $this->mProfiler
->scopedProfileOut( $profileSection );
3691 # Replace raw HTML by a placeholder
3693 $text = $this->insertStripItem( $text );
3694 } elseif ( $nowiki && ( $this->ot
['html'] ||
$this->ot
['pre'] ) ) {
3695 # Escape nowiki-style return values
3696 $text = wfEscapeWikiText( $text );
3697 } elseif ( is_string( $text )
3698 && !$piece['lineStart']
3699 && preg_match( '/^(?:{\\||:|;|#|\*)/', $text )
3701 # Bug 529: if the template begins with a table or block-level
3702 # element, it should be treated as beginning a new line.
3703 # This behavior is somewhat controversial.
3704 $text = "\n" . $text;
3707 if ( is_string( $text ) && !$this->incrementIncludeSize( 'post-expand', strlen( $text ) ) ) {
3708 # Error, oversize inclusion
3709 if ( $titleText !== false ) {
3710 # Make a working, properly escaped link if possible (bug 23588)
3711 $text = "[[:$titleText]]";
3713 # This will probably not be a working link, but at least it may
3714 # provide some hint of where the problem is
3715 preg_replace( '/^:/', '', $originalTitle );
3716 $text = "[[:$originalTitle]]";
3718 $text .= $this->insertStripItem( '<!-- WARNING: template omitted, '
3719 . 'post-expand include size too large -->' );
3720 $this->limitationWarn( 'post-expand-template-inclusion' );
3723 if ( $isLocalObj ) {
3724 $ret = [ 'object' => $text ];
3726 $ret = [ 'text' => $text ];
3733 * Call a parser function and return an array with text and flags.
3735 * The returned array will always contain a boolean 'found', indicating
3736 * whether the parser function was found or not. It may also contain the
3738 * text: string|object, resulting wikitext or PP DOM object
3739 * isHTML: bool, $text is HTML, armour it against wikitext transformation
3740 * isChildObj: bool, $text is a DOM node needing expansion in a child frame
3741 * isLocalObj: bool, $text is a DOM node needing expansion in the current frame
3742 * nowiki: bool, wiki markup in $text should be escaped
3745 * @param PPFrame $frame The current frame, contains template arguments
3746 * @param string $function Function name
3747 * @param array $args Arguments to the function
3748 * @throws MWException
3751 public function callParserFunction( $frame, $function, array $args = [] ) {
3754 # Case sensitive functions
3755 if ( isset( $this->mFunctionSynonyms
[1][$function] ) ) {
3756 $function = $this->mFunctionSynonyms
[1][$function];
3758 # Case insensitive functions
3759 $function = $wgContLang->lc( $function );
3760 if ( isset( $this->mFunctionSynonyms
[0][$function] ) ) {
3761 $function = $this->mFunctionSynonyms
[0][$function];
3763 return [ 'found' => false ];
3767 list( $callback, $flags ) = $this->mFunctionHooks
[$function];
3769 # Workaround for PHP bug 35229 and similar
3770 if ( !is_callable( $callback ) ) {
3771 throw new MWException( "Tag hook for $function is not callable\n" );
3774 $allArgs = [ &$this ];
3775 if ( $flags & self
::SFH_OBJECT_ARGS
) {
3776 # Convert arguments to PPNodes and collect for appending to $allArgs
3778 foreach ( $args as $k => $v ) {
3779 if ( $v instanceof PPNode ||
$k === 0 ) {
3782 $funcArgs[] = $this->mPreprocessor
->newPartNodeArray( [ $k => $v ] )->item( 0 );
3786 # Add a frame parameter, and pass the arguments as an array
3787 $allArgs[] = $frame;
3788 $allArgs[] = $funcArgs;
3790 # Convert arguments to plain text and append to $allArgs
3791 foreach ( $args as $k => $v ) {
3792 if ( $v instanceof PPNode
) {
3793 $allArgs[] = trim( $frame->expand( $v ) );
3794 } elseif ( is_int( $k ) && $k >= 0 ) {
3795 $allArgs[] = trim( $v );
3797 $allArgs[] = trim( "$k=$v" );
3802 $result = call_user_func_array( $callback, $allArgs );
3804 # The interface for function hooks allows them to return a wikitext
3805 # string or an array containing the string and any flags. This mungs
3806 # things around to match what this method should return.
3807 if ( !is_array( $result ) ) {
3813 if ( isset( $result[0] ) && !isset( $result['text'] ) ) {
3814 $result['text'] = $result[0];
3816 unset( $result[0] );
3823 $preprocessFlags = 0;
3824 if ( isset( $result['noparse'] ) ) {
3825 $noparse = $result['noparse'];
3827 if ( isset( $result['preprocessFlags'] ) ) {
3828 $preprocessFlags = $result['preprocessFlags'];
3832 $result['text'] = $this->preprocessToDom( $result['text'], $preprocessFlags );
3833 $result['isChildObj'] = true;
3840 * Get the semi-parsed DOM representation of a template with a given title,
3841 * and its redirect destination title. Cached.
3843 * @param Title $title
3847 public function getTemplateDom( $title ) {
3848 $cacheTitle = $title;
3849 $titleText = $title->getPrefixedDBkey();
3851 if ( isset( $this->mTplRedirCache
[$titleText] ) ) {
3852 list( $ns, $dbk ) = $this->mTplRedirCache
[$titleText];
3853 $title = Title
::makeTitle( $ns, $dbk );
3854 $titleText = $title->getPrefixedDBkey();
3856 if ( isset( $this->mTplDomCache
[$titleText] ) ) {
3857 return [ $this->mTplDomCache
[$titleText], $title ];
3860 # Cache miss, go to the database
3861 list( $text, $title ) = $this->fetchTemplateAndTitle( $title );
3863 if ( $text === false ) {
3864 $this->mTplDomCache
[$titleText] = false;
3865 return [ false, $title ];
3868 $dom = $this->preprocessToDom( $text, self
::PTD_FOR_INCLUSION
);
3869 $this->mTplDomCache
[$titleText] = $dom;
3871 if ( !$title->equals( $cacheTitle ) ) {
3872 $this->mTplRedirCache
[$cacheTitle->getPrefixedDBkey()] =
3873 [ $title->getNamespace(), $cdb = $title->getDBkey() ];
3876 return [ $dom, $title ];
3880 * Fetch the current revision of a given title. Note that the revision
3881 * (and even the title) may not exist in the database, so everything
3882 * contributing to the output of the parser should use this method
3883 * where possible, rather than getting the revisions themselves. This
3884 * method also caches its results, so using it benefits performance.
3887 * @param Title $title
3890 public function fetchCurrentRevisionOfTitle( $title ) {
3891 $cacheKey = $title->getPrefixedDBkey();
3892 if ( !$this->currentRevisionCache
) {
3893 $this->currentRevisionCache
= new MapCacheLRU( 100 );
3895 if ( !$this->currentRevisionCache
->has( $cacheKey ) ) {
3896 $this->currentRevisionCache
->set( $cacheKey,
3897 // Defaults to Parser::statelessFetchRevision()
3898 call_user_func( $this->mOptions
->getCurrentRevisionCallback(), $title, $this )
3901 return $this->currentRevisionCache
->get( $cacheKey );
3905 * Wrapper around Revision::newFromTitle to allow passing additional parameters
3906 * without passing them on to it.
3909 * @param Title $title
3910 * @param Parser|bool $parser
3913 public static function statelessFetchRevision( $title, $parser = false ) {
3914 return Revision
::newFromTitle( $title );
3918 * Fetch the unparsed text of a template and register a reference to it.
3919 * @param Title $title
3920 * @return array ( string or false, Title )
3922 public function fetchTemplateAndTitle( $title ) {
3923 // Defaults to Parser::statelessFetchTemplate()
3924 $templateCb = $this->mOptions
->getTemplateCallback();
3925 $stuff = call_user_func( $templateCb, $title, $this );
3926 // We use U+007F DELETE to distinguish strip markers from regular text.
3927 $text = $stuff['text'];
3928 if ( is_string( $stuff['text'] ) ) {
3929 $text = strtr( $text, "\x7f", "?" );
3931 $finalTitle = isset( $stuff['finalTitle'] ) ?
$stuff['finalTitle'] : $title;
3932 if ( isset( $stuff['deps'] ) ) {
3933 foreach ( $stuff['deps'] as $dep ) {
3934 $this->mOutput
->addTemplate( $dep['title'], $dep['page_id'], $dep['rev_id'] );
3935 if ( $dep['title']->equals( $this->getTitle() ) ) {
3936 // If we transclude ourselves, the final result
3937 // will change based on the new version of the page
3938 $this->mOutput
->setFlag( 'vary-revision' );
3942 return [ $text, $finalTitle ];
3946 * Fetch the unparsed text of a template and register a reference to it.
3947 * @param Title $title
3948 * @return string|bool
3950 public function fetchTemplate( $title ) {
3951 return $this->fetchTemplateAndTitle( $title )[0];
3955 * Static function to get a template
3956 * Can be overridden via ParserOptions::setTemplateCallback().
3958 * @param Title $title
3959 * @param bool|Parser $parser
3963 public static function statelessFetchTemplate( $title, $parser = false ) {
3964 $text = $skip = false;
3965 $finalTitle = $title;
3968 # Loop to fetch the article, with up to 1 redirect
3969 // @codingStandardsIgnoreStart Generic.CodeAnalysis.ForLoopWithTestFunctionCall.NotAllowed
3970 for ( $i = 0; $i < 2 && is_object( $title ); $i++
) {
3971 // @codingStandardsIgnoreEnd
3972 # Give extensions a chance to select the revision instead
3973 $id = false; # Assume current
3974 Hooks
::run( 'BeforeParserFetchTemplateAndtitle',
3975 [ $parser, $title, &$skip, &$id ] );
3981 'page_id' => $title->getArticleID(),
3988 $rev = Revision
::newFromId( $id );
3989 } elseif ( $parser ) {
3990 $rev = $parser->fetchCurrentRevisionOfTitle( $title );
3992 $rev = Revision
::newFromTitle( $title );
3994 $rev_id = $rev ?
$rev->getId() : 0;
3995 # If there is no current revision, there is no page
3996 if ( $id === false && !$rev ) {
3997 $linkCache = LinkCache
::singleton();
3998 $linkCache->addBadLinkObj( $title );
4003 'page_id' => $title->getArticleID(),
4004 'rev_id' => $rev_id ];
4005 if ( $rev && !$title->equals( $rev->getTitle() ) ) {
4006 # We fetched a rev from a different title; register it too...
4008 'title' => $rev->getTitle(),
4009 'page_id' => $rev->getPage(),
4010 'rev_id' => $rev_id ];
4014 $content = $rev->getContent();
4015 $text = $content ?
$content->getWikitextForTransclusion() : null;
4017 if ( $text === false ||
$text === null ) {
4021 } elseif ( $title->getNamespace() == NS_MEDIAWIKI
) {
4023 $message = wfMessage( $wgContLang->lcfirst( $title->getText() ) )->inContentLanguage();
4024 if ( !$message->exists() ) {
4028 $content = $message->content();
4029 $text = $message->plain();
4037 $finalTitle = $title;
4038 $title = $content->getRedirectTarget();
4042 'finalTitle' => $finalTitle,
4047 * Fetch a file and its title and register a reference to it.
4048 * If 'broken' is a key in $options then the file will appear as a broken thumbnail.
4049 * @param Title $title
4050 * @param array $options Array of options to RepoGroup::findFile
4053 public function fetchFile( $title, $options = [] ) {
4054 return $this->fetchFileAndTitle( $title, $options )[0];
4058 * Fetch a file and its title and register a reference to it.
4059 * If 'broken' is a key in $options then the file will appear as a broken thumbnail.
4060 * @param Title $title
4061 * @param array $options Array of options to RepoGroup::findFile
4062 * @return array ( File or false, Title of file )
4064 public function fetchFileAndTitle( $title, $options = [] ) {
4065 $file = $this->fetchFileNoRegister( $title, $options );
4067 $time = $file ?
$file->getTimestamp() : false;
4068 $sha1 = $file ?
$file->getSha1() : false;
4069 # Register the file as a dependency...
4070 $this->mOutput
->addImage( $title->getDBkey(), $time, $sha1 );
4071 if ( $file && !$title->equals( $file->getTitle() ) ) {
4072 # Update fetched file title
4073 $title = $file->getTitle();
4074 $this->mOutput
->addImage( $title->getDBkey(), $time, $sha1 );
4076 return [ $file, $title ];
4080 * Helper function for fetchFileAndTitle.
4082 * Also useful if you need to fetch a file but not use it yet,
4083 * for example to get the file's handler.
4085 * @param Title $title
4086 * @param array $options Array of options to RepoGroup::findFile
4089 protected function fetchFileNoRegister( $title, $options = [] ) {
4090 if ( isset( $options['broken'] ) ) {
4091 $file = false; // broken thumbnail forced by hook
4092 } elseif ( isset( $options['sha1'] ) ) { // get by (sha1,timestamp)
4093 $file = RepoGroup
::singleton()->findFileFromKey( $options['sha1'], $options );
4094 } else { // get by (name,timestamp)
4095 $file = wfFindFile( $title, $options );
4101 * Transclude an interwiki link.
4103 * @param Title $title
4104 * @param string $action
4108 public function interwikiTransclude( $title, $action ) {
4109 global $wgEnableScaryTranscluding;
4111 if ( !$wgEnableScaryTranscluding ) {
4112 return wfMessage( 'scarytranscludedisabled' )->inContentLanguage()->text();
4115 $url = $title->getFullURL( [ 'action' => $action ] );
4117 if ( strlen( $url ) > 255 ) {
4118 return wfMessage( 'scarytranscludetoolong' )->inContentLanguage()->text();
4120 return $this->fetchScaryTemplateMaybeFromCache( $url );
4124 * @param string $url
4125 * @return mixed|string
4127 public function fetchScaryTemplateMaybeFromCache( $url ) {
4128 global $wgTranscludeCacheExpiry;
4129 $dbr = wfGetDB( DB_SLAVE
);
4130 $tsCond = $dbr->timestamp( time() - $wgTranscludeCacheExpiry );
4131 $obj = $dbr->selectRow( 'transcache', [ 'tc_time', 'tc_contents' ],
4132 [ 'tc_url' => $url, "tc_time >= " . $dbr->addQuotes( $tsCond ) ] );
4134 return $obj->tc_contents
;
4137 $req = MWHttpRequest
::factory( $url, [], __METHOD__
);
4138 $status = $req->execute(); // Status object
4139 if ( $status->isOK() ) {
4140 $text = $req->getContent();
4141 } elseif ( $req->getStatus() != 200 ) {
4142 // Though we failed to fetch the content, this status is useless.
4143 return wfMessage( 'scarytranscludefailed-httpstatus' )
4144 ->params( $url, $req->getStatus() /* HTTP status */ )->inContentLanguage()->text();
4146 return wfMessage( 'scarytranscludefailed', $url )->inContentLanguage()->text();
4149 $dbw = wfGetDB( DB_MASTER
);
4150 $dbw->replace( 'transcache', [ 'tc_url' ], [
4152 'tc_time' => $dbw->timestamp( time() ),
4153 'tc_contents' => $text
4159 * Triple brace replacement -- used for template arguments
4162 * @param array $piece
4163 * @param PPFrame $frame
4167 public function argSubstitution( $piece, $frame ) {
4170 $parts = $piece['parts'];
4171 $nameWithSpaces = $frame->expand( $piece['title'] );
4172 $argName = trim( $nameWithSpaces );
4174 $text = $frame->getArgument( $argName );
4175 if ( $text === false && $parts->getLength() > 0
4176 && ( $this->ot
['html']
4178 ||
( $this->ot
['wiki'] && $frame->isTemplate() )
4181 # No match in frame, use the supplied default
4182 $object = $parts->item( 0 )->getChildren();
4184 if ( !$this->incrementIncludeSize( 'arg', strlen( $text ) ) ) {
4185 $error = '<!-- WARNING: argument omitted, expansion size too large -->';
4186 $this->limitationWarn( 'post-expand-template-argument' );
4189 if ( $text === false && $object === false ) {
4191 $object = $frame->virtualBracketedImplode( '{{{', '|', '}}}', $nameWithSpaces, $parts );
4193 if ( $error !== false ) {
4196 if ( $object !== false ) {
4197 $ret = [ 'object' => $object ];
4199 $ret = [ 'text' => $text ];
4206 * Return the text to be used for a given extension tag.
4207 * This is the ghost of strip().
4209 * @param array $params Associative array of parameters:
4210 * name PPNode for the tag name
4211 * attr PPNode for unparsed text where tag attributes are thought to be
4212 * attributes Optional associative array of parsed attributes
4213 * inner Contents of extension element
4214 * noClose Original text did not have a close tag
4215 * @param PPFrame $frame
4217 * @throws MWException
4220 public function extensionSubstitution( $params, $frame ) {
4221 $name = $frame->expand( $params['name'] );
4222 $attrText = !isset( $params['attr'] ) ?
null : $frame->expand( $params['attr'] );
4223 $content = !isset( $params['inner'] ) ?
null : $frame->expand( $params['inner'] );
4224 $marker = self
::MARKER_PREFIX
. "-$name-"
4225 . sprintf( '%08X', $this->mMarkerIndex++
) . self
::MARKER_SUFFIX
;
4227 $isFunctionTag = isset( $this->mFunctionTagHooks
[strtolower( $name )] ) &&
4228 ( $this->ot
['html'] ||
$this->ot
['pre'] );
4229 if ( $isFunctionTag ) {
4230 $markerType = 'none';
4232 $markerType = 'general';
4234 if ( $this->ot
['html'] ||
$isFunctionTag ) {
4235 $name = strtolower( $name );
4236 $attributes = Sanitizer
::decodeTagAttributes( $attrText );
4237 if ( isset( $params['attributes'] ) ) {
4238 $attributes = $attributes +
$params['attributes'];
4241 if ( isset( $this->mTagHooks
[$name] ) ) {
4242 # Workaround for PHP bug 35229 and similar
4243 if ( !is_callable( $this->mTagHooks
[$name] ) ) {
4244 throw new MWException( "Tag hook for $name is not callable\n" );
4246 $output = call_user_func_array( $this->mTagHooks
[$name],
4247 [ $content, $attributes, $this, $frame ] );
4248 } elseif ( isset( $this->mFunctionTagHooks
[$name] ) ) {
4249 list( $callback, ) = $this->mFunctionTagHooks
[$name];
4250 if ( !is_callable( $callback ) ) {
4251 throw new MWException( "Tag hook for $name is not callable\n" );
4254 $output = call_user_func_array( $callback, [ &$this, $frame, $content, $attributes ] );
4256 $output = '<span class="error">Invalid tag extension name: ' .
4257 htmlspecialchars( $name ) . '</span>';
4260 if ( is_array( $output ) ) {
4261 # Extract flags to local scope (to override $markerType)
4263 $output = $flags[0];
4268 if ( is_null( $attrText ) ) {
4271 if ( isset( $params['attributes'] ) ) {
4272 foreach ( $params['attributes'] as $attrName => $attrValue ) {
4273 $attrText .= ' ' . htmlspecialchars( $attrName ) . '="' .
4274 htmlspecialchars( $attrValue ) . '"';
4277 if ( $content === null ) {
4278 $output = "<$name$attrText/>";
4280 $close = is_null( $params['close'] ) ?
'' : $frame->expand( $params['close'] );
4281 $output = "<$name$attrText>$content$close";
4285 if ( $markerType === 'none' ) {
4287 } elseif ( $markerType === 'nowiki' ) {
4288 $this->mStripState
->addNoWiki( $marker, $output );
4289 } elseif ( $markerType === 'general' ) {
4290 $this->mStripState
->addGeneral( $marker, $output );
4292 throw new MWException( __METHOD__
. ': invalid marker type' );
4298 * Increment an include size counter
4300 * @param string $type The type of expansion
4301 * @param int $size The size of the text
4302 * @return bool False if this inclusion would take it over the maximum, true otherwise
4304 public function incrementIncludeSize( $type, $size ) {
4305 if ( $this->mIncludeSizes
[$type] +
$size > $this->mOptions
->getMaxIncludeSize() ) {
4308 $this->mIncludeSizes
[$type] +
= $size;
4314 * Increment the expensive function count
4316 * @return bool False if the limit has been exceeded
4318 public function incrementExpensiveFunctionCount() {
4319 $this->mExpensiveFunctionCount++
;
4320 return $this->mExpensiveFunctionCount
<= $this->mOptions
->getExpensiveParserFunctionLimit();
4324 * Strip double-underscore items like __NOGALLERY__ and __NOTOC__
4325 * Fills $this->mDoubleUnderscores, returns the modified text
4327 * @param string $text
4331 public function doDoubleUnderscore( $text ) {
4333 # The position of __TOC__ needs to be recorded
4334 $mw = MagicWord
::get( 'toc' );
4335 if ( $mw->match( $text ) ) {
4336 $this->mShowToc
= true;
4337 $this->mForceTocPosition
= true;
4339 # Set a placeholder. At the end we'll fill it in with the TOC.
4340 $text = $mw->replace( '<!--MWTOC-->', $text, 1 );
4342 # Only keep the first one.
4343 $text = $mw->replace( '', $text );
4346 # Now match and remove the rest of them
4347 $mwa = MagicWord
::getDoubleUnderscoreArray();
4348 $this->mDoubleUnderscores
= $mwa->matchAndRemove( $text );
4350 if ( isset( $this->mDoubleUnderscores
['nogallery'] ) ) {
4351 $this->mOutput
->mNoGallery
= true;
4353 if ( isset( $this->mDoubleUnderscores
['notoc'] ) && !$this->mForceTocPosition
) {
4354 $this->mShowToc
= false;
4356 if ( isset( $this->mDoubleUnderscores
['hiddencat'] )
4357 && $this->mTitle
->getNamespace() == NS_CATEGORY
4359 $this->addTrackingCategory( 'hidden-category-category' );
4361 # (bug 8068) Allow control over whether robots index a page.
4362 # @todo FIXME: Bug 14899: __INDEX__ always overrides __NOINDEX__ here! This
4363 # is not desirable, the last one on the page should win.
4364 if ( isset( $this->mDoubleUnderscores
['noindex'] ) && $this->mTitle
->canUseNoindex() ) {
4365 $this->mOutput
->setIndexPolicy( 'noindex' );
4366 $this->addTrackingCategory( 'noindex-category' );
4368 if ( isset( $this->mDoubleUnderscores
['index'] ) && $this->mTitle
->canUseNoindex() ) {
4369 $this->mOutput
->setIndexPolicy( 'index' );
4370 $this->addTrackingCategory( 'index-category' );
4373 # Cache all double underscores in the database
4374 foreach ( $this->mDoubleUnderscores
as $key => $val ) {
4375 $this->mOutput
->setProperty( $key, '' );
4382 * @see ParserOutput::addTrackingCategory()
4383 * @param string $msg Message key
4384 * @return bool Whether the addition was successful
4386 public function addTrackingCategory( $msg ) {
4387 return $this->mOutput
->addTrackingCategory( $msg, $this->mTitle
);
4391 * This function accomplishes several tasks:
4392 * 1) Auto-number headings if that option is enabled
4393 * 2) Add an [edit] link to sections for users who have enabled the option and can edit the page
4394 * 3) Add a Table of contents on the top for users who have enabled the option
4395 * 4) Auto-anchor headings
4397 * It loops through all headlines, collects the necessary data, then splits up the
4398 * string and re-inserts the newly formatted headlines.
4400 * @param string $text
4401 * @param string $origText Original, untouched wikitext
4402 * @param bool $isMain
4403 * @return mixed|string
4406 public function formatHeadings( $text, $origText, $isMain = true ) {
4407 global $wgMaxTocLevel, $wgExperimentalHtmlIds;
4409 # Inhibit editsection links if requested in the page
4410 if ( isset( $this->mDoubleUnderscores
['noeditsection'] ) ) {
4411 $maybeShowEditLink = $showEditLink = false;
4413 $maybeShowEditLink = true; /* Actual presence will depend on ParserOptions option */
4414 $showEditLink = $this->mOptions
->getEditSection();
4416 if ( $showEditLink ) {
4417 $this->mOutput
->setEditSectionTokens( true );
4420 # Get all headlines for numbering them and adding funky stuff like [edit]
4421 # links - this is for later, but we need the number of headlines right now
4423 $numMatches = preg_match_all(
4424 '/<H(?P<level>[1-6])(?P<attrib>.*?>)\s*(?P<header>[\s\S]*?)\s*<\/H[1-6] *>/i',
4429 # if there are fewer than 4 headlines in the article, do not show TOC
4430 # unless it's been explicitly enabled.
4431 $enoughToc = $this->mShowToc
&&
4432 ( ( $numMatches >= 4 ) ||
$this->mForceTocPosition
);
4434 # Allow user to stipulate that a page should have a "new section"
4435 # link added via __NEWSECTIONLINK__
4436 if ( isset( $this->mDoubleUnderscores
['newsectionlink'] ) ) {
4437 $this->mOutput
->setNewSection( true );
4440 # Allow user to remove the "new section"
4441 # link via __NONEWSECTIONLINK__
4442 if ( isset( $this->mDoubleUnderscores
['nonewsectionlink'] ) ) {
4443 $this->mOutput
->hideNewSection( true );
4446 # if the string __FORCETOC__ (not case-sensitive) occurs in the HTML,
4447 # override above conditions and always show TOC above first header
4448 if ( isset( $this->mDoubleUnderscores
['forcetoc'] ) ) {
4449 $this->mShowToc
= true;
4457 # Ugh .. the TOC should have neat indentation levels which can be
4458 # passed to the skin functions. These are determined here
4462 $sublevelCount = [];
4468 $markerRegex = self
::MARKER_PREFIX
. "-h-(\d+)-" . self
::MARKER_SUFFIX
;
4469 $baseTitleText = $this->mTitle
->getPrefixedDBkey();
4470 $oldType = $this->mOutputType
;
4471 $this->setOutputType( self
::OT_WIKI
);
4472 $frame = $this->getPreprocessor()->newFrame();
4473 $root = $this->preprocessToDom( $origText );
4474 $node = $root->getFirstChild();
4479 $headlines = $numMatches !== false ?
$matches[3] : [];
4481 foreach ( $headlines as $headline ) {
4482 $isTemplate = false;
4484 $sectionIndex = false;
4486 $markerMatches = [];
4487 if ( preg_match( "/^$markerRegex/", $headline, $markerMatches ) ) {
4488 $serial = $markerMatches[1];
4489 list( $titleText, $sectionIndex ) = $this->mHeadings
[$serial];
4490 $isTemplate = ( $titleText != $baseTitleText );
4491 $headline = preg_replace( "/^$markerRegex\\s*/", "", $headline );
4495 $prevlevel = $level;
4497 $level = $matches[1][$headlineCount];
4499 if ( $level > $prevlevel ) {
4500 # Increase TOC level
4502 $sublevelCount[$toclevel] = 0;
4503 if ( $toclevel < $wgMaxTocLevel ) {
4504 $prevtoclevel = $toclevel;
4505 $toc .= Linker
::tocIndent();
4508 } elseif ( $level < $prevlevel && $toclevel > 1 ) {
4509 # Decrease TOC level, find level to jump to
4511 for ( $i = $toclevel; $i > 0; $i-- ) {
4512 if ( $levelCount[$i] == $level ) {
4513 # Found last matching level
4516 } elseif ( $levelCount[$i] < $level ) {
4517 # Found first matching level below current level
4525 if ( $toclevel < $wgMaxTocLevel ) {
4526 if ( $prevtoclevel < $wgMaxTocLevel ) {
4527 # Unindent only if the previous toc level was shown :p
4528 $toc .= Linker
::tocUnindent( $prevtoclevel - $toclevel );
4529 $prevtoclevel = $toclevel;
4531 $toc .= Linker
::tocLineEnd();
4535 # No change in level, end TOC line
4536 if ( $toclevel < $wgMaxTocLevel ) {
4537 $toc .= Linker
::tocLineEnd();
4541 $levelCount[$toclevel] = $level;
4543 # count number of headlines for each level
4544 $sublevelCount[$toclevel]++
;
4546 for ( $i = 1; $i <= $toclevel; $i++
) {
4547 if ( !empty( $sublevelCount[$i] ) ) {
4551 $numbering .= $this->getTargetLanguage()->formatNum( $sublevelCount[$i] );
4556 # The safe header is a version of the header text safe to use for links
4558 # Remove link placeholders by the link text.
4559 # <!--LINK number-->
4561 # link text with suffix
4562 # Do this before unstrip since link text can contain strip markers
4563 $safeHeadline = $this->replaceLinkHoldersText( $headline );
4565 # Avoid insertion of weird stuff like <math> by expanding the relevant sections
4566 $safeHeadline = $this->mStripState
->unstripBoth( $safeHeadline );
4568 # Strip out HTML (first regex removes any tag not allowed)
4570 # * <sup> and <sub> (bug 8393)
4573 # * <bdi> (bug 72884)
4574 # * <span dir="rtl"> and <span dir="ltr"> (bug 35167)
4575 # We strip any parameter from accepted tags (second regex), except dir="rtl|ltr" from <span>,
4576 # to allow setting directionality in toc items.
4577 $tocline = preg_replace(
4579 '#<(?!/?(span|sup|sub|bdi|i|b)(?: [^>]*)?>).*?>#',
4580 '#<(/?(?:span(?: dir="(?:rtl|ltr)")?|sup|sub|bdi|i|b))(?: .*?)?>#'
4586 # Strip '<span></span>', which is the result from the above if
4587 # <span id="foo"></span> is used to produce an additional anchor
4589 $tocline = str_replace( '<span></span>', '', $tocline );
4591 $tocline = trim( $tocline );
4593 # For the anchor, strip out HTML-y stuff period
4594 $safeHeadline = preg_replace( '/<.*?>/', '', $safeHeadline );
4595 $safeHeadline = Sanitizer
::normalizeSectionNameWhitespace( $safeHeadline );
4597 # Save headline for section edit hint before it's escaped
4598 $headlineHint = $safeHeadline;
4600 if ( $wgExperimentalHtmlIds ) {
4601 # For reverse compatibility, provide an id that's
4602 # HTML4-compatible, like we used to.
4603 # It may be worth noting, academically, that it's possible for
4604 # the legacy anchor to conflict with a non-legacy headline
4605 # anchor on the page. In this case likely the "correct" thing
4606 # would be to either drop the legacy anchors or make sure
4607 # they're numbered first. However, this would require people
4608 # to type in section names like "abc_.D7.93.D7.90.D7.A4"
4609 # manually, so let's not bother worrying about it.
4610 $legacyHeadline = Sanitizer
::escapeId( $safeHeadline,
4611 [ 'noninitial', 'legacy' ] );
4612 $safeHeadline = Sanitizer
::escapeId( $safeHeadline );
4614 if ( $legacyHeadline == $safeHeadline ) {
4615 # No reason to have both (in fact, we can't)
4616 $legacyHeadline = false;
4619 $legacyHeadline = false;
4620 $safeHeadline = Sanitizer
::escapeId( $safeHeadline,
4624 # HTML names must be case-insensitively unique (bug 10721).
4625 # This does not apply to Unicode characters per
4626 # http://www.w3.org/TR/html5/infrastructure.html#case-sensitivity-and-string-comparison
4627 # @todo FIXME: We may be changing them depending on the current locale.
4628 $arrayKey = strtolower( $safeHeadline );
4629 if ( $legacyHeadline === false ) {
4630 $legacyArrayKey = false;
4632 $legacyArrayKey = strtolower( $legacyHeadline );
4635 # Create the anchor for linking from the TOC to the section
4636 $anchor = $safeHeadline;
4637 $legacyAnchor = $legacyHeadline;
4638 if ( isset( $refers[$arrayKey] ) ) {
4639 // @codingStandardsIgnoreStart
4640 for ( $i = 2; isset( $refers["${arrayKey}_$i"] ); ++
$i );
4641 // @codingStandardsIgnoreEnd
4643 $refers["${arrayKey}_$i"] = true;
4645 $refers[$arrayKey] = true;
4647 if ( $legacyHeadline !== false && isset( $refers[$legacyArrayKey] ) ) {
4648 // @codingStandardsIgnoreStart
4649 for ( $i = 2; isset( $refers["${legacyArrayKey}_$i"] ); ++
$i );
4650 // @codingStandardsIgnoreEnd
4651 $legacyAnchor .= "_$i";
4652 $refers["${legacyArrayKey}_$i"] = true;
4654 $refers[$legacyArrayKey] = true;
4657 # Don't number the heading if it is the only one (looks silly)
4658 if ( count( $matches[3] ) > 1 && $this->mOptions
->getNumberHeadings() ) {
4659 # the two are different if the line contains a link
4660 $headline = Html
::element(
4662 [ 'class' => 'mw-headline-number' ],
4664 ) . ' ' . $headline;
4667 if ( $enoughToc && ( !isset( $wgMaxTocLevel ) ||
$toclevel < $wgMaxTocLevel ) ) {
4668 $toc .= Linker
::tocLine( $anchor, $tocline,
4669 $numbering, $toclevel, ( $isTemplate ?
false : $sectionIndex ) );
4672 # Add the section to the section tree
4673 # Find the DOM node for this header
4674 $noOffset = ( $isTemplate ||
$sectionIndex === false );
4675 while ( $node && !$noOffset ) {
4676 if ( $node->getName() === 'h' ) {
4677 $bits = $node->splitHeading();
4678 if ( $bits['i'] == $sectionIndex ) {
4682 $byteOffset +
= mb_strlen( $this->mStripState
->unstripBoth(
4683 $frame->expand( $node, PPFrame
::RECOVER_ORIG
) ) );
4684 $node = $node->getNextSibling();
4687 'toclevel' => $toclevel,
4690 'number' => $numbering,
4691 'index' => ( $isTemplate ?
'T-' : '' ) . $sectionIndex,
4692 'fromtitle' => $titleText,
4693 'byteoffset' => ( $noOffset ?
null : $byteOffset ),
4694 'anchor' => $anchor,
4697 # give headline the correct <h#> tag
4698 if ( $maybeShowEditLink && $sectionIndex !== false ) {
4699 // Output edit section links as markers with styles that can be customized by skins
4700 if ( $isTemplate ) {
4701 # Put a T flag in the section identifier, to indicate to extractSections()
4702 # that sections inside <includeonly> should be counted.
4703 $editsectionPage = $titleText;
4704 $editsectionSection = "T-$sectionIndex";
4705 $editsectionContent = null;
4707 $editsectionPage = $this->mTitle
->getPrefixedText();
4708 $editsectionSection = $sectionIndex;
4709 $editsectionContent = $headlineHint;
4711 // We use a bit of pesudo-xml for editsection markers. The
4712 // language converter is run later on. Using a UNIQ style marker
4713 // leads to the converter screwing up the tokens when it
4714 // converts stuff. And trying to insert strip tags fails too. At
4715 // this point all real inputted tags have already been escaped,
4716 // so we don't have to worry about a user trying to input one of
4717 // these markers directly. We use a page and section attribute
4718 // to stop the language converter from converting these
4719 // important bits of data, but put the headline hint inside a
4720 // content block because the language converter is supposed to
4721 // be able to convert that piece of data.
4722 // Gets replaced with html in ParserOutput::getText
4723 $editlink = '<mw:editsection page="' . htmlspecialchars( $editsectionPage );
4724 $editlink .= '" section="' . htmlspecialchars( $editsectionSection ) . '"';
4725 if ( $editsectionContent !== null ) {
4726 $editlink .= '>' . $editsectionContent . '</mw:editsection>';
4733 $head[$headlineCount] = Linker
::makeHeadline( $level,
4734 $matches['attrib'][$headlineCount], $anchor, $headline,
4735 $editlink, $legacyAnchor );
4740 $this->setOutputType( $oldType );
4742 # Never ever show TOC if no headers
4743 if ( $numVisible < 1 ) {
4748 if ( $prevtoclevel > 0 && $prevtoclevel < $wgMaxTocLevel ) {
4749 $toc .= Linker
::tocUnindent( $prevtoclevel - 1 );
4751 $toc = Linker
::tocList( $toc, $this->mOptions
->getUserLangObj() );
4752 $this->mOutput
->setTOCHTML( $toc );
4753 $toc = self
::TOC_START
. $toc . self
::TOC_END
;
4754 $this->mOutput
->addModules( 'mediawiki.toc' );
4758 $this->mOutput
->setSections( $tocraw );
4761 # split up and insert constructed headlines
4762 $blocks = preg_split( '/<H[1-6].*?>[\s\S]*?<\/H[1-6]>/i', $text );
4765 // build an array of document sections
4767 foreach ( $blocks as $block ) {
4768 // $head is zero-based, sections aren't.
4769 if ( empty( $head[$i - 1] ) ) {
4770 $sections[$i] = $block;
4772 $sections[$i] = $head[$i - 1] . $block;
4776 * Send a hook, one per section.
4777 * The idea here is to be able to make section-level DIVs, but to do so in a
4778 * lower-impact, more correct way than r50769
4781 * $section : the section number
4782 * &$sectionContent : ref to the content of the section
4783 * $showEditLinks : boolean describing whether this section has an edit link
4785 Hooks
::run( 'ParserSectionCreate', [ $this, $i, &$sections[$i], $showEditLink ] );
4790 if ( $enoughToc && $isMain && !$this->mForceTocPosition
) {
4791 // append the TOC at the beginning
4792 // Top anchor now in skin
4793 $sections[0] = $sections[0] . $toc . "\n";
4796 $full .= implode( '', $sections );
4798 if ( $this->mForceTocPosition
) {
4799 return str_replace( '<!--MWTOC-->', $toc, $full );
4806 * Transform wiki markup when saving a page by doing "\r\n" -> "\n"
4807 * conversion, substituting signatures, {{subst:}} templates, etc.
4809 * @param string $text The text to transform
4810 * @param Title $title The Title object for the current article
4811 * @param User $user The User object describing the current user
4812 * @param ParserOptions $options Parsing options
4813 * @param bool $clearState Whether to clear the parser state first
4814 * @return string The altered wiki markup
4816 public function preSaveTransform( $text, Title
$title, User
$user,
4817 ParserOptions
$options, $clearState = true
4819 if ( $clearState ) {
4820 $magicScopeVariable = $this->lock();
4822 $this->startParse( $title, $options, self
::OT_WIKI
, $clearState );
4823 $this->setUser( $user );
4829 $text = str_replace( array_keys( $pairs ), array_values( $pairs ), $text );
4830 if ( $options->getPreSaveTransform() ) {
4831 $text = $this->pstPass2( $text, $user );
4833 $text = $this->mStripState
->unstripBoth( $text );
4835 $this->setUser( null ); # Reset
4841 * Pre-save transform helper function
4843 * @param string $text
4848 private function pstPass2( $text, $user ) {
4851 # Note: This is the timestamp saved as hardcoded wikitext to
4852 # the database, we use $wgContLang here in order to give
4853 # everyone the same signature and use the default one rather
4854 # than the one selected in each user's preferences.
4855 # (see also bug 12815)
4856 $ts = $this->mOptions
->getTimestamp();
4857 $timestamp = MWTimestamp
::getLocalInstance( $ts );
4858 $ts = $timestamp->format( 'YmdHis' );
4859 $tzMsg = $timestamp->getTimezoneMessage()->inContentLanguage()->text();
4861 $d = $wgContLang->timeanddate( $ts, false, false ) . " ($tzMsg)";
4863 # Variable replacement
4864 # Because mOutputType is OT_WIKI, this will only process {{subst:xxx}} type tags
4865 $text = $this->replaceVariables( $text );
4867 # This works almost by chance, as the replaceVariables are done before the getUserSig(),
4868 # which may corrupt this parser instance via its wfMessage()->text() call-
4871 $sigText = $this->getUserSig( $user );
4872 $text = strtr( $text, [
4874 '~~~~' => "$sigText $d",
4878 # Context links ("pipe tricks"): [[|name]] and [[name (context)|]]
4879 $tc = '[' . Title
::legalChars() . ']';
4880 $nc = '[ _0-9A-Za-z\x80-\xff-]'; # Namespaces can use non-ascii!
4882 // [[ns:page (context)|]]
4883 $p1 = "/\[\[(:?$nc+:|:|)($tc+?)( ?\\($tc+\\))\\|]]/";
4884 // [[ns:page(context)|]] (double-width brackets, added in r40257)
4885 $p4 = "/\[\[(:?$nc+:|:|)($tc+?)( ?($tc+))\\|]]/";
4886 // [[ns:page (context), context|]] (using either single or double-width comma)
4887 $p3 = "/\[\[(:?$nc+:|:|)($tc+?)( ?\\($tc+\\)|)((?:, |,)$tc+|)\\|]]/";
4888 // [[|page]] (reverse pipe trick: add context from page title)
4889 $p2 = "/\[\[\\|($tc+)]]/";
4891 # try $p1 first, to turn "[[A, B (C)|]]" into "[[A, B (C)|A, B]]"
4892 $text = preg_replace( $p1, '[[\\1\\2\\3|\\2]]', $text );
4893 $text = preg_replace( $p4, '[[\\1\\2\\3|\\2]]', $text );
4894 $text = preg_replace( $p3, '[[\\1\\2\\3\\4|\\2]]', $text );
4896 $t = $this->mTitle
->getText();
4898 if ( preg_match( "/^($nc+:|)$tc+?( \\($tc+\\))$/", $t, $m ) ) {
4899 $text = preg_replace( $p2, "[[$m[1]\\1$m[2]|\\1]]", $text );
4900 } elseif ( preg_match( "/^($nc+:|)$tc+?(, $tc+|)$/", $t, $m ) && "$m[1]$m[2]" != '' ) {
4901 $text = preg_replace( $p2, "[[$m[1]\\1$m[2]|\\1]]", $text );
4903 # if there's no context, don't bother duplicating the title
4904 $text = preg_replace( $p2, '[[\\1]]', $text );
4907 # Trim trailing whitespace
4908 $text = rtrim( $text );
4914 * Fetch the user's signature text, if any, and normalize to
4915 * validated, ready-to-insert wikitext.
4916 * If you have pre-fetched the nickname or the fancySig option, you can
4917 * specify them here to save a database query.
4918 * Do not reuse this parser instance after calling getUserSig(),
4919 * as it may have changed if it's the $wgParser.
4922 * @param string|bool $nickname Nickname to use or false to use user's default nickname
4923 * @param bool|null $fancySig whether the nicknname is the complete signature
4924 * or null to use default value
4927 public function getUserSig( &$user, $nickname = false, $fancySig = null ) {
4928 global $wgMaxSigChars;
4930 $username = $user->getName();
4932 # If not given, retrieve from the user object.
4933 if ( $nickname === false ) {
4934 $nickname = $user->getOption( 'nickname' );
4937 if ( is_null( $fancySig ) ) {
4938 $fancySig = $user->getBoolOption( 'fancysig' );
4941 $nickname = $nickname == null ?
$username : $nickname;
4943 if ( mb_strlen( $nickname ) > $wgMaxSigChars ) {
4944 $nickname = $username;
4945 wfDebug( __METHOD__
. ": $username has overlong signature.\n" );
4946 } elseif ( $fancySig !== false ) {
4947 # Sig. might contain markup; validate this
4948 if ( $this->validateSig( $nickname ) !== false ) {
4949 # Validated; clean up (if needed) and return it
4950 return $this->cleanSig( $nickname, true );
4952 # Failed to validate; fall back to the default
4953 $nickname = $username;
4954 wfDebug( __METHOD__
. ": $username has bad XML tags in signature.\n" );
4958 # Make sure nickname doesnt get a sig in a sig
4959 $nickname = self
::cleanSigInSig( $nickname );
4961 # If we're still here, make it a link to the user page
4962 $userText = wfEscapeWikiText( $username );
4963 $nickText = wfEscapeWikiText( $nickname );
4964 $msgName = $user->isAnon() ?
'signature-anon' : 'signature';
4966 return wfMessage( $msgName, $userText, $nickText )->inContentLanguage()
4967 ->title( $this->getTitle() )->text();
4971 * Check that the user's signature contains no bad XML
4973 * @param string $text
4974 * @return string|bool An expanded string, or false if invalid.
4976 public function validateSig( $text ) {
4977 return Xml
::isWellFormedXmlFragment( $text ) ?
$text : false;
4981 * Clean up signature text
4983 * 1) Strip 3, 4 or 5 tildes out of signatures @see cleanSigInSig
4984 * 2) Substitute all transclusions
4986 * @param string $text
4987 * @param bool $parsing Whether we're cleaning (preferences save) or parsing
4988 * @return string Signature text
4990 public function cleanSig( $text, $parsing = false ) {
4993 $magicScopeVariable = $this->lock();
4994 $this->startParse( $wgTitle, new ParserOptions
, self
::OT_PREPROCESS
, true );
4997 # Option to disable this feature
4998 if ( !$this->mOptions
->getCleanSignatures() ) {
5002 # @todo FIXME: Regex doesn't respect extension tags or nowiki
5003 # => Move this logic to braceSubstitution()
5004 $substWord = MagicWord
::get( 'subst' );
5005 $substRegex = '/\{\{(?!(?:' . $substWord->getBaseRegex() . '))/x' . $substWord->getRegexCase();
5006 $substText = '{{' . $substWord->getSynonym( 0 );
5008 $text = preg_replace( $substRegex, $substText, $text );
5009 $text = self
::cleanSigInSig( $text );
5010 $dom = $this->preprocessToDom( $text );
5011 $frame = $this->getPreprocessor()->newFrame();
5012 $text = $frame->expand( $dom );
5015 $text = $this->mStripState
->unstripBoth( $text );
5022 * Strip 3, 4 or 5 tildes out of signatures.
5024 * @param string $text
5025 * @return string Signature text with /~{3,5}/ removed
5027 public static function cleanSigInSig( $text ) {
5028 $text = preg_replace( '/~{3,5}/', '', $text );
5033 * Set up some variables which are usually set up in parse()
5034 * so that an external function can call some class members with confidence
5036 * @param Title|null $title
5037 * @param ParserOptions $options
5038 * @param int $outputType
5039 * @param bool $clearState
5041 public function startExternalParse( Title
$title = null, ParserOptions
$options,
5042 $outputType, $clearState = true
5044 $this->startParse( $title, $options, $outputType, $clearState );
5048 * @param Title|null $title
5049 * @param ParserOptions $options
5050 * @param int $outputType
5051 * @param bool $clearState
5053 private function startParse( Title
$title = null, ParserOptions
$options,
5054 $outputType, $clearState = true
5056 $this->setTitle( $title );
5057 $this->mOptions
= $options;
5058 $this->setOutputType( $outputType );
5059 if ( $clearState ) {
5060 $this->clearState();
5065 * Wrapper for preprocess()
5067 * @param string $text The text to preprocess
5068 * @param ParserOptions $options Options
5069 * @param Title|null $title Title object or null to use $wgTitle
5072 public function transformMsg( $text, $options, $title = null ) {
5073 static $executing = false;
5075 # Guard against infinite recursion
5086 $text = $this->preprocess( $text, $title, $options );
5093 * Create an HTML-style tag, e.g. "<yourtag>special text</yourtag>"
5094 * The callback should have the following form:
5095 * function myParserHook( $text, $params, $parser, $frame ) { ... }
5097 * Transform and return $text. Use $parser for any required context, e.g. use
5098 * $parser->getTitle() and $parser->getOptions() not $wgTitle or $wgOut->mParserOptions
5100 * Hooks may return extended information by returning an array, of which the
5101 * first numbered element (index 0) must be the return string, and all other
5102 * entries are extracted into local variables within an internal function
5103 * in the Parser class.
5105 * This interface (introduced r61913) appears to be undocumented, but
5106 * 'markerType' is used by some core tag hooks to override which strip
5107 * array their results are placed in. **Use great caution if attempting
5108 * this interface, as it is not documented and injudicious use could smash
5109 * private variables.**
5111 * @param string $tag The tag to use, e.g. 'hook' for "<hook>"
5112 * @param callable $callback The callback function (and object) to use for the tag
5113 * @throws MWException
5114 * @return callable|null The old value of the mTagHooks array associated with the hook
5116 public function setHook( $tag, $callback ) {
5117 $tag = strtolower( $tag );
5118 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
5119 throw new MWException( "Invalid character {$m[0]} in setHook('$tag', ...) call" );
5121 $oldVal = isset( $this->mTagHooks
[$tag] ) ?
$this->mTagHooks
[$tag] : null;
5122 $this->mTagHooks
[$tag] = $callback;
5123 if ( !in_array( $tag, $this->mStripList
) ) {
5124 $this->mStripList
[] = $tag;
5131 * As setHook(), but letting the contents be parsed.
5133 * Transparent tag hooks are like regular XML-style tag hooks, except they
5134 * operate late in the transformation sequence, on HTML instead of wikitext.
5136 * This is probably obsoleted by things dealing with parser frames?
5137 * The only extension currently using it is geoserver.
5140 * @todo better document or deprecate this
5142 * @param string $tag The tag to use, e.g. 'hook' for "<hook>"
5143 * @param callable $callback The callback function (and object) to use for the tag
5144 * @throws MWException
5145 * @return callable|null The old value of the mTagHooks array associated with the hook
5147 public function setTransparentTagHook( $tag, $callback ) {
5148 $tag = strtolower( $tag );
5149 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
5150 throw new MWException( "Invalid character {$m[0]} in setTransparentHook('$tag', ...) call" );
5152 $oldVal = isset( $this->mTransparentTagHooks
[$tag] ) ?
$this->mTransparentTagHooks
[$tag] : null;
5153 $this->mTransparentTagHooks
[$tag] = $callback;
5159 * Remove all tag hooks
5161 public function clearTagHooks() {
5162 $this->mTagHooks
= [];
5163 $this->mFunctionTagHooks
= [];
5164 $this->mStripList
= $this->mDefaultStripList
;
5168 * Create a function, e.g. {{sum:1|2|3}}
5169 * The callback function should have the form:
5170 * function myParserFunction( &$parser, $arg1, $arg2, $arg3 ) { ... }
5172 * Or with Parser::SFH_OBJECT_ARGS:
5173 * function myParserFunction( $parser, $frame, $args ) { ... }
5175 * The callback may either return the text result of the function, or an array with the text
5176 * in element 0, and a number of flags in the other elements. The names of the flags are
5177 * specified in the keys. Valid flags are:
5178 * found The text returned is valid, stop processing the template. This
5180 * nowiki Wiki markup in the return value should be escaped
5181 * isHTML The returned text is HTML, armour it against wikitext transformation
5183 * @param string $id The magic word ID
5184 * @param callable $callback The callback function (and object) to use
5185 * @param int $flags A combination of the following flags:
5186 * Parser::SFH_NO_HASH No leading hash, i.e. {{plural:...}} instead of {{#if:...}}
5188 * Parser::SFH_OBJECT_ARGS Pass the template arguments as PPNode objects instead of text.
5189 * This allows for conditional expansion of the parse tree, allowing you to eliminate dead
5190 * branches and thus speed up parsing. It is also possible to analyse the parse tree of
5191 * the arguments, and to control the way they are expanded.
5193 * The $frame parameter is a PPFrame. This can be used to produce expanded text from the
5194 * arguments, for instance:
5195 * $text = isset( $args[0] ) ? $frame->expand( $args[0] ) : '';
5197 * For technical reasons, $args[0] is pre-expanded and will be a string. This may change in
5198 * future versions. Please call $frame->expand() on it anyway so that your code keeps
5199 * working if/when this is changed.
5201 * If you want whitespace to be trimmed from $args, you need to do it yourself, post-
5204 * Please read the documentation in includes/parser/Preprocessor.php for more information
5205 * about the methods available in PPFrame and PPNode.
5207 * @throws MWException
5208 * @return string|callable The old callback function for this name, if any
5210 public function setFunctionHook( $id, $callback, $flags = 0 ) {
5213 $oldVal = isset( $this->mFunctionHooks
[$id] ) ?
$this->mFunctionHooks
[$id][0] : null;
5214 $this->mFunctionHooks
[$id] = [ $callback, $flags ];
5216 # Add to function cache
5217 $mw = MagicWord
::get( $id );
5219 throw new MWException( __METHOD__
. '() expecting a magic word identifier.' );
5222 $synonyms = $mw->getSynonyms();
5223 $sensitive = intval( $mw->isCaseSensitive() );
5225 foreach ( $synonyms as $syn ) {
5227 if ( !$sensitive ) {
5228 $syn = $wgContLang->lc( $syn );
5231 if ( !( $flags & self
::SFH_NO_HASH
) ) {
5234 # Remove trailing colon
5235 if ( substr( $syn, -1, 1 ) === ':' ) {
5236 $syn = substr( $syn, 0, -1 );
5238 $this->mFunctionSynonyms
[$sensitive][$syn] = $id;
5244 * Get all registered function hook identifiers
5248 public function getFunctionHooks() {
5249 return array_keys( $this->mFunctionHooks
);
5253 * Create a tag function, e.g. "<test>some stuff</test>".
5254 * Unlike tag hooks, tag functions are parsed at preprocessor level.
5255 * Unlike parser functions, their content is not preprocessed.
5256 * @param string $tag
5257 * @param callable $callback
5259 * @throws MWException
5262 public function setFunctionTagHook( $tag, $callback, $flags ) {
5263 $tag = strtolower( $tag );
5264 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
5265 throw new MWException( "Invalid character {$m[0]} in setFunctionTagHook('$tag', ...) call" );
5267 $old = isset( $this->mFunctionTagHooks
[$tag] ) ?
5268 $this->mFunctionTagHooks
[$tag] : null;
5269 $this->mFunctionTagHooks
[$tag] = [ $callback, $flags ];
5271 if ( !in_array( $tag, $this->mStripList
) ) {
5272 $this->mStripList
[] = $tag;
5279 * Replace "<!--LINK-->" link placeholders with actual links, in the buffer
5280 * Placeholders created in Linker::link()
5282 * @param string $text
5283 * @param int $options
5285 public function replaceLinkHolders( &$text, $options = 0 ) {
5286 $this->mLinkHolders
->replace( $text );
5290 * Replace "<!--LINK-->" link placeholders with plain text of links
5291 * (not HTML-formatted).
5293 * @param string $text
5296 public function replaceLinkHoldersText( $text ) {
5297 return $this->mLinkHolders
->replaceText( $text );
5301 * Renders an image gallery from a text with one line per image.
5302 * text labels may be given by using |-style alternative text. E.g.
5303 * Image:one.jpg|The number "1"
5304 * Image:tree.jpg|A tree
5305 * given as text will return the HTML of a gallery with two images,
5306 * labeled 'The number "1"' and
5309 * @param string $text
5310 * @param array $params
5311 * @return string HTML
5313 public function renderImageGallery( $text, $params ) {
5316 if ( isset( $params['mode'] ) ) {
5317 $mode = $params['mode'];
5321 $ig = ImageGalleryBase
::factory( $mode );
5322 } catch ( Exception
$e ) {
5323 // If invalid type set, fallback to default.
5324 $ig = ImageGalleryBase
::factory( false );
5327 $ig->setContextTitle( $this->mTitle
);
5328 $ig->setShowBytes( false );
5329 $ig->setShowFilename( false );
5330 $ig->setParser( $this );
5331 $ig->setHideBadImages();
5332 $ig->setAttributes( Sanitizer
::validateTagAttributes( $params, 'table' ) );
5334 if ( isset( $params['showfilename'] ) ) {
5335 $ig->setShowFilename( true );
5337 $ig->setShowFilename( false );
5339 if ( isset( $params['caption'] ) ) {
5340 $caption = $params['caption'];
5341 $caption = htmlspecialchars( $caption );
5342 $caption = $this->replaceInternalLinks( $caption );
5343 $ig->setCaptionHtml( $caption );
5345 if ( isset( $params['perrow'] ) ) {
5346 $ig->setPerRow( $params['perrow'] );
5348 if ( isset( $params['widths'] ) ) {
5349 $ig->setWidths( $params['widths'] );
5351 if ( isset( $params['heights'] ) ) {
5352 $ig->setHeights( $params['heights'] );
5354 $ig->setAdditionalOptions( $params );
5356 Hooks
::run( 'BeforeParserrenderImageGallery', [ &$this, &$ig ] );
5358 $lines = StringUtils
::explode( "\n", $text );
5359 foreach ( $lines as $line ) {
5360 # match lines like these:
5361 # Image:someimage.jpg|This is some image
5363 preg_match( "/^([^|]+)(\\|(.*))?$/", $line, $matches );
5365 if ( count( $matches ) == 0 ) {
5369 if ( strpos( $matches[0], '%' ) !== false ) {
5370 $matches[1] = rawurldecode( $matches[1] );
5372 $title = Title
::newFromText( $matches[1], NS_FILE
);
5373 if ( is_null( $title ) ) {
5374 # Bogus title. Ignore these so we don't bomb out later.
5378 # We need to get what handler the file uses, to figure out parameters.
5379 # Note, a hook can overide the file name, and chose an entirely different
5380 # file (which potentially could be of a different type and have different handler).
5383 Hooks
::run( 'BeforeParserFetchFileAndTitle',
5384 [ $this, $title, &$options, &$descQuery ] );
5385 # Don't register it now, as ImageGallery does that later.
5386 $file = $this->fetchFileNoRegister( $title, $options );
5387 $handler = $file ?
$file->getHandler() : false;
5390 'img_alt' => 'gallery-internal-alt',
5391 'img_link' => 'gallery-internal-link',
5394 $paramMap = $paramMap +
$handler->getParamMap();
5395 // We don't want people to specify per-image widths.
5396 // Additionally the width parameter would need special casing anyhow.
5397 unset( $paramMap['img_width'] );
5400 $mwArray = new MagicWordArray( array_keys( $paramMap ) );
5405 $handlerOptions = [];
5406 if ( isset( $matches[3] ) ) {
5407 // look for an |alt= definition while trying not to break existing
5408 // captions with multiple pipes (|) in it, until a more sensible grammar
5409 // is defined for images in galleries
5411 // FIXME: Doing recursiveTagParse at this stage, and the trim before
5412 // splitting on '|' is a bit odd, and different from makeImage.
5413 $matches[3] = $this->recursiveTagParse( trim( $matches[3] ) );
5414 $parameterMatches = StringUtils
::explode( '|', $matches[3] );
5416 foreach ( $parameterMatches as $parameterMatch ) {
5417 list( $magicName, $match ) = $mwArray->matchVariableStartToEnd( $parameterMatch );
5419 $paramName = $paramMap[$magicName];
5421 switch ( $paramName ) {
5422 case 'gallery-internal-alt':
5423 $alt = $this->stripAltText( $match, false );
5425 case 'gallery-internal-link':
5426 $linkValue = strip_tags( $this->replaceLinkHoldersText( $match ) );
5427 $chars = self
::EXT_LINK_URL_CLASS
;
5428 $addr = self
::EXT_LINK_ADDR
;
5429 $prots = $this->mUrlProtocols
;
5430 // check to see if link matches an absolute url, if not then it must be a wiki link.
5431 if ( preg_match( "/^($prots)$addr$chars*$/u", $linkValue ) ) {
5434 $localLinkTitle = Title
::newFromText( $linkValue );
5435 if ( $localLinkTitle !== null ) {
5436 $link = $localLinkTitle->getLinkURL();
5441 // Must be a handler specific parameter.
5442 if ( $handler->validateParam( $paramName, $match ) ) {
5443 $handlerOptions[$paramName] = $match;
5445 // Guess not, consider it as caption.
5446 wfDebug( "$parameterMatch failed parameter validation\n" );
5447 $label = '|' . $parameterMatch;
5453 $label = '|' . $parameterMatch;
5457 $label = substr( $label, 1 );
5460 $ig->add( $title, $label, $alt, $link, $handlerOptions );
5462 $html = $ig->toHTML();
5463 Hooks
::run( 'AfterParserFetchFileAndTitle', [ $this, $ig, &$html ] );
5468 * @param MediaHandler $handler
5471 public function getImageParams( $handler ) {
5473 $handlerClass = get_class( $handler );
5477 if ( !isset( $this->mImageParams
[$handlerClass] ) ) {
5478 # Initialise static lists
5479 static $internalParamNames = [
5480 'horizAlign' => [ 'left', 'right', 'center', 'none' ],
5481 'vertAlign' => [ 'baseline', 'sub', 'super', 'top', 'text-top', 'middle',
5482 'bottom', 'text-bottom' ],
5483 'frame' => [ 'thumbnail', 'manualthumb', 'framed', 'frameless',
5484 'upright', 'border', 'link', 'alt', 'class' ],
5486 static $internalParamMap;
5487 if ( !$internalParamMap ) {
5488 $internalParamMap = [];
5489 foreach ( $internalParamNames as $type => $names ) {
5490 foreach ( $names as $name ) {
5491 $magicName = str_replace( '-', '_', "img_$name" );
5492 $internalParamMap[$magicName] = [ $type, $name ];
5497 # Add handler params
5498 $paramMap = $internalParamMap;
5500 $handlerParamMap = $handler->getParamMap();
5501 foreach ( $handlerParamMap as $magic => $paramName ) {
5502 $paramMap[$magic] = [ 'handler', $paramName ];
5505 $this->mImageParams
[$handlerClass] = $paramMap;
5506 $this->mImageParamsMagicArray
[$handlerClass] = new MagicWordArray( array_keys( $paramMap ) );
5508 return [ $this->mImageParams
[$handlerClass], $this->mImageParamsMagicArray
[$handlerClass] ];
5512 * Parse image options text and use it to make an image
5514 * @param Title $title
5515 * @param string $options
5516 * @param LinkHolderArray|bool $holders
5517 * @return string HTML
5519 public function makeImage( $title, $options, $holders = false ) {
5520 # Check if the options text is of the form "options|alt text"
5522 # * thumbnail make a thumbnail with enlarge-icon and caption, alignment depends on lang
5523 # * left no resizing, just left align. label is used for alt= only
5524 # * right same, but right aligned
5525 # * none same, but not aligned
5526 # * ___px scale to ___ pixels width, no aligning. e.g. use in taxobox
5527 # * center center the image
5528 # * frame Keep original image size, no magnify-button.
5529 # * framed Same as "frame"
5530 # * frameless like 'thumb' but without a frame. Keeps user preferences for width
5531 # * upright reduce width for upright images, rounded to full __0 px
5532 # * border draw a 1px border around the image
5533 # * alt Text for HTML alt attribute (defaults to empty)
5534 # * class Set a class for img node
5535 # * link Set the target of the image link. Can be external, interwiki, or local
5536 # vertical-align values (no % or length right now):
5546 $parts = StringUtils
::explode( "|", $options );
5548 # Give extensions a chance to select the file revision for us
5551 Hooks
::run( 'BeforeParserFetchFileAndTitle',
5552 [ $this, $title, &$options, &$descQuery ] );
5553 # Fetch and register the file (file title may be different via hooks)
5554 list( $file, $title ) = $this->fetchFileAndTitle( $title, $options );
5557 $handler = $file ?
$file->getHandler() : false;
5559 list( $paramMap, $mwArray ) = $this->getImageParams( $handler );
5562 $this->addTrackingCategory( 'broken-file-category' );
5565 # Process the input parameters
5567 $params = [ 'frame' => [], 'handler' => [],
5568 'horizAlign' => [], 'vertAlign' => [] ];
5569 $seenformat = false;
5570 foreach ( $parts as $part ) {
5571 $part = trim( $part );
5572 list( $magicName, $value ) = $mwArray->matchVariableStartToEnd( $part );
5574 if ( isset( $paramMap[$magicName] ) ) {
5575 list( $type, $paramName ) = $paramMap[$magicName];
5577 # Special case; width and height come in one variable together
5578 if ( $type === 'handler' && $paramName === 'width' ) {
5579 $parsedWidthParam = $this->parseWidthParam( $value );
5580 if ( isset( $parsedWidthParam['width'] ) ) {
5581 $width = $parsedWidthParam['width'];
5582 if ( $handler->validateParam( 'width', $width ) ) {
5583 $params[$type]['width'] = $width;
5587 if ( isset( $parsedWidthParam['height'] ) ) {
5588 $height = $parsedWidthParam['height'];
5589 if ( $handler->validateParam( 'height', $height ) ) {
5590 $params[$type]['height'] = $height;
5594 # else no validation -- bug 13436
5596 if ( $type === 'handler' ) {
5597 # Validate handler parameter
5598 $validated = $handler->validateParam( $paramName, $value );
5600 # Validate internal parameters
5601 switch ( $paramName ) {
5605 # @todo FIXME: Possibly check validity here for
5606 # manualthumb? downstream behavior seems odd with
5607 # missing manual thumbs.
5609 $value = $this->stripAltText( $value, $holders );
5612 $chars = self
::EXT_LINK_URL_CLASS
;
5613 $addr = self
::EXT_LINK_ADDR
;
5614 $prots = $this->mUrlProtocols
;
5615 if ( $value === '' ) {
5616 $paramName = 'no-link';
5619 } elseif ( preg_match( "/^((?i)$prots)/", $value ) ) {
5620 if ( preg_match( "/^((?i)$prots)$addr$chars*$/u", $value, $m ) ) {
5621 $paramName = 'link-url';
5622 $this->mOutput
->addExternalLink( $value );
5623 if ( $this->mOptions
->getExternalLinkTarget() ) {
5624 $params[$type]['link-target'] = $this->mOptions
->getExternalLinkTarget();
5629 $linkTitle = Title
::newFromText( $value );
5631 $paramName = 'link-title';
5632 $value = $linkTitle;
5633 $this->mOutput
->addLink( $linkTitle );
5641 // use first appearing option, discard others.
5642 $validated = ! $seenformat;
5646 # Most other things appear to be empty or numeric...
5647 $validated = ( $value === false ||
is_numeric( trim( $value ) ) );
5652 $params[$type][$paramName] = $value;
5656 if ( !$validated ) {
5661 # Process alignment parameters
5662 if ( $params['horizAlign'] ) {
5663 $params['frame']['align'] = key( $params['horizAlign'] );
5665 if ( $params['vertAlign'] ) {
5666 $params['frame']['valign'] = key( $params['vertAlign'] );
5669 $params['frame']['caption'] = $caption;
5671 # Will the image be presented in a frame, with the caption below?
5672 $imageIsFramed = isset( $params['frame']['frame'] )
5673 ||
isset( $params['frame']['framed'] )
5674 ||
isset( $params['frame']['thumbnail'] )
5675 ||
isset( $params['frame']['manualthumb'] );
5677 # In the old days, [[Image:Foo|text...]] would set alt text. Later it
5678 # came to also set the caption, ordinary text after the image -- which
5679 # makes no sense, because that just repeats the text multiple times in
5680 # screen readers. It *also* came to set the title attribute.
5681 # Now that we have an alt attribute, we should not set the alt text to
5682 # equal the caption: that's worse than useless, it just repeats the
5683 # text. This is the framed/thumbnail case. If there's no caption, we
5684 # use the unnamed parameter for alt text as well, just for the time be-
5685 # ing, if the unnamed param is set and the alt param is not.
5686 # For the future, we need to figure out if we want to tweak this more,
5687 # e.g., introducing a title= parameter for the title; ignoring the un-
5688 # named parameter entirely for images without a caption; adding an ex-
5689 # plicit caption= parameter and preserving the old magic unnamed para-
5691 if ( $imageIsFramed ) { # Framed image
5692 if ( $caption === '' && !isset( $params['frame']['alt'] ) ) {
5693 # No caption or alt text, add the filename as the alt text so
5694 # that screen readers at least get some description of the image
5695 $params['frame']['alt'] = $title->getText();
5697 # Do not set $params['frame']['title'] because tooltips don't make sense
5699 } else { # Inline image
5700 if ( !isset( $params['frame']['alt'] ) ) {
5701 # No alt text, use the "caption" for the alt text
5702 if ( $caption !== '' ) {
5703 $params['frame']['alt'] = $this->stripAltText( $caption, $holders );
5705 # No caption, fall back to using the filename for the
5707 $params['frame']['alt'] = $title->getText();
5710 # Use the "caption" for the tooltip text
5711 $params['frame']['title'] = $this->stripAltText( $caption, $holders );
5714 Hooks
::run( 'ParserMakeImageParams', [ $title, $file, &$params, $this ] );
5716 # Linker does the rest
5717 $time = isset( $options['time'] ) ?
$options['time'] : false;
5718 $ret = Linker
::makeImageLink( $this, $title, $file, $params['frame'], $params['handler'],
5719 $time, $descQuery, $this->mOptions
->getThumbSize() );
5721 # Give the handler a chance to modify the parser object
5723 $handler->parserTransformHook( $this, $file );
5730 * @param string $caption
5731 * @param LinkHolderArray|bool $holders
5732 * @return mixed|string
5734 protected function stripAltText( $caption, $holders ) {
5735 # Strip bad stuff out of the title (tooltip). We can't just use
5736 # replaceLinkHoldersText() here, because if this function is called
5737 # from replaceInternalLinks2(), mLinkHolders won't be up-to-date.
5739 $tooltip = $holders->replaceText( $caption );
5741 $tooltip = $this->replaceLinkHoldersText( $caption );
5744 # make sure there are no placeholders in thumbnail attributes
5745 # that are later expanded to html- so expand them now and
5747 $tooltip = $this->mStripState
->unstripBoth( $tooltip );
5748 $tooltip = Sanitizer
::stripAllTags( $tooltip );
5754 * Set a flag in the output object indicating that the content is dynamic and
5755 * shouldn't be cached.
5757 public function disableCache() {
5758 wfDebug( "Parser output marked as uncacheable.\n" );
5759 if ( !$this->mOutput
) {
5760 throw new MWException( __METHOD__
.
5761 " can only be called when actually parsing something" );
5763 $this->mOutput
->updateCacheExpiry( 0 ); // new style, for consistency
5767 * Callback from the Sanitizer for expanding items found in HTML attribute
5768 * values, so they can be safely tested and escaped.
5770 * @param string $text
5771 * @param bool|PPFrame $frame
5774 public function attributeStripCallback( &$text, $frame = false ) {
5775 $text = $this->replaceVariables( $text, $frame );
5776 $text = $this->mStripState
->unstripBoth( $text );
5785 public function getTags() {
5787 array_keys( $this->mTransparentTagHooks
),
5788 array_keys( $this->mTagHooks
),
5789 array_keys( $this->mFunctionTagHooks
)
5794 * Replace transparent tags in $text with the values given by the callbacks.
5796 * Transparent tag hooks are like regular XML-style tag hooks, except they
5797 * operate late in the transformation sequence, on HTML instead of wikitext.
5799 * @param string $text
5803 public function replaceTransparentTags( $text ) {
5805 $elements = array_keys( $this->mTransparentTagHooks
);
5806 $text = self
::extractTagsAndParams( $elements, $text, $matches );
5809 foreach ( $matches as $marker => $data ) {
5810 list( $element, $content, $params, $tag ) = $data;
5811 $tagName = strtolower( $element );
5812 if ( isset( $this->mTransparentTagHooks
[$tagName] ) ) {
5813 $output = call_user_func_array(
5814 $this->mTransparentTagHooks
[$tagName],
5815 [ $content, $params, $this ]
5820 $replacements[$marker] = $output;
5822 return strtr( $text, $replacements );
5826 * Break wikitext input into sections, and either pull or replace
5827 * some particular section's text.
5829 * External callers should use the getSection and replaceSection methods.
5831 * @param string $text Page wikitext
5832 * @param string|number $sectionId A section identifier string of the form:
5833 * "<flag1> - <flag2> - ... - <section number>"
5835 * Currently the only recognised flag is "T", which means the target section number
5836 * was derived during a template inclusion parse, in other words this is a template
5837 * section edit link. If no flags are given, it was an ordinary section edit link.
5838 * This flag is required to avoid a section numbering mismatch when a section is
5839 * enclosed by "<includeonly>" (bug 6563).
5841 * The section number 0 pulls the text before the first heading; other numbers will
5842 * pull the given section along with its lower-level subsections. If the section is
5843 * not found, $mode=get will return $newtext, and $mode=replace will return $text.
5845 * Section 0 is always considered to exist, even if it only contains the empty
5846 * string. If $text is the empty string and section 0 is replaced, $newText is
5849 * @param string $mode One of "get" or "replace"
5850 * @param string $newText Replacement text for section data.
5851 * @return string For "get", the extracted section text.
5852 * for "replace", the whole page with the section replaced.
5854 private function extractSections( $text, $sectionId, $mode, $newText = '' ) {
5855 global $wgTitle; # not generally used but removes an ugly failure mode
5857 $magicScopeVariable = $this->lock();
5858 $this->startParse( $wgTitle, new ParserOptions
, self
::OT_PLAIN
, true );
5860 $frame = $this->getPreprocessor()->newFrame();
5862 # Process section extraction flags
5864 $sectionParts = explode( '-', $sectionId );
5865 $sectionIndex = array_pop( $sectionParts );
5866 foreach ( $sectionParts as $part ) {
5867 if ( $part === 'T' ) {
5868 $flags |
= self
::PTD_FOR_INCLUSION
;
5872 # Check for empty input
5873 if ( strval( $text ) === '' ) {
5874 # Only sections 0 and T-0 exist in an empty document
5875 if ( $sectionIndex == 0 ) {
5876 if ( $mode === 'get' ) {
5882 if ( $mode === 'get' ) {
5890 # Preprocess the text
5891 $root = $this->preprocessToDom( $text, $flags );
5893 # <h> nodes indicate section breaks
5894 # They can only occur at the top level, so we can find them by iterating the root's children
5895 $node = $root->getFirstChild();
5897 # Find the target section
5898 if ( $sectionIndex == 0 ) {
5899 # Section zero doesn't nest, level=big
5900 $targetLevel = 1000;
5903 if ( $node->getName() === 'h' ) {
5904 $bits = $node->splitHeading();
5905 if ( $bits['i'] == $sectionIndex ) {
5906 $targetLevel = $bits['level'];
5910 if ( $mode === 'replace' ) {
5911 $outText .= $frame->expand( $node, PPFrame
::RECOVER_ORIG
);
5913 $node = $node->getNextSibling();
5919 if ( $mode === 'get' ) {
5926 # Find the end of the section, including nested sections
5928 if ( $node->getName() === 'h' ) {
5929 $bits = $node->splitHeading();
5930 $curLevel = $bits['level'];
5931 if ( $bits['i'] != $sectionIndex && $curLevel <= $targetLevel ) {
5935 if ( $mode === 'get' ) {
5936 $outText .= $frame->expand( $node, PPFrame
::RECOVER_ORIG
);
5938 $node = $node->getNextSibling();
5941 # Write out the remainder (in replace mode only)
5942 if ( $mode === 'replace' ) {
5943 # Output the replacement text
5944 # Add two newlines on -- trailing whitespace in $newText is conventionally
5945 # stripped by the editor, so we need both newlines to restore the paragraph gap
5946 # Only add trailing whitespace if there is newText
5947 if ( $newText != "" ) {
5948 $outText .= $newText . "\n\n";
5952 $outText .= $frame->expand( $node, PPFrame
::RECOVER_ORIG
);
5953 $node = $node->getNextSibling();
5957 if ( is_string( $outText ) ) {
5958 # Re-insert stripped tags
5959 $outText = rtrim( $this->mStripState
->unstripBoth( $outText ) );
5966 * This function returns the text of a section, specified by a number ($section).
5967 * A section is text under a heading like == Heading == or \<h1\>Heading\</h1\>, or
5968 * the first section before any such heading (section 0).
5970 * If a section contains subsections, these are also returned.
5972 * @param string $text Text to look in
5973 * @param string|number $sectionId Section identifier as a number or string
5974 * (e.g. 0, 1 or 'T-1').
5975 * @param string $defaultText Default to return if section is not found
5977 * @return string Text of the requested section
5979 public function getSection( $text, $sectionId, $defaultText = '' ) {
5980 return $this->extractSections( $text, $sectionId, 'get', $defaultText );
5984 * This function returns $oldtext after the content of the section
5985 * specified by $section has been replaced with $text. If the target
5986 * section does not exist, $oldtext is returned unchanged.
5988 * @param string $oldText Former text of the article
5989 * @param string|number $sectionId Section identifier as a number or string
5990 * (e.g. 0, 1 or 'T-1').
5991 * @param string $newText Replacing text
5993 * @return string Modified text
5995 public function replaceSection( $oldText, $sectionId, $newText ) {
5996 return $this->extractSections( $oldText, $sectionId, 'replace', $newText );
6000 * Get the ID of the revision we are parsing
6004 public function getRevisionId() {
6005 return $this->mRevisionId
;
6009 * Get the revision object for $this->mRevisionId
6011 * @return Revision|null Either a Revision object or null
6012 * @since 1.23 (public since 1.23)
6014 public function getRevisionObject() {
6015 if ( !is_null( $this->mRevisionObject
) ) {
6016 return $this->mRevisionObject
;
6018 if ( is_null( $this->mRevisionId
) ) {
6022 $rev = call_user_func(
6023 $this->mOptions
->getCurrentRevisionCallback(), $this->getTitle(), $this
6026 # If the parse is for a new revision, then the callback should have
6027 # already been set to force the object and should match mRevisionId.
6028 # If not, try to fetch by mRevisionId for sanity.
6029 if ( $rev && $rev->getId() != $this->mRevisionId
) {
6030 $rev = Revision
::newFromId( $this->mRevisionId
);
6033 $this->mRevisionObject
= $rev;
6035 return $this->mRevisionObject
;
6039 * Get the timestamp associated with the current revision, adjusted for
6040 * the default server-local timestamp
6043 public function getRevisionTimestamp() {
6044 if ( is_null( $this->mRevisionTimestamp
) ) {
6047 $revObject = $this->getRevisionObject();
6048 $timestamp = $revObject ?
$revObject->getTimestamp() : wfTimestampNow();
6050 # The cryptic '' timezone parameter tells to use the site-default
6051 # timezone offset instead of the user settings.
6052 # Since this value will be saved into the parser cache, served
6053 # to other users, and potentially even used inside links and such,
6054 # it needs to be consistent for all visitors.
6055 $this->mRevisionTimestamp
= $wgContLang->userAdjust( $timestamp, '' );
6058 return $this->mRevisionTimestamp
;
6062 * Get the name of the user that edited the last revision
6064 * @return string User name
6066 public function getRevisionUser() {
6067 if ( is_null( $this->mRevisionUser
) ) {
6068 $revObject = $this->getRevisionObject();
6070 # if this template is subst: the revision id will be blank,
6071 # so just use the current user's name
6073 $this->mRevisionUser
= $revObject->getUserText();
6074 } elseif ( $this->ot
['wiki'] ||
$this->mOptions
->getIsPreview() ) {
6075 $this->mRevisionUser
= $this->getUser()->getName();
6078 return $this->mRevisionUser
;
6082 * Get the size of the revision
6084 * @return int|null Revision size
6086 public function getRevisionSize() {
6087 if ( is_null( $this->mRevisionSize
) ) {
6088 $revObject = $this->getRevisionObject();
6090 # if this variable is subst: the revision id will be blank,
6091 # so just use the parser input size, because the own substituation
6092 # will change the size.
6094 $this->mRevisionSize
= $revObject->getSize();
6095 } elseif ( $this->ot
['wiki'] ||
$this->mOptions
->getIsPreview() ) {
6096 $this->mRevisionSize
= $this->mInputSize
;
6099 return $this->mRevisionSize
;
6103 * Mutator for $mDefaultSort
6105 * @param string $sort New value
6107 public function setDefaultSort( $sort ) {
6108 $this->mDefaultSort
= $sort;
6109 $this->mOutput
->setProperty( 'defaultsort', $sort );
6113 * Accessor for $mDefaultSort
6114 * Will use the empty string if none is set.
6116 * This value is treated as a prefix, so the
6117 * empty string is equivalent to sorting by
6122 public function getDefaultSort() {
6123 if ( $this->mDefaultSort
!== false ) {
6124 return $this->mDefaultSort
;
6131 * Accessor for $mDefaultSort
6132 * Unlike getDefaultSort(), will return false if none is set
6134 * @return string|bool
6136 public function getCustomDefaultSort() {
6137 return $this->mDefaultSort
;
6141 * Try to guess the section anchor name based on a wikitext fragment
6142 * presumably extracted from a heading, for example "Header" from
6145 * @param string $text
6149 public function guessSectionNameFromWikiText( $text ) {
6150 # Strip out wikitext links(they break the anchor)
6151 $text = $this->stripSectionName( $text );
6152 $text = Sanitizer
::normalizeSectionNameWhitespace( $text );
6153 return '#' . Sanitizer
::escapeId( $text, 'noninitial' );
6157 * Same as guessSectionNameFromWikiText(), but produces legacy anchors
6158 * instead. For use in redirects, since IE6 interprets Redirect: headers
6159 * as something other than UTF-8 (apparently?), resulting in breakage.
6161 * @param string $text The section name
6162 * @return string An anchor
6164 public function guessLegacySectionNameFromWikiText( $text ) {
6165 # Strip out wikitext links(they break the anchor)
6166 $text = $this->stripSectionName( $text );
6167 $text = Sanitizer
::normalizeSectionNameWhitespace( $text );
6168 return '#' . Sanitizer
::escapeId( $text, [ 'noninitial', 'legacy' ] );
6172 * Strips a text string of wikitext for use in a section anchor
6174 * Accepts a text string and then removes all wikitext from the
6175 * string and leaves only the resultant text (i.e. the result of
6176 * [[User:WikiSysop|Sysop]] would be "Sysop" and the result of
6177 * [[User:WikiSysop]] would be "User:WikiSysop") - this is intended
6178 * to create valid section anchors by mimicing the output of the
6179 * parser when headings are parsed.
6181 * @param string $text Text string to be stripped of wikitext
6182 * for use in a Section anchor
6183 * @return string Filtered text string
6185 public function stripSectionName( $text ) {
6186 # Strip internal link markup
6187 $text = preg_replace( '/\[\[:?([^[|]+)\|([^[]+)\]\]/', '$2', $text );
6188 $text = preg_replace( '/\[\[:?([^[]+)\|?\]\]/', '$1', $text );
6190 # Strip external link markup
6191 # @todo FIXME: Not tolerant to blank link text
6192 # I.E. [https://www.mediawiki.org] will render as [1] or something depending
6193 # on how many empty links there are on the page - need to figure that out.
6194 $text = preg_replace( '/\[(?i:' . $this->mUrlProtocols
. ')([^ ]+?) ([^[]+)\]/', '$2', $text );
6196 # Parse wikitext quotes (italics & bold)
6197 $text = $this->doQuotes( $text );
6200 $text = StringUtils
::delimiterReplace( '<', '>', '', $text );
6205 * strip/replaceVariables/unstrip for preprocessor regression testing
6207 * @param string $text
6208 * @param Title $title
6209 * @param ParserOptions $options
6210 * @param int $outputType
6214 public function testSrvus( $text, Title
$title, ParserOptions
$options,
6215 $outputType = self
::OT_HTML
6217 $magicScopeVariable = $this->lock();
6218 $this->startParse( $title, $options, $outputType, true );
6220 $text = $this->replaceVariables( $text );
6221 $text = $this->mStripState
->unstripBoth( $text );
6222 $text = Sanitizer
::removeHTMLtags( $text );
6227 * @param string $text
6228 * @param Title $title
6229 * @param ParserOptions $options
6232 public function testPst( $text, Title
$title, ParserOptions
$options ) {
6233 return $this->preSaveTransform( $text, $title, $options->getUser(), $options );
6237 * @param string $text
6238 * @param Title $title
6239 * @param ParserOptions $options
6242 public function testPreprocess( $text, Title
$title, ParserOptions
$options ) {
6243 return $this->testSrvus( $text, $title, $options, self
::OT_PREPROCESS
);
6247 * Call a callback function on all regions of the given text that are not
6248 * inside strip markers, and replace those regions with the return value
6249 * of the callback. For example, with input:
6253 * This will call the callback function twice, with 'aaa' and 'bbb'. Those
6254 * two strings will be replaced with the value returned by the callback in
6258 * @param callable $callback
6262 public function markerSkipCallback( $s, $callback ) {
6265 while ( $i < strlen( $s ) ) {
6266 $markerStart = strpos( $s, self
::MARKER_PREFIX
, $i );
6267 if ( $markerStart === false ) {
6268 $out .= call_user_func( $callback, substr( $s, $i ) );
6271 $out .= call_user_func( $callback, substr( $s, $i, $markerStart - $i ) );
6272 $markerEnd = strpos( $s, self
::MARKER_SUFFIX
, $markerStart );
6273 if ( $markerEnd === false ) {
6274 $out .= substr( $s, $markerStart );
6277 $markerEnd +
= strlen( self
::MARKER_SUFFIX
);
6278 $out .= substr( $s, $markerStart, $markerEnd - $markerStart );
6287 * Remove any strip markers found in the given text.
6289 * @param string $text Input string
6292 public function killMarkers( $text ) {
6293 return $this->mStripState
->killMarkers( $text );
6297 * Save the parser state required to convert the given half-parsed text to
6298 * HTML. "Half-parsed" in this context means the output of
6299 * recursiveTagParse() or internalParse(). This output has strip markers
6300 * from replaceVariables (extensionSubstitution() etc.), and link
6301 * placeholders from replaceLinkHolders().
6303 * Returns an array which can be serialized and stored persistently. This
6304 * array can later be loaded into another parser instance with
6305 * unserializeHalfParsedText(). The text can then be safely incorporated into
6306 * the return value of a parser hook.
6308 * @param string $text
6312 public function serializeHalfParsedText( $text ) {
6315 'version' => self
::HALF_PARSED_VERSION
,
6316 'stripState' => $this->mStripState
->getSubState( $text ),
6317 'linkHolders' => $this->mLinkHolders
->getSubArray( $text )
6323 * Load the parser state given in the $data array, which is assumed to
6324 * have been generated by serializeHalfParsedText(). The text contents is
6325 * extracted from the array, and its markers are transformed into markers
6326 * appropriate for the current Parser instance. This transformed text is
6327 * returned, and can be safely included in the return value of a parser
6330 * If the $data array has been stored persistently, the caller should first
6331 * check whether it is still valid, by calling isValidHalfParsedText().
6333 * @param array $data Serialized data
6334 * @throws MWException
6337 public function unserializeHalfParsedText( $data ) {
6338 if ( !isset( $data['version'] ) ||
$data['version'] != self
::HALF_PARSED_VERSION
) {
6339 throw new MWException( __METHOD__
. ': invalid version' );
6342 # First, extract the strip state.
6343 $texts = [ $data['text'] ];
6344 $texts = $this->mStripState
->merge( $data['stripState'], $texts );
6346 # Now renumber links
6347 $texts = $this->mLinkHolders
->mergeForeign( $data['linkHolders'], $texts );
6349 # Should be good to go.
6354 * Returns true if the given array, presumed to be generated by
6355 * serializeHalfParsedText(), is compatible with the current version of the
6358 * @param array $data
6362 public function isValidHalfParsedText( $data ) {
6363 return isset( $data['version'] ) && $data['version'] == self
::HALF_PARSED_VERSION
;
6367 * Parsed a width param of imagelink like 300px or 200x300px
6369 * @param string $value
6374 public function parseWidthParam( $value ) {
6375 $parsedWidthParam = [];
6376 if ( $value === '' ) {
6377 return $parsedWidthParam;
6380 # (bug 13500) In both cases (width/height and width only),
6381 # permit trailing "px" for backward compatibility.
6382 if ( preg_match( '/^([0-9]*)x([0-9]*)\s*(?:px)?\s*$/', $value, $m ) ) {
6383 $width = intval( $m[1] );
6384 $height = intval( $m[2] );
6385 $parsedWidthParam['width'] = $width;
6386 $parsedWidthParam['height'] = $height;
6387 } elseif ( preg_match( '/^[0-9]*\s*(?:px)?\s*$/', $value ) ) {
6388 $width = intval( $value );
6389 $parsedWidthParam['width'] = $width;
6391 return $parsedWidthParam;
6395 * Lock the current instance of the parser.
6397 * This is meant to stop someone from calling the parser
6398 * recursively and messing up all the strip state.
6400 * @throws MWException If parser is in a parse
6401 * @return ScopedCallback The lock will be released once the return value goes out of scope.
6403 protected function lock() {
6404 if ( $this->mInParse
) {
6405 throw new MWException( "Parser state cleared while parsing. "
6406 . "Did you call Parser::parse recursively?" );
6408 $this->mInParse
= true;
6410 $recursiveCheck = new ScopedCallback( function() {
6411 $this->mInParse
= false;
6414 return $recursiveCheck;
6418 * Strip outer <p></p> tag from the HTML source of a single paragraph.
6420 * Returns original HTML if the <p/> tag has any attributes, if there's no wrapping <p/> tag,
6421 * or if there is more than one <p/> tag in the input HTML.
6423 * @param string $html
6427 public static function stripOuterParagraph( $html ) {
6429 if ( preg_match( '/^<p>(.*)\n?<\/p>\n?$/sU', $html, $m ) ) {
6430 if ( strpos( $m[1], '</p>' ) === false ) {
6439 * Return this parser if it is not doing anything, otherwise
6440 * get a fresh parser. You can use this method by doing
6441 * $myParser = $wgParser->getFreshParser(), or more simply
6442 * $wgParser->getFreshParser()->parse( ... );
6443 * if you're unsure if $wgParser is safe to use.
6446 * @return Parser A parser object that is not parsing anything
6448 public function getFreshParser() {
6449 global $wgParserConf;
6450 if ( $this->mInParse
) {
6451 return new $wgParserConf['class']( $wgParserConf );
6458 * Set's up the PHP implementation of OOUI for use in this request
6459 * and instructs OutputPage to enable OOUI for itself.
6463 public function enableOOUI() {
6464 OutputPage
::setupOOUI();
6465 $this->mOutput
->setEnableOOUI( true );