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