Fix Generic.Files.LineLength phpcs failure in 11 files under includes/
[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 = array();
144 public $mTransparentTagHooks = array();
145 public $mFunctionHooks = array();
146 public $mFunctionSynonyms = array( 0 => array(), 1 => array() );
147 public $mFunctionTagHooks = array();
148 public $mStripList = array();
149 public $mDefaultStripList = array();
150 public $mVarCache = array();
151 public $mImageParams = array();
152 public $mImageParamsMagicArray = array();
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 = array() ) {
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 ( array( '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', array( $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', array( &$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( array( $this->mOutput, 'recordOption' ) );
344 $this->mAutonumber = 0;
345 $this->mLastSection = '';
346 $this->mDTopen = false;
347 $this->mIncludeCount = array();
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 = array();
355 $this->mUser = null;
356 $this->mLangLinkLanguages = array();
357 $this->currentRevisionCache = null;
358
359 $this->mStripState = new StripState;
360
361 # Clear these on every parse, bug 4549
362 $this->mTplRedirCache = $this->mTplDomCache = array();
363
364 $this->mShowToc = true;
365 $this->mForceTocPosition = false;
366 $this->mIncludeSizes = array(
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 = array();
375 $this->mDoubleUnderscores = array();
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', array( &$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', array( &$this, &$text, &$this->mStripState ) );
439 # No more strip!
440 Hooks::run( 'ParserAfterStrip', array( &$this, &$text, &$this->mStripState ) );
441 $text = $this->internalParse( $text );
442 Hooks::run( 'ParserAfterParse', array( &$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 array( $this->mPPNodeCount, $this->mOptions->getMaxPPNodeCount() )
492 );
493 $this->mOutput->setLimitReportData( 'limitreport-ppgeneratednodes',
494 array( $this->mGeneratedPPNodeCount, $this->mOptions->getMaxGeneratedPPNodeCount() )
495 );
496 $this->mOutput->setLimitReportData( 'limitreport-postexpandincludesize',
497 array( $this->mIncludeSizes['post-expand'], $max )
498 );
499 $this->mOutput->setLimitReportData( 'limitreport-templateargumentsize',
500 array( $this->mIncludeSizes['arg'], $max )
501 );
502 $this->mOutput->setLimitReportData( 'limitreport-expansiondepth',
503 array( $this->mHighestExpansionDepth, $this->mOptions->getMaxPPExpandDepth() )
504 );
505 $this->mOutput->setLimitReportData( 'limitreport-expensivefunctioncount',
506 array( $this->mExpensiveFunctionCount, $this->mOptions->getExpensiveParserFunctionLimit() )
507 );
508 Hooks::run( 'ParserLimitReportPrepare', array( $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 array( $key, &$value, &$limitReport, false, false )
523 ) ) {
524 $keyMsg = wfMessage( $key )->inLanguage( 'en' )->useDatabase( false );
525 $valueMsg = wfMessage( array( "$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', array( $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( array( '-', '&' ), array( '‐', '&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', array( &$this, &$text, &$this->mStripState ) );
601 Hooks::run( 'ParserAfterStrip', array( &$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', array( &$this, &$text, &$this->mStripState ) );
649 Hooks::run( 'ParserAfterStrip', array( &$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 = array() ) {
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 = array(
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 = array();
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] = array( $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 = array(); # Is currently a td tag open?
1024 $last_tag_history = array(); # Save history of last lag activated (td, th or caption)
1025 $tr_history = array(); # Is currently a tr tag open?
1026 $tr_attributes = array(); # history of tr attributes
1027 $has_opened_tr = array(); # 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 = array();
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 if ( $first_character === '!' ) {
1117 $line = str_replace( '!!', '||', $line );
1118 }
1119
1120 # Split up multiple cells on the same line.
1121 # FIXME : This can result in improper nesting of tags processed
1122 # by earlier parser steps, but should avoid splitting up eg
1123 # attribute values containing literal "||".
1124 $cells = StringUtils::explodeMarkup( '||', $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', array( &$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', array( &$this, &$text, &$this->mStripState ) );
1248 $text = Sanitizer::removeHTMLtags(
1249 $text,
1250 array( &$this, 'attributeStripCallback' ),
1251 false,
1252 array_keys( $this->mTransparentTagHooks )
1253 );
1254 Hooks::run( 'InternalParseBeforeLinks', array( &$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', array( &$this, &$text ) );
1295 }
1296
1297 # Clean up special characters, only run once, next-to-last before doBlockLevels
1298 $fixtags = array(
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', array( &$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 } else {
1344 # attempt to sanitize at least some nesting problems
1345 # (bug #2702 and quite a few others)
1346 $tidyregs = array(
1347 # ''Something [http://www.cool.com cool''] -->
1348 # <i>Something</i><a href="http://www.cool.com"..><i>cool></i></a>
1349 '/(<([bi])>)(<([bi])>)?([^<]*)(<\/?a[^<]*>)([^<]*)(<\/\\4>)?(<\/\\2>)/' =>
1350 '\\1\\3\\5\\8\\9\\6\\1\\3\\7\\8\\9',
1351 # fix up an anchor inside another anchor, only
1352 # at least for a single single nested link (bug 3695)
1353 '/(<a[^>]+>)([^<]*)(<a[^>]+>[^<]*)<\/a>(.*)<\/a>/' =>
1354 '\\1\\2</a>\\3</a>\\1\\4</a>',
1355 # fix div inside inline elements- doBlockLevels won't wrap a line which
1356 # contains a div, so fix it up here; replace
1357 # div with escaped text
1358 '/(<([aib]) [^>]+>)([^<]*)(<div([^>]*)>)(.*)(<\/div>)([^<]*)(<\/\\2>)/' =>
1359 '\\1\\3&lt;div\\5&gt;\\6&lt;/div&gt;\\8\\9',
1360 # remove empty italic or bold tag pairs, some
1361 # introduced by rules above
1362 '/<([bi])><\/\\1>/' => '',
1363 );
1364
1365 $text = preg_replace(
1366 array_keys( $tidyregs ),
1367 array_values( $tidyregs ),
1368 $text );
1369 }
1370
1371 if ( $isMain ) {
1372 Hooks::run( 'ParserAfterTidy', array( &$this, &$text ) );
1373 }
1374
1375 return $text;
1376 }
1377
1378 /**
1379 * Replace special strings like "ISBN xxx" and "RFC xxx" with
1380 * magic external links.
1381 *
1382 * DML
1383 * @private
1384 *
1385 * @param string $text
1386 *
1387 * @return string
1388 */
1389 public function doMagicLinks( $text ) {
1390 $prots = wfUrlProtocolsWithoutProtRel();
1391 $urlChar = self::EXT_LINK_URL_CLASS;
1392 $addr = self::EXT_LINK_ADDR;
1393 $space = self::SPACE_NOT_NL; # non-newline space
1394 $spdash = "(?:-|$space)"; # a dash or a non-newline space
1395 $spaces = "$space++"; # possessive match of 1 or more spaces
1396 $text = preg_replace_callback(
1397 '!(?: # Start cases
1398 (<a[ \t\r\n>].*?</a>) | # m[1]: Skip link text
1399 (<.*?>) | # m[2]: Skip stuff inside
1400 # HTML elements' . "
1401 (\b(?i:$prots)($addr$urlChar*)) | # m[3]: Free external links
1402 # m[4]: Post-protocol path
1403 \b(?:RFC|PMID) $spaces # m[5]: RFC or PMID, capture number
1404 ([0-9]+)\b |
1405 \bISBN $spaces ( # m[6]: ISBN, capture number
1406 (?: 97[89] $spdash? )? # optional 13-digit ISBN prefix
1407 (?: [0-9] $spdash? ){9} # 9 digits with opt. delimiters
1408 [0-9Xx] # check digit
1409 )\b
1410 )!xu", array( &$this, 'magicLinkCallback' ), $text );
1411 return $text;
1412 }
1413
1414 /**
1415 * @throws MWException
1416 * @param array $m
1417 * @return HTML|string
1418 */
1419 public function magicLinkCallback( $m ) {
1420 if ( isset( $m[1] ) && $m[1] !== '' ) {
1421 # Skip anchor
1422 return $m[0];
1423 } elseif ( isset( $m[2] ) && $m[2] !== '' ) {
1424 # Skip HTML element
1425 return $m[0];
1426 } elseif ( isset( $m[3] ) && $m[3] !== '' ) {
1427 # Free external link
1428 return $this->makeFreeExternalLink( $m[0], strlen( $m[4] ) );
1429 } elseif ( isset( $m[5] ) && $m[5] !== '' ) {
1430 # RFC or PMID
1431 if ( substr( $m[0], 0, 3 ) === 'RFC' ) {
1432 $keyword = 'RFC';
1433 $urlmsg = 'rfcurl';
1434 $cssClass = 'mw-magiclink-rfc';
1435 $id = $m[5];
1436 } elseif ( substr( $m[0], 0, 4 ) === 'PMID' ) {
1437 $keyword = 'PMID';
1438 $urlmsg = 'pubmedurl';
1439 $cssClass = 'mw-magiclink-pmid';
1440 $id = $m[5];
1441 } else {
1442 throw new MWException( __METHOD__ . ': unrecognised match type "' .
1443 substr( $m[0], 0, 20 ) . '"' );
1444 }
1445 $url = wfMessage( $urlmsg, $id )->inContentLanguage()->text();
1446 return Linker::makeExternalLink( $url, "{$keyword} {$id}", true, $cssClass );
1447 } elseif ( isset( $m[6] ) && $m[6] !== '' ) {
1448 # ISBN
1449 $isbn = $m[6];
1450 $space = self::SPACE_NOT_NL; # non-newline space
1451 $isbn = preg_replace( "/$space/", ' ', $isbn );
1452 $num = strtr( $isbn, array(
1453 '-' => '',
1454 ' ' => '',
1455 'x' => 'X',
1456 ) );
1457 $titleObj = SpecialPage::getTitleFor( 'Booksources', $num );
1458 return '<a href="' .
1459 htmlspecialchars( $titleObj->getLocalURL() ) .
1460 "\" class=\"internal mw-magiclink-isbn\">ISBN $isbn</a>";
1461 } else {
1462 return $m[0];
1463 }
1464 }
1465
1466 /**
1467 * Make a free external link, given a user-supplied URL
1468 *
1469 * @param string $url
1470 * @param int $numPostProto
1471 * The number of characters after the protocol.
1472 * @return string HTML
1473 * @private
1474 */
1475 public function makeFreeExternalLink( $url, $numPostProto ) {
1476 $trail = '';
1477
1478 # The characters '<' and '>' (which were escaped by
1479 # removeHTMLtags()) should not be included in
1480 # URLs, per RFC 2396.
1481 # Make &nbsp; terminate a URL as well (bug T84937)
1482 $m2 = array();
1483 if ( preg_match(
1484 '/&(lt|gt|nbsp|#x0*(3[CcEe]|[Aa]0)|#0*(60|62|160));/',
1485 $url,
1486 $m2,
1487 PREG_OFFSET_CAPTURE
1488 ) ) {
1489 $trail = substr( $url, $m2[0][1] ) . $trail;
1490 $url = substr( $url, 0, $m2[0][1] );
1491 }
1492
1493 # Move trailing punctuation to $trail
1494 $sep = ',;\.:!?';
1495 # If there is no left bracket, then consider right brackets fair game too
1496 if ( strpos( $url, '(' ) === false ) {
1497 $sep .= ')';
1498 }
1499
1500 $urlRev = strrev( $url );
1501 $numSepChars = strspn( $urlRev, $sep );
1502 # Don't break a trailing HTML entity by moving the ; into $trail
1503 # This is in hot code, so use substr_compare to avoid having to
1504 # create a new string object for the comparison
1505 if ( $numSepChars && substr_compare( $url, ";", -$numSepChars, 1 ) === 0 ) {
1506 # more optimization: instead of running preg_match with a $
1507 # anchor, which can be slow, do the match on the reversed
1508 # string starting at the desired offset.
1509 # un-reversed regexp is: /&([a-z]+|#x[\da-f]+|#\d+)$/i
1510 if ( preg_match( '/\G([a-z]+|[\da-f]+x#|\d+#)&/i', $urlRev, $m2, 0, $numSepChars ) ) {
1511 $numSepChars--;
1512 }
1513 }
1514 if ( $numSepChars ) {
1515 $trail = substr( $url, -$numSepChars ) . $trail;
1516 $url = substr( $url, 0, -$numSepChars );
1517 }
1518
1519 # Verify that we still have a real URL after trail removal, and
1520 # not just lone protocol
1521 if ( strlen( $trail ) >= $numPostProto ) {
1522 return $url . $trail;
1523 }
1524
1525 $url = Sanitizer::cleanUrl( $url );
1526
1527 # Is this an external image?
1528 $text = $this->maybeMakeExternalImage( $url );
1529 if ( $text === false ) {
1530 # Not an image, make a link
1531 $text = Linker::makeExternalLink( $url,
1532 $this->getConverterLanguage()->markNoConversion( $url, true ),
1533 true, 'free',
1534 $this->getExternalLinkAttribs( $url ) );
1535 # Register it in the output object...
1536 # Replace unnecessary URL escape codes with their equivalent characters
1537 $pasteurized = self::normalizeLinkUrl( $url );
1538 $this->mOutput->addExternalLink( $pasteurized );
1539 }
1540 return $text . $trail;
1541 }
1542
1543 /**
1544 * Parse headers and return html
1545 *
1546 * @private
1547 *
1548 * @param string $text
1549 *
1550 * @return string
1551 */
1552 public function doHeadings( $text ) {
1553 for ( $i = 6; $i >= 1; --$i ) {
1554 $h = str_repeat( '=', $i );
1555 $text = preg_replace( "/^$h(.+)$h\\s*$/m", "<h$i>\\1</h$i>", $text );
1556 }
1557 return $text;
1558 }
1559
1560 /**
1561 * Replace single quotes with HTML markup
1562 * @private
1563 *
1564 * @param string $text
1565 *
1566 * @return string The altered text
1567 */
1568 public function doAllQuotes( $text ) {
1569 $outtext = '';
1570 $lines = StringUtils::explode( "\n", $text );
1571 foreach ( $lines as $line ) {
1572 $outtext .= $this->doQuotes( $line ) . "\n";
1573 }
1574 $outtext = substr( $outtext, 0, -1 );
1575 return $outtext;
1576 }
1577
1578 /**
1579 * Helper function for doAllQuotes()
1580 *
1581 * @param string $text
1582 *
1583 * @return string
1584 */
1585 public function doQuotes( $text ) {
1586 $arr = preg_split( "/(''+)/", $text, -1, PREG_SPLIT_DELIM_CAPTURE );
1587 $countarr = count( $arr );
1588 if ( $countarr == 1 ) {
1589 return $text;
1590 }
1591
1592 // First, do some preliminary work. This may shift some apostrophes from
1593 // being mark-up to being text. It also counts the number of occurrences
1594 // of bold and italics mark-ups.
1595 $numbold = 0;
1596 $numitalics = 0;
1597 for ( $i = 1; $i < $countarr; $i += 2 ) {
1598 $thislen = strlen( $arr[$i] );
1599 // If there are ever four apostrophes, assume the first is supposed to
1600 // be text, and the remaining three constitute mark-up for bold text.
1601 // (bug 13227: ''''foo'''' turns into ' ''' foo ' ''')
1602 if ( $thislen == 4 ) {
1603 $arr[$i - 1] .= "'";
1604 $arr[$i] = "'''";
1605 $thislen = 3;
1606 } elseif ( $thislen > 5 ) {
1607 // If there are more than 5 apostrophes in a row, assume they're all
1608 // text except for the last 5.
1609 // (bug 13227: ''''''foo'''''' turns into ' ''''' foo ' ''''')
1610 $arr[$i - 1] .= str_repeat( "'", $thislen - 5 );
1611 $arr[$i] = "'''''";
1612 $thislen = 5;
1613 }
1614 // Count the number of occurrences of bold and italics mark-ups.
1615 if ( $thislen == 2 ) {
1616 $numitalics++;
1617 } elseif ( $thislen == 3 ) {
1618 $numbold++;
1619 } elseif ( $thislen == 5 ) {
1620 $numitalics++;
1621 $numbold++;
1622 }
1623 }
1624
1625 // If there is an odd number of both bold and italics, it is likely
1626 // that one of the bold ones was meant to be an apostrophe followed
1627 // by italics. Which one we cannot know for certain, but it is more
1628 // likely to be one that has a single-letter word before it.
1629 if ( ( $numbold % 2 == 1 ) && ( $numitalics % 2 == 1 ) ) {
1630 $firstsingleletterword = -1;
1631 $firstmultiletterword = -1;
1632 $firstspace = -1;
1633 for ( $i = 1; $i < $countarr; $i += 2 ) {
1634 if ( strlen( $arr[$i] ) == 3 ) {
1635 $x1 = substr( $arr[$i - 1], -1 );
1636 $x2 = substr( $arr[$i - 1], -2, 1 );
1637 if ( $x1 === ' ' ) {
1638 if ( $firstspace == -1 ) {
1639 $firstspace = $i;
1640 }
1641 } elseif ( $x2 === ' ' ) {
1642 $firstsingleletterword = $i;
1643 // if $firstsingleletterword is set, we don't
1644 // look at the other options, so we can bail early.
1645 break;
1646 } else {
1647 if ( $firstmultiletterword == -1 ) {
1648 $firstmultiletterword = $i;
1649 }
1650 }
1651 }
1652 }
1653
1654 // If there is a single-letter word, use it!
1655 if ( $firstsingleletterword > -1 ) {
1656 $arr[$firstsingleletterword] = "''";
1657 $arr[$firstsingleletterword - 1] .= "'";
1658 } elseif ( $firstmultiletterword > -1 ) {
1659 // If not, but there's a multi-letter word, use that one.
1660 $arr[$firstmultiletterword] = "''";
1661 $arr[$firstmultiletterword - 1] .= "'";
1662 } elseif ( $firstspace > -1 ) {
1663 // ... otherwise use the first one that has neither.
1664 // (notice that it is possible for all three to be -1 if, for example,
1665 // there is only one pentuple-apostrophe in the line)
1666 $arr[$firstspace] = "''";
1667 $arr[$firstspace - 1] .= "'";
1668 }
1669 }
1670
1671 // Now let's actually convert our apostrophic mush to HTML!
1672 $output = '';
1673 $buffer = '';
1674 $state = '';
1675 $i = 0;
1676 foreach ( $arr as $r ) {
1677 if ( ( $i % 2 ) == 0 ) {
1678 if ( $state === 'both' ) {
1679 $buffer .= $r;
1680 } else {
1681 $output .= $r;
1682 }
1683 } else {
1684 $thislen = strlen( $r );
1685 if ( $thislen == 2 ) {
1686 if ( $state === 'i' ) {
1687 $output .= '</i>';
1688 $state = '';
1689 } elseif ( $state === 'bi' ) {
1690 $output .= '</i>';
1691 $state = 'b';
1692 } elseif ( $state === 'ib' ) {
1693 $output .= '</b></i><b>';
1694 $state = 'b';
1695 } elseif ( $state === 'both' ) {
1696 $output .= '<b><i>' . $buffer . '</i>';
1697 $state = 'b';
1698 } else { // $state can be 'b' or ''
1699 $output .= '<i>';
1700 $state .= 'i';
1701 }
1702 } elseif ( $thislen == 3 ) {
1703 if ( $state === 'b' ) {
1704 $output .= '</b>';
1705 $state = '';
1706 } elseif ( $state === 'bi' ) {
1707 $output .= '</i></b><i>';
1708 $state = 'i';
1709 } elseif ( $state === 'ib' ) {
1710 $output .= '</b>';
1711 $state = 'i';
1712 } elseif ( $state === 'both' ) {
1713 $output .= '<i><b>' . $buffer . '</b>';
1714 $state = 'i';
1715 } else { // $state can be 'i' or ''
1716 $output .= '<b>';
1717 $state .= 'b';
1718 }
1719 } elseif ( $thislen == 5 ) {
1720 if ( $state === 'b' ) {
1721 $output .= '</b><i>';
1722 $state = 'i';
1723 } elseif ( $state === 'i' ) {
1724 $output .= '</i><b>';
1725 $state = 'b';
1726 } elseif ( $state === 'bi' ) {
1727 $output .= '</i></b>';
1728 $state = '';
1729 } elseif ( $state === 'ib' ) {
1730 $output .= '</b></i>';
1731 $state = '';
1732 } elseif ( $state === 'both' ) {
1733 $output .= '<i><b>' . $buffer . '</b></i>';
1734 $state = '';
1735 } else { // ($state == '')
1736 $buffer = '';
1737 $state = 'both';
1738 }
1739 }
1740 }
1741 $i++;
1742 }
1743 // Now close all remaining tags. Notice that the order is important.
1744 if ( $state === 'b' || $state === 'ib' ) {
1745 $output .= '</b>';
1746 }
1747 if ( $state === 'i' || $state === 'bi' || $state === 'ib' ) {
1748 $output .= '</i>';
1749 }
1750 if ( $state === 'bi' ) {
1751 $output .= '</b>';
1752 }
1753 // There might be lonely ''''', so make sure we have a buffer
1754 if ( $state === 'both' && $buffer ) {
1755 $output .= '<b><i>' . $buffer . '</i></b>';
1756 }
1757 return $output;
1758 }
1759
1760 /**
1761 * Replace external links (REL)
1762 *
1763 * Note: this is all very hackish and the order of execution matters a lot.
1764 * Make sure to run tests/parserTests.php if you change this code.
1765 *
1766 * @private
1767 *
1768 * @param string $text
1769 *
1770 * @throws MWException
1771 * @return string
1772 */
1773 public function replaceExternalLinks( $text ) {
1774
1775 $bits = preg_split( $this->mExtLinkBracketedRegex, $text, -1, PREG_SPLIT_DELIM_CAPTURE );
1776 if ( $bits === false ) {
1777 throw new MWException( "PCRE needs to be compiled with "
1778 . "--enable-unicode-properties in order for MediaWiki to function" );
1779 }
1780 $s = array_shift( $bits );
1781
1782 $i = 0;
1783 while ( $i < count( $bits ) ) {
1784 $url = $bits[$i++];
1785 $i++; // protocol
1786 $text = $bits[$i++];
1787 $trail = $bits[$i++];
1788
1789 # The characters '<' and '>' (which were escaped by
1790 # removeHTMLtags()) should not be included in
1791 # URLs, per RFC 2396.
1792 $m2 = array();
1793 if ( preg_match( '/&(lt|gt);/', $url, $m2, PREG_OFFSET_CAPTURE ) ) {
1794 $text = substr( $url, $m2[0][1] ) . ' ' . $text;
1795 $url = substr( $url, 0, $m2[0][1] );
1796 }
1797
1798 # If the link text is an image URL, replace it with an <img> tag
1799 # This happened by accident in the original parser, but some people used it extensively
1800 $img = $this->maybeMakeExternalImage( $text );
1801 if ( $img !== false ) {
1802 $text = $img;
1803 }
1804
1805 $dtrail = '';
1806
1807 # Set linktype for CSS - if URL==text, link is essentially free
1808 $linktype = ( $text === $url ) ? 'free' : 'text';
1809
1810 # No link text, e.g. [http://domain.tld/some.link]
1811 if ( $text == '' ) {
1812 # Autonumber
1813 $langObj = $this->getTargetLanguage();
1814 $text = '[' . $langObj->formatNum( ++$this->mAutonumber ) . ']';
1815 $linktype = 'autonumber';
1816 } else {
1817 # Have link text, e.g. [http://domain.tld/some.link text]s
1818 # Check for trail
1819 list( $dtrail, $trail ) = Linker::splitTrail( $trail );
1820 }
1821
1822 $text = $this->getConverterLanguage()->markNoConversion( $text );
1823
1824 $url = Sanitizer::cleanUrl( $url );
1825
1826 # Use the encoded URL
1827 # This means that users can paste URLs directly into the text
1828 # Funny characters like ö aren't valid in URLs anyway
1829 # This was changed in August 2004
1830 $s .= Linker::makeExternalLink( $url, $text, false, $linktype,
1831 $this->getExternalLinkAttribs( $url ) ) . $dtrail . $trail;
1832
1833 # Register link in the output object.
1834 # Replace unnecessary URL escape codes with the referenced character
1835 # This prevents spammers from hiding links from the filters
1836 $pasteurized = self::normalizeLinkUrl( $url );
1837 $this->mOutput->addExternalLink( $pasteurized );
1838 }
1839
1840 return $s;
1841 }
1842
1843 /**
1844 * Get the rel attribute for a particular external link.
1845 *
1846 * @since 1.21
1847 * @param string|bool $url Optional URL, to extract the domain from for rel =>
1848 * nofollow if appropriate
1849 * @param Title $title Optional Title, for wgNoFollowNsExceptions lookups
1850 * @return string|null Rel attribute for $url
1851 */
1852 public static function getExternalLinkRel( $url = false, $title = null ) {
1853 global $wgNoFollowLinks, $wgNoFollowNsExceptions, $wgNoFollowDomainExceptions;
1854 $ns = $title ? $title->getNamespace() : false;
1855 if ( $wgNoFollowLinks && !in_array( $ns, $wgNoFollowNsExceptions )
1856 && !wfMatchesDomainList( $url, $wgNoFollowDomainExceptions )
1857 ) {
1858 return 'nofollow';
1859 }
1860 return null;
1861 }
1862
1863 /**
1864 * Get an associative array of additional HTML attributes appropriate for a
1865 * particular external link. This currently may include rel => nofollow
1866 * (depending on configuration, namespace, and the URL's domain) and/or a
1867 * target attribute (depending on configuration).
1868 *
1869 * @param string|bool $url Optional URL, to extract the domain from for rel =>
1870 * nofollow if appropriate
1871 * @return array Associative array of HTML attributes
1872 */
1873 public function getExternalLinkAttribs( $url = false ) {
1874 $attribs = array();
1875 $attribs['rel'] = self::getExternalLinkRel( $url, $this->mTitle );
1876
1877 if ( $this->mOptions->getExternalLinkTarget() ) {
1878 $attribs['target'] = $this->mOptions->getExternalLinkTarget();
1879 }
1880 return $attribs;
1881 }
1882
1883 /**
1884 * Replace unusual escape codes in a URL with their equivalent characters
1885 *
1886 * @deprecated since 1.24, use normalizeLinkUrl
1887 * @param string $url
1888 * @return string
1889 */
1890 public static function replaceUnusualEscapes( $url ) {
1891 wfDeprecated( __METHOD__, '1.24' );
1892 return self::normalizeLinkUrl( $url );
1893 }
1894
1895 /**
1896 * Replace unusual escape codes in a URL with their equivalent characters
1897 *
1898 * This generally follows the syntax defined in RFC 3986, with special
1899 * consideration for HTTP query strings.
1900 *
1901 * @param string $url
1902 * @return string
1903 */
1904 public static function normalizeLinkUrl( $url ) {
1905 # First, make sure unsafe characters are encoded
1906 $url = preg_replace_callback( '/[\x00-\x20"<>\[\\\\\]^`{|}\x7F-\xFF]/',
1907 function ( $m ) {
1908 return rawurlencode( $m[0] );
1909 },
1910 $url
1911 );
1912
1913 $ret = '';
1914 $end = strlen( $url );
1915
1916 # Fragment part - 'fragment'
1917 $start = strpos( $url, '#' );
1918 if ( $start !== false && $start < $end ) {
1919 $ret = self::normalizeUrlComponent(
1920 substr( $url, $start, $end - $start ), '"#%<>[\]^`{|}' ) . $ret;
1921 $end = $start;
1922 }
1923
1924 # Query part - 'query' minus &=+;
1925 $start = strpos( $url, '?' );
1926 if ( $start !== false && $start < $end ) {
1927 $ret = self::normalizeUrlComponent(
1928 substr( $url, $start, $end - $start ), '"#%<>[\]^`{|}&=+;' ) . $ret;
1929 $end = $start;
1930 }
1931
1932 # Scheme and path part - 'pchar'
1933 # (we assume no userinfo or encoded colons in the host)
1934 $ret = self::normalizeUrlComponent(
1935 substr( $url, 0, $end ), '"#%<>[\]^`{|}/?' ) . $ret;
1936
1937 return $ret;
1938 }
1939
1940 private static function normalizeUrlComponent( $component, $unsafe ) {
1941 $callback = function ( $matches ) use ( $unsafe ) {
1942 $char = urldecode( $matches[0] );
1943 $ord = ord( $char );
1944 if ( $ord > 32 && $ord < 127 && strpos( $unsafe, $char ) === false ) {
1945 # Unescape it
1946 return $char;
1947 } else {
1948 # Leave it escaped, but use uppercase for a-f
1949 return strtoupper( $matches[0] );
1950 }
1951 };
1952 return preg_replace_callback( '/%[0-9A-Fa-f]{2}/', $callback, $component );
1953 }
1954
1955 /**
1956 * make an image if it's allowed, either through the global
1957 * option, through the exception, or through the on-wiki whitelist
1958 *
1959 * @param string $url
1960 *
1961 * @return string
1962 */
1963 private function maybeMakeExternalImage( $url ) {
1964 $imagesfrom = $this->mOptions->getAllowExternalImagesFrom();
1965 $imagesexception = !empty( $imagesfrom );
1966 $text = false;
1967 # $imagesfrom could be either a single string or an array of strings, parse out the latter
1968 if ( $imagesexception && is_array( $imagesfrom ) ) {
1969 $imagematch = false;
1970 foreach ( $imagesfrom as $match ) {
1971 if ( strpos( $url, $match ) === 0 ) {
1972 $imagematch = true;
1973 break;
1974 }
1975 }
1976 } elseif ( $imagesexception ) {
1977 $imagematch = ( strpos( $url, $imagesfrom ) === 0 );
1978 } else {
1979 $imagematch = false;
1980 }
1981
1982 if ( $this->mOptions->getAllowExternalImages()
1983 || ( $imagesexception && $imagematch )
1984 ) {
1985 if ( preg_match( self::EXT_IMAGE_REGEX, $url ) ) {
1986 # Image found
1987 $text = Linker::makeExternalImage( $url );
1988 }
1989 }
1990 if ( !$text && $this->mOptions->getEnableImageWhitelist()
1991 && preg_match( self::EXT_IMAGE_REGEX, $url )
1992 ) {
1993 $whitelist = explode(
1994 "\n",
1995 wfMessage( 'external_image_whitelist' )->inContentLanguage()->text()
1996 );
1997
1998 foreach ( $whitelist as $entry ) {
1999 # Sanitize the regex fragment, make it case-insensitive, ignore blank entries/comments
2000 if ( strpos( $entry, '#' ) === 0 || $entry === '' ) {
2001 continue;
2002 }
2003 if ( preg_match( '/' . str_replace( '/', '\\/', $entry ) . '/i', $url ) ) {
2004 # Image matches a whitelist entry
2005 $text = Linker::makeExternalImage( $url );
2006 break;
2007 }
2008 }
2009 }
2010 return $text;
2011 }
2012
2013 /**
2014 * Process [[ ]] wikilinks
2015 *
2016 * @param string $s
2017 *
2018 * @return string Processed text
2019 *
2020 * @private
2021 */
2022 public function replaceInternalLinks( $s ) {
2023 $this->mLinkHolders->merge( $this->replaceInternalLinks2( $s ) );
2024 return $s;
2025 }
2026
2027 /**
2028 * Process [[ ]] wikilinks (RIL)
2029 * @param string $s
2030 * @throws MWException
2031 * @return LinkHolderArray
2032 *
2033 * @private
2034 */
2035 public function replaceInternalLinks2( &$s ) {
2036 global $wgExtraInterlanguageLinkPrefixes;
2037
2038 static $tc = false, $e1, $e1_img;
2039 # the % is needed to support urlencoded titles as well
2040 if ( !$tc ) {
2041 $tc = Title::legalChars() . '#%';
2042 # Match a link having the form [[namespace:link|alternate]]trail
2043 $e1 = "/^([{$tc}]+)(?:\\|(.+?))?]](.*)\$/sD";
2044 # Match cases where there is no "]]", which might still be images
2045 $e1_img = "/^([{$tc}]+)\\|(.*)\$/sD";
2046 }
2047
2048 $holders = new LinkHolderArray( $this );
2049
2050 # split the entire text string on occurrences of [[
2051 $a = StringUtils::explode( '[[', ' ' . $s );
2052 # get the first element (all text up to first [[), and remove the space we added
2053 $s = $a->current();
2054 $a->next();
2055 $line = $a->current(); # Workaround for broken ArrayIterator::next() that returns "void"
2056 $s = substr( $s, 1 );
2057
2058 $useLinkPrefixExtension = $this->getTargetLanguage()->linkPrefixExtension();
2059 $e2 = null;
2060 if ( $useLinkPrefixExtension ) {
2061 # Match the end of a line for a word that's not followed by whitespace,
2062 # e.g. in the case of 'The Arab al[[Razi]]', 'al' will be matched
2063 global $wgContLang;
2064 $charset = $wgContLang->linkPrefixCharset();
2065 $e2 = "/^((?>.*[^$charset]|))(.+)$/sDu";
2066 }
2067
2068 if ( is_null( $this->mTitle ) ) {
2069 throw new MWException( __METHOD__ . ": \$this->mTitle is null\n" );
2070 }
2071 $nottalk = !$this->mTitle->isTalkPage();
2072
2073 if ( $useLinkPrefixExtension ) {
2074 $m = array();
2075 if ( preg_match( $e2, $s, $m ) ) {
2076 $first_prefix = $m[2];
2077 } else {
2078 $first_prefix = false;
2079 }
2080 } else {
2081 $prefix = '';
2082 }
2083
2084 $useSubpages = $this->areSubpagesAllowed();
2085
2086 // @codingStandardsIgnoreStart Squiz.WhiteSpace.SemicolonSpacing.Incorrect
2087 # Loop for each link
2088 for ( ; $line !== false && $line !== null; $a->next(), $line = $a->current() ) {
2089 // @codingStandardsIgnoreStart
2090
2091 # Check for excessive memory usage
2092 if ( $holders->isBig() ) {
2093 # Too big
2094 # Do the existence check, replace the link holders and clear the array
2095 $holders->replace( $s );
2096 $holders->clear();
2097 }
2098
2099 if ( $useLinkPrefixExtension ) {
2100 if ( preg_match( $e2, $s, $m ) ) {
2101 $prefix = $m[2];
2102 $s = $m[1];
2103 } else {
2104 $prefix = '';
2105 }
2106 # first link
2107 if ( $first_prefix ) {
2108 $prefix = $first_prefix;
2109 $first_prefix = false;
2110 }
2111 }
2112
2113 $might_be_img = false;
2114
2115 if ( preg_match( $e1, $line, $m ) ) { # page with normal text or alt
2116 $text = $m[2];
2117 # If we get a ] at the beginning of $m[3] that means we have a link that's something like:
2118 # [[Image:Foo.jpg|[http://example.com desc]]] <- having three ] in a row fucks up,
2119 # the real problem is with the $e1 regex
2120 # See bug 1300.
2121 #
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 #
2125 if ( $text !== ''
2126 && substr( $m[3], 0, 1 ) === ']'
2127 && strpos( $text, '[' ) !== false
2128 ) {
2129 $text .= ']'; # so that replaceExternalLinks($text) works later
2130 $m[3] = substr( $m[3], 1 );
2131 }
2132 # fix up urlencoded title texts
2133 if ( strpos( $m[1], '%' ) !== false ) {
2134 # Should anchors '#' also be rejected?
2135 $m[1] = str_replace( array( '<', '>' ), array( '&lt;', '&gt;' ), rawurldecode( $m[1] ) );
2136 }
2137 $trail = $m[3];
2138 } elseif ( preg_match( $e1_img, $line, $m ) ) {
2139 # Invalid, but might be an image with a link in its caption
2140 $might_be_img = true;
2141 $text = $m[2];
2142 if ( strpos( $m[1], '%' ) !== false ) {
2143 $m[1] = rawurldecode( $m[1] );
2144 }
2145 $trail = "";
2146 } else { # Invalid form; output directly
2147 $s .= $prefix . '[[' . $line;
2148 continue;
2149 }
2150
2151 $origLink = $m[1];
2152
2153 # Don't allow internal links to pages containing
2154 # PROTO: where PROTO is a valid URL protocol; these
2155 # should be external links.
2156 if ( preg_match( '/^(?i:' . $this->mUrlProtocols . ')/', $origLink ) ) {
2157 $s .= $prefix . '[[' . $line;
2158 continue;
2159 }
2160
2161 # Make subpage if necessary
2162 if ( $useSubpages ) {
2163 $link = $this->maybeDoSubpageLink( $origLink, $text );
2164 } else {
2165 $link = $origLink;
2166 }
2167
2168 $noforce = ( substr( $origLink, 0, 1 ) !== ':' );
2169 if ( !$noforce ) {
2170 # Strip off leading ':'
2171 $link = substr( $link, 1 );
2172 }
2173
2174 $unstrip = $this->mStripState->unstripNoWiki( $link );
2175 $nt = is_string( $unstrip ) ? Title::newFromText( $unstrip ) : null;
2176 if ( $nt === null ) {
2177 $s .= $prefix . '[[' . $line;
2178 continue;
2179 }
2180
2181 $ns = $nt->getNamespace();
2182 $iw = $nt->getInterwiki();
2183
2184 if ( $might_be_img ) { # if this is actually an invalid link
2185 if ( $ns == NS_FILE && $noforce ) { # but might be an image
2186 $found = false;
2187 while ( true ) {
2188 # look at the next 'line' to see if we can close it there
2189 $a->next();
2190 $next_line = $a->current();
2191 if ( $next_line === false || $next_line === null ) {
2192 break;
2193 }
2194 $m = explode( ']]', $next_line, 3 );
2195 if ( count( $m ) == 3 ) {
2196 # the first ]] closes the inner link, the second the image
2197 $found = true;
2198 $text .= "[[{$m[0]}]]{$m[1]}";
2199 $trail = $m[2];
2200 break;
2201 } elseif ( count( $m ) == 2 ) {
2202 # if there's exactly one ]] that's fine, we'll keep looking
2203 $text .= "[[{$m[0]}]]{$m[1]}";
2204 } else {
2205 # if $next_line is invalid too, we need look no further
2206 $text .= '[[' . $next_line;
2207 break;
2208 }
2209 }
2210 if ( !$found ) {
2211 # we couldn't find the end of this imageLink, so output it raw
2212 # but don't ignore what might be perfectly normal links in the text we've examined
2213 $holders->merge( $this->replaceInternalLinks2( $text ) );
2214 $s .= "{$prefix}[[$link|$text";
2215 # note: no $trail, because without an end, there *is* no trail
2216 continue;
2217 }
2218 } else { # it's not an image, so output it raw
2219 $s .= "{$prefix}[[$link|$text";
2220 # note: no $trail, because without an end, there *is* no trail
2221 continue;
2222 }
2223 }
2224
2225 $wasblank = ( $text == '' );
2226 if ( $wasblank ) {
2227 $text = $link;
2228 } else {
2229 # Bug 4598 madness. Handle the quotes only if they come from the alternate part
2230 # [[Lista d''e paise d''o munno]] -> <a href="...">Lista d''e paise d''o munno</a>
2231 # [[Criticism of Harry Potter|Criticism of ''Harry Potter'']]
2232 # -> <a href="Criticism of Harry Potter">Criticism of <i>Harry Potter</i></a>
2233 $text = $this->doQuotes( $text );
2234 }
2235
2236 # Link not escaped by : , create the various objects
2237 if ( $noforce && !$nt->wasLocalInterwiki() ) {
2238 # Interwikis
2239 if (
2240 $iw && $this->mOptions->getInterwikiMagic() && $nottalk && (
2241 Language::fetchLanguageName( $iw, null, 'mw' ) ||
2242 in_array( $iw, $wgExtraInterlanguageLinkPrefixes )
2243 )
2244 ) {
2245 # Bug 24502: filter duplicates
2246 if ( !isset( $this->mLangLinkLanguages[$iw] ) ) {
2247 $this->mLangLinkLanguages[$iw] = true;
2248 $this->mOutput->addLanguageLink( $nt->getFullText() );
2249 }
2250
2251 $s = rtrim( $s . $prefix );
2252 $s .= trim( $trail, "\n" ) == '' ? '': $prefix . $trail;
2253 continue;
2254 }
2255
2256 if ( $ns == NS_FILE ) {
2257 if ( !wfIsBadImage( $nt->getDBkey(), $this->mTitle ) ) {
2258 if ( $wasblank ) {
2259 # if no parameters were passed, $text
2260 # becomes something like "File:Foo.png",
2261 # which we don't want to pass on to the
2262 # image generator
2263 $text = '';
2264 } else {
2265 # recursively parse links inside the image caption
2266 # actually, this will parse them in any other parameters, too,
2267 # but it might be hard to fix that, and it doesn't matter ATM
2268 $text = $this->replaceExternalLinks( $text );
2269 $holders->merge( $this->replaceInternalLinks2( $text ) );
2270 }
2271 # cloak any absolute URLs inside the image markup, so replaceExternalLinks() won't touch them
2272 $s .= $prefix . $this->armorLinks(
2273 $this->makeImage( $nt, $text, $holders ) ) . $trail;
2274 } else {
2275 $s .= $prefix . $trail;
2276 }
2277 continue;
2278 }
2279
2280 if ( $ns == NS_CATEGORY ) {
2281 $s = rtrim( $s . "\n" ); # bug 87
2282
2283 if ( $wasblank ) {
2284 $sortkey = $this->getDefaultSort();
2285 } else {
2286 $sortkey = $text;
2287 }
2288 $sortkey = Sanitizer::decodeCharReferences( $sortkey );
2289 $sortkey = str_replace( "\n", '', $sortkey );
2290 $sortkey = $this->getConverterLanguage()->convertCategoryKey( $sortkey );
2291 $this->mOutput->addCategory( $nt->getDBkey(), $sortkey );
2292
2293 /**
2294 * Strip the whitespace Category links produce, see bug 87
2295 */
2296 $s .= trim( $prefix . $trail, "\n" ) == '' ? '' : $prefix . $trail;
2297
2298 continue;
2299 }
2300 }
2301
2302 # Self-link checking. For some languages, variants of the title are checked in
2303 # LinkHolderArray::doVariants() to allow batching the existence checks necessary
2304 # for linking to a different variant.
2305 if ( $ns != NS_SPECIAL && $nt->equals( $this->mTitle ) && !$nt->hasFragment() ) {
2306 $s .= $prefix . Linker::makeSelfLinkObj( $nt, $text, '', $trail );
2307 continue;
2308 }
2309
2310 # NS_MEDIA is a pseudo-namespace for linking directly to a file
2311 # @todo FIXME: Should do batch file existence checks, see comment below
2312 if ( $ns == NS_MEDIA ) {
2313 # Give extensions a chance to select the file revision for us
2314 $options = array();
2315 $descQuery = false;
2316 Hooks::run( 'BeforeParserFetchFileAndTitle',
2317 array( $this, $nt, &$options, &$descQuery ) );
2318 # Fetch and register the file (file title may be different via hooks)
2319 list( $file, $nt ) = $this->fetchFileAndTitle( $nt, $options );
2320 # Cloak with NOPARSE to avoid replacement in replaceExternalLinks
2321 $s .= $prefix . $this->armorLinks(
2322 Linker::makeMediaLinkFile( $nt, $file, $text ) ) . $trail;
2323 continue;
2324 }
2325
2326 # Some titles, such as valid special pages or files in foreign repos, should
2327 # be shown as bluelinks even though they're not included in the page table
2328 #
2329 # @todo FIXME: isAlwaysKnown() can be expensive for file links; we should really do
2330 # batch file existence checks for NS_FILE and NS_MEDIA
2331 if ( $iw == '' && $nt->isAlwaysKnown() ) {
2332 $this->mOutput->addLink( $nt );
2333 $s .= $this->makeKnownLinkHolder( $nt, $text, array(), $trail, $prefix );
2334 } else {
2335 # Links will be added to the output link list after checking
2336 $s .= $holders->makeHolder( $nt, $text, array(), $trail, $prefix );
2337 }
2338 }
2339 return $holders;
2340 }
2341
2342 /**
2343 * Render a forced-blue link inline; protect against double expansion of
2344 * URLs if we're in a mode that prepends full URL prefixes to internal links.
2345 * Since this little disaster has to split off the trail text to avoid
2346 * breaking URLs in the following text without breaking trails on the
2347 * wiki links, it's been made into a horrible function.
2348 *
2349 * @param Title $nt
2350 * @param string $text
2351 * @param array|string $query
2352 * @param string $trail
2353 * @param string $prefix
2354 * @return string HTML-wikitext mix oh yuck
2355 */
2356 public function makeKnownLinkHolder( $nt, $text = '', $query = array(), $trail = '', $prefix = '' ) {
2357 list( $inside, $trail ) = Linker::splitTrail( $trail );
2358
2359 if ( is_string( $query ) ) {
2360 $query = wfCgiToArray( $query );
2361 }
2362 if ( $text == '' ) {
2363 $text = htmlspecialchars( $nt->getPrefixedText() );
2364 }
2365
2366 $link = Linker::linkKnown( $nt, "$prefix$text$inside", array(), $query );
2367
2368 return $this->armorLinks( $link ) . $trail;
2369 }
2370
2371 /**
2372 * Insert a NOPARSE hacky thing into any inline links in a chunk that's
2373 * going to go through further parsing steps before inline URL expansion.
2374 *
2375 * Not needed quite as much as it used to be since free links are a bit
2376 * more sensible these days. But bracketed links are still an issue.
2377 *
2378 * @param string $text More-or-less HTML
2379 * @return string Less-or-more HTML with NOPARSE bits
2380 */
2381 public function armorLinks( $text ) {
2382 return preg_replace( '/\b((?i)' . $this->mUrlProtocols . ')/',
2383 self::MARKER_PREFIX . "NOPARSE$1", $text );
2384 }
2385
2386 /**
2387 * Return true if subpage links should be expanded on this page.
2388 * @return bool
2389 */
2390 public function areSubpagesAllowed() {
2391 # Some namespaces don't allow subpages
2392 return MWNamespace::hasSubpages( $this->mTitle->getNamespace() );
2393 }
2394
2395 /**
2396 * Handle link to subpage if necessary
2397 *
2398 * @param string $target The source of the link
2399 * @param string &$text The link text, modified as necessary
2400 * @return string The full name of the link
2401 * @private
2402 */
2403 public function maybeDoSubpageLink( $target, &$text ) {
2404 return Linker::normalizeSubpageLink( $this->mTitle, $target, $text );
2405 }
2406
2407 /**#@+
2408 * Used by doBlockLevels()
2409 * @private
2410 *
2411 * @return string
2412 */
2413 public function closeParagraph() {
2414 $result = '';
2415 if ( $this->mLastSection != '' ) {
2416 $result = '</' . $this->mLastSection . ">\n";
2417 }
2418 $this->mInPre = false;
2419 $this->mLastSection = '';
2420 return $result;
2421 }
2422
2423 /**
2424 * getCommon() returns the length of the longest common substring
2425 * of both arguments, starting at the beginning of both.
2426 * @private
2427 *
2428 * @param string $st1
2429 * @param string $st2
2430 *
2431 * @return int
2432 */
2433 public function getCommon( $st1, $st2 ) {
2434 $fl = strlen( $st1 );
2435 $shorter = strlen( $st2 );
2436 if ( $fl < $shorter ) {
2437 $shorter = $fl;
2438 }
2439
2440 for ( $i = 0; $i < $shorter; ++$i ) {
2441 if ( $st1[$i] != $st2[$i] ) {
2442 break;
2443 }
2444 }
2445 return $i;
2446 }
2447
2448 /**
2449 * These next three functions open, continue, and close the list
2450 * element appropriate to the prefix character passed into them.
2451 * @private
2452 *
2453 * @param string $char
2454 *
2455 * @return string
2456 */
2457 public function openList( $char ) {
2458 $result = $this->closeParagraph();
2459
2460 if ( '*' === $char ) {
2461 $result .= "<ul><li>";
2462 } elseif ( '#' === $char ) {
2463 $result .= "<ol><li>";
2464 } elseif ( ':' === $char ) {
2465 $result .= "<dl><dd>";
2466 } elseif ( ';' === $char ) {
2467 $result .= "<dl><dt>";
2468 $this->mDTopen = true;
2469 } else {
2470 $result = '<!-- ERR 1 -->';
2471 }
2472
2473 return $result;
2474 }
2475
2476 /**
2477 * TODO: document
2478 * @param string $char
2479 * @private
2480 *
2481 * @return string
2482 */
2483 public function nextItem( $char ) {
2484 if ( '*' === $char || '#' === $char ) {
2485 return "</li>\n<li>";
2486 } elseif ( ':' === $char || ';' === $char ) {
2487 $close = "</dd>\n";
2488 if ( $this->mDTopen ) {
2489 $close = "</dt>\n";
2490 }
2491 if ( ';' === $char ) {
2492 $this->mDTopen = true;
2493 return $close . '<dt>';
2494 } else {
2495 $this->mDTopen = false;
2496 return $close . '<dd>';
2497 }
2498 }
2499 return '<!-- ERR 2 -->';
2500 }
2501
2502 /**
2503 * @todo Document
2504 * @param string $char
2505 * @private
2506 *
2507 * @return string
2508 */
2509 public function closeList( $char ) {
2510 if ( '*' === $char ) {
2511 $text = "</li></ul>";
2512 } elseif ( '#' === $char ) {
2513 $text = "</li></ol>";
2514 } elseif ( ':' === $char ) {
2515 if ( $this->mDTopen ) {
2516 $this->mDTopen = false;
2517 $text = "</dt></dl>";
2518 } else {
2519 $text = "</dd></dl>";
2520 }
2521 } else {
2522 return '<!-- ERR 3 -->';
2523 }
2524 return $text;
2525 }
2526 /**#@-*/
2527
2528 /**
2529 * Make lists from lines starting with ':', '*', '#', etc. (DBL)
2530 *
2531 * @param string $text
2532 * @param bool $linestart Whether or not this is at the start of a line.
2533 * @private
2534 * @return string The lists rendered as HTML
2535 */
2536 public function doBlockLevels( $text, $linestart ) {
2537
2538 # Parsing through the text line by line. The main thing
2539 # happening here is handling of block-level elements p, pre,
2540 # and making lists from lines starting with * # : etc.
2541 #
2542 $textLines = StringUtils::explode( "\n", $text );
2543
2544 $lastPrefix = $output = '';
2545 $this->mDTopen = $inBlockElem = false;
2546 $prefixLength = 0;
2547 $paragraphStack = false;
2548 $inBlockquote = false;
2549
2550 foreach ( $textLines as $oLine ) {
2551 # Fix up $linestart
2552 if ( !$linestart ) {
2553 $output .= $oLine;
2554 $linestart = true;
2555 continue;
2556 }
2557 # * = ul
2558 # # = ol
2559 # ; = dt
2560 # : = dd
2561
2562 $lastPrefixLength = strlen( $lastPrefix );
2563 $preCloseMatch = preg_match( '/<\\/pre/i', $oLine );
2564 $preOpenMatch = preg_match( '/<pre/i', $oLine );
2565 # If not in a <pre> element, scan for and figure out what prefixes are there.
2566 if ( !$this->mInPre ) {
2567 # Multiple prefixes may abut each other for nested lists.
2568 $prefixLength = strspn( $oLine, '*#:;' );
2569 $prefix = substr( $oLine, 0, $prefixLength );
2570
2571 # eh?
2572 # ; and : are both from definition-lists, so they're equivalent
2573 # for the purposes of determining whether or not we need to open/close
2574 # elements.
2575 $prefix2 = str_replace( ';', ':', $prefix );
2576 $t = substr( $oLine, $prefixLength );
2577 $this->mInPre = (bool)$preOpenMatch;
2578 } else {
2579 # Don't interpret any other prefixes in preformatted text
2580 $prefixLength = 0;
2581 $prefix = $prefix2 = '';
2582 $t = $oLine;
2583 }
2584
2585 # List generation
2586 if ( $prefixLength && $lastPrefix === $prefix2 ) {
2587 # Same as the last item, so no need to deal with nesting or opening stuff
2588 $output .= $this->nextItem( substr( $prefix, -1 ) );
2589 $paragraphStack = false;
2590
2591 if ( substr( $prefix, -1 ) === ';' ) {
2592 # The one nasty exception: definition lists work like this:
2593 # ; title : definition text
2594 # So we check for : in the remainder text to split up the
2595 # title and definition, without b0rking links.
2596 $term = $t2 = '';
2597 if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
2598 $t = $t2;
2599 $output .= $term . $this->nextItem( ':' );
2600 }
2601 }
2602 } elseif ( $prefixLength || $lastPrefixLength ) {
2603 # We need to open or close prefixes, or both.
2604
2605 # Either open or close a level...
2606 $commonPrefixLength = $this->getCommon( $prefix, $lastPrefix );
2607 $paragraphStack = false;
2608
2609 # Close all the prefixes which aren't shared.
2610 while ( $commonPrefixLength < $lastPrefixLength ) {
2611 $output .= $this->closeList( $lastPrefix[$lastPrefixLength - 1] );
2612 --$lastPrefixLength;
2613 }
2614
2615 # Continue the current prefix if appropriate.
2616 if ( $prefixLength <= $commonPrefixLength && $commonPrefixLength > 0 ) {
2617 $output .= $this->nextItem( $prefix[$commonPrefixLength - 1] );
2618 }
2619
2620 # Open prefixes where appropriate.
2621 if ( $lastPrefix && $prefixLength > $commonPrefixLength ) {
2622 $output .= "\n";
2623 }
2624 while ( $prefixLength > $commonPrefixLength ) {
2625 $char = substr( $prefix, $commonPrefixLength, 1 );
2626 $output .= $this->openList( $char );
2627
2628 if ( ';' === $char ) {
2629 # @todo FIXME: This is dupe of code above
2630 if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
2631 $t = $t2;
2632 $output .= $term . $this->nextItem( ':' );
2633 }
2634 }
2635 ++$commonPrefixLength;
2636 }
2637 if ( !$prefixLength && $lastPrefix ) {
2638 $output .= "\n";
2639 }
2640 $lastPrefix = $prefix2;
2641 }
2642
2643 # If we have no prefixes, go to paragraph mode.
2644 if ( 0 == $prefixLength ) {
2645 # No prefix (not in list)--go to paragraph mode
2646 # XXX: use a stack for nestable elements like span, table and div
2647 $openmatch = preg_match(
2648 '/(?:<table|<h1|<h2|<h3|<h4|<h5|<h6|<pre|<tr|'
2649 . '<p|<ul|<ol|<dl|<li|<\\/tr|<\\/td|<\\/th)/iS',
2650 $t
2651 );
2652 $closematch = preg_match(
2653 '/(?:<\\/table|<\\/h1|<\\/h2|<\\/h3|<\\/h4|<\\/h5|<\\/h6|'
2654 . '<td|<th|<\\/?blockquote|<\\/?div|<hr|<\\/pre|<\\/p|<\\/mw:|'
2655 . self::MARKER_PREFIX
2656 . '-pre|<\\/li|<\\/ul|<\\/ol|<\\/dl|<\\/?center)/iS',
2657 $t
2658 );
2659
2660 if ( $openmatch || $closematch ) {
2661 $paragraphStack = false;
2662 # @todo bug 5718: paragraph closed
2663 $output .= $this->closeParagraph();
2664 if ( $preOpenMatch && !$preCloseMatch ) {
2665 $this->mInPre = true;
2666 }
2667 $bqOffset = 0;
2668 while ( preg_match( '/<(\\/?)blockquote[\s>]/i', $t, $bqMatch, PREG_OFFSET_CAPTURE, $bqOffset ) ) {
2669 $inBlockquote = !$bqMatch[1][0]; // is this a close tag?
2670 $bqOffset = $bqMatch[0][1] + strlen( $bqMatch[0][0] );
2671 }
2672 $inBlockElem = !$closematch;
2673 } elseif ( !$inBlockElem && !$this->mInPre ) {
2674 if ( ' ' == substr( $t, 0, 1 )
2675 && ( $this->mLastSection === 'pre' || trim( $t ) != '' )
2676 && !$inBlockquote
2677 ) {
2678 # pre
2679 if ( $this->mLastSection !== 'pre' ) {
2680 $paragraphStack = false;
2681 $output .= $this->closeParagraph() . '<pre>';
2682 $this->mLastSection = 'pre';
2683 }
2684 $t = substr( $t, 1 );
2685 } else {
2686 # paragraph
2687 if ( trim( $t ) === '' ) {
2688 if ( $paragraphStack ) {
2689 $output .= $paragraphStack . '<br />';
2690 $paragraphStack = false;
2691 $this->mLastSection = 'p';
2692 } else {
2693 if ( $this->mLastSection !== 'p' ) {
2694 $output .= $this->closeParagraph();
2695 $this->mLastSection = '';
2696 $paragraphStack = '<p>';
2697 } else {
2698 $paragraphStack = '</p><p>';
2699 }
2700 }
2701 } else {
2702 if ( $paragraphStack ) {
2703 $output .= $paragraphStack;
2704 $paragraphStack = false;
2705 $this->mLastSection = 'p';
2706 } elseif ( $this->mLastSection !== 'p' ) {
2707 $output .= $this->closeParagraph() . '<p>';
2708 $this->mLastSection = 'p';
2709 }
2710 }
2711 }
2712 }
2713 }
2714 # somewhere above we forget to get out of pre block (bug 785)
2715 if ( $preCloseMatch && $this->mInPre ) {
2716 $this->mInPre = false;
2717 }
2718 if ( $paragraphStack === false ) {
2719 $output .= $t;
2720 if ( $prefixLength === 0 ) {
2721 $output .= "\n";
2722 }
2723 }
2724 }
2725 while ( $prefixLength ) {
2726 $output .= $this->closeList( $prefix2[$prefixLength - 1] );
2727 --$prefixLength;
2728 if ( !$prefixLength ) {
2729 $output .= "\n";
2730 }
2731 }
2732 if ( $this->mLastSection != '' ) {
2733 $output .= '</' . $this->mLastSection . '>';
2734 $this->mLastSection = '';
2735 }
2736
2737 return $output;
2738 }
2739
2740 /**
2741 * Split up a string on ':', ignoring any occurrences inside tags
2742 * to prevent illegal overlapping.
2743 *
2744 * @param string $str The string to split
2745 * @param string &$before Set to everything before the ':'
2746 * @param string &$after Set to everything after the ':'
2747 * @throws MWException
2748 * @return string The position of the ':', or false if none found
2749 */
2750 public function findColonNoLinks( $str, &$before, &$after ) {
2751
2752 $pos = strpos( $str, ':' );
2753 if ( $pos === false ) {
2754 # Nothing to find!
2755 return false;
2756 }
2757
2758 $lt = strpos( $str, '<' );
2759 if ( $lt === false || $lt > $pos ) {
2760 # Easy; no tag nesting to worry about
2761 $before = substr( $str, 0, $pos );
2762 $after = substr( $str, $pos + 1 );
2763 return $pos;
2764 }
2765
2766 # Ugly state machine to walk through avoiding tags.
2767 $state = self::COLON_STATE_TEXT;
2768 $stack = 0;
2769 $len = strlen( $str );
2770 for ( $i = 0; $i < $len; $i++ ) {
2771 $c = $str[$i];
2772
2773 switch ( $state ) {
2774 # (Using the number is a performance hack for common cases)
2775 case 0: # self::COLON_STATE_TEXT:
2776 switch ( $c ) {
2777 case "<":
2778 # Could be either a <start> tag or an </end> tag
2779 $state = self::COLON_STATE_TAGSTART;
2780 break;
2781 case ":":
2782 if ( $stack == 0 ) {
2783 # We found it!
2784 $before = substr( $str, 0, $i );
2785 $after = substr( $str, $i + 1 );
2786 return $i;
2787 }
2788 # Embedded in a tag; don't break it.
2789 break;
2790 default:
2791 # Skip ahead looking for something interesting
2792 $colon = strpos( $str, ':', $i );
2793 if ( $colon === false ) {
2794 # Nothing else interesting
2795 return false;
2796 }
2797 $lt = strpos( $str, '<', $i );
2798 if ( $stack === 0 ) {
2799 if ( $lt === false || $colon < $lt ) {
2800 # We found it!
2801 $before = substr( $str, 0, $colon );
2802 $after = substr( $str, $colon + 1 );
2803 return $i;
2804 }
2805 }
2806 if ( $lt === false ) {
2807 # Nothing else interesting to find; abort!
2808 # We're nested, but there's no close tags left. Abort!
2809 break 2;
2810 }
2811 # Skip ahead to next tag start
2812 $i = $lt;
2813 $state = self::COLON_STATE_TAGSTART;
2814 }
2815 break;
2816 case 1: # self::COLON_STATE_TAG:
2817 # In a <tag>
2818 switch ( $c ) {
2819 case ">":
2820 $stack++;
2821 $state = self::COLON_STATE_TEXT;
2822 break;
2823 case "/":
2824 # Slash may be followed by >?
2825 $state = self::COLON_STATE_TAGSLASH;
2826 break;
2827 default:
2828 # ignore
2829 }
2830 break;
2831 case 2: # self::COLON_STATE_TAGSTART:
2832 switch ( $c ) {
2833 case "/":
2834 $state = self::COLON_STATE_CLOSETAG;
2835 break;
2836 case "!":
2837 $state = self::COLON_STATE_COMMENT;
2838 break;
2839 case ">":
2840 # Illegal early close? This shouldn't happen D:
2841 $state = self::COLON_STATE_TEXT;
2842 break;
2843 default:
2844 $state = self::COLON_STATE_TAG;
2845 }
2846 break;
2847 case 3: # self::COLON_STATE_CLOSETAG:
2848 # In a </tag>
2849 if ( $c === ">" ) {
2850 $stack--;
2851 if ( $stack < 0 ) {
2852 wfDebug( __METHOD__ . ": Invalid input; too many close tags\n" );
2853 return false;
2854 }
2855 $state = self::COLON_STATE_TEXT;
2856 }
2857 break;
2858 case self::COLON_STATE_TAGSLASH:
2859 if ( $c === ">" ) {
2860 # Yes, a self-closed tag <blah/>
2861 $state = self::COLON_STATE_TEXT;
2862 } else {
2863 # Probably we're jumping the gun, and this is an attribute
2864 $state = self::COLON_STATE_TAG;
2865 }
2866 break;
2867 case 5: # self::COLON_STATE_COMMENT:
2868 if ( $c === "-" ) {
2869 $state = self::COLON_STATE_COMMENTDASH;
2870 }
2871 break;
2872 case self::COLON_STATE_COMMENTDASH:
2873 if ( $c === "-" ) {
2874 $state = self::COLON_STATE_COMMENTDASHDASH;
2875 } else {
2876 $state = self::COLON_STATE_COMMENT;
2877 }
2878 break;
2879 case self::COLON_STATE_COMMENTDASHDASH:
2880 if ( $c === ">" ) {
2881 $state = self::COLON_STATE_TEXT;
2882 } else {
2883 $state = self::COLON_STATE_COMMENT;
2884 }
2885 break;
2886 default:
2887 throw new MWException( "State machine error in " . __METHOD__ );
2888 }
2889 }
2890 if ( $stack > 0 ) {
2891 wfDebug( __METHOD__ . ": Invalid input; not enough close tags (stack $stack, state $state)\n" );
2892 return false;
2893 }
2894 return false;
2895 }
2896
2897 /**
2898 * Return value of a magic variable (like PAGENAME)
2899 *
2900 * @private
2901 *
2902 * @param int $index
2903 * @param bool|PPFrame $frame
2904 *
2905 * @throws MWException
2906 * @return string
2907 */
2908 public function getVariableValue( $index, $frame = false ) {
2909 global $wgContLang, $wgSitename, $wgServer, $wgServerName;
2910 global $wgArticlePath, $wgScriptPath, $wgStylePath;
2911
2912 if ( is_null( $this->mTitle ) ) {
2913 // If no title set, bad things are going to happen
2914 // later. Title should always be set since this
2915 // should only be called in the middle of a parse
2916 // operation (but the unit-tests do funky stuff)
2917 throw new MWException( __METHOD__ . ' Should only be '
2918 . ' called while parsing (no title set)' );
2919 }
2920
2921 /**
2922 * Some of these require message or data lookups and can be
2923 * expensive to check many times.
2924 */
2925 if ( Hooks::run( 'ParserGetVariableValueVarCache', array( &$this, &$this->mVarCache ) ) ) {
2926 if ( isset( $this->mVarCache[$index] ) ) {
2927 return $this->mVarCache[$index];
2928 }
2929 }
2930
2931 $ts = wfTimestamp( TS_UNIX, $this->mOptions->getTimestamp() );
2932 Hooks::run( 'ParserGetVariableValueTs', array( &$this, &$ts ) );
2933
2934 $pageLang = $this->getFunctionLang();
2935
2936 switch ( $index ) {
2937 case '!':
2938 $value = '|';
2939 break;
2940 case 'currentmonth':
2941 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'm' ) );
2942 break;
2943 case 'currentmonth1':
2944 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'n' ) );
2945 break;
2946 case 'currentmonthname':
2947 $value = $pageLang->getMonthName( MWTimestamp::getInstance( $ts )->format( 'n' ) );
2948 break;
2949 case 'currentmonthnamegen':
2950 $value = $pageLang->getMonthNameGen( MWTimestamp::getInstance( $ts )->format( 'n' ) );
2951 break;
2952 case 'currentmonthabbrev':
2953 $value = $pageLang->getMonthAbbreviation( MWTimestamp::getInstance( $ts )->format( 'n' ) );
2954 break;
2955 case 'currentday':
2956 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'j' ) );
2957 break;
2958 case 'currentday2':
2959 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'd' ) );
2960 break;
2961 case 'localmonth':
2962 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'm' ) );
2963 break;
2964 case 'localmonth1':
2965 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'n' ) );
2966 break;
2967 case 'localmonthname':
2968 $value = $pageLang->getMonthName( MWTimestamp::getLocalInstance( $ts )->format( 'n' ) );
2969 break;
2970 case 'localmonthnamegen':
2971 $value = $pageLang->getMonthNameGen( MWTimestamp::getLocalInstance( $ts )->format( 'n' ) );
2972 break;
2973 case 'localmonthabbrev':
2974 $value = $pageLang->getMonthAbbreviation( MWTimestamp::getLocalInstance( $ts )->format( 'n' ) );
2975 break;
2976 case 'localday':
2977 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'j' ) );
2978 break;
2979 case 'localday2':
2980 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'd' ) );
2981 break;
2982 case 'pagename':
2983 $value = wfEscapeWikiText( $this->mTitle->getText() );
2984 break;
2985 case 'pagenamee':
2986 $value = wfEscapeWikiText( $this->mTitle->getPartialURL() );
2987 break;
2988 case 'fullpagename':
2989 $value = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
2990 break;
2991 case 'fullpagenamee':
2992 $value = wfEscapeWikiText( $this->mTitle->getPrefixedURL() );
2993 break;
2994 case 'subpagename':
2995 $value = wfEscapeWikiText( $this->mTitle->getSubpageText() );
2996 break;
2997 case 'subpagenamee':
2998 $value = wfEscapeWikiText( $this->mTitle->getSubpageUrlForm() );
2999 break;
3000 case 'rootpagename':
3001 $value = wfEscapeWikiText( $this->mTitle->getRootText() );
3002 break;
3003 case 'rootpagenamee':
3004 $value = wfEscapeWikiText( wfUrlEncode( str_replace(
3005 ' ',
3006 '_',
3007 $this->mTitle->getRootText()
3008 ) ) );
3009 break;
3010 case 'basepagename':
3011 $value = wfEscapeWikiText( $this->mTitle->getBaseText() );
3012 break;
3013 case 'basepagenamee':
3014 $value = wfEscapeWikiText( wfUrlEncode( str_replace(
3015 ' ',
3016 '_',
3017 $this->mTitle->getBaseText()
3018 ) ) );
3019 break;
3020 case 'talkpagename':
3021 if ( $this->mTitle->canTalk() ) {
3022 $talkPage = $this->mTitle->getTalkPage();
3023 $value = wfEscapeWikiText( $talkPage->getPrefixedText() );
3024 } else {
3025 $value = '';
3026 }
3027 break;
3028 case 'talkpagenamee':
3029 if ( $this->mTitle->canTalk() ) {
3030 $talkPage = $this->mTitle->getTalkPage();
3031 $value = wfEscapeWikiText( $talkPage->getPrefixedURL() );
3032 } else {
3033 $value = '';
3034 }
3035 break;
3036 case 'subjectpagename':
3037 $subjPage = $this->mTitle->getSubjectPage();
3038 $value = wfEscapeWikiText( $subjPage->getPrefixedText() );
3039 break;
3040 case 'subjectpagenamee':
3041 $subjPage = $this->mTitle->getSubjectPage();
3042 $value = wfEscapeWikiText( $subjPage->getPrefixedURL() );
3043 break;
3044 case 'pageid': // requested in bug 23427
3045 $pageid = $this->getTitle()->getArticleID();
3046 if ( $pageid == 0 ) {
3047 # 0 means the page doesn't exist in the database,
3048 # which means the user is previewing a new page.
3049 # The vary-revision flag must be set, because the magic word
3050 # will have a different value once the page is saved.
3051 $this->mOutput->setFlag( 'vary-revision' );
3052 wfDebug( __METHOD__ . ": {{PAGEID}} used in a new page, setting vary-revision...\n" );
3053 }
3054 $value = $pageid ? $pageid : null;
3055 break;
3056 case 'revisionid':
3057 # Let the edit saving system know we should parse the page
3058 # *after* a revision ID has been assigned.
3059 $this->mOutput->setFlag( 'vary-revision' );
3060 wfDebug( __METHOD__ . ": {{REVISIONID}} used, setting vary-revision...\n" );
3061 $value = $this->mRevisionId;
3062 break;
3063 case 'revisionday':
3064 # Let the edit saving system know we should parse the page
3065 # *after* a revision ID has been assigned. This is for null edits.
3066 $this->mOutput->setFlag( 'vary-revision' );
3067 wfDebug( __METHOD__ . ": {{REVISIONDAY}} used, setting vary-revision...\n" );
3068 $value = intval( substr( $this->getRevisionTimestamp(), 6, 2 ) );
3069 break;
3070 case 'revisionday2':
3071 # Let the edit saving system know we should parse the page
3072 # *after* a revision ID has been assigned. This is for null edits.
3073 $this->mOutput->setFlag( 'vary-revision' );
3074 wfDebug( __METHOD__ . ": {{REVISIONDAY2}} used, setting vary-revision...\n" );
3075 $value = substr( $this->getRevisionTimestamp(), 6, 2 );
3076 break;
3077 case 'revisionmonth':
3078 # Let the edit saving system know we should parse the page
3079 # *after* a revision ID has been assigned. This is for null edits.
3080 $this->mOutput->setFlag( 'vary-revision' );
3081 wfDebug( __METHOD__ . ": {{REVISIONMONTH}} used, setting vary-revision...\n" );
3082 $value = substr( $this->getRevisionTimestamp(), 4, 2 );
3083 break;
3084 case 'revisionmonth1':
3085 # Let the edit saving system know we should parse the page
3086 # *after* a revision ID has been assigned. This is for null edits.
3087 $this->mOutput->setFlag( 'vary-revision' );
3088 wfDebug( __METHOD__ . ": {{REVISIONMONTH1}} used, setting vary-revision...\n" );
3089 $value = intval( substr( $this->getRevisionTimestamp(), 4, 2 ) );
3090 break;
3091 case 'revisionyear':
3092 # Let the edit saving system know we should parse the page
3093 # *after* a revision ID has been assigned. This is for null edits.
3094 $this->mOutput->setFlag( 'vary-revision' );
3095 wfDebug( __METHOD__ . ": {{REVISIONYEAR}} used, setting vary-revision...\n" );
3096 $value = substr( $this->getRevisionTimestamp(), 0, 4 );
3097 break;
3098 case 'revisiontimestamp':
3099 # Let the edit saving system know we should parse the page
3100 # *after* a revision ID has been assigned. This is for null edits.
3101 $this->mOutput->setFlag( 'vary-revision' );
3102 wfDebug( __METHOD__ . ": {{REVISIONTIMESTAMP}} used, setting vary-revision...\n" );
3103 $value = $this->getRevisionTimestamp();
3104 break;
3105 case 'revisionuser':
3106 # Let the edit saving system know we should parse the page
3107 # *after* a revision ID has been assigned. This is for null edits.
3108 $this->mOutput->setFlag( 'vary-revision' );
3109 wfDebug( __METHOD__ . ": {{REVISIONUSER}} used, setting vary-revision...\n" );
3110 $value = $this->getRevisionUser();
3111 break;
3112 case 'revisionsize':
3113 # Let the edit saving system know we should parse the page
3114 # *after* a revision ID has been assigned. This is for null edits.
3115 $this->mOutput->setFlag( 'vary-revision' );
3116 wfDebug( __METHOD__ . ": {{REVISIONSIZE}} used, setting vary-revision...\n" );
3117 $value = $this->getRevisionSize();
3118 break;
3119 case 'namespace':
3120 $value = str_replace( '_', ' ', $wgContLang->getNsText( $this->mTitle->getNamespace() ) );
3121 break;
3122 case 'namespacee':
3123 $value = wfUrlencode( $wgContLang->getNsText( $this->mTitle->getNamespace() ) );
3124 break;
3125 case 'namespacenumber':
3126 $value = $this->mTitle->getNamespace();
3127 break;
3128 case 'talkspace':
3129 $value = $this->mTitle->canTalk()
3130 ? str_replace( '_', ' ', $this->mTitle->getTalkNsText() )
3131 : '';
3132 break;
3133 case 'talkspacee':
3134 $value = $this->mTitle->canTalk() ? wfUrlencode( $this->mTitle->getTalkNsText() ) : '';
3135 break;
3136 case 'subjectspace':
3137 $value = str_replace( '_', ' ', $this->mTitle->getSubjectNsText() );
3138 break;
3139 case 'subjectspacee':
3140 $value = ( wfUrlencode( $this->mTitle->getSubjectNsText() ) );
3141 break;
3142 case 'currentdayname':
3143 $value = $pageLang->getWeekdayName( (int)MWTimestamp::getInstance( $ts )->format( 'w' ) + 1 );
3144 break;
3145 case 'currentyear':
3146 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'Y' ), true );
3147 break;
3148 case 'currenttime':
3149 $value = $pageLang->time( wfTimestamp( TS_MW, $ts ), false, false );
3150 break;
3151 case 'currenthour':
3152 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'H' ), true );
3153 break;
3154 case 'currentweek':
3155 # @bug 4594 PHP5 has it zero padded, PHP4 does not, cast to
3156 # int to remove the padding
3157 $value = $pageLang->formatNum( (int)MWTimestamp::getInstance( $ts )->format( 'W' ) );
3158 break;
3159 case 'currentdow':
3160 $value = $pageLang->formatNum( MWTimestamp::getInstance( $ts )->format( 'w' ) );
3161 break;
3162 case 'localdayname':
3163 $value = $pageLang->getWeekdayName(
3164 (int)MWTimestamp::getLocalInstance( $ts )->format( 'w' ) + 1
3165 );
3166 break;
3167 case 'localyear':
3168 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'Y' ), true );
3169 break;
3170 case 'localtime':
3171 $value = $pageLang->time(
3172 MWTimestamp::getLocalInstance( $ts )->format( 'YmdHis' ),
3173 false,
3174 false
3175 );
3176 break;
3177 case 'localhour':
3178 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'H' ), true );
3179 break;
3180 case 'localweek':
3181 # @bug 4594 PHP5 has it zero padded, PHP4 does not, cast to
3182 # int to remove the padding
3183 $value = $pageLang->formatNum( (int)MWTimestamp::getLocalInstance( $ts )->format( 'W' ) );
3184 break;
3185 case 'localdow':
3186 $value = $pageLang->formatNum( MWTimestamp::getLocalInstance( $ts )->format( 'w' ) );
3187 break;
3188 case 'numberofarticles':
3189 $value = $pageLang->formatNum( SiteStats::articles() );
3190 break;
3191 case 'numberoffiles':
3192 $value = $pageLang->formatNum( SiteStats::images() );
3193 break;
3194 case 'numberofusers':
3195 $value = $pageLang->formatNum( SiteStats::users() );
3196 break;
3197 case 'numberofactiveusers':
3198 $value = $pageLang->formatNum( SiteStats::activeUsers() );
3199 break;
3200 case 'numberofpages':
3201 $value = $pageLang->formatNum( SiteStats::pages() );
3202 break;
3203 case 'numberofadmins':
3204 $value = $pageLang->formatNum( SiteStats::numberingroup( 'sysop' ) );
3205 break;
3206 case 'numberofedits':
3207 $value = $pageLang->formatNum( SiteStats::edits() );
3208 break;
3209 case 'currenttimestamp':
3210 $value = wfTimestamp( TS_MW, $ts );
3211 break;
3212 case 'localtimestamp':
3213 $value = MWTimestamp::getLocalInstance( $ts )->format( 'YmdHis' );
3214 break;
3215 case 'currentversion':
3216 $value = SpecialVersion::getVersion();
3217 break;
3218 case 'articlepath':
3219 return $wgArticlePath;
3220 case 'sitename':
3221 return $wgSitename;
3222 case 'server':
3223 return $wgServer;
3224 case 'servername':
3225 return $wgServerName;
3226 case 'scriptpath':
3227 return $wgScriptPath;
3228 case 'stylepath':
3229 return $wgStylePath;
3230 case 'directionmark':
3231 return $pageLang->getDirMark();
3232 case 'contentlanguage':
3233 global $wgLanguageCode;
3234 return $wgLanguageCode;
3235 case 'cascadingsources':
3236 $value = CoreParserFunctions::cascadingsources( $this );
3237 break;
3238 default:
3239 $ret = null;
3240 Hooks::run(
3241 'ParserGetVariableValueSwitch',
3242 array( &$this, &$this->mVarCache, &$index, &$ret, &$frame )
3243 );
3244
3245 return $ret;
3246 }
3247
3248 if ( $index ) {
3249 $this->mVarCache[$index] = $value;
3250 }
3251
3252 return $value;
3253 }
3254
3255 /**
3256 * initialise the magic variables (like CURRENTMONTHNAME) and substitution modifiers
3257 *
3258 * @private
3259 */
3260 public function initialiseVariables() {
3261 $variableIDs = MagicWord::getVariableIDs();
3262 $substIDs = MagicWord::getSubstIDs();
3263
3264 $this->mVariables = new MagicWordArray( $variableIDs );
3265 $this->mSubstWords = new MagicWordArray( $substIDs );
3266 }
3267
3268 /**
3269 * Preprocess some wikitext and return the document tree.
3270 * This is the ghost of replace_variables().
3271 *
3272 * @param string $text The text to parse
3273 * @param int $flags Bitwise combination of:
3274 * - self::PTD_FOR_INCLUSION: Handle "<noinclude>" and "<includeonly>" as if the text is being
3275 * included. Default is to assume a direct page view.
3276 *
3277 * The generated DOM tree must depend only on the input text and the flags.
3278 * The DOM tree must be the same in OT_HTML and OT_WIKI mode, to avoid a regression of bug 4899.
3279 *
3280 * Any flag added to the $flags parameter here, or any other parameter liable to cause a
3281 * change in the DOM tree for a given text, must be passed through the section identifier
3282 * in the section edit link and thus back to extractSections().
3283 *
3284 * The output of this function is currently only cached in process memory, but a persistent
3285 * cache may be implemented at a later date which takes further advantage of these strict
3286 * dependency requirements.
3287 *
3288 * @return PPNode
3289 */
3290 public function preprocessToDom( $text, $flags = 0 ) {
3291 $dom = $this->getPreprocessor()->preprocessToObj( $text, $flags );
3292 return $dom;
3293 }
3294
3295 /**
3296 * Return a three-element array: leading whitespace, string contents, trailing whitespace
3297 *
3298 * @param string $s
3299 *
3300 * @return array
3301 */
3302 public static function splitWhitespace( $s ) {
3303 $ltrimmed = ltrim( $s );
3304 $w1 = substr( $s, 0, strlen( $s ) - strlen( $ltrimmed ) );
3305 $trimmed = rtrim( $ltrimmed );
3306 $diff = strlen( $ltrimmed ) - strlen( $trimmed );
3307 if ( $diff > 0 ) {
3308 $w2 = substr( $ltrimmed, -$diff );
3309 } else {
3310 $w2 = '';
3311 }
3312 return array( $w1, $trimmed, $w2 );
3313 }
3314
3315 /**
3316 * Replace magic variables, templates, and template arguments
3317 * with the appropriate text. Templates are substituted recursively,
3318 * taking care to avoid infinite loops.
3319 *
3320 * Note that the substitution depends on value of $mOutputType:
3321 * self::OT_WIKI: only {{subst:}} templates
3322 * self::OT_PREPROCESS: templates but not extension tags
3323 * self::OT_HTML: all templates and extension tags
3324 *
3325 * @param string $text The text to transform
3326 * @param bool|PPFrame $frame Object describing the arguments passed to the
3327 * template. Arguments may also be provided as an associative array, as
3328 * was the usual case before MW1.12. Providing arguments this way may be
3329 * useful for extensions wishing to perform variable replacement
3330 * explicitly.
3331 * @param bool $argsOnly Only do argument (triple-brace) expansion, not
3332 * double-brace expansion.
3333 * @return string
3334 */
3335 public function replaceVariables( $text, $frame = false, $argsOnly = false ) {
3336 # Is there any text? Also, Prevent too big inclusions!
3337 $textSize = strlen( $text );
3338 if ( $textSize < 1 || $textSize > $this->mOptions->getMaxIncludeSize() ) {
3339 return $text;
3340 }
3341
3342 if ( $frame === false ) {
3343 $frame = $this->getPreprocessor()->newFrame();
3344 } elseif ( !( $frame instanceof PPFrame ) ) {
3345 wfDebug( __METHOD__ . " called using plain parameters instead of "
3346 . "a PPFrame instance. Creating custom frame.\n" );
3347 $frame = $this->getPreprocessor()->newCustomFrame( $frame );
3348 }
3349
3350 $dom = $this->preprocessToDom( $text );
3351 $flags = $argsOnly ? PPFrame::NO_TEMPLATES : 0;
3352 $text = $frame->expand( $dom, $flags );
3353
3354 return $text;
3355 }
3356
3357 /**
3358 * Clean up argument array - refactored in 1.9 so parserfunctions can use it, too.
3359 *
3360 * @param array $args
3361 *
3362 * @return array
3363 */
3364 public static function createAssocArgs( $args ) {
3365 $assocArgs = array();
3366 $index = 1;
3367 foreach ( $args as $arg ) {
3368 $eqpos = strpos( $arg, '=' );
3369 if ( $eqpos === false ) {
3370 $assocArgs[$index++] = $arg;
3371 } else {
3372 $name = trim( substr( $arg, 0, $eqpos ) );
3373 $value = trim( substr( $arg, $eqpos + 1 ) );
3374 if ( $value === false ) {
3375 $value = '';
3376 }
3377 if ( $name !== false ) {
3378 $assocArgs[$name] = $value;
3379 }
3380 }
3381 }
3382
3383 return $assocArgs;
3384 }
3385
3386 /**
3387 * Warn the user when a parser limitation is reached
3388 * Will warn at most once the user per limitation type
3389 *
3390 * The results are shown during preview and run through the Parser (See EditPage.php)
3391 *
3392 * @param string $limitationType Should be one of:
3393 * 'expensive-parserfunction' (corresponding messages:
3394 * 'expensive-parserfunction-warning',
3395 * 'expensive-parserfunction-category')
3396 * 'post-expand-template-argument' (corresponding messages:
3397 * 'post-expand-template-argument-warning',
3398 * 'post-expand-template-argument-category')
3399 * 'post-expand-template-inclusion' (corresponding messages:
3400 * 'post-expand-template-inclusion-warning',
3401 * 'post-expand-template-inclusion-category')
3402 * 'node-count-exceeded' (corresponding messages:
3403 * 'node-count-exceeded-warning',
3404 * 'node-count-exceeded-category')
3405 * 'expansion-depth-exceeded' (corresponding messages:
3406 * 'expansion-depth-exceeded-warning',
3407 * 'expansion-depth-exceeded-category')
3408 * @param string|int|null $current Current value
3409 * @param string|int|null $max Maximum allowed, when an explicit limit has been
3410 * exceeded, provide the values (optional)
3411 */
3412 public function limitationWarn( $limitationType, $current = '', $max = '' ) {
3413 # does no harm if $current and $max are present but are unnecessary for the message
3414 # Not doing ->inLanguage( $this->mOptions->getUserLangObj() ), since this is shown
3415 # only during preview, and that would split the parser cache unnecessarily.
3416 $warning = wfMessage( "$limitationType-warning" )->numParams( $current, $max )
3417 ->text();
3418 $this->mOutput->addWarning( $warning );
3419 $this->addTrackingCategory( "$limitationType-category" );
3420 }
3421
3422 /**
3423 * Return the text of a template, after recursively
3424 * replacing any variables or templates within the template.
3425 *
3426 * @param array $piece The parts of the template
3427 * $piece['title']: the title, i.e. the part before the |
3428 * $piece['parts']: the parameter array
3429 * $piece['lineStart']: whether the brace was at the start of a line
3430 * @param PPFrame $frame The current frame, contains template arguments
3431 * @throws Exception
3432 * @return string The text of the template
3433 */
3434 public function braceSubstitution( $piece, $frame ) {
3435
3436 // Flags
3437
3438 // $text has been filled
3439 $found = false;
3440 // wiki markup in $text should be escaped
3441 $nowiki = false;
3442 // $text is HTML, armour it against wikitext transformation
3443 $isHTML = false;
3444 // Force interwiki transclusion to be done in raw mode not rendered
3445 $forceRawInterwiki = false;
3446 // $text is a DOM node needing expansion in a child frame
3447 $isChildObj = false;
3448 // $text is a DOM node needing expansion in the current frame
3449 $isLocalObj = false;
3450
3451 # Title object, where $text came from
3452 $title = false;
3453
3454 # $part1 is the bit before the first |, and must contain only title characters.
3455 # Various prefixes will be stripped from it later.
3456 $titleWithSpaces = $frame->expand( $piece['title'] );
3457 $part1 = trim( $titleWithSpaces );
3458 $titleText = false;
3459
3460 # Original title text preserved for various purposes
3461 $originalTitle = $part1;
3462
3463 # $args is a list of argument nodes, starting from index 0, not including $part1
3464 # @todo FIXME: If piece['parts'] is null then the call to getLength()
3465 # below won't work b/c this $args isn't an object
3466 $args = ( null == $piece['parts'] ) ? array() : $piece['parts'];
3467
3468 $profileSection = null; // profile templates
3469
3470 # SUBST
3471 if ( !$found ) {
3472 $substMatch = $this->mSubstWords->matchStartAndRemove( $part1 );
3473
3474 # Possibilities for substMatch: "subst", "safesubst" or FALSE
3475 # Decide whether to expand template or keep wikitext as-is.
3476 if ( $this->ot['wiki'] ) {
3477 if ( $substMatch === false ) {
3478 $literal = true; # literal when in PST with no prefix
3479 } else {
3480 $literal = false; # expand when in PST with subst: or safesubst:
3481 }
3482 } else {
3483 if ( $substMatch == 'subst' ) {
3484 $literal = true; # literal when not in PST with plain subst:
3485 } else {
3486 $literal = false; # expand when not in PST with safesubst: or no prefix
3487 }
3488 }
3489 if ( $literal ) {
3490 $text = $frame->virtualBracketedImplode( '{{', '|', '}}', $titleWithSpaces, $args );
3491 $isLocalObj = true;
3492 $found = true;
3493 }
3494 }
3495
3496 # Variables
3497 if ( !$found && $args->getLength() == 0 ) {
3498 $id = $this->mVariables->matchStartToEnd( $part1 );
3499 if ( $id !== false ) {
3500 $text = $this->getVariableValue( $id, $frame );
3501 if ( MagicWord::getCacheTTL( $id ) > -1 ) {
3502 $this->mOutput->updateCacheExpiry( MagicWord::getCacheTTL( $id ) );
3503 }
3504 $found = true;
3505 }
3506 }
3507
3508 # MSG, MSGNW and RAW
3509 if ( !$found ) {
3510 # Check for MSGNW:
3511 $mwMsgnw = MagicWord::get( 'msgnw' );
3512 if ( $mwMsgnw->matchStartAndRemove( $part1 ) ) {
3513 $nowiki = true;
3514 } else {
3515 # Remove obsolete MSG:
3516 $mwMsg = MagicWord::get( 'msg' );
3517 $mwMsg->matchStartAndRemove( $part1 );
3518 }
3519
3520 # Check for RAW:
3521 $mwRaw = MagicWord::get( 'raw' );
3522 if ( $mwRaw->matchStartAndRemove( $part1 ) ) {
3523 $forceRawInterwiki = true;
3524 }
3525 }
3526
3527 # Parser functions
3528 if ( !$found ) {
3529 $colonPos = strpos( $part1, ':' );
3530 if ( $colonPos !== false ) {
3531 $func = substr( $part1, 0, $colonPos );
3532 $funcArgs = array( trim( substr( $part1, $colonPos + 1 ) ) );
3533 for ( $i = 0; $i < $args->getLength(); $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 = array();
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 array( '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 = array( 'object' => $text );
3725 } else {
3726 $ret = array( '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 = array() ) {
3752 global $wgContLang;
3753
3754
3755 # Case sensitive functions
3756 if ( isset( $this->mFunctionSynonyms[1][$function] ) ) {
3757 $function = $this->mFunctionSynonyms[1][$function];
3758 } else {
3759 # Case insensitive functions
3760 $function = $wgContLang->lc( $function );
3761 if ( isset( $this->mFunctionSynonyms[0][$function] ) ) {
3762 $function = $this->mFunctionSynonyms[0][$function];
3763 } else {
3764 return array( 'found' => false );
3765 }
3766 }
3767
3768 list( $callback, $flags ) = $this->mFunctionHooks[$function];
3769
3770 # Workaround for PHP bug 35229 and similar
3771 if ( !is_callable( $callback ) ) {
3772 throw new MWException( "Tag hook for $function is not callable\n" );
3773 }
3774
3775 $allArgs = array( &$this );
3776 if ( $flags & self::SFH_OBJECT_ARGS ) {
3777 # Convert arguments to PPNodes and collect for appending to $allArgs
3778 $funcArgs = array();
3779 foreach ( $args as $k => $v ) {
3780 if ( $v instanceof PPNode || $k === 0 ) {
3781 $funcArgs[] = $v;
3782 } else {
3783 $funcArgs[] = $this->mPreprocessor->newPartNodeArray( array( $k => $v ) )->item( 0 );
3784 }
3785 }
3786
3787 # Add a frame parameter, and pass the arguments as an array
3788 $allArgs[] = $frame;
3789 $allArgs[] = $funcArgs;
3790 } else {
3791 # Convert arguments to plain text and append to $allArgs
3792 foreach ( $args as $k => $v ) {
3793 if ( $v instanceof PPNode ) {
3794 $allArgs[] = trim( $frame->expand( $v ) );
3795 } elseif ( is_int( $k ) && $k >= 0 ) {
3796 $allArgs[] = trim( $v );
3797 } else {
3798 $allArgs[] = trim( "$k=$v" );
3799 }
3800 }
3801 }
3802
3803 $result = call_user_func_array( $callback, $allArgs );
3804
3805 # The interface for function hooks allows them to return a wikitext
3806 # string or an array containing the string and any flags. This mungs
3807 # things around to match what this method should return.
3808 if ( !is_array( $result ) ) {
3809 $result = array(
3810 'found' => true,
3811 'text' => $result,
3812 );
3813 } else {
3814 if ( isset( $result[0] ) && !isset( $result['text'] ) ) {
3815 $result['text'] = $result[0];
3816 }
3817 unset( $result[0] );
3818 $result += array(
3819 'found' => true,
3820 );
3821 }
3822
3823 $noparse = true;
3824 $preprocessFlags = 0;
3825 if ( isset( $result['noparse'] ) ) {
3826 $noparse = $result['noparse'];
3827 }
3828 if ( isset( $result['preprocessFlags'] ) ) {
3829 $preprocessFlags = $result['preprocessFlags'];
3830 }
3831
3832 if ( !$noparse ) {
3833 $result['text'] = $this->preprocessToDom( $result['text'], $preprocessFlags );
3834 $result['isChildObj'] = true;
3835 }
3836
3837 return $result;
3838 }
3839
3840 /**
3841 * Get the semi-parsed DOM representation of a template with a given title,
3842 * and its redirect destination title. Cached.
3843 *
3844 * @param Title $title
3845 *
3846 * @return array
3847 */
3848 public function getTemplateDom( $title ) {
3849 $cacheTitle = $title;
3850 $titleText = $title->getPrefixedDBkey();
3851
3852 if ( isset( $this->mTplRedirCache[$titleText] ) ) {
3853 list( $ns, $dbk ) = $this->mTplRedirCache[$titleText];
3854 $title = Title::makeTitle( $ns, $dbk );
3855 $titleText = $title->getPrefixedDBkey();
3856 }
3857 if ( isset( $this->mTplDomCache[$titleText] ) ) {
3858 return array( $this->mTplDomCache[$titleText], $title );
3859 }
3860
3861 # Cache miss, go to the database
3862 list( $text, $title ) = $this->fetchTemplateAndTitle( $title );
3863
3864 if ( $text === false ) {
3865 $this->mTplDomCache[$titleText] = false;
3866 return array( false, $title );
3867 }
3868
3869 $dom = $this->preprocessToDom( $text, self::PTD_FOR_INCLUSION );
3870 $this->mTplDomCache[$titleText] = $dom;
3871
3872 if ( !$title->equals( $cacheTitle ) ) {
3873 $this->mTplRedirCache[$cacheTitle->getPrefixedDBkey()] =
3874 array( $title->getNamespace(), $cdb = $title->getDBkey() );
3875 }
3876
3877 return array( $dom, $title );
3878 }
3879
3880 /**
3881 * Fetch the current revision of a given title. Note that the revision
3882 * (and even the title) may not exist in the database, so everything
3883 * contributing to the output of the parser should use this method
3884 * where possible, rather than getting the revisions themselves. This
3885 * method also caches its results, so using it benefits performance.
3886 *
3887 * @since 1.24
3888 * @param Title $title
3889 * @return Revision
3890 */
3891 public function fetchCurrentRevisionOfTitle( $title ) {
3892 $cacheKey = $title->getPrefixedDBkey();
3893 if ( !$this->currentRevisionCache ) {
3894 $this->currentRevisionCache = new MapCacheLRU( 100 );
3895 }
3896 if ( !$this->currentRevisionCache->has( $cacheKey ) ) {
3897 $this->currentRevisionCache->set( $cacheKey,
3898 // Defaults to Parser::statelessFetchRevision()
3899 call_user_func( $this->mOptions->getCurrentRevisionCallback(), $title, $this )
3900 );
3901 }
3902 return $this->currentRevisionCache->get( $cacheKey );
3903 }
3904
3905 /**
3906 * Wrapper around Revision::newFromTitle to allow passing additional parameters
3907 * without passing them on to it.
3908 *
3909 * @since 1.24
3910 * @param Title $title
3911 * @param Parser|bool $parser
3912 * @return Revision
3913 */
3914 public static function statelessFetchRevision( $title, $parser = false ) {
3915 return Revision::newFromTitle( $title );
3916 }
3917
3918 /**
3919 * Fetch the unparsed text of a template and register a reference to it.
3920 * @param Title $title
3921 * @return array ( string or false, Title )
3922 */
3923 public function fetchTemplateAndTitle( $title ) {
3924 // Defaults to Parser::statelessFetchTemplate()
3925 $templateCb = $this->mOptions->getTemplateCallback();
3926 $stuff = call_user_func( $templateCb, $title, $this );
3927 // We use U+007F DELETE to distinguish strip markers from regular text.
3928 $text = $stuff['text'];
3929 if ( is_string( $stuff['text'] ) ) {
3930 $text = strtr( $text, "\x7f", "?" );
3931 }
3932 $finalTitle = isset( $stuff['finalTitle'] ) ? $stuff['finalTitle'] : $title;
3933 if ( isset( $stuff['deps'] ) ) {
3934 foreach ( $stuff['deps'] as $dep ) {
3935 $this->mOutput->addTemplate( $dep['title'], $dep['page_id'], $dep['rev_id'] );
3936 if ( $dep['title']->equals( $this->getTitle() ) ) {
3937 // If we transclude ourselves, the final result
3938 // will change based on the new version of the page
3939 $this->mOutput->setFlag( 'vary-revision' );
3940 }
3941 }
3942 }
3943 return array( $text, $finalTitle );
3944 }
3945
3946 /**
3947 * Fetch the unparsed text of a template and register a reference to it.
3948 * @param Title $title
3949 * @return string|bool
3950 */
3951 public function fetchTemplate( $title ) {
3952 $rv = $this->fetchTemplateAndTitle( $title );
3953 return $rv[0];
3954 }
3955
3956 /**
3957 * Static function to get a template
3958 * Can be overridden via ParserOptions::setTemplateCallback().
3959 *
3960 * @param Title $title
3961 * @param bool|Parser $parser
3962 *
3963 * @return array
3964 */
3965 public static function statelessFetchTemplate( $title, $parser = false ) {
3966 $text = $skip = false;
3967 $finalTitle = $title;
3968 $deps = array();
3969
3970 # Loop to fetch the article, with up to 1 redirect
3971 for ( $i = 0; $i < 2 && is_object( $title ); $i++ ) {
3972 # Give extensions a chance to select the revision instead
3973 $id = false; # Assume current
3974 Hooks::run( 'BeforeParserFetchTemplateAndtitle',
3975 array( $parser, $title, &$skip, &$id ) );
3976
3977 if ( $skip ) {
3978 $text = false;
3979 $deps[] = array(
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[] = array(
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[] = array(
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 array(
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 = array() ) {
4054 $res = $this->fetchFileAndTitle( $title, $options );
4055 return $res[0];
4056 }
4057
4058 /**
4059 * Fetch a file and its title and register a reference to it.
4060 * If 'broken' is a key in $options then the file will appear as a broken thumbnail.
4061 * @param Title $title
4062 * @param array $options Array of options to RepoGroup::findFile
4063 * @return array ( File or false, Title of file )
4064 */
4065 public function fetchFileAndTitle( $title, $options = array() ) {
4066 $file = $this->fetchFileNoRegister( $title, $options );
4067
4068 $time = $file ? $file->getTimestamp() : false;
4069 $sha1 = $file ? $file->getSha1() : false;
4070 # Register the file as a dependency...
4071 $this->mOutput->addImage( $title->getDBkey(), $time, $sha1 );
4072 if ( $file && !$title->equals( $file->getTitle() ) ) {
4073 # Update fetched file title
4074 $title = $file->getTitle();
4075 $this->mOutput->addImage( $title->getDBkey(), $time, $sha1 );
4076 }
4077 return array( $file, $title );
4078 }
4079
4080 /**
4081 * Helper function for fetchFileAndTitle.
4082 *
4083 * Also useful if you need to fetch a file but not use it yet,
4084 * for example to get the file's handler.
4085 *
4086 * @param Title $title
4087 * @param array $options Array of options to RepoGroup::findFile
4088 * @return File|bool
4089 */
4090 protected function fetchFileNoRegister( $title, $options = array() ) {
4091 if ( isset( $options['broken'] ) ) {
4092 $file = false; // broken thumbnail forced by hook
4093 } elseif ( isset( $options['sha1'] ) ) { // get by (sha1,timestamp)
4094 $file = RepoGroup::singleton()->findFileFromKey( $options['sha1'], $options );
4095 } else { // get by (name,timestamp)
4096 $file = wfFindFile( $title, $options );
4097 }
4098 return $file;
4099 }
4100
4101 /**
4102 * Transclude an interwiki link.
4103 *
4104 * @param Title $title
4105 * @param string $action
4106 *
4107 * @return string
4108 */
4109 public function interwikiTransclude( $title, $action ) {
4110 global $wgEnableScaryTranscluding;
4111
4112 if ( !$wgEnableScaryTranscluding ) {
4113 return wfMessage( 'scarytranscludedisabled' )->inContentLanguage()->text();
4114 }
4115
4116 $url = $title->getFullURL( array( 'action' => $action ) );
4117
4118 if ( strlen( $url ) > 255 ) {
4119 return wfMessage( 'scarytranscludetoolong' )->inContentLanguage()->text();
4120 }
4121 return $this->fetchScaryTemplateMaybeFromCache( $url );
4122 }
4123
4124 /**
4125 * @param string $url
4126 * @return mixed|string
4127 */
4128 public function fetchScaryTemplateMaybeFromCache( $url ) {
4129 global $wgTranscludeCacheExpiry;
4130 $dbr = wfGetDB( DB_SLAVE );
4131 $tsCond = $dbr->timestamp( time() - $wgTranscludeCacheExpiry );
4132 $obj = $dbr->selectRow( 'transcache', array( 'tc_time', 'tc_contents' ),
4133 array( 'tc_url' => $url, "tc_time >= " . $dbr->addQuotes( $tsCond ) ) );
4134 if ( $obj ) {
4135 return $obj->tc_contents;
4136 }
4137
4138 $req = MWHttpRequest::factory( $url, array(), __METHOD__ );
4139 $status = $req->execute(); // Status object
4140 if ( $status->isOK() ) {
4141 $text = $req->getContent();
4142 } elseif ( $req->getStatus() != 200 ) {
4143 // Though we failed to fetch the content, this status is useless.
4144 return wfMessage( 'scarytranscludefailed-httpstatus' )
4145 ->params( $url, $req->getStatus() /* HTTP status */ )->inContentLanguage()->text();
4146 } else {
4147 return wfMessage( 'scarytranscludefailed', $url )->inContentLanguage()->text();
4148 }
4149
4150 $dbw = wfGetDB( DB_MASTER );
4151 $dbw->replace( 'transcache', array( 'tc_url' ), array(
4152 'tc_url' => $url,
4153 'tc_time' => $dbw->timestamp( time() ),
4154 'tc_contents' => $text
4155 ) );
4156 return $text;
4157 }
4158
4159 /**
4160 * Triple brace replacement -- used for template arguments
4161 * @private
4162 *
4163 * @param array $piece
4164 * @param PPFrame $frame
4165 *
4166 * @return array
4167 */
4168 public function argSubstitution( $piece, $frame ) {
4169
4170 $error = false;
4171 $parts = $piece['parts'];
4172 $nameWithSpaces = $frame->expand( $piece['title'] );
4173 $argName = trim( $nameWithSpaces );
4174 $object = false;
4175 $text = $frame->getArgument( $argName );
4176 if ( $text === false && $parts->getLength() > 0
4177 && ( $this->ot['html']
4178 || $this->ot['pre']
4179 || ( $this->ot['wiki'] && $frame->isTemplate() )
4180 )
4181 ) {
4182 # No match in frame, use the supplied default
4183 $object = $parts->item( 0 )->getChildren();
4184 }
4185 if ( !$this->incrementIncludeSize( 'arg', strlen( $text ) ) ) {
4186 $error = '<!-- WARNING: argument omitted, expansion size too large -->';
4187 $this->limitationWarn( 'post-expand-template-argument' );
4188 }
4189
4190 if ( $text === false && $object === false ) {
4191 # No match anywhere
4192 $object = $frame->virtualBracketedImplode( '{{{', '|', '}}}', $nameWithSpaces, $parts );
4193 }
4194 if ( $error !== false ) {
4195 $text .= $error;
4196 }
4197 if ( $object !== false ) {
4198 $ret = array( 'object' => $object );
4199 } else {
4200 $ret = array( 'text' => $text );
4201 }
4202
4203 return $ret;
4204 }
4205
4206 /**
4207 * Return the text to be used for a given extension tag.
4208 * This is the ghost of strip().
4209 *
4210 * @param array $params Associative array of parameters:
4211 * name PPNode for the tag name
4212 * attr PPNode for unparsed text where tag attributes are thought to be
4213 * attributes Optional associative array of parsed attributes
4214 * inner Contents of extension element
4215 * noClose Original text did not have a close tag
4216 * @param PPFrame $frame
4217 *
4218 * @throws MWException
4219 * @return string
4220 */
4221 public function extensionSubstitution( $params, $frame ) {
4222 $name = $frame->expand( $params['name'] );
4223 $attrText = !isset( $params['attr'] ) ? null : $frame->expand( $params['attr'] );
4224 $content = !isset( $params['inner'] ) ? null : $frame->expand( $params['inner'] );
4225 $marker = self::MARKER_PREFIX . "-$name-"
4226 . sprintf( '%08X', $this->mMarkerIndex++ ) . self::MARKER_SUFFIX;
4227
4228 $isFunctionTag = isset( $this->mFunctionTagHooks[strtolower( $name )] ) &&
4229 ( $this->ot['html'] || $this->ot['pre'] );
4230 if ( $isFunctionTag ) {
4231 $markerType = 'none';
4232 } else {
4233 $markerType = 'general';
4234 }
4235 if ( $this->ot['html'] || $isFunctionTag ) {
4236 $name = strtolower( $name );
4237 $attributes = Sanitizer::decodeTagAttributes( $attrText );
4238 if ( isset( $params['attributes'] ) ) {
4239 $attributes = $attributes + $params['attributes'];
4240 }
4241
4242 if ( isset( $this->mTagHooks[$name] ) ) {
4243 # Workaround for PHP bug 35229 and similar
4244 if ( !is_callable( $this->mTagHooks[$name] ) ) {
4245 throw new MWException( "Tag hook for $name is not callable\n" );
4246 }
4247 $output = call_user_func_array( $this->mTagHooks[$name],
4248 array( $content, $attributes, $this, $frame ) );
4249 } elseif ( isset( $this->mFunctionTagHooks[$name] ) ) {
4250 list( $callback, ) = $this->mFunctionTagHooks[$name];
4251 if ( !is_callable( $callback ) ) {
4252 throw new MWException( "Tag hook for $name is not callable\n" );
4253 }
4254
4255 $output = call_user_func_array( $callback, array( &$this, $frame, $content, $attributes ) );
4256 } else {
4257 $output = '<span class="error">Invalid tag extension name: ' .
4258 htmlspecialchars( $name ) . '</span>';
4259 }
4260
4261 if ( is_array( $output ) ) {
4262 # Extract flags to local scope (to override $markerType)
4263 $flags = $output;
4264 $output = $flags[0];
4265 unset( $flags[0] );
4266 extract( $flags );
4267 }
4268 } else {
4269 if ( is_null( $attrText ) ) {
4270 $attrText = '';
4271 }
4272 if ( isset( $params['attributes'] ) ) {
4273 foreach ( $params['attributes'] as $attrName => $attrValue ) {
4274 $attrText .= ' ' . htmlspecialchars( $attrName ) . '="' .
4275 htmlspecialchars( $attrValue ) . '"';
4276 }
4277 }
4278 if ( $content === null ) {
4279 $output = "<$name$attrText/>";
4280 } else {
4281 $close = is_null( $params['close'] ) ? '' : $frame->expand( $params['close'] );
4282 $output = "<$name$attrText>$content$close";
4283 }
4284 }
4285
4286 if ( $markerType === 'none' ) {
4287 return $output;
4288 } elseif ( $markerType === 'nowiki' ) {
4289 $this->mStripState->addNoWiki( $marker, $output );
4290 } elseif ( $markerType === 'general' ) {
4291 $this->mStripState->addGeneral( $marker, $output );
4292 } else {
4293 throw new MWException( __METHOD__ . ': invalid marker type' );
4294 }
4295 return $marker;
4296 }
4297
4298 /**
4299 * Increment an include size counter
4300 *
4301 * @param string $type The type of expansion
4302 * @param int $size The size of the text
4303 * @return bool False if this inclusion would take it over the maximum, true otherwise
4304 */
4305 public function incrementIncludeSize( $type, $size ) {
4306 if ( $this->mIncludeSizes[$type] + $size > $this->mOptions->getMaxIncludeSize() ) {
4307 return false;
4308 } else {
4309 $this->mIncludeSizes[$type] += $size;
4310 return true;
4311 }
4312 }
4313
4314 /**
4315 * Increment the expensive function count
4316 *
4317 * @return bool False if the limit has been exceeded
4318 */
4319 public function incrementExpensiveFunctionCount() {
4320 $this->mExpensiveFunctionCount++;
4321 return $this->mExpensiveFunctionCount <= $this->mOptions->getExpensiveParserFunctionLimit();
4322 }
4323
4324 /**
4325 * Strip double-underscore items like __NOGALLERY__ and __NOTOC__
4326 * Fills $this->mDoubleUnderscores, returns the modified text
4327 *
4328 * @param string $text
4329 *
4330 * @return string
4331 */
4332 public function doDoubleUnderscore( $text ) {
4333
4334 # The position of __TOC__ needs to be recorded
4335 $mw = MagicWord::get( 'toc' );
4336 if ( $mw->match( $text ) ) {
4337 $this->mShowToc = true;
4338 $this->mForceTocPosition = true;
4339
4340 # Set a placeholder. At the end we'll fill it in with the TOC.
4341 $text = $mw->replace( '<!--MWTOC-->', $text, 1 );
4342
4343 # Only keep the first one.
4344 $text = $mw->replace( '', $text );
4345 }
4346
4347 # Now match and remove the rest of them
4348 $mwa = MagicWord::getDoubleUnderscoreArray();
4349 $this->mDoubleUnderscores = $mwa->matchAndRemove( $text );
4350
4351 if ( isset( $this->mDoubleUnderscores['nogallery'] ) ) {
4352 $this->mOutput->mNoGallery = true;
4353 }
4354 if ( isset( $this->mDoubleUnderscores['notoc'] ) && !$this->mForceTocPosition ) {
4355 $this->mShowToc = false;
4356 }
4357 if ( isset( $this->mDoubleUnderscores['hiddencat'] )
4358 && $this->mTitle->getNamespace() == NS_CATEGORY
4359 ) {
4360 $this->addTrackingCategory( 'hidden-category-category' );
4361 }
4362 # (bug 8068) Allow control over whether robots index a page.
4363 #
4364 # @todo FIXME: Bug 14899: __INDEX__ always overrides __NOINDEX__ here! This
4365 # is not desirable, the last one on the page should win.
4366 if ( isset( $this->mDoubleUnderscores['noindex'] ) && $this->mTitle->canUseNoindex() ) {
4367 $this->mOutput->setIndexPolicy( 'noindex' );
4368 $this->addTrackingCategory( 'noindex-category' );
4369 }
4370 if ( isset( $this->mDoubleUnderscores['index'] ) && $this->mTitle->canUseNoindex() ) {
4371 $this->mOutput->setIndexPolicy( 'index' );
4372 $this->addTrackingCategory( 'index-category' );
4373 }
4374
4375 # Cache all double underscores in the database
4376 foreach ( $this->mDoubleUnderscores as $key => $val ) {
4377 $this->mOutput->setProperty( $key, '' );
4378 }
4379
4380 return $text;
4381 }
4382
4383 /**
4384 * @see ParserOutput::addTrackingCategory()
4385 * @param string $msg Message key
4386 * @return bool Whether the addition was successful
4387 */
4388 public function addTrackingCategory( $msg ) {
4389 return $this->mOutput->addTrackingCategory( $msg, $this->mTitle );
4390 }
4391
4392 /**
4393 * This function accomplishes several tasks:
4394 * 1) Auto-number headings if that option is enabled
4395 * 2) Add an [edit] link to sections for users who have enabled the option and can edit the page
4396 * 3) Add a Table of contents on the top for users who have enabled the option
4397 * 4) Auto-anchor headings
4398 *
4399 * It loops through all headlines, collects the necessary data, then splits up the
4400 * string and re-inserts the newly formatted headlines.
4401 *
4402 * @param string $text
4403 * @param string $origText Original, untouched wikitext
4404 * @param bool $isMain
4405 * @return mixed|string
4406 * @private
4407 */
4408 public function formatHeadings( $text, $origText, $isMain = true ) {
4409 global $wgMaxTocLevel, $wgExperimentalHtmlIds;
4410
4411 # Inhibit editsection links if requested in the page
4412 if ( isset( $this->mDoubleUnderscores['noeditsection'] ) ) {
4413 $maybeShowEditLink = $showEditLink = false;
4414 } else {
4415 $maybeShowEditLink = true; /* Actual presence will depend on ParserOptions option */
4416 $showEditLink = $this->mOptions->getEditSection();
4417 }
4418 if ( $showEditLink ) {
4419 $this->mOutput->setEditSectionTokens( true );
4420 }
4421
4422 # Get all headlines for numbering them and adding funky stuff like [edit]
4423 # links - this is for later, but we need the number of headlines right now
4424 $matches = array();
4425 $numMatches = preg_match_all(
4426 '/<H(?P<level>[1-6])(?P<attrib>.*?>)\s*(?P<header>[\s\S]*?)\s*<\/H[1-6] *>/i',
4427 $text,
4428 $matches
4429 );
4430
4431 # if there are fewer than 4 headlines in the article, do not show TOC
4432 # unless it's been explicitly enabled.
4433 $enoughToc = $this->mShowToc &&
4434 ( ( $numMatches >= 4 ) || $this->mForceTocPosition );
4435
4436 # Allow user to stipulate that a page should have a "new section"
4437 # link added via __NEWSECTIONLINK__
4438 if ( isset( $this->mDoubleUnderscores['newsectionlink'] ) ) {
4439 $this->mOutput->setNewSection( true );
4440 }
4441
4442 # Allow user to remove the "new section"
4443 # link via __NONEWSECTIONLINK__
4444 if ( isset( $this->mDoubleUnderscores['nonewsectionlink'] ) ) {
4445 $this->mOutput->hideNewSection( true );
4446 }
4447
4448 # if the string __FORCETOC__ (not case-sensitive) occurs in the HTML,
4449 # override above conditions and always show TOC above first header
4450 if ( isset( $this->mDoubleUnderscores['forcetoc'] ) ) {
4451 $this->mShowToc = true;
4452 $enoughToc = true;
4453 }
4454
4455 # headline counter
4456 $headlineCount = 0;
4457 $numVisible = 0;
4458
4459 # Ugh .. the TOC should have neat indentation levels which can be
4460 # passed to the skin functions. These are determined here
4461 $toc = '';
4462 $full = '';
4463 $head = array();
4464 $sublevelCount = array();
4465 $levelCount = array();
4466 $level = 0;
4467 $prevlevel = 0;
4468 $toclevel = 0;
4469 $prevtoclevel = 0;
4470 $markerRegex = self::MARKER_PREFIX . "-h-(\d+)-" . self::MARKER_SUFFIX;
4471 $baseTitleText = $this->mTitle->getPrefixedDBkey();
4472 $oldType = $this->mOutputType;
4473 $this->setOutputType( self::OT_WIKI );
4474 $frame = $this->getPreprocessor()->newFrame();
4475 $root = $this->preprocessToDom( $origText );
4476 $node = $root->getFirstChild();
4477 $byteOffset = 0;
4478 $tocraw = array();
4479 $refers = array();
4480
4481 $headlines = $numMatches !== false ? $matches[3] : array();
4482
4483 foreach ( $headlines as $headline ) {
4484 $isTemplate = false;
4485 $titleText = false;
4486 $sectionIndex = false;
4487 $numbering = '';
4488 $markerMatches = array();
4489 if ( preg_match( "/^$markerRegex/", $headline, $markerMatches ) ) {
4490 $serial = $markerMatches[1];
4491 list( $titleText, $sectionIndex ) = $this->mHeadings[$serial];
4492 $isTemplate = ( $titleText != $baseTitleText );
4493 $headline = preg_replace( "/^$markerRegex\\s*/", "", $headline );
4494 }
4495
4496 if ( $toclevel ) {
4497 $prevlevel = $level;
4498 }
4499 $level = $matches[1][$headlineCount];
4500
4501 if ( $level > $prevlevel ) {
4502 # Increase TOC level
4503 $toclevel++;
4504 $sublevelCount[$toclevel] = 0;
4505 if ( $toclevel < $wgMaxTocLevel ) {
4506 $prevtoclevel = $toclevel;
4507 $toc .= Linker::tocIndent();
4508 $numVisible++;
4509 }
4510 } elseif ( $level < $prevlevel && $toclevel > 1 ) {
4511 # Decrease TOC level, find level to jump to
4512
4513 for ( $i = $toclevel; $i > 0; $i-- ) {
4514 if ( $levelCount[$i] == $level ) {
4515 # Found last matching level
4516 $toclevel = $i;
4517 break;
4518 } elseif ( $levelCount[$i] < $level ) {
4519 # Found first matching level below current level
4520 $toclevel = $i + 1;
4521 break;
4522 }
4523 }
4524 if ( $i == 0 ) {
4525 $toclevel = 1;
4526 }
4527 if ( $toclevel < $wgMaxTocLevel ) {
4528 if ( $prevtoclevel < $wgMaxTocLevel ) {
4529 # Unindent only if the previous toc level was shown :p
4530 $toc .= Linker::tocUnindent( $prevtoclevel - $toclevel );
4531 $prevtoclevel = $toclevel;
4532 } else {
4533 $toc .= Linker::tocLineEnd();
4534 }
4535 }
4536 } else {
4537 # No change in level, end TOC line
4538 if ( $toclevel < $wgMaxTocLevel ) {
4539 $toc .= Linker::tocLineEnd();
4540 }
4541 }
4542
4543 $levelCount[$toclevel] = $level;
4544
4545 # count number of headlines for each level
4546 $sublevelCount[$toclevel]++;
4547 $dot = 0;
4548 for ( $i = 1; $i <= $toclevel; $i++ ) {
4549 if ( !empty( $sublevelCount[$i] ) ) {
4550 if ( $dot ) {
4551 $numbering .= '.';
4552 }
4553 $numbering .= $this->getTargetLanguage()->formatNum( $sublevelCount[$i] );
4554 $dot = 1;
4555 }
4556 }
4557
4558 # The safe header is a version of the header text safe to use for links
4559
4560 # Remove link placeholders by the link text.
4561 # <!--LINK number-->
4562 # turns into
4563 # link text with suffix
4564 # Do this before unstrip since link text can contain strip markers
4565 $safeHeadline = $this->replaceLinkHoldersText( $headline );
4566
4567 # Avoid insertion of weird stuff like <math> by expanding the relevant sections
4568 $safeHeadline = $this->mStripState->unstripBoth( $safeHeadline );
4569
4570 # Strip out HTML (first regex removes any tag not allowed)
4571 # Allowed tags are:
4572 # * <sup> and <sub> (bug 8393)
4573 # * <i> (bug 26375)
4574 # * <b> (r105284)
4575 # * <bdi> (bug 72884)
4576 # * <span dir="rtl"> and <span dir="ltr"> (bug 35167)
4577 #
4578 # We strip any parameter from accepted tags (second regex), except dir="rtl|ltr" from <span>,
4579 # to allow setting directionality in toc items.
4580 $tocline = preg_replace(
4581 array(
4582 '#<(?!/?(span|sup|sub|bdi|i|b)(?: [^>]*)?>).*?>#',
4583 '#<(/?(?:span(?: dir="(?:rtl|ltr)")?|sup|sub|bdi|i|b))(?: .*?)?>#'
4584 ),
4585 array( '', '<$1>' ),
4586 $safeHeadline
4587 );
4588
4589 # Strip '<span></span>', which is the result from the above if
4590 # <span id="foo"></span> is used to produce an additional anchor
4591 # for a section.
4592 $tocline = str_replace( '<span></span>', '', $tocline );
4593
4594 $tocline = trim( $tocline );
4595
4596 # For the anchor, strip out HTML-y stuff period
4597 $safeHeadline = preg_replace( '/<.*?>/', '', $safeHeadline );
4598 $safeHeadline = Sanitizer::normalizeSectionNameWhitespace( $safeHeadline );
4599
4600 # Save headline for section edit hint before it's escaped
4601 $headlineHint = $safeHeadline;
4602
4603 if ( $wgExperimentalHtmlIds ) {
4604 # For reverse compatibility, provide an id that's
4605 # HTML4-compatible, like we used to.
4606 #
4607 # It may be worth noting, academically, that it's possible for
4608 # the legacy anchor to conflict with a non-legacy headline
4609 # anchor on the page. In this case likely the "correct" thing
4610 # would be to either drop the legacy anchors or make sure
4611 # they're numbered first. However, this would require people
4612 # to type in section names like "abc_.D7.93.D7.90.D7.A4"
4613 # manually, so let's not bother worrying about it.
4614 $legacyHeadline = Sanitizer::escapeId( $safeHeadline,
4615 array( 'noninitial', 'legacy' ) );
4616 $safeHeadline = Sanitizer::escapeId( $safeHeadline );
4617
4618 if ( $legacyHeadline == $safeHeadline ) {
4619 # No reason to have both (in fact, we can't)
4620 $legacyHeadline = false;
4621 }
4622 } else {
4623 $legacyHeadline = false;
4624 $safeHeadline = Sanitizer::escapeId( $safeHeadline,
4625 'noninitial' );
4626 }
4627
4628 # HTML names must be case-insensitively unique (bug 10721).
4629 # This does not apply to Unicode characters per
4630 # http://www.w3.org/TR/html5/infrastructure.html#case-sensitivity-and-string-comparison
4631 # @todo FIXME: We may be changing them depending on the current locale.
4632 $arrayKey = strtolower( $safeHeadline );
4633 if ( $legacyHeadline === false ) {
4634 $legacyArrayKey = false;
4635 } else {
4636 $legacyArrayKey = strtolower( $legacyHeadline );
4637 }
4638
4639 # Create the anchor for linking from the TOC to the section
4640 $anchor = $safeHeadline;
4641 $legacyAnchor = $legacyHeadline;
4642 if ( isset( $refers[$arrayKey] ) ) {
4643 for ( $i = 2; isset( $refers["${arrayKey}_$i"] ); ++$i );
4644 $anchor .= "_$i";
4645 $refers["${arrayKey}_$i"] = true;
4646 } else {
4647 $refers[$arrayKey] = true;
4648 }
4649 if ( $legacyHeadline !== false && isset( $refers[$legacyArrayKey] ) ) {
4650 for ( $i = 2; isset( $refers["${legacyArrayKey}_$i"] ); ++$i );
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 array( '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[] = array(
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 = array();
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', array( $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 .= join( '', $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 = array(
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, array(
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 = array();
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 = array();
5163 $this->mFunctionTagHooks = array();
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] = array( $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] = array( $callback, $flags );
5270
5271 if ( !in_array( $tag, $this->mStripList ) ) {
5272 $this->mStripList[] = $tag;
5273 }
5274
5275 return $old;
5276 }
5277
5278 /**
5279 * @todo FIXME: Update documentation. makeLinkObj() is deprecated.
5280 * Replace "<!--LINK-->" link placeholders with actual links, in the buffer
5281 * Placeholders created in Skin::makeLinkObj()
5282 *
5283 * @param string $text
5284 * @param int $options
5285 */
5286 public function replaceLinkHolders( &$text, $options = 0 ) {
5287 $this->mLinkHolders->replace( $text );
5288 }
5289
5290 /**
5291 * Replace "<!--LINK-->" link placeholders with plain text of links
5292 * (not HTML-formatted).
5293 *
5294 * @param string $text
5295 * @return string
5296 */
5297 public function replaceLinkHoldersText( $text ) {
5298 return $this->mLinkHolders->replaceText( $text );
5299 }
5300
5301 /**
5302 * Renders an image gallery from a text with one line per image.
5303 * text labels may be given by using |-style alternative text. E.g.
5304 * Image:one.jpg|The number "1"
5305 * Image:tree.jpg|A tree
5306 * given as text will return the HTML of a gallery with two images,
5307 * labeled 'The number "1"' and
5308 * 'A tree'.
5309 *
5310 * @param string $text
5311 * @param array $params
5312 * @return string HTML
5313 */
5314 public function renderImageGallery( $text, $params ) {
5315
5316 $mode = false;
5317 if ( isset( $params['mode'] ) ) {
5318 $mode = $params['mode'];
5319 }
5320
5321 try {
5322 $ig = ImageGalleryBase::factory( $mode );
5323 } catch ( Exception $e ) {
5324 // If invalid type set, fallback to default.
5325 $ig = ImageGalleryBase::factory( false );
5326 }
5327
5328 $ig->setContextTitle( $this->mTitle );
5329 $ig->setShowBytes( false );
5330 $ig->setShowFilename( false );
5331 $ig->setParser( $this );
5332 $ig->setHideBadImages();
5333 $ig->setAttributes( Sanitizer::validateTagAttributes( $params, 'table' ) );
5334
5335 if ( isset( $params['showfilename'] ) ) {
5336 $ig->setShowFilename( true );
5337 } else {
5338 $ig->setShowFilename( false );
5339 }
5340 if ( isset( $params['caption'] ) ) {
5341 $caption = $params['caption'];
5342 $caption = htmlspecialchars( $caption );
5343 $caption = $this->replaceInternalLinks( $caption );
5344 $ig->setCaptionHtml( $caption );
5345 }
5346 if ( isset( $params['perrow'] ) ) {
5347 $ig->setPerRow( $params['perrow'] );
5348 }
5349 if ( isset( $params['widths'] ) ) {
5350 $ig->setWidths( $params['widths'] );
5351 }
5352 if ( isset( $params['heights'] ) ) {
5353 $ig->setHeights( $params['heights'] );
5354 }
5355 $ig->setAdditionalOptions( $params );
5356
5357 Hooks::run( 'BeforeParserrenderImageGallery', array( &$this, &$ig ) );
5358
5359 $lines = StringUtils::explode( "\n", $text );
5360 foreach ( $lines as $line ) {
5361 # match lines like these:
5362 # Image:someimage.jpg|This is some image
5363 $matches = array();
5364 preg_match( "/^([^|]+)(\\|(.*))?$/", $line, $matches );
5365 # Skip empty lines
5366 if ( count( $matches ) == 0 ) {
5367 continue;
5368 }
5369
5370 if ( strpos( $matches[0], '%' ) !== false ) {
5371 $matches[1] = rawurldecode( $matches[1] );
5372 }
5373 $title = Title::newFromText( $matches[1], NS_FILE );
5374 if ( is_null( $title ) ) {
5375 # Bogus title. Ignore these so we don't bomb out later.
5376 continue;
5377 }
5378
5379 # We need to get what handler the file uses, to figure out parameters.
5380 # Note, a hook can overide the file name, and chose an entirely different
5381 # file (which potentially could be of a different type and have different handler).
5382 $options = array();
5383 $descQuery = false;
5384 Hooks::run( 'BeforeParserFetchFileAndTitle',
5385 array( $this, $title, &$options, &$descQuery ) );
5386 # Don't register it now, as ImageGallery does that later.
5387 $file = $this->fetchFileNoRegister( $title, $options );
5388 $handler = $file ? $file->getHandler() : false;
5389
5390 $paramMap = array(
5391 'img_alt' => 'gallery-internal-alt',
5392 'img_link' => 'gallery-internal-link',
5393 );
5394 if ( $handler ) {
5395 $paramMap = $paramMap + $handler->getParamMap();
5396 // We don't want people to specify per-image widths.
5397 // Additionally the width parameter would need special casing anyhow.
5398 unset( $paramMap['img_width'] );
5399 }
5400
5401 $mwArray = new MagicWordArray( array_keys( $paramMap ) );
5402
5403 $label = '';
5404 $alt = '';
5405 $link = '';
5406 $handlerOptions = array();
5407 if ( isset( $matches[3] ) ) {
5408 // look for an |alt= definition while trying not to break existing
5409 // captions with multiple pipes (|) in it, until a more sensible grammar
5410 // is defined for images in galleries
5411
5412 // FIXME: Doing recursiveTagParse at this stage, and the trim before
5413 // splitting on '|' is a bit odd, and different from makeImage.
5414 $matches[3] = $this->recursiveTagParse( trim( $matches[3] ) );
5415 $parameterMatches = StringUtils::explode( '|', $matches[3] );
5416
5417 foreach ( $parameterMatches as $parameterMatch ) {
5418 list( $magicName, $match ) = $mwArray->matchVariableStartToEnd( $parameterMatch );
5419 if ( $magicName ) {
5420 $paramName = $paramMap[$magicName];
5421
5422 switch ( $paramName ) {
5423 case 'gallery-internal-alt':
5424 $alt = $this->stripAltText( $match, false );
5425 break;
5426 case 'gallery-internal-link':
5427 $linkValue = strip_tags( $this->replaceLinkHoldersText( $match ) );
5428 $chars = self::EXT_LINK_URL_CLASS;
5429 $addr = self::EXT_LINK_ADDR;
5430 $prots = $this->mUrlProtocols;
5431 //check to see if link matches an absolute url, if not then it must be a wiki link.
5432 if ( preg_match( "/^($prots)$addr$chars*$/u", $linkValue ) ) {
5433 $link = $linkValue;
5434 } else {
5435 $localLinkTitle = Title::newFromText( $linkValue );
5436 if ( $localLinkTitle !== null ) {
5437 $link = $localLinkTitle->getLinkURL();
5438 }
5439 }
5440 break;
5441 default:
5442 // Must be a handler specific parameter.
5443 if ( $handler->validateParam( $paramName, $match ) ) {
5444 $handlerOptions[$paramName] = $match;
5445 } else {
5446 // Guess not. Append it to the caption.
5447 wfDebug( "$parameterMatch failed parameter validation\n" );
5448 $label .= '|' . $parameterMatch;
5449 }
5450 }
5451
5452 } else {
5453 // concatenate all other pipes
5454 $label .= '|' . $parameterMatch;
5455 }
5456 }
5457 // remove the first pipe
5458 $label = substr( $label, 1 );
5459 }
5460
5461 $ig->add( $title, $label, $alt, $link, $handlerOptions );
5462 }
5463 $html = $ig->toHTML();
5464 Hooks::run( 'AfterParserFetchFileAndTitle', array( $this, $ig, &$html ) );
5465 return $html;
5466 }
5467
5468 /**
5469 * @param MediaHandler $handler
5470 * @return array
5471 */
5472 public function getImageParams( $handler ) {
5473 if ( $handler ) {
5474 $handlerClass = get_class( $handler );
5475 } else {
5476 $handlerClass = '';
5477 }
5478 if ( !isset( $this->mImageParams[$handlerClass] ) ) {
5479 # Initialise static lists
5480 static $internalParamNames = array(
5481 'horizAlign' => array( 'left', 'right', 'center', 'none' ),
5482 'vertAlign' => array( 'baseline', 'sub', 'super', 'top', 'text-top', 'middle',
5483 'bottom', 'text-bottom' ),
5484 'frame' => array( 'thumbnail', 'manualthumb', 'framed', 'frameless',
5485 'upright', 'border', 'link', 'alt', 'class' ),
5486 );
5487 static $internalParamMap;
5488 if ( !$internalParamMap ) {
5489 $internalParamMap = array();
5490 foreach ( $internalParamNames as $type => $names ) {
5491 foreach ( $names as $name ) {
5492 $magicName = str_replace( '-', '_', "img_$name" );
5493 $internalParamMap[$magicName] = array( $type, $name );
5494 }
5495 }
5496 }
5497
5498 # Add handler params
5499 $paramMap = $internalParamMap;
5500 if ( $handler ) {
5501 $handlerParamMap = $handler->getParamMap();
5502 foreach ( $handlerParamMap as $magic => $paramName ) {
5503 $paramMap[$magic] = array( 'handler', $paramName );
5504 }
5505 }
5506 $this->mImageParams[$handlerClass] = $paramMap;
5507 $this->mImageParamsMagicArray[$handlerClass] = new MagicWordArray( array_keys( $paramMap ) );
5508 }
5509 return array( $this->mImageParams[$handlerClass], $this->mImageParamsMagicArray[$handlerClass] );
5510 }
5511
5512 /**
5513 * Parse image options text and use it to make an image
5514 *
5515 * @param Title $title
5516 * @param string $options
5517 * @param LinkHolderArray|bool $holders
5518 * @return string HTML
5519 */
5520 public function makeImage( $title, $options, $holders = false ) {
5521 # Check if the options text is of the form "options|alt text"
5522 # Options are:
5523 # * thumbnail make a thumbnail with enlarge-icon and caption, alignment depends on lang
5524 # * left no resizing, just left align. label is used for alt= only
5525 # * right same, but right aligned
5526 # * none same, but not aligned
5527 # * ___px scale to ___ pixels width, no aligning. e.g. use in taxobox
5528 # * center center the image
5529 # * frame Keep original image size, no magnify-button.
5530 # * framed Same as "frame"
5531 # * frameless like 'thumb' but without a frame. Keeps user preferences for width
5532 # * upright reduce width for upright images, rounded to full __0 px
5533 # * border draw a 1px border around the image
5534 # * alt Text for HTML alt attribute (defaults to empty)
5535 # * class Set a class for img node
5536 # * link Set the target of the image link. Can be external, interwiki, or local
5537 # vertical-align values (no % or length right now):
5538 # * baseline
5539 # * sub
5540 # * super
5541 # * top
5542 # * text-top
5543 # * middle
5544 # * bottom
5545 # * text-bottom
5546
5547 $parts = StringUtils::explode( "|", $options );
5548
5549 # Give extensions a chance to select the file revision for us
5550 $options = array();
5551 $descQuery = false;
5552 Hooks::run( 'BeforeParserFetchFileAndTitle',
5553 array( $this, $title, &$options, &$descQuery ) );
5554 # Fetch and register the file (file title may be different via hooks)
5555 list( $file, $title ) = $this->fetchFileAndTitle( $title, $options );
5556
5557 # Get parameter map
5558 $handler = $file ? $file->getHandler() : false;
5559
5560 list( $paramMap, $mwArray ) = $this->getImageParams( $handler );
5561
5562 if ( !$file ) {
5563 $this->addTrackingCategory( 'broken-file-category' );
5564 }
5565
5566 # Process the input parameters
5567 $caption = '';
5568 $params = array( 'frame' => array(), 'handler' => array(),
5569 'horizAlign' => array(), 'vertAlign' => array() );
5570 $seenformat = false;
5571 foreach ( $parts as $part ) {
5572 $part = trim( $part );
5573 list( $magicName, $value ) = $mwArray->matchVariableStartToEnd( $part );
5574 $validated = false;
5575 if ( isset( $paramMap[$magicName] ) ) {
5576 list( $type, $paramName ) = $paramMap[$magicName];
5577
5578 # Special case; width and height come in one variable together
5579 if ( $type === 'handler' && $paramName === 'width' ) {
5580 $parsedWidthParam = $this->parseWidthParam( $value );
5581 if ( isset( $parsedWidthParam['width'] ) ) {
5582 $width = $parsedWidthParam['width'];
5583 if ( $handler->validateParam( 'width', $width ) ) {
5584 $params[$type]['width'] = $width;
5585 $validated = true;
5586 }
5587 }
5588 if ( isset( $parsedWidthParam['height'] ) ) {
5589 $height = $parsedWidthParam['height'];
5590 if ( $handler->validateParam( 'height', $height ) ) {
5591 $params[$type]['height'] = $height;
5592 $validated = true;
5593 }
5594 }
5595 # else no validation -- bug 13436
5596 } else {
5597 if ( $type === 'handler' ) {
5598 # Validate handler parameter
5599 $validated = $handler->validateParam( $paramName, $value );
5600 } else {
5601 # Validate internal parameters
5602 switch ( $paramName ) {
5603 case 'manualthumb':
5604 case 'alt':
5605 case 'class':
5606 # @todo FIXME: Possibly check validity here for
5607 # manualthumb? downstream behavior seems odd with
5608 # missing manual thumbs.
5609 $validated = true;
5610 $value = $this->stripAltText( $value, $holders );
5611 break;
5612 case 'link':
5613 $chars = self::EXT_LINK_URL_CLASS;
5614 $addr = self::EXT_LINK_ADDR;
5615 $prots = $this->mUrlProtocols;
5616 if ( $value === '' ) {
5617 $paramName = 'no-link';
5618 $value = true;
5619 $validated = true;
5620 } elseif ( preg_match( "/^((?i)$prots)/", $value ) ) {
5621 if ( preg_match( "/^((?i)$prots)$addr$chars*$/u", $value, $m ) ) {
5622 $paramName = 'link-url';
5623 $this->mOutput->addExternalLink( $value );
5624 if ( $this->mOptions->getExternalLinkTarget() ) {
5625 $params[$type]['link-target'] = $this->mOptions->getExternalLinkTarget();
5626 }
5627 $validated = true;
5628 }
5629 } else {
5630 $linkTitle = Title::newFromText( $value );
5631 if ( $linkTitle ) {
5632 $paramName = 'link-title';
5633 $value = $linkTitle;
5634 $this->mOutput->addLink( $linkTitle );
5635 $validated = true;
5636 }
5637 }
5638 break;
5639 case 'frameless':
5640 case 'framed':
5641 case 'thumbnail':
5642 // use first appearing option, discard others.
5643 $validated = ! $seenformat;
5644 $seenformat = true;
5645 break;
5646 default:
5647 # Most other things appear to be empty or numeric...
5648 $validated = ( $value === false || is_numeric( trim( $value ) ) );
5649 }
5650 }
5651
5652 if ( $validated ) {
5653 $params[$type][$paramName] = $value;
5654 }
5655 }
5656 }
5657 if ( !$validated ) {
5658 $caption = $part;
5659 }
5660 }
5661
5662 # Process alignment parameters
5663 if ( $params['horizAlign'] ) {
5664 $params['frame']['align'] = key( $params['horizAlign'] );
5665 }
5666 if ( $params['vertAlign'] ) {
5667 $params['frame']['valign'] = key( $params['vertAlign'] );
5668 }
5669
5670 $params['frame']['caption'] = $caption;
5671
5672 # Will the image be presented in a frame, with the caption below?
5673 $imageIsFramed = isset( $params['frame']['frame'] )
5674 || isset( $params['frame']['framed'] )
5675 || isset( $params['frame']['thumbnail'] )
5676 || isset( $params['frame']['manualthumb'] );
5677
5678 # In the old days, [[Image:Foo|text...]] would set alt text. Later it
5679 # came to also set the caption, ordinary text after the image -- which
5680 # makes no sense, because that just repeats the text multiple times in
5681 # screen readers. It *also* came to set the title attribute.
5682 #
5683 # Now that we have an alt attribute, we should not set the alt text to
5684 # equal the caption: that's worse than useless, it just repeats the
5685 # text. This is the framed/thumbnail case. If there's no caption, we
5686 # use the unnamed parameter for alt text as well, just for the time be-
5687 # ing, if the unnamed param is set and the alt param is not.
5688 #
5689 # For the future, we need to figure out if we want to tweak this more,
5690 # e.g., introducing a title= parameter for the title; ignoring the un-
5691 # named parameter entirely for images without a caption; adding an ex-
5692 # plicit caption= parameter and preserving the old magic unnamed para-
5693 # meter for BC; ...
5694 if ( $imageIsFramed ) { # Framed image
5695 if ( $caption === '' && !isset( $params['frame']['alt'] ) ) {
5696 # No caption or alt text, add the filename as the alt text so
5697 # that screen readers at least get some description of the image
5698 $params['frame']['alt'] = $title->getText();
5699 }
5700 # Do not set $params['frame']['title'] because tooltips don't make sense
5701 # for framed images
5702 } else { # Inline image
5703 if ( !isset( $params['frame']['alt'] ) ) {
5704 # No alt text, use the "caption" for the alt text
5705 if ( $caption !== '' ) {
5706 $params['frame']['alt'] = $this->stripAltText( $caption, $holders );
5707 } else {
5708 # No caption, fall back to using the filename for the
5709 # alt text
5710 $params['frame']['alt'] = $title->getText();
5711 }
5712 }
5713 # Use the "caption" for the tooltip text
5714 $params['frame']['title'] = $this->stripAltText( $caption, $holders );
5715 }
5716
5717 Hooks::run( 'ParserMakeImageParams', array( $title, $file, &$params, $this ) );
5718
5719 # Linker does the rest
5720 $time = isset( $options['time'] ) ? $options['time'] : false;
5721 $ret = Linker::makeImageLink( $this, $title, $file, $params['frame'], $params['handler'],
5722 $time, $descQuery, $this->mOptions->getThumbSize() );
5723
5724 # Give the handler a chance to modify the parser object
5725 if ( $handler ) {
5726 $handler->parserTransformHook( $this, $file );
5727 }
5728
5729 return $ret;
5730 }
5731
5732 /**
5733 * @param string $caption
5734 * @param LinkHolderArray|bool $holders
5735 * @return mixed|string
5736 */
5737 protected function stripAltText( $caption, $holders ) {
5738 # Strip bad stuff out of the title (tooltip). We can't just use
5739 # replaceLinkHoldersText() here, because if this function is called
5740 # from replaceInternalLinks2(), mLinkHolders won't be up-to-date.
5741 if ( $holders ) {
5742 $tooltip = $holders->replaceText( $caption );
5743 } else {
5744 $tooltip = $this->replaceLinkHoldersText( $caption );
5745 }
5746
5747 # make sure there are no placeholders in thumbnail attributes
5748 # that are later expanded to html- so expand them now and
5749 # remove the tags
5750 $tooltip = $this->mStripState->unstripBoth( $tooltip );
5751 $tooltip = Sanitizer::stripAllTags( $tooltip );
5752
5753 return $tooltip;
5754 }
5755
5756 /**
5757 * Set a flag in the output object indicating that the content is dynamic and
5758 * shouldn't be cached.
5759 */
5760 public function disableCache() {
5761 wfDebug( "Parser output marked as uncacheable.\n" );
5762 if ( !$this->mOutput ) {
5763 throw new MWException( __METHOD__ .
5764 " can only be called when actually parsing something" );
5765 }
5766 $this->mOutput->setCacheTime( -1 ); // old style, for compatibility
5767 $this->mOutput->updateCacheExpiry( 0 ); // new style, for consistency
5768 }
5769
5770 /**
5771 * Callback from the Sanitizer for expanding items found in HTML attribute
5772 * values, so they can be safely tested and escaped.
5773 *
5774 * @param string $text
5775 * @param bool|PPFrame $frame
5776 * @return string
5777 */
5778 public function attributeStripCallback( &$text, $frame = false ) {
5779 $text = $this->replaceVariables( $text, $frame );
5780 $text = $this->mStripState->unstripBoth( $text );
5781 return $text;
5782 }
5783
5784 /**
5785 * Accessor
5786 *
5787 * @return array
5788 */
5789 public function getTags() {
5790 return array_merge(
5791 array_keys( $this->mTransparentTagHooks ),
5792 array_keys( $this->mTagHooks ),
5793 array_keys( $this->mFunctionTagHooks )
5794 );
5795 }
5796
5797 /**
5798 * Replace transparent tags in $text with the values given by the callbacks.
5799 *
5800 * Transparent tag hooks are like regular XML-style tag hooks, except they
5801 * operate late in the transformation sequence, on HTML instead of wikitext.
5802 *
5803 * @param string $text
5804 *
5805 * @return string
5806 */
5807 public function replaceTransparentTags( $text ) {
5808 $matches = array();
5809 $elements = array_keys( $this->mTransparentTagHooks );
5810 $text = self::extractTagsAndParams( $elements, $text, $matches );
5811 $replacements = array();
5812
5813 foreach ( $matches as $marker => $data ) {
5814 list( $element, $content, $params, $tag ) = $data;
5815 $tagName = strtolower( $element );
5816 if ( isset( $this->mTransparentTagHooks[$tagName] ) ) {
5817 $output = call_user_func_array(
5818 $this->mTransparentTagHooks[$tagName],
5819 array( $content, $params, $this )
5820 );
5821 } else {
5822 $output = $tag;
5823 }
5824 $replacements[$marker] = $output;
5825 }
5826 return strtr( $text, $replacements );
5827 }
5828
5829 /**
5830 * Break wikitext input into sections, and either pull or replace
5831 * some particular section's text.
5832 *
5833 * External callers should use the getSection and replaceSection methods.
5834 *
5835 * @param string $text Page wikitext
5836 * @param string|number $sectionId A section identifier string of the form:
5837 * "<flag1> - <flag2> - ... - <section number>"
5838 *
5839 * Currently the only recognised flag is "T", which means the target section number
5840 * was derived during a template inclusion parse, in other words this is a template
5841 * section edit link. If no flags are given, it was an ordinary section edit link.
5842 * This flag is required to avoid a section numbering mismatch when a section is
5843 * enclosed by "<includeonly>" (bug 6563).
5844 *
5845 * The section number 0 pulls the text before the first heading; other numbers will
5846 * pull the given section along with its lower-level subsections. If the section is
5847 * not found, $mode=get will return $newtext, and $mode=replace will return $text.
5848 *
5849 * Section 0 is always considered to exist, even if it only contains the empty
5850 * string. If $text is the empty string and section 0 is replaced, $newText is
5851 * returned.
5852 *
5853 * @param string $mode One of "get" or "replace"
5854 * @param string $newText Replacement text for section data.
5855 * @return string For "get", the extracted section text.
5856 * for "replace", the whole page with the section replaced.
5857 */
5858 private function extractSections( $text, $sectionId, $mode, $newText = '' ) {
5859 global $wgTitle; # not generally used but removes an ugly failure mode
5860
5861 $magicScopeVariable = $this->lock();
5862 $this->startParse( $wgTitle, new ParserOptions, self::OT_PLAIN, true );
5863 $outText = '';
5864 $frame = $this->getPreprocessor()->newFrame();
5865
5866 # Process section extraction flags
5867 $flags = 0;
5868 $sectionParts = explode( '-', $sectionId );
5869 $sectionIndex = array_pop( $sectionParts );
5870 foreach ( $sectionParts as $part ) {
5871 if ( $part === 'T' ) {
5872 $flags |= self::PTD_FOR_INCLUSION;
5873 }
5874 }
5875
5876 # Check for empty input
5877 if ( strval( $text ) === '' ) {
5878 # Only sections 0 and T-0 exist in an empty document
5879 if ( $sectionIndex == 0 ) {
5880 if ( $mode === 'get' ) {
5881 return '';
5882 } else {
5883 return $newText;
5884 }
5885 } else {
5886 if ( $mode === 'get' ) {
5887 return $newText;
5888 } else {
5889 return $text;
5890 }
5891 }
5892 }
5893
5894 # Preprocess the text
5895 $root = $this->preprocessToDom( $text, $flags );
5896
5897 # <h> nodes indicate section breaks
5898 # They can only occur at the top level, so we can find them by iterating the root's children
5899 $node = $root->getFirstChild();
5900
5901 # Find the target section
5902 if ( $sectionIndex == 0 ) {
5903 # Section zero doesn't nest, level=big
5904 $targetLevel = 1000;
5905 } else {
5906 while ( $node ) {
5907 if ( $node->getName() === 'h' ) {
5908 $bits = $node->splitHeading();
5909 if ( $bits['i'] == $sectionIndex ) {
5910 $targetLevel = $bits['level'];
5911 break;
5912 }
5913 }
5914 if ( $mode === 'replace' ) {
5915 $outText .= $frame->expand( $node, PPFrame::RECOVER_ORIG );
5916 }
5917 $node = $node->getNextSibling();
5918 }
5919 }
5920
5921 if ( !$node ) {
5922 # Not found
5923 if ( $mode === 'get' ) {
5924 return $newText;
5925 } else {
5926 return $text;
5927 }
5928 }
5929
5930 # Find the end of the section, including nested sections
5931 do {
5932 if ( $node->getName() === 'h' ) {
5933 $bits = $node->splitHeading();
5934 $curLevel = $bits['level'];
5935 if ( $bits['i'] != $sectionIndex && $curLevel <= $targetLevel ) {
5936 break;
5937 }
5938 }
5939 if ( $mode === 'get' ) {
5940 $outText .= $frame->expand( $node, PPFrame::RECOVER_ORIG );
5941 }
5942 $node = $node->getNextSibling();
5943 } while ( $node );
5944
5945 # Write out the remainder (in replace mode only)
5946 if ( $mode === 'replace' ) {
5947 # Output the replacement text
5948 # Add two newlines on -- trailing whitespace in $newText is conventionally
5949 # stripped by the editor, so we need both newlines to restore the paragraph gap
5950 # Only add trailing whitespace if there is newText
5951 if ( $newText != "" ) {
5952 $outText .= $newText . "\n\n";
5953 }
5954
5955 while ( $node ) {
5956 $outText .= $frame->expand( $node, PPFrame::RECOVER_ORIG );
5957 $node = $node->getNextSibling();
5958 }
5959 }
5960
5961 if ( is_string( $outText ) ) {
5962 # Re-insert stripped tags
5963 $outText = rtrim( $this->mStripState->unstripBoth( $outText ) );
5964 }
5965
5966 return $outText;
5967 }
5968
5969 /**
5970 * This function returns the text of a section, specified by a number ($section).
5971 * A section is text under a heading like == Heading == or \<h1\>Heading\</h1\>, or
5972 * the first section before any such heading (section 0).
5973 *
5974 * If a section contains subsections, these are also returned.
5975 *
5976 * @param string $text Text to look in
5977 * @param string|number $sectionId Section identifier as a number or string
5978 * (e.g. 0, 1 or 'T-1').
5979 * @param string $defaultText Default to return if section is not found
5980 *
5981 * @return string Text of the requested section
5982 */
5983 public function getSection( $text, $sectionId, $defaultText = '' ) {
5984 return $this->extractSections( $text, $sectionId, 'get', $defaultText );
5985 }
5986
5987 /**
5988 * This function returns $oldtext after the content of the section
5989 * specified by $section has been replaced with $text. If the target
5990 * section does not exist, $oldtext is returned unchanged.
5991 *
5992 * @param string $oldText Former text of the article
5993 * @param string|number $sectionId Section identifier as a number or string
5994 * (e.g. 0, 1 or 'T-1').
5995 * @param string $newText Replacing text
5996 *
5997 * @return string Modified text
5998 */
5999 public function replaceSection( $oldText, $sectionId, $newText ) {
6000 return $this->extractSections( $oldText, $sectionId, 'replace', $newText );
6001 }
6002
6003 /**
6004 * Get the ID of the revision we are parsing
6005 *
6006 * @return int|null
6007 */
6008 public function getRevisionId() {
6009 return $this->mRevisionId;
6010 }
6011
6012 /**
6013 * Get the revision object for $this->mRevisionId
6014 *
6015 * @return Revision|null Either a Revision object or null
6016 * @since 1.23 (public since 1.23)
6017 */
6018 public function getRevisionObject() {
6019 if ( !is_null( $this->mRevisionObject ) ) {
6020 return $this->mRevisionObject;
6021 }
6022 if ( is_null( $this->mRevisionId ) ) {
6023 return null;
6024 }
6025
6026 $rev = call_user_func(
6027 $this->mOptions->getCurrentRevisionCallback(), $this->getTitle(), $this
6028 );
6029
6030 # If the parse is for a new revision, then the callback should have
6031 # already been set to force the object and should match mRevisionId.
6032 # If not, try to fetch by mRevisionId for sanity.
6033 if ( $rev && $rev->getId() != $this->mRevisionId ) {
6034 $rev = Revision::newFromId( $this->mRevisionId );
6035 }
6036
6037 $this->mRevisionObject = $rev;
6038
6039 return $this->mRevisionObject;
6040 }
6041
6042 /**
6043 * Get the timestamp associated with the current revision, adjusted for
6044 * the default server-local timestamp
6045 * @return string
6046 */
6047 public function getRevisionTimestamp() {
6048 if ( is_null( $this->mRevisionTimestamp ) ) {
6049 global $wgContLang;
6050
6051 $revObject = $this->getRevisionObject();
6052 $timestamp = $revObject ? $revObject->getTimestamp() : wfTimestampNow();
6053
6054 # The cryptic '' timezone parameter tells to use the site-default
6055 # timezone offset instead of the user settings.
6056 #
6057 # Since this value will be saved into the parser cache, served
6058 # to other users, and potentially even used inside links and such,
6059 # it needs to be consistent for all visitors.
6060 $this->mRevisionTimestamp = $wgContLang->userAdjust( $timestamp, '' );
6061
6062 }
6063 return $this->mRevisionTimestamp;
6064 }
6065
6066 /**
6067 * Get the name of the user that edited the last revision
6068 *
6069 * @return string User name
6070 */
6071 public function getRevisionUser() {
6072 if ( is_null( $this->mRevisionUser ) ) {
6073 $revObject = $this->getRevisionObject();
6074
6075 # if this template is subst: the revision id will be blank,
6076 # so just use the current user's name
6077 if ( $revObject ) {
6078 $this->mRevisionUser = $revObject->getUserText();
6079 } elseif ( $this->ot['wiki'] || $this->mOptions->getIsPreview() ) {
6080 $this->mRevisionUser = $this->getUser()->getName();
6081 }
6082 }
6083 return $this->mRevisionUser;
6084 }
6085
6086 /**
6087 * Get the size of the revision
6088 *
6089 * @return int|null Revision size
6090 */
6091 public function getRevisionSize() {
6092 if ( is_null( $this->mRevisionSize ) ) {
6093 $revObject = $this->getRevisionObject();
6094
6095 # if this variable is subst: the revision id will be blank,
6096 # so just use the parser input size, because the own substituation
6097 # will change the size.
6098 if ( $revObject ) {
6099 $this->mRevisionSize = $revObject->getSize();
6100 } elseif ( $this->ot['wiki'] || $this->mOptions->getIsPreview() ) {
6101 $this->mRevisionSize = $this->mInputSize;
6102 }
6103 }
6104 return $this->mRevisionSize;
6105 }
6106
6107 /**
6108 * Mutator for $mDefaultSort
6109 *
6110 * @param string $sort New value
6111 */
6112 public function setDefaultSort( $sort ) {
6113 $this->mDefaultSort = $sort;
6114 $this->mOutput->setProperty( 'defaultsort', $sort );
6115 }
6116
6117 /**
6118 * Accessor for $mDefaultSort
6119 * Will use the empty string if none is set.
6120 *
6121 * This value is treated as a prefix, so the
6122 * empty string is equivalent to sorting by
6123 * page name.
6124 *
6125 * @return string
6126 */
6127 public function getDefaultSort() {
6128 if ( $this->mDefaultSort !== false ) {
6129 return $this->mDefaultSort;
6130 } else {
6131 return '';
6132 }
6133 }
6134
6135 /**
6136 * Accessor for $mDefaultSort
6137 * Unlike getDefaultSort(), will return false if none is set
6138 *
6139 * @return string|bool
6140 */
6141 public function getCustomDefaultSort() {
6142 return $this->mDefaultSort;
6143 }
6144
6145 /**
6146 * Try to guess the section anchor name based on a wikitext fragment
6147 * presumably extracted from a heading, for example "Header" from
6148 * "== Header ==".
6149 *
6150 * @param string $text
6151 *
6152 * @return string
6153 */
6154 public function guessSectionNameFromWikiText( $text ) {
6155 # Strip out wikitext links(they break the anchor)
6156 $text = $this->stripSectionName( $text );
6157 $text = Sanitizer::normalizeSectionNameWhitespace( $text );
6158 return '#' . Sanitizer::escapeId( $text, 'noninitial' );
6159 }
6160
6161 /**
6162 * Same as guessSectionNameFromWikiText(), but produces legacy anchors
6163 * instead. For use in redirects, since IE6 interprets Redirect: headers
6164 * as something other than UTF-8 (apparently?), resulting in breakage.
6165 *
6166 * @param string $text The section name
6167 * @return string An anchor
6168 */
6169 public function guessLegacySectionNameFromWikiText( $text ) {
6170 # Strip out wikitext links(they break the anchor)
6171 $text = $this->stripSectionName( $text );
6172 $text = Sanitizer::normalizeSectionNameWhitespace( $text );
6173 return '#' . Sanitizer::escapeId( $text, array( 'noninitial', 'legacy' ) );
6174 }
6175
6176 /**
6177 * Strips a text string of wikitext for use in a section anchor
6178 *
6179 * Accepts a text string and then removes all wikitext from the
6180 * string and leaves only the resultant text (i.e. the result of
6181 * [[User:WikiSysop|Sysop]] would be "Sysop" and the result of
6182 * [[User:WikiSysop]] would be "User:WikiSysop") - this is intended
6183 * to create valid section anchors by mimicing the output of the
6184 * parser when headings are parsed.
6185 *
6186 * @param string $text Text string to be stripped of wikitext
6187 * for use in a Section anchor
6188 * @return string Filtered text string
6189 */
6190 public function stripSectionName( $text ) {
6191 # Strip internal link markup
6192 $text = preg_replace( '/\[\[:?([^[|]+)\|([^[]+)\]\]/', '$2', $text );
6193 $text = preg_replace( '/\[\[:?([^[]+)\|?\]\]/', '$1', $text );
6194
6195 # Strip external link markup
6196 # @todo FIXME: Not tolerant to blank link text
6197 # I.E. [https://www.mediawiki.org] will render as [1] or something depending
6198 # on how many empty links there are on the page - need to figure that out.
6199 $text = preg_replace( '/\[(?i:' . $this->mUrlProtocols . ')([^ ]+?) ([^[]+)\]/', '$2', $text );
6200
6201 # Parse wikitext quotes (italics & bold)
6202 $text = $this->doQuotes( $text );
6203
6204 # Strip HTML tags
6205 $text = StringUtils::delimiterReplace( '<', '>', '', $text );
6206 return $text;
6207 }
6208
6209 /**
6210 * strip/replaceVariables/unstrip for preprocessor regression testing
6211 *
6212 * @param string $text
6213 * @param Title $title
6214 * @param ParserOptions $options
6215 * @param int $outputType
6216 *
6217 * @return string
6218 */
6219 public function testSrvus( $text, Title $title, ParserOptions $options, $outputType = self::OT_HTML ) {
6220 $magicScopeVariable = $this->lock();
6221 $this->startParse( $title, $options, $outputType, true );
6222
6223 $text = $this->replaceVariables( $text );
6224 $text = $this->mStripState->unstripBoth( $text );
6225 $text = Sanitizer::removeHTMLtags( $text );
6226 return $text;
6227 }
6228
6229 /**
6230 * @param string $text
6231 * @param Title $title
6232 * @param ParserOptions $options
6233 * @return string
6234 */
6235 public function testPst( $text, Title $title, ParserOptions $options ) {
6236 return $this->preSaveTransform( $text, $title, $options->getUser(), $options );
6237 }
6238
6239 /**
6240 * @param string $text
6241 * @param Title $title
6242 * @param ParserOptions $options
6243 * @return string
6244 */
6245 public function testPreprocess( $text, Title $title, ParserOptions $options ) {
6246 return $this->testSrvus( $text, $title, $options, self::OT_PREPROCESS );
6247 }
6248
6249 /**
6250 * Call a callback function on all regions of the given text that are not
6251 * inside strip markers, and replace those regions with the return value
6252 * of the callback. For example, with input:
6253 *
6254 * aaa<MARKER>bbb
6255 *
6256 * This will call the callback function twice, with 'aaa' and 'bbb'. Those
6257 * two strings will be replaced with the value returned by the callback in
6258 * each case.
6259 *
6260 * @param string $s
6261 * @param callable $callback
6262 *
6263 * @return string
6264 */
6265 public function markerSkipCallback( $s, $callback ) {
6266 $i = 0;
6267 $out = '';
6268 while ( $i < strlen( $s ) ) {
6269 $markerStart = strpos( $s, self::MARKER_PREFIX, $i );
6270 if ( $markerStart === false ) {
6271 $out .= call_user_func( $callback, substr( $s, $i ) );
6272 break;
6273 } else {
6274 $out .= call_user_func( $callback, substr( $s, $i, $markerStart - $i ) );
6275 $markerEnd = strpos( $s, self::MARKER_SUFFIX, $markerStart );
6276 if ( $markerEnd === false ) {
6277 $out .= substr( $s, $markerStart );
6278 break;
6279 } else {
6280 $markerEnd += strlen( self::MARKER_SUFFIX );
6281 $out .= substr( $s, $markerStart, $markerEnd - $markerStart );
6282 $i = $markerEnd;
6283 }
6284 }
6285 }
6286 return $out;
6287 }
6288
6289 /**
6290 * Remove any strip markers found in the given text.
6291 *
6292 * @param string $text Input string
6293 * @return string
6294 */
6295 public function killMarkers( $text ) {
6296 return $this->mStripState->killMarkers( $text );
6297 }
6298
6299 /**
6300 * Save the parser state required to convert the given half-parsed text to
6301 * HTML. "Half-parsed" in this context means the output of
6302 * recursiveTagParse() or internalParse(). This output has strip markers
6303 * from replaceVariables (extensionSubstitution() etc.), and link
6304 * placeholders from replaceLinkHolders().
6305 *
6306 * Returns an array which can be serialized and stored persistently. This
6307 * array can later be loaded into another parser instance with
6308 * unserializeHalfParsedText(). The text can then be safely incorporated into
6309 * the return value of a parser hook.
6310 *
6311 * @param string $text
6312 *
6313 * @return array
6314 */
6315 public function serializeHalfParsedText( $text ) {
6316 $data = array(
6317 'text' => $text,
6318 'version' => self::HALF_PARSED_VERSION,
6319 'stripState' => $this->mStripState->getSubState( $text ),
6320 'linkHolders' => $this->mLinkHolders->getSubArray( $text )
6321 );
6322 return $data;
6323 }
6324
6325 /**
6326 * Load the parser state given in the $data array, which is assumed to
6327 * have been generated by serializeHalfParsedText(). The text contents is
6328 * extracted from the array, and its markers are transformed into markers
6329 * appropriate for the current Parser instance. This transformed text is
6330 * returned, and can be safely included in the return value of a parser
6331 * hook.
6332 *
6333 * If the $data array has been stored persistently, the caller should first
6334 * check whether it is still valid, by calling isValidHalfParsedText().
6335 *
6336 * @param array $data Serialized data
6337 * @throws MWException
6338 * @return string
6339 */
6340 public function unserializeHalfParsedText( $data ) {
6341 if ( !isset( $data['version'] ) || $data['version'] != self::HALF_PARSED_VERSION ) {
6342 throw new MWException( __METHOD__ . ': invalid version' );
6343 }
6344
6345 # First, extract the strip state.
6346 $texts = array( $data['text'] );
6347 $texts = $this->mStripState->merge( $data['stripState'], $texts );
6348
6349 # Now renumber links
6350 $texts = $this->mLinkHolders->mergeForeign( $data['linkHolders'], $texts );
6351
6352 # Should be good to go.
6353 return $texts[0];
6354 }
6355
6356 /**
6357 * Returns true if the given array, presumed to be generated by
6358 * serializeHalfParsedText(), is compatible with the current version of the
6359 * parser.
6360 *
6361 * @param array $data
6362 *
6363 * @return bool
6364 */
6365 public function isValidHalfParsedText( $data ) {
6366 return isset( $data['version'] ) && $data['version'] == self::HALF_PARSED_VERSION;
6367 }
6368
6369 /**
6370 * Parsed a width param of imagelink like 300px or 200x300px
6371 *
6372 * @param string $value
6373 *
6374 * @return array
6375 * @since 1.20
6376 */
6377 public function parseWidthParam( $value ) {
6378 $parsedWidthParam = array();
6379 if ( $value === '' ) {
6380 return $parsedWidthParam;
6381 }
6382 $m = array();
6383 # (bug 13500) In both cases (width/height and width only),
6384 # permit trailing "px" for backward compatibility.
6385 if ( preg_match( '/^([0-9]*)x([0-9]*)\s*(?:px)?\s*$/', $value, $m ) ) {
6386 $width = intval( $m[1] );
6387 $height = intval( $m[2] );
6388 $parsedWidthParam['width'] = $width;
6389 $parsedWidthParam['height'] = $height;
6390 } elseif ( preg_match( '/^[0-9]*\s*(?:px)?\s*$/', $value ) ) {
6391 $width = intval( $value );
6392 $parsedWidthParam['width'] = $width;
6393 }
6394 return $parsedWidthParam;
6395 }
6396
6397 /**
6398 * Lock the current instance of the parser.
6399 *
6400 * This is meant to stop someone from calling the parser
6401 * recursively and messing up all the strip state.
6402 *
6403 * @throws MWException If parser is in a parse
6404 * @return ScopedCallback The lock will be released once the return value goes out of scope.
6405 */
6406 protected function lock() {
6407 if ( $this->mInParse ) {
6408 throw new MWException( "Parser state cleared while parsing. "
6409 . "Did you call Parser::parse recursively?" );
6410 }
6411 $this->mInParse = true;
6412
6413 $that = $this;
6414 $recursiveCheck = new ScopedCallback( function() use ( $that ) {
6415 $that->mInParse = false;
6416 } );
6417
6418 return $recursiveCheck;
6419 }
6420
6421 /**
6422 * Strip outer <p></p> tag from the HTML source of a single paragraph.
6423 *
6424 * Returns original HTML if the <p/> tag has any attributes, if there's no wrapping <p/> tag,
6425 * or if there is more than one <p/> tag in the input HTML.
6426 *
6427 * @param string $html
6428 * @return string
6429 * @since 1.24
6430 */
6431 public static function stripOuterParagraph( $html ) {
6432 $m = array();
6433 if ( preg_match( '/^<p>(.*)\n?<\/p>\n?$/sU', $html, $m ) ) {
6434 if ( strpos( $m[1], '</p>' ) === false ) {
6435 $html = $m[1];
6436 }
6437 }
6438
6439 return $html;
6440 }
6441
6442 /**
6443 * Return this parser if it is not doing anything, otherwise
6444 * get a fresh parser. You can use this method by doing
6445 * $myParser = $wgParser->getFreshParser(), or more simply
6446 * $wgParser->getFreshParser()->parse( ... );
6447 * if you're unsure if $wgParser is safe to use.
6448 *
6449 * @since 1.24
6450 * @return Parser A parser object that is not parsing anything
6451 */
6452 public function getFreshParser() {
6453 global $wgParserConf;
6454 if ( $this->mInParse ) {
6455 return new $wgParserConf['class']( $wgParserConf );
6456 } else {
6457 return $this;
6458 }
6459 }
6460
6461 /**
6462 * Set's up the PHP implementation of OOUI for use in this request
6463 * and instructs OutputPage to enable OOUI for itself.
6464 *
6465 * @since 1.26
6466 */
6467 public function enableOOUI() {
6468 OutputPage::setupOOUI();
6469 $this->mOutput->setEnableOOUI( true );
6470 }
6471 }