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