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