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