(bug 31469) Make sure tracking category messages expand variables like
[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 htmlspecialchars( $titleObj->getLocalUrl() ) .
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 'pageid':
2821 return $this->getTitle()->getArticleId();
2822 case 'sitename':
2823 return $wgSitename;
2824 case 'server':
2825 return $wgServer;
2826 case 'servername':
2827 $serverParts = wfParseUrl( $wgServer );
2828 return $serverParts && isset( $serverParts['host'] ) ? $serverParts['host'] : $wgServer;
2829 case 'scriptpath':
2830 return $wgScriptPath;
2831 case 'stylepath':
2832 return $wgStylePath;
2833 case 'directionmark':
2834 return $pageLang->getDirMark();
2835 case 'contentlanguage':
2836 global $wgLanguageCode;
2837 return $wgLanguageCode;
2838 default:
2839 $ret = null;
2840 if ( wfRunHooks( 'ParserGetVariableValueSwitch', array( &$this, &$this->mVarCache, &$index, &$ret, &$frame ) ) ) {
2841 return $ret;
2842 } else {
2843 return null;
2844 }
2845 }
2846
2847 if ( $index ) {
2848 $this->mVarCache[$index] = $value;
2849 }
2850
2851 return $value;
2852 }
2853
2854 /**
2855 * initialise the magic variables (like CURRENTMONTHNAME) and substitution modifiers
2856 *
2857 * @private
2858 */
2859 function initialiseVariables() {
2860 wfProfileIn( __METHOD__ );
2861 $variableIDs = MagicWord::getVariableIDs();
2862 $substIDs = MagicWord::getSubstIDs();
2863
2864 $this->mVariables = new MagicWordArray( $variableIDs );
2865 $this->mSubstWords = new MagicWordArray( $substIDs );
2866 wfProfileOut( __METHOD__ );
2867 }
2868
2869 /**
2870 * Preprocess some wikitext and return the document tree.
2871 * This is the ghost of replace_variables().
2872 *
2873 * @param $text String: The text to parse
2874 * @param $flags Integer: bitwise combination of:
2875 * self::PTD_FOR_INCLUSION Handle <noinclude>/<includeonly> as if the text is being
2876 * included. Default is to assume a direct page view.
2877 *
2878 * The generated DOM tree must depend only on the input text and the flags.
2879 * The DOM tree must be the same in OT_HTML and OT_WIKI mode, to avoid a regression of bug 4899.
2880 *
2881 * Any flag added to the $flags parameter here, or any other parameter liable to cause a
2882 * change in the DOM tree for a given text, must be passed through the section identifier
2883 * in the section edit link and thus back to extractSections().
2884 *
2885 * The output of this function is currently only cached in process memory, but a persistent
2886 * cache may be implemented at a later date which takes further advantage of these strict
2887 * dependency requirements.
2888 *
2889 * @private
2890 *
2891 * @return PPNode
2892 */
2893 function preprocessToDom( $text, $flags = 0 ) {
2894 $dom = $this->getPreprocessor()->preprocessToObj( $text, $flags );
2895 return $dom;
2896 }
2897
2898 /**
2899 * Return a three-element array: leading whitespace, string contents, trailing whitespace
2900 *
2901 * @param $s string
2902 *
2903 * @return array
2904 */
2905 public static function splitWhitespace( $s ) {
2906 $ltrimmed = ltrim( $s );
2907 $w1 = substr( $s, 0, strlen( $s ) - strlen( $ltrimmed ) );
2908 $trimmed = rtrim( $ltrimmed );
2909 $diff = strlen( $ltrimmed ) - strlen( $trimmed );
2910 if ( $diff > 0 ) {
2911 $w2 = substr( $ltrimmed, -$diff );
2912 } else {
2913 $w2 = '';
2914 }
2915 return array( $w1, $trimmed, $w2 );
2916 }
2917
2918 /**
2919 * Replace magic variables, templates, and template arguments
2920 * with the appropriate text. Templates are substituted recursively,
2921 * taking care to avoid infinite loops.
2922 *
2923 * Note that the substitution depends on value of $mOutputType:
2924 * self::OT_WIKI: only {{subst:}} templates
2925 * self::OT_PREPROCESS: templates but not extension tags
2926 * self::OT_HTML: all templates and extension tags
2927 *
2928 * @param $text String the text to transform
2929 * @param $frame PPFrame Object describing the arguments passed to the template.
2930 * Arguments may also be provided as an associative array, as was the usual case before MW1.12.
2931 * Providing arguments this way may be useful for extensions wishing to perform variable replacement explicitly.
2932 * @param $argsOnly Boolean only do argument (triple-brace) expansion, not double-brace expansion
2933 * @private
2934 *
2935 * @return string
2936 */
2937 function replaceVariables( $text, $frame = false, $argsOnly = false ) {
2938 # Is there any text? Also, Prevent too big inclusions!
2939 if ( strlen( $text ) < 1 || strlen( $text ) > $this->mOptions->getMaxIncludeSize() ) {
2940 return $text;
2941 }
2942 wfProfileIn( __METHOD__ );
2943
2944 if ( $frame === false ) {
2945 $frame = $this->getPreprocessor()->newFrame();
2946 } elseif ( !( $frame instanceof PPFrame ) ) {
2947 wfDebug( __METHOD__." called using plain parameters instead of a PPFrame instance. Creating custom frame.\n" );
2948 $frame = $this->getPreprocessor()->newCustomFrame( $frame );
2949 }
2950
2951 $dom = $this->preprocessToDom( $text );
2952 $flags = $argsOnly ? PPFrame::NO_TEMPLATES : 0;
2953 $text = $frame->expand( $dom, $flags );
2954
2955 wfProfileOut( __METHOD__ );
2956 return $text;
2957 }
2958
2959 /**
2960 * Clean up argument array - refactored in 1.9 so parserfunctions can use it, too.
2961 *
2962 * @param $args array
2963 *
2964 * @return array
2965 */
2966 static function createAssocArgs( $args ) {
2967 $assocArgs = array();
2968 $index = 1;
2969 foreach ( $args as $arg ) {
2970 $eqpos = strpos( $arg, '=' );
2971 if ( $eqpos === false ) {
2972 $assocArgs[$index++] = $arg;
2973 } else {
2974 $name = trim( substr( $arg, 0, $eqpos ) );
2975 $value = trim( substr( $arg, $eqpos+1 ) );
2976 if ( $value === false ) {
2977 $value = '';
2978 }
2979 if ( $name !== false ) {
2980 $assocArgs[$name] = $value;
2981 }
2982 }
2983 }
2984
2985 return $assocArgs;
2986 }
2987
2988 /**
2989 * Warn the user when a parser limitation is reached
2990 * Will warn at most once the user per limitation type
2991 *
2992 * @param $limitationType String: should be one of:
2993 * 'expensive-parserfunction' (corresponding messages:
2994 * 'expensive-parserfunction-warning',
2995 * 'expensive-parserfunction-category')
2996 * 'post-expand-template-argument' (corresponding messages:
2997 * 'post-expand-template-argument-warning',
2998 * 'post-expand-template-argument-category')
2999 * 'post-expand-template-inclusion' (corresponding messages:
3000 * 'post-expand-template-inclusion-warning',
3001 * 'post-expand-template-inclusion-category')
3002 * @param $current Current value
3003 * @param $max Maximum allowed, when an explicit limit has been
3004 * exceeded, provide the values (optional)
3005 */
3006 function limitationWarn( $limitationType, $current=null, $max=null) {
3007 # does no harm if $current and $max are present but are unnecessary for the message
3008 $warning = wfMsgExt( "$limitationType-warning", array( 'parsemag', 'escape' ), $current, $max );
3009 $this->mOutput->addWarning( $warning );
3010 $this->addTrackingCategory( "$limitationType-category" );
3011 }
3012
3013 /**
3014 * Return the text of a template, after recursively
3015 * replacing any variables or templates within the template.
3016 *
3017 * @param $piece Array: the parts of the template
3018 * $piece['title']: the title, i.e. the part before the |
3019 * $piece['parts']: the parameter array
3020 * $piece['lineStart']: whether the brace was at the start of a line
3021 * @param $frame PPFrame The current frame, contains template arguments
3022 * @return String: the text of the template
3023 * @private
3024 */
3025 function braceSubstitution( $piece, $frame ) {
3026 global $wgNonincludableNamespaces;
3027 wfProfileIn( __METHOD__ );
3028 wfProfileIn( __METHOD__.'-setup' );
3029
3030 # Flags
3031 $found = false; # $text has been filled
3032 $nowiki = false; # wiki markup in $text should be escaped
3033 $isHTML = false; # $text is HTML, armour it against wikitext transformation
3034 $forceRawInterwiki = false; # Force interwiki transclusion to be done in raw mode not rendered
3035 $isChildObj = false; # $text is a DOM node needing expansion in a child frame
3036 $isLocalObj = false; # $text is a DOM node needing expansion in the current frame
3037
3038 # Title object, where $text came from
3039 $title = false;
3040
3041 # $part1 is the bit before the first |, and must contain only title characters.
3042 # Various prefixes will be stripped from it later.
3043 $titleWithSpaces = $frame->expand( $piece['title'] );
3044 $part1 = trim( $titleWithSpaces );
3045 $titleText = false;
3046
3047 # Original title text preserved for various purposes
3048 $originalTitle = $part1;
3049
3050 # $args is a list of argument nodes, starting from index 0, not including $part1
3051 # @todo FIXME: If piece['parts'] is null then the call to getLength() below won't work b/c this $args isn't an object
3052 $args = ( null == $piece['parts'] ) ? array() : $piece['parts'];
3053 wfProfileOut( __METHOD__.'-setup' );
3054
3055 $titleProfileIn = null; // profile templates
3056
3057 # SUBST
3058 wfProfileIn( __METHOD__.'-modifiers' );
3059 if ( !$found ) {
3060
3061 $substMatch = $this->mSubstWords->matchStartAndRemove( $part1 );
3062
3063 # Possibilities for substMatch: "subst", "safesubst" or FALSE
3064 # Decide whether to expand template or keep wikitext as-is.
3065 if ( $this->ot['wiki'] ) {
3066 if ( $substMatch === false ) {
3067 $literal = true; # literal when in PST with no prefix
3068 } else {
3069 $literal = false; # expand when in PST with subst: or safesubst:
3070 }
3071 } else {
3072 if ( $substMatch == 'subst' ) {
3073 $literal = true; # literal when not in PST with plain subst:
3074 } else {
3075 $literal = false; # expand when not in PST with safesubst: or no prefix
3076 }
3077 }
3078 if ( $literal ) {
3079 $text = $frame->virtualBracketedImplode( '{{', '|', '}}', $titleWithSpaces, $args );
3080 $isLocalObj = true;
3081 $found = true;
3082 }
3083 }
3084
3085 # Variables
3086 if ( !$found && $args->getLength() == 0 ) {
3087 $id = $this->mVariables->matchStartToEnd( $part1 );
3088 if ( $id !== false ) {
3089 $text = $this->getVariableValue( $id, $frame );
3090 if ( MagicWord::getCacheTTL( $id ) > -1 ) {
3091 $this->mOutput->updateCacheExpiry( MagicWord::getCacheTTL( $id ) );
3092 }
3093 $found = true;
3094 }
3095 }
3096
3097 # MSG, MSGNW and RAW
3098 if ( !$found ) {
3099 # Check for MSGNW:
3100 $mwMsgnw = MagicWord::get( 'msgnw' );
3101 if ( $mwMsgnw->matchStartAndRemove( $part1 ) ) {
3102 $nowiki = true;
3103 } else {
3104 # Remove obsolete MSG:
3105 $mwMsg = MagicWord::get( 'msg' );
3106 $mwMsg->matchStartAndRemove( $part1 );
3107 }
3108
3109 # Check for RAW:
3110 $mwRaw = MagicWord::get( 'raw' );
3111 if ( $mwRaw->matchStartAndRemove( $part1 ) ) {
3112 $forceRawInterwiki = true;
3113 }
3114 }
3115 wfProfileOut( __METHOD__.'-modifiers' );
3116
3117 # Parser functions
3118 if ( !$found ) {
3119 wfProfileIn( __METHOD__ . '-pfunc' );
3120
3121 $colonPos = strpos( $part1, ':' );
3122 if ( $colonPos !== false ) {
3123 # Case sensitive functions
3124 $function = substr( $part1, 0, $colonPos );
3125 if ( isset( $this->mFunctionSynonyms[1][$function] ) ) {
3126 $function = $this->mFunctionSynonyms[1][$function];
3127 } else {
3128 # Case insensitive functions
3129 $function = $this->getFunctionLang()->lc( $function );
3130 if ( isset( $this->mFunctionSynonyms[0][$function] ) ) {
3131 $function = $this->mFunctionSynonyms[0][$function];
3132 } else {
3133 $function = false;
3134 }
3135 }
3136 if ( $function ) {
3137 wfProfileIn( __METHOD__ . '-pfunc-' . $function );
3138 list( $callback, $flags ) = $this->mFunctionHooks[$function];
3139 $initialArgs = array( &$this );
3140 $funcArgs = array( trim( substr( $part1, $colonPos + 1 ) ) );
3141 if ( $flags & SFH_OBJECT_ARGS ) {
3142 # Add a frame parameter, and pass the arguments as an array
3143 $allArgs = $initialArgs;
3144 $allArgs[] = $frame;
3145 for ( $i = 0; $i < $args->getLength(); $i++ ) {
3146 $funcArgs[] = $args->item( $i );
3147 }
3148 $allArgs[] = $funcArgs;
3149 } else {
3150 # Convert arguments to plain text
3151 for ( $i = 0; $i < $args->getLength(); $i++ ) {
3152 $funcArgs[] = trim( $frame->expand( $args->item( $i ) ) );
3153 }
3154 $allArgs = array_merge( $initialArgs, $funcArgs );
3155 }
3156
3157 # Workaround for PHP bug 35229 and similar
3158 if ( !is_callable( $callback ) ) {
3159 wfProfileOut( __METHOD__ . '-pfunc-' . $function );
3160 wfProfileOut( __METHOD__ . '-pfunc' );
3161 wfProfileOut( __METHOD__ );
3162 throw new MWException( "Tag hook for $function is not callable\n" );
3163 }
3164 $result = call_user_func_array( $callback, $allArgs );
3165 $found = true;
3166 $noparse = true;
3167 $preprocessFlags = 0;
3168
3169 if ( is_array( $result ) ) {
3170 if ( isset( $result[0] ) ) {
3171 $text = $result[0];
3172 unset( $result[0] );
3173 }
3174
3175 # Extract flags into the local scope
3176 # This allows callers to set flags such as nowiki, found, etc.
3177 extract( $result );
3178 } else {
3179 $text = $result;
3180 }
3181 if ( !$noparse ) {
3182 $text = $this->preprocessToDom( $text, $preprocessFlags );
3183 $isChildObj = true;
3184 }
3185 wfProfileOut( __METHOD__ . '-pfunc-' . $function );
3186 }
3187 }
3188 wfProfileOut( __METHOD__ . '-pfunc' );
3189 }
3190
3191 # Finish mangling title and then check for loops.
3192 # Set $title to a Title object and $titleText to the PDBK
3193 if ( !$found ) {
3194 $ns = NS_TEMPLATE;
3195 # Split the title into page and subpage
3196 $subpage = '';
3197 $part1 = $this->maybeDoSubpageLink( $part1, $subpage );
3198 if ( $subpage !== '' ) {
3199 $ns = $this->mTitle->getNamespace();
3200 }
3201 $title = Title::newFromText( $part1, $ns );
3202 if ( $title ) {
3203 $titleText = $title->getPrefixedText();
3204 # Check for language variants if the template is not found
3205 if ( $this->getFunctionLang()->hasVariants() && $title->getArticleID() == 0 ) {
3206 $this->getFunctionLang()->findVariantLink( $part1, $title, true );
3207 }
3208 # Do recursion depth check
3209 $limit = $this->mOptions->getMaxTemplateDepth();
3210 if ( $frame->depth >= $limit ) {
3211 $found = true;
3212 $text = '<span class="error">'
3213 . wfMsgForContent( 'parser-template-recursion-depth-warning', $limit )
3214 . '</span>';
3215 }
3216 }
3217 }
3218
3219 # Load from database
3220 if ( !$found && $title ) {
3221 $titleProfileIn = __METHOD__ . "-title-" . $title->getDBKey();
3222 wfProfileIn( $titleProfileIn ); // template in
3223 wfProfileIn( __METHOD__ . '-loadtpl' );
3224 if ( !$title->isExternal() ) {
3225 if ( $title->isSpecialPage()
3226 && $this->mOptions->getAllowSpecialInclusion()
3227 && $this->ot['html'] )
3228 {
3229 // Pass the template arguments as URL parameters.
3230 // "uselang" will have no effect since the Language object
3231 // is forced to the one defined in ParserOptions.
3232 $pageArgs = array();
3233 for ( $i = 0; $i < $args->getLength(); $i++ ) {
3234 $bits = $args->item( $i )->splitArg();
3235 if ( strval( $bits['index'] ) === '' ) {
3236 $name = trim( $frame->expand( $bits['name'], PPFrame::STRIP_COMMENTS ) );
3237 $value = trim( $frame->expand( $bits['value'] ) );
3238 $pageArgs[$name] = $value;
3239 }
3240 }
3241
3242 // Create a new context to execute the special page
3243 $context = new RequestContext;
3244 $context->setTitle( $title );
3245 $context->setRequest( new FauxRequest( $pageArgs ) );
3246 $context->setUser( $this->getUser() );
3247 $context->setLanguage( $this->mOptions->getUserLangObj() );
3248 $ret = SpecialPageFactory::capturePath( $title, $context );
3249 if ( $ret ) {
3250 $text = $context->getOutput()->getHTML();
3251 $this->mOutput->addOutputPageMetadata( $context->getOutput() );
3252 $found = true;
3253 $isHTML = true;
3254 $this->disableCache();
3255 }
3256 } elseif ( $wgNonincludableNamespaces && in_array( $title->getNamespace(), $wgNonincludableNamespaces ) ) {
3257 $found = false; # access denied
3258 wfDebug( __METHOD__.": template inclusion denied for " . $title->getPrefixedDBkey() );
3259 } else {
3260 list( $text, $title ) = $this->getTemplateDom( $title );
3261 if ( $text !== false ) {
3262 $found = true;
3263 $isChildObj = true;
3264 }
3265 }
3266
3267 # If the title is valid but undisplayable, make a link to it
3268 if ( !$found && ( $this->ot['html'] || $this->ot['pre'] ) ) {
3269 $text = "[[:$titleText]]";
3270 $found = true;
3271 }
3272 } elseif ( $title->isTrans() ) {
3273 # Interwiki transclusion
3274 if ( $this->ot['html'] && !$forceRawInterwiki ) {
3275 $text = $this->interwikiTransclude( $title, 'render' );
3276 $isHTML = true;
3277 } else {
3278 $text = $this->interwikiTransclude( $title, 'raw' );
3279 # Preprocess it like a template
3280 $text = $this->preprocessToDom( $text, self::PTD_FOR_INCLUSION );
3281 $isChildObj = true;
3282 }
3283 $found = true;
3284 }
3285
3286 # Do infinite loop check
3287 # This has to be done after redirect resolution to avoid infinite loops via redirects
3288 if ( !$frame->loopCheck( $title ) ) {
3289 $found = true;
3290 $text = '<span class="error">' . wfMsgForContent( 'parser-template-loop-warning', $titleText ) . '</span>';
3291 wfDebug( __METHOD__.": template loop broken at '$titleText'\n" );
3292 }
3293 wfProfileOut( __METHOD__ . '-loadtpl' );
3294 }
3295
3296 # If we haven't found text to substitute by now, we're done
3297 # Recover the source wikitext and return it
3298 if ( !$found ) {
3299 $text = $frame->virtualBracketedImplode( '{{', '|', '}}', $titleWithSpaces, $args );
3300 if ( $titleProfileIn ) {
3301 wfProfileOut( $titleProfileIn ); // template out
3302 }
3303 wfProfileOut( __METHOD__ );
3304 return array( 'object' => $text );
3305 }
3306
3307 # Expand DOM-style return values in a child frame
3308 if ( $isChildObj ) {
3309 # Clean up argument array
3310 $newFrame = $frame->newChild( $args, $title );
3311
3312 if ( $nowiki ) {
3313 $text = $newFrame->expand( $text, PPFrame::RECOVER_ORIG );
3314 } elseif ( $titleText !== false && $newFrame->isEmpty() ) {
3315 # Expansion is eligible for the empty-frame cache
3316 if ( isset( $this->mTplExpandCache[$titleText] ) ) {
3317 $text = $this->mTplExpandCache[$titleText];
3318 } else {
3319 $text = $newFrame->expand( $text );
3320 $this->mTplExpandCache[$titleText] = $text;
3321 }
3322 } else {
3323 # Uncached expansion
3324 $text = $newFrame->expand( $text );
3325 }
3326 }
3327 if ( $isLocalObj && $nowiki ) {
3328 $text = $frame->expand( $text, PPFrame::RECOVER_ORIG );
3329 $isLocalObj = false;
3330 }
3331
3332 if ( $titleProfileIn ) {
3333 wfProfileOut( $titleProfileIn ); // template out
3334 }
3335
3336 # Replace raw HTML by a placeholder
3337 # Add a blank line preceding, to prevent it from mucking up
3338 # immediately preceding headings
3339 if ( $isHTML ) {
3340 $text = "\n\n" . $this->insertStripItem( $text );
3341 } elseif ( $nowiki && ( $this->ot['html'] || $this->ot['pre'] ) ) {
3342 # Escape nowiki-style return values
3343 $text = wfEscapeWikiText( $text );
3344 } elseif ( is_string( $text )
3345 && !$piece['lineStart']
3346 && preg_match( '/^(?:{\\||:|;|#|\*)/', $text ) )
3347 {
3348 # Bug 529: if the template begins with a table or block-level
3349 # element, it should be treated as beginning a new line.
3350 # This behaviour is somewhat controversial.
3351 $text = "\n" . $text;
3352 }
3353
3354 if ( is_string( $text ) && !$this->incrementIncludeSize( 'post-expand', strlen( $text ) ) ) {
3355 # Error, oversize inclusion
3356 if ( $titleText !== false ) {
3357 # Make a working, properly escaped link if possible (bug 23588)
3358 $text = "[[:$titleText]]";
3359 } else {
3360 # This will probably not be a working link, but at least it may
3361 # provide some hint of where the problem is
3362 preg_replace( '/^:/', '', $originalTitle );
3363 $text = "[[:$originalTitle]]";
3364 }
3365 $text .= $this->insertStripItem( '<!-- WARNING: template omitted, post-expand include size too large -->' );
3366 $this->limitationWarn( 'post-expand-template-inclusion' );
3367 }
3368
3369 if ( $isLocalObj ) {
3370 $ret = array( 'object' => $text );
3371 } else {
3372 $ret = array( 'text' => $text );
3373 }
3374
3375 wfProfileOut( __METHOD__ );
3376 return $ret;
3377 }
3378
3379 /**
3380 * Get the semi-parsed DOM representation of a template with a given title,
3381 * and its redirect destination title. Cached.
3382 *
3383 * @param $title Title
3384 *
3385 * @return array
3386 */
3387 function getTemplateDom( $title ) {
3388 $cacheTitle = $title;
3389 $titleText = $title->getPrefixedDBkey();
3390
3391 if ( isset( $this->mTplRedirCache[$titleText] ) ) {
3392 list( $ns, $dbk ) = $this->mTplRedirCache[$titleText];
3393 $title = Title::makeTitle( $ns, $dbk );
3394 $titleText = $title->getPrefixedDBkey();
3395 }
3396 if ( isset( $this->mTplDomCache[$titleText] ) ) {
3397 return array( $this->mTplDomCache[$titleText], $title );
3398 }
3399
3400 # Cache miss, go to the database
3401 list( $text, $title ) = $this->fetchTemplateAndTitle( $title );
3402
3403 if ( $text === false ) {
3404 $this->mTplDomCache[$titleText] = false;
3405 return array( false, $title );
3406 }
3407
3408 $dom = $this->preprocessToDom( $text, self::PTD_FOR_INCLUSION );
3409 $this->mTplDomCache[ $titleText ] = $dom;
3410
3411 if ( !$title->equals( $cacheTitle ) ) {
3412 $this->mTplRedirCache[$cacheTitle->getPrefixedDBkey()] =
3413 array( $title->getNamespace(), $cdb = $title->getDBkey() );
3414 }
3415
3416 return array( $dom, $title );
3417 }
3418
3419 /**
3420 * Fetch the unparsed text of a template and register a reference to it.
3421 * @param Title $title
3422 * @return Array ( string or false, Title )
3423 */
3424 function fetchTemplateAndTitle( $title ) {
3425 $templateCb = $this->mOptions->getTemplateCallback(); # Defaults to Parser::statelessFetchTemplate()
3426 $stuff = call_user_func( $templateCb, $title, $this );
3427 $text = $stuff['text'];
3428 $finalTitle = isset( $stuff['finalTitle'] ) ? $stuff['finalTitle'] : $title;
3429 if ( isset( $stuff['deps'] ) ) {
3430 foreach ( $stuff['deps'] as $dep ) {
3431 $this->mOutput->addTemplate( $dep['title'], $dep['page_id'], $dep['rev_id'] );
3432 }
3433 }
3434 return array( $text, $finalTitle );
3435 }
3436
3437 /**
3438 * Fetch the unparsed text of a template and register a reference to it.
3439 * @param Title $title
3440 * @return mixed string or false
3441 */
3442 function fetchTemplate( $title ) {
3443 $rv = $this->fetchTemplateAndTitle( $title );
3444 return $rv[0];
3445 }
3446
3447 /**
3448 * Static function to get a template
3449 * Can be overridden via ParserOptions::setTemplateCallback().
3450 *
3451 * @parma $title Title
3452 * @param $parser Parser
3453 *
3454 * @return array
3455 */
3456 static function statelessFetchTemplate( $title, $parser = false ) {
3457 $text = $skip = false;
3458 $finalTitle = $title;
3459 $deps = array();
3460
3461 # Loop to fetch the article, with up to 1 redirect
3462 for ( $i = 0; $i < 2 && is_object( $title ); $i++ ) {
3463 # Give extensions a chance to select the revision instead
3464 $id = false; # Assume current
3465 wfRunHooks( 'BeforeParserFetchTemplateAndtitle',
3466 array( $parser, $title, &$skip, &$id ) );
3467
3468 if ( $skip ) {
3469 $text = false;
3470 $deps[] = array(
3471 'title' => $title,
3472 'page_id' => $title->getArticleID(),
3473 'rev_id' => null
3474 );
3475 break;
3476 }
3477 # Get the revision
3478 $rev = $id
3479 ? Revision::newFromId( $id )
3480 : Revision::newFromTitle( $title );
3481 $rev_id = $rev ? $rev->getId() : 0;
3482 # If there is no current revision, there is no page
3483 if ( $id === false && !$rev ) {
3484 $linkCache = LinkCache::singleton();
3485 $linkCache->addBadLinkObj( $title );
3486 }
3487
3488 $deps[] = array(
3489 'title' => $title,
3490 'page_id' => $title->getArticleID(),
3491 'rev_id' => $rev_id );
3492 if ( $rev && !$title->equals( $rev->getTitle() ) ) {
3493 # We fetched a rev from a different title; register it too...
3494 $deps[] = array(
3495 'title' => $rev->getTitle(),
3496 'page_id' => $rev->getPage(),
3497 'rev_id' => $rev_id );
3498 }
3499
3500 if ( $rev ) {
3501 $text = $rev->getText();
3502 } elseif ( $title->getNamespace() == NS_MEDIAWIKI ) {
3503 global $wgContLang;
3504 $message = wfMessage( $wgContLang->lcfirst( $title->getText() ) )->inContentLanguage();
3505 if ( !$message->exists() ) {
3506 $text = false;
3507 break;
3508 }
3509 $text = $message->plain();
3510 } else {
3511 break;
3512 }
3513 if ( $text === false ) {
3514 break;
3515 }
3516 # Redirect?
3517 $finalTitle = $title;
3518 $title = Title::newFromRedirect( $text );
3519 }
3520 return array(
3521 'text' => $text,
3522 'finalTitle' => $finalTitle,
3523 'deps' => $deps );
3524 }
3525
3526 /**
3527 * Fetch a file and its title and register a reference to it.
3528 * If 'broken' is a key in $options then the file will appear as a broken thumbnail.
3529 * @param Title $title
3530 * @param Array $options Array of options to RepoGroup::findFile
3531 * @return File|false
3532 */
3533 function fetchFile( $title, $options = array() ) {
3534 $res = $this->fetchFileAndTitle( $title, $options );
3535 return $res[0];
3536 }
3537
3538 /**
3539 * Fetch a file and its title and register a reference to it.
3540 * If 'broken' is a key in $options then the file will appear as a broken thumbnail.
3541 * @param Title $title
3542 * @param Array $options Array of options to RepoGroup::findFile
3543 * @return Array ( File or false, Title of file )
3544 */
3545 function fetchFileAndTitle( $title, $options = array() ) {
3546 if ( isset( $options['broken'] ) ) {
3547 $file = false; // broken thumbnail forced by hook
3548 } elseif ( isset( $options['sha1'] ) ) { // get by (sha1,timestamp)
3549 $file = RepoGroup::singleton()->findFileFromKey( $options['sha1'], $options );
3550 } else { // get by (name,timestamp)
3551 $file = wfFindFile( $title, $options );
3552 }
3553 $time = $file ? $file->getTimestamp() : false;
3554 $sha1 = $file ? $file->getSha1() : false;
3555 # Register the file as a dependency...
3556 $this->mOutput->addImage( $title->getDBkey(), $time, $sha1 );
3557 if ( $file && !$title->equals( $file->getTitle() ) ) {
3558 # Update fetched file title
3559 $title = $file->getTitle();
3560 if ( is_null( $file->getRedirectedTitle() ) ) {
3561 # This file was not a redirect, but the title does not match.
3562 # Register under the new name because otherwise the link will
3563 # get lost.
3564 $this->mOutput->addImage( $title->getDBkey(), $time, $sha1 );
3565 }
3566 }
3567 return array( $file, $title );
3568 }
3569
3570 /**
3571 * Transclude an interwiki link.
3572 *
3573 * @param $title Title
3574 * @param $action
3575 *
3576 * @return string
3577 */
3578 function interwikiTransclude( $title, $action ) {
3579 global $wgEnableScaryTranscluding;
3580
3581 if ( !$wgEnableScaryTranscluding ) {
3582 return wfMsgForContent('scarytranscludedisabled');
3583 }
3584
3585 $url = $title->getFullUrl( "action=$action" );
3586
3587 if ( strlen( $url ) > 255 ) {
3588 return wfMsgForContent( 'scarytranscludetoolong' );
3589 }
3590 return $this->fetchScaryTemplateMaybeFromCache( $url );
3591 }
3592
3593 /**
3594 * @param $url string
3595 * @return Mixed|String
3596 */
3597 function fetchScaryTemplateMaybeFromCache( $url ) {
3598 global $wgTranscludeCacheExpiry;
3599 $dbr = wfGetDB( DB_SLAVE );
3600 $tsCond = $dbr->timestamp( time() - $wgTranscludeCacheExpiry );
3601 $obj = $dbr->selectRow( 'transcache', array('tc_time', 'tc_contents' ),
3602 array( 'tc_url' => $url, "tc_time >= " . $dbr->addQuotes( $tsCond ) ) );
3603 if ( $obj ) {
3604 return $obj->tc_contents;
3605 }
3606
3607 $text = Http::get( $url );
3608 if ( !$text ) {
3609 return wfMsgForContent( 'scarytranscludefailed', $url );
3610 }
3611
3612 $dbw = wfGetDB( DB_MASTER );
3613 $dbw->replace( 'transcache', array('tc_url'), array(
3614 'tc_url' => $url,
3615 'tc_time' => $dbw->timestamp( time() ),
3616 'tc_contents' => $text)
3617 );
3618 return $text;
3619 }
3620
3621 /**
3622 * Triple brace replacement -- used for template arguments
3623 * @private
3624 *
3625 * @param $peice array
3626 * @param $frame PPFrame
3627 *
3628 * @return array
3629 */
3630 function argSubstitution( $piece, $frame ) {
3631 wfProfileIn( __METHOD__ );
3632
3633 $error = false;
3634 $parts = $piece['parts'];
3635 $nameWithSpaces = $frame->expand( $piece['title'] );
3636 $argName = trim( $nameWithSpaces );
3637 $object = false;
3638 $text = $frame->getArgument( $argName );
3639 if ( $text === false && $parts->getLength() > 0
3640 && (
3641 $this->ot['html']
3642 || $this->ot['pre']
3643 || ( $this->ot['wiki'] && $frame->isTemplate() )
3644 )
3645 ) {
3646 # No match in frame, use the supplied default
3647 $object = $parts->item( 0 )->getChildren();
3648 }
3649 if ( !$this->incrementIncludeSize( 'arg', strlen( $text ) ) ) {
3650 $error = '<!-- WARNING: argument omitted, expansion size too large -->';
3651 $this->limitationWarn( 'post-expand-template-argument' );
3652 }
3653
3654 if ( $text === false && $object === false ) {
3655 # No match anywhere
3656 $object = $frame->virtualBracketedImplode( '{{{', '|', '}}}', $nameWithSpaces, $parts );
3657 }
3658 if ( $error !== false ) {
3659 $text .= $error;
3660 }
3661 if ( $object !== false ) {
3662 $ret = array( 'object' => $object );
3663 } else {
3664 $ret = array( 'text' => $text );
3665 }
3666
3667 wfProfileOut( __METHOD__ );
3668 return $ret;
3669 }
3670
3671 /**
3672 * Return the text to be used for a given extension tag.
3673 * This is the ghost of strip().
3674 *
3675 * @param $params Associative array of parameters:
3676 * name PPNode for the tag name
3677 * attr PPNode for unparsed text where tag attributes are thought to be
3678 * attributes Optional associative array of parsed attributes
3679 * inner Contents of extension element
3680 * noClose Original text did not have a close tag
3681 * @param $frame PPFrame
3682 *
3683 * @return string
3684 */
3685 function extensionSubstitution( $params, $frame ) {
3686 $name = $frame->expand( $params['name'] );
3687 $attrText = !isset( $params['attr'] ) ? null : $frame->expand( $params['attr'] );
3688 $content = !isset( $params['inner'] ) ? null : $frame->expand( $params['inner'] );
3689 $marker = "{$this->mUniqPrefix}-$name-" . sprintf( '%08X', $this->mMarkerIndex++ ) . self::MARKER_SUFFIX;
3690
3691 $isFunctionTag = isset( $this->mFunctionTagHooks[strtolower($name)] ) &&
3692 ( $this->ot['html'] || $this->ot['pre'] );
3693 if ( $isFunctionTag ) {
3694 $markerType = 'none';
3695 } else {
3696 $markerType = 'general';
3697 }
3698 if ( $this->ot['html'] || $isFunctionTag ) {
3699 $name = strtolower( $name );
3700 $attributes = Sanitizer::decodeTagAttributes( $attrText );
3701 if ( isset( $params['attributes'] ) ) {
3702 $attributes = $attributes + $params['attributes'];
3703 }
3704
3705 if ( isset( $this->mTagHooks[$name] ) ) {
3706 # Workaround for PHP bug 35229 and similar
3707 if ( !is_callable( $this->mTagHooks[$name] ) ) {
3708 throw new MWException( "Tag hook for $name is not callable\n" );
3709 }
3710 $output = call_user_func_array( $this->mTagHooks[$name],
3711 array( $content, $attributes, $this, $frame ) );
3712 } elseif ( isset( $this->mFunctionTagHooks[$name] ) ) {
3713 list( $callback, $flags ) = $this->mFunctionTagHooks[$name];
3714 if ( !is_callable( $callback ) ) {
3715 throw new MWException( "Tag hook for $name is not callable\n" );
3716 }
3717
3718 $output = call_user_func_array( $callback, array( &$this, $frame, $content, $attributes ) );
3719 } else {
3720 $output = '<span class="error">Invalid tag extension name: ' .
3721 htmlspecialchars( $name ) . '</span>';
3722 }
3723
3724 if ( is_array( $output ) ) {
3725 # Extract flags to local scope (to override $markerType)
3726 $flags = $output;
3727 $output = $flags[0];
3728 unset( $flags[0] );
3729 extract( $flags );
3730 }
3731 } else {
3732 if ( is_null( $attrText ) ) {
3733 $attrText = '';
3734 }
3735 if ( isset( $params['attributes'] ) ) {
3736 foreach ( $params['attributes'] as $attrName => $attrValue ) {
3737 $attrText .= ' ' . htmlspecialchars( $attrName ) . '="' .
3738 htmlspecialchars( $attrValue ) . '"';
3739 }
3740 }
3741 if ( $content === null ) {
3742 $output = "<$name$attrText/>";
3743 } else {
3744 $close = is_null( $params['close'] ) ? '' : $frame->expand( $params['close'] );
3745 $output = "<$name$attrText>$content$close";
3746 }
3747 }
3748
3749 if ( $markerType === 'none' ) {
3750 return $output;
3751 } elseif ( $markerType === 'nowiki' ) {
3752 $this->mStripState->addNoWiki( $marker, $output );
3753 } elseif ( $markerType === 'general' ) {
3754 $this->mStripState->addGeneral( $marker, $output );
3755 } else {
3756 throw new MWException( __METHOD__.': invalid marker type' );
3757 }
3758 return $marker;
3759 }
3760
3761 /**
3762 * Increment an include size counter
3763 *
3764 * @param $type String: the type of expansion
3765 * @param $size Integer: the size of the text
3766 * @return Boolean: false if this inclusion would take it over the maximum, true otherwise
3767 */
3768 function incrementIncludeSize( $type, $size ) {
3769 if ( $this->mIncludeSizes[$type] + $size > $this->mOptions->getMaxIncludeSize() ) {
3770 return false;
3771 } else {
3772 $this->mIncludeSizes[$type] += $size;
3773 return true;
3774 }
3775 }
3776
3777 /**
3778 * Increment the expensive function count
3779 *
3780 * @return Boolean: false if the limit has been exceeded
3781 */
3782 function incrementExpensiveFunctionCount() {
3783 global $wgExpensiveParserFunctionLimit;
3784 $this->mExpensiveFunctionCount++;
3785 if ( $this->mExpensiveFunctionCount <= $wgExpensiveParserFunctionLimit ) {
3786 return true;
3787 }
3788 return false;
3789 }
3790
3791 /**
3792 * Strip double-underscore items like __NOGALLERY__ and __NOTOC__
3793 * Fills $this->mDoubleUnderscores, returns the modified text
3794 *
3795 * @param $text string
3796 *
3797 * @return string
3798 */
3799 function doDoubleUnderscore( $text ) {
3800 wfProfileIn( __METHOD__ );
3801
3802 # The position of __TOC__ needs to be recorded
3803 $mw = MagicWord::get( 'toc' );
3804 if ( $mw->match( $text ) ) {
3805 $this->mShowToc = true;
3806 $this->mForceTocPosition = true;
3807
3808 # Set a placeholder. At the end we'll fill it in with the TOC.
3809 $text = $mw->replace( '<!--MWTOC-->', $text, 1 );
3810
3811 # Only keep the first one.
3812 $text = $mw->replace( '', $text );
3813 }
3814
3815 # Now match and remove the rest of them
3816 $mwa = MagicWord::getDoubleUnderscoreArray();
3817 $this->mDoubleUnderscores = $mwa->matchAndRemove( $text );
3818
3819 if ( isset( $this->mDoubleUnderscores['nogallery'] ) ) {
3820 $this->mOutput->mNoGallery = true;
3821 }
3822 if ( isset( $this->mDoubleUnderscores['notoc'] ) && !$this->mForceTocPosition ) {
3823 $this->mShowToc = false;
3824 }
3825 if ( isset( $this->mDoubleUnderscores['hiddencat'] ) && $this->mTitle->getNamespace() == NS_CATEGORY ) {
3826 $this->addTrackingCategory( 'hidden-category-category' );
3827 }
3828 # (bug 8068) Allow control over whether robots index a page.
3829 #
3830 # @todo FIXME: Bug 14899: __INDEX__ always overrides __NOINDEX__ here! This
3831 # is not desirable, the last one on the page should win.
3832 if ( isset( $this->mDoubleUnderscores['noindex'] ) && $this->mTitle->canUseNoindex() ) {
3833 $this->mOutput->setIndexPolicy( 'noindex' );
3834 $this->addTrackingCategory( 'noindex-category' );
3835 }
3836 if ( isset( $this->mDoubleUnderscores['index'] ) && $this->mTitle->canUseNoindex() ) {
3837 $this->mOutput->setIndexPolicy( 'index' );
3838 $this->addTrackingCategory( 'index-category' );
3839 }
3840
3841 # Cache all double underscores in the database
3842 foreach ( $this->mDoubleUnderscores as $key => $val ) {
3843 $this->mOutput->setProperty( $key, '' );
3844 }
3845
3846 wfProfileOut( __METHOD__ );
3847 return $text;
3848 }
3849
3850 /**
3851 * Add a tracking category, getting the title from a system message,
3852 * or print a debug message if the title is invalid.
3853 *
3854 * @param $msg String: message key
3855 * @return Boolean: whether the addition was successful
3856 */
3857 protected function addTrackingCategory( $msg ) {
3858 if ( $this->mTitle->getNamespace() === NS_SPECIAL ) {
3859 wfDebug( __METHOD__.": Not adding tracking category $msg to special page!\n" );
3860 return false;
3861 }
3862 // Important to parse with correct title (bug 31469)
3863 $cat = wfMessage( $msg )
3864 ->title( $this->getTitle() )
3865 ->inContentLanguage()
3866 ->text();
3867
3868 # Allow tracking categories to be disabled by setting them to "-"
3869 if ( $cat === '-' ) {
3870 return false;
3871 }
3872
3873 $containerCategory = Title::makeTitleSafe( NS_CATEGORY, $cat );
3874 if ( $containerCategory ) {
3875 $this->mOutput->addCategory( $containerCategory->getDBkey(), $this->getDefaultSort() );
3876 return true;
3877 } else {
3878 wfDebug( __METHOD__.": [[MediaWiki:$msg]] is not a valid title!\n" );
3879 return false;
3880 }
3881 }
3882
3883 /**
3884 * This function accomplishes several tasks:
3885 * 1) Auto-number headings if that option is enabled
3886 * 2) Add an [edit] link to sections for users who have enabled the option and can edit the page
3887 * 3) Add a Table of contents on the top for users who have enabled the option
3888 * 4) Auto-anchor headings
3889 *
3890 * It loops through all headlines, collects the necessary data, then splits up the
3891 * string and re-inserts the newly formatted headlines.
3892 *
3893 * @param $text String
3894 * @param $origText String: original, untouched wikitext
3895 * @param $isMain Boolean
3896 * @private
3897 */
3898 function formatHeadings( $text, $origText, $isMain=true ) {
3899 global $wgMaxTocLevel, $wgHtml5, $wgExperimentalHtmlIds;
3900
3901 # Inhibit editsection links if requested in the page
3902 if ( isset( $this->mDoubleUnderscores['noeditsection'] ) ) {
3903 $maybeShowEditLink = $showEditLink = false;
3904 } else {
3905 $maybeShowEditLink = true; /* Actual presence will depend on ParserOptions option */
3906 $showEditLink = $this->mOptions->getEditSection();
3907 }
3908 if ( $showEditLink ) {
3909 $this->mOutput->setEditSectionTokens( true );
3910 }
3911
3912 # Get all headlines for numbering them and adding funky stuff like [edit]
3913 # links - this is for later, but we need the number of headlines right now
3914 $matches = array();
3915 $numMatches = preg_match_all( '/<H(?P<level>[1-6])(?P<attrib>.*?'.'>)(?P<header>.*?)<\/H[1-6] *>/i', $text, $matches );
3916
3917 # if there are fewer than 4 headlines in the article, do not show TOC
3918 # unless it's been explicitly enabled.
3919 $enoughToc = $this->mShowToc &&
3920 ( ( $numMatches >= 4 ) || $this->mForceTocPosition );
3921
3922 # Allow user to stipulate that a page should have a "new section"
3923 # link added via __NEWSECTIONLINK__
3924 if ( isset( $this->mDoubleUnderscores['newsectionlink'] ) ) {
3925 $this->mOutput->setNewSection( true );
3926 }
3927
3928 # Allow user to remove the "new section"
3929 # link via __NONEWSECTIONLINK__
3930 if ( isset( $this->mDoubleUnderscores['nonewsectionlink'] ) ) {
3931 $this->mOutput->hideNewSection( true );
3932 }
3933
3934 # if the string __FORCETOC__ (not case-sensitive) occurs in the HTML,
3935 # override above conditions and always show TOC above first header
3936 if ( isset( $this->mDoubleUnderscores['forcetoc'] ) ) {
3937 $this->mShowToc = true;
3938 $enoughToc = true;
3939 }
3940
3941 # headline counter
3942 $headlineCount = 0;
3943 $numVisible = 0;
3944
3945 # Ugh .. the TOC should have neat indentation levels which can be
3946 # passed to the skin functions. These are determined here
3947 $toc = '';
3948 $full = '';
3949 $head = array();
3950 $sublevelCount = array();
3951 $levelCount = array();
3952 $level = 0;
3953 $prevlevel = 0;
3954 $toclevel = 0;
3955 $prevtoclevel = 0;
3956 $markerRegex = "{$this->mUniqPrefix}-h-(\d+)-" . self::MARKER_SUFFIX;
3957 $baseTitleText = $this->mTitle->getPrefixedDBkey();
3958 $oldType = $this->mOutputType;
3959 $this->setOutputType( self::OT_WIKI );
3960 $frame = $this->getPreprocessor()->newFrame();
3961 $root = $this->preprocessToDom( $origText );
3962 $node = $root->getFirstChild();
3963 $byteOffset = 0;
3964 $tocraw = array();
3965 $refers = array();
3966
3967 foreach ( $matches[3] as $headline ) {
3968 $isTemplate = false;
3969 $titleText = false;
3970 $sectionIndex = false;
3971 $numbering = '';
3972 $markerMatches = array();
3973 if ( preg_match("/^$markerRegex/", $headline, $markerMatches ) ) {
3974 $serial = $markerMatches[1];
3975 list( $titleText, $sectionIndex ) = $this->mHeadings[$serial];
3976 $isTemplate = ( $titleText != $baseTitleText );
3977 $headline = preg_replace( "/^$markerRegex/", "", $headline );
3978 }
3979
3980 if ( $toclevel ) {
3981 $prevlevel = $level;
3982 }
3983 $level = $matches[1][$headlineCount];
3984
3985 if ( $level > $prevlevel ) {
3986 # Increase TOC level
3987 $toclevel++;
3988 $sublevelCount[$toclevel] = 0;
3989 if ( $toclevel<$wgMaxTocLevel ) {
3990 $prevtoclevel = $toclevel;
3991 $toc .= Linker::tocIndent();
3992 $numVisible++;
3993 }
3994 } elseif ( $level < $prevlevel && $toclevel > 1 ) {
3995 # Decrease TOC level, find level to jump to
3996
3997 for ( $i = $toclevel; $i > 0; $i-- ) {
3998 if ( $levelCount[$i] == $level ) {
3999 # Found last matching level
4000 $toclevel = $i;
4001 break;
4002 } elseif ( $levelCount[$i] < $level ) {
4003 # Found first matching level below current level
4004 $toclevel = $i + 1;
4005 break;
4006 }
4007 }
4008 if ( $i == 0 ) {
4009 $toclevel = 1;
4010 }
4011 if ( $toclevel<$wgMaxTocLevel ) {
4012 if ( $prevtoclevel < $wgMaxTocLevel ) {
4013 # Unindent only if the previous toc level was shown :p
4014 $toc .= Linker::tocUnindent( $prevtoclevel - $toclevel );
4015 $prevtoclevel = $toclevel;
4016 } else {
4017 $toc .= Linker::tocLineEnd();
4018 }
4019 }
4020 } else {
4021 # No change in level, end TOC line
4022 if ( $toclevel<$wgMaxTocLevel ) {
4023 $toc .= Linker::tocLineEnd();
4024 }
4025 }
4026
4027 $levelCount[$toclevel] = $level;
4028
4029 # count number of headlines for each level
4030 @$sublevelCount[$toclevel]++;
4031 $dot = 0;
4032 for( $i = 1; $i <= $toclevel; $i++ ) {
4033 if ( !empty( $sublevelCount[$i] ) ) {
4034 if ( $dot ) {
4035 $numbering .= '.';
4036 }
4037 $numbering .= $this->getFunctionLang()->formatNum( $sublevelCount[$i] );
4038 $dot = 1;
4039 }
4040 }
4041
4042 # The safe header is a version of the header text safe to use for links
4043 # Avoid insertion of weird stuff like <math> by expanding the relevant sections
4044 $safeHeadline = $this->mStripState->unstripBoth( $headline );
4045
4046 # Remove link placeholders by the link text.
4047 # <!--LINK number-->
4048 # turns into
4049 # link text with suffix
4050 $safeHeadline = $this->replaceLinkHoldersText( $safeHeadline );
4051
4052 # Strip out HTML (other than plain <sup> and <sub>: bug 8393, or <i>: bug 26375)
4053 $tocline = preg_replace(
4054 array( '#<(?!/?(sup|sub|i|b)).*?'.'>#', '#<(/?(sup|sub|i|b)).*?'.'>#' ),
4055 array( '', '<$1>' ),
4056 $safeHeadline
4057 );
4058 $tocline = trim( $tocline );
4059
4060 # For the anchor, strip out HTML-y stuff period
4061 $safeHeadline = preg_replace( '/<.*?'.'>/', '', $safeHeadline );
4062 $safeHeadline = Sanitizer::normalizeSectionNameWhitespace( $safeHeadline );
4063
4064 # Save headline for section edit hint before it's escaped
4065 $headlineHint = $safeHeadline;
4066
4067 if ( $wgHtml5 && $wgExperimentalHtmlIds ) {
4068 # For reverse compatibility, provide an id that's
4069 # HTML4-compatible, like we used to.
4070 #
4071 # It may be worth noting, academically, that it's possible for
4072 # the legacy anchor to conflict with a non-legacy headline
4073 # anchor on the page. In this case likely the "correct" thing
4074 # would be to either drop the legacy anchors or make sure
4075 # they're numbered first. However, this would require people
4076 # to type in section names like "abc_.D7.93.D7.90.D7.A4"
4077 # manually, so let's not bother worrying about it.
4078 $legacyHeadline = Sanitizer::escapeId( $safeHeadline,
4079 array( 'noninitial', 'legacy' ) );
4080 $safeHeadline = Sanitizer::escapeId( $safeHeadline );
4081
4082 if ( $legacyHeadline == $safeHeadline ) {
4083 # No reason to have both (in fact, we can't)
4084 $legacyHeadline = false;
4085 }
4086 } else {
4087 $legacyHeadline = false;
4088 $safeHeadline = Sanitizer::escapeId( $safeHeadline,
4089 'noninitial' );
4090 }
4091
4092 # HTML names must be case-insensitively unique (bug 10721).
4093 # This does not apply to Unicode characters per
4094 # http://dev.w3.org/html5/spec/infrastructure.html#case-sensitivity-and-string-comparison
4095 # @todo FIXME: We may be changing them depending on the current locale.
4096 $arrayKey = strtolower( $safeHeadline );
4097 if ( $legacyHeadline === false ) {
4098 $legacyArrayKey = false;
4099 } else {
4100 $legacyArrayKey = strtolower( $legacyHeadline );
4101 }
4102
4103 # count how many in assoc. array so we can track dupes in anchors
4104 if ( isset( $refers[$arrayKey] ) ) {
4105 $refers[$arrayKey]++;
4106 } else {
4107 $refers[$arrayKey] = 1;
4108 }
4109 if ( isset( $refers[$legacyArrayKey] ) ) {
4110 $refers[$legacyArrayKey]++;
4111 } else {
4112 $refers[$legacyArrayKey] = 1;
4113 }
4114
4115 # Don't number the heading if it is the only one (looks silly)
4116 if ( count( $matches[3] ) > 1 && $this->mOptions->getNumberHeadings() ) {
4117 # the two are different if the line contains a link
4118 $headline = $numbering . ' ' . $headline;
4119 }
4120
4121 # Create the anchor for linking from the TOC to the section
4122 $anchor = $safeHeadline;
4123 $legacyAnchor = $legacyHeadline;
4124 if ( $refers[$arrayKey] > 1 ) {
4125 $anchor .= '_' . $refers[$arrayKey];
4126 }
4127 if ( $legacyHeadline !== false && $refers[$legacyArrayKey] > 1 ) {
4128 $legacyAnchor .= '_' . $refers[$legacyArrayKey];
4129 }
4130 if ( $enoughToc && ( !isset( $wgMaxTocLevel ) || $toclevel < $wgMaxTocLevel ) ) {
4131 $toc .= Linker::tocLine( $anchor, $tocline,
4132 $numbering, $toclevel, ( $isTemplate ? false : $sectionIndex ) );
4133 }
4134
4135 # Add the section to the section tree
4136 # Find the DOM node for this header
4137 while ( $node && !$isTemplate ) {
4138 if ( $node->getName() === 'h' ) {
4139 $bits = $node->splitHeading();
4140 if ( $bits['i'] == $sectionIndex ) {
4141 break;
4142 }
4143 }
4144 $byteOffset += mb_strlen( $this->mStripState->unstripBoth(
4145 $frame->expand( $node, PPFrame::RECOVER_ORIG ) ) );
4146 $node = $node->getNextSibling();
4147 }
4148 $tocraw[] = array(
4149 'toclevel' => $toclevel,
4150 'level' => $level,
4151 'line' => $tocline,
4152 'number' => $numbering,
4153 'index' => ( $isTemplate ? 'T-' : '' ) . $sectionIndex,
4154 'fromtitle' => $titleText,
4155 'byteoffset' => ( $isTemplate ? null : $byteOffset ),
4156 'anchor' => $anchor,
4157 );
4158
4159 # give headline the correct <h#> tag
4160 if ( $maybeShowEditLink && $sectionIndex !== false ) {
4161 // Output edit section links as markers with styles that can be customized by skins
4162 if ( $isTemplate ) {
4163 # Put a T flag in the section identifier, to indicate to extractSections()
4164 # that sections inside <includeonly> should be counted.
4165 $editlinkArgs = array( $titleText, "T-$sectionIndex"/*, null */ );
4166 } else {
4167 $editlinkArgs = array( $this->mTitle->getPrefixedText(), $sectionIndex, $headlineHint );
4168 }
4169 // We use a bit of pesudo-xml for editsection markers. The language converter is run later on
4170 // Using a UNIQ style marker leads to the converter screwing up the tokens when it converts stuff
4171 // And trying to insert strip tags fails too. At this point all real inputted tags have already been escaped
4172 // so we don't have to worry about a user trying to input one of these markers directly.
4173 // We use a page and section attribute to stop the language converter from converting these important bits
4174 // of data, but put the headline hint inside a content block because the language converter is supposed to
4175 // be able to convert that piece of data.
4176 $editlink = '<mw:editsection page="' . htmlspecialchars($editlinkArgs[0]);
4177 $editlink .= '" section="' . htmlspecialchars($editlinkArgs[1]) .'"';
4178 if ( isset($editlinkArgs[2]) ) {
4179 $editlink .= '>' . $editlinkArgs[2] . '</mw:editsection>';
4180 } else {
4181 $editlink .= '/>';
4182 }
4183 } else {
4184 $editlink = '';
4185 }
4186 $head[$headlineCount] = Linker::makeHeadline( $level,
4187 $matches['attrib'][$headlineCount], $anchor, $headline,
4188 $editlink, $legacyAnchor );
4189
4190 $headlineCount++;
4191 }
4192
4193 $this->setOutputType( $oldType );
4194
4195 # Never ever show TOC if no headers
4196 if ( $numVisible < 1 ) {
4197 $enoughToc = false;
4198 }
4199
4200 if ( $enoughToc ) {
4201 if ( $prevtoclevel > 0 && $prevtoclevel < $wgMaxTocLevel ) {
4202 $toc .= Linker::tocUnindent( $prevtoclevel - 1 );
4203 }
4204 $toc = Linker::tocList( $toc, $this->mOptions->getUserLangObj() );
4205 $this->mOutput->setTOCHTML( $toc );
4206 }
4207
4208 if ( $isMain ) {
4209 $this->mOutput->setSections( $tocraw );
4210 }
4211
4212 # split up and insert constructed headlines
4213 $blocks = preg_split( '/<H[1-6].*?' . '>.*?<\/H[1-6]>/i', $text );
4214 $i = 0;
4215
4216 // build an array of document sections
4217 $sections = array();
4218 foreach ( $blocks as $block ) {
4219 // $head is zero-based, sections aren't.
4220 if ( empty( $head[$i - 1] ) ) {
4221 $sections[$i] = $block;
4222 } else {
4223 $sections[$i] = $head[$i - 1] . $block;
4224 }
4225
4226 /**
4227 * Send a hook, one per section.
4228 * The idea here is to be able to make section-level DIVs, but to do so in a
4229 * lower-impact, more correct way than r50769
4230 *
4231 * $this : caller
4232 * $section : the section number
4233 * &$sectionContent : ref to the content of the section
4234 * $showEditLinks : boolean describing whether this section has an edit link
4235 */
4236 wfRunHooks( 'ParserSectionCreate', array( $this, $i, &$sections[$i], $showEditLink ) );
4237
4238 $i++;
4239 }
4240
4241 if ( $enoughToc && $isMain && !$this->mForceTocPosition ) {
4242 // append the TOC at the beginning
4243 // Top anchor now in skin
4244 $sections[0] = $sections[0] . $toc . "\n";
4245 }
4246
4247 $full .= join( '', $sections );
4248
4249 if ( $this->mForceTocPosition ) {
4250 return str_replace( '<!--MWTOC-->', $toc, $full );
4251 } else {
4252 return $full;
4253 }
4254 }
4255
4256 /**
4257 * Transform wiki markup when saving a page by doing \r\n -> \n
4258 * conversion, substitting signatures, {{subst:}} templates, etc.
4259 *
4260 * @param $text String: the text to transform
4261 * @param $title Title: the Title object for the current article
4262 * @param $user User: the User object describing the current user
4263 * @param $options ParserOptions: parsing options
4264 * @param $clearState Boolean: whether to clear the parser state first
4265 * @return String: the altered wiki markup
4266 */
4267 public function preSaveTransform( $text, Title $title, User $user, ParserOptions $options, $clearState = true ) {
4268 $this->startParse( $title, $options, self::OT_WIKI, $clearState );
4269 $this->setUser( $user );
4270
4271 $pairs = array(
4272 "\r\n" => "\n",
4273 );
4274 $text = str_replace( array_keys( $pairs ), array_values( $pairs ), $text );
4275 if( $options->getPreSaveTransform() ) {
4276 $text = $this->pstPass2( $text, $user );
4277 }
4278 $text = $this->mStripState->unstripBoth( $text );
4279
4280 $this->setUser( null ); #Reset
4281
4282 return $text;
4283 }
4284
4285 /**
4286 * Pre-save transform helper function
4287 * @private
4288 *
4289 * @param $text string
4290 * @param $user User
4291 *
4292 * @return string
4293 */
4294 function pstPass2( $text, $user ) {
4295 global $wgContLang, $wgLocaltimezone;
4296
4297 # Note: This is the timestamp saved as hardcoded wikitext to
4298 # the database, we use $wgContLang here in order to give
4299 # everyone the same signature and use the default one rather
4300 # than the one selected in each user's preferences.
4301 # (see also bug 12815)
4302 $ts = $this->mOptions->getTimestamp();
4303 if ( isset( $wgLocaltimezone ) ) {
4304 $tz = $wgLocaltimezone;
4305 } else {
4306 $tz = date_default_timezone_get();
4307 }
4308
4309 $unixts = wfTimestamp( TS_UNIX, $ts );
4310 $oldtz = date_default_timezone_get();
4311 date_default_timezone_set( $tz );
4312 $ts = date( 'YmdHis', $unixts );
4313 $tzMsg = date( 'T', $unixts ); # might vary on DST changeover!
4314
4315 # Allow translation of timezones through wiki. date() can return
4316 # whatever crap the system uses, localised or not, so we cannot
4317 # ship premade translations.
4318 $key = 'timezone-' . strtolower( trim( $tzMsg ) );
4319 $msg = wfMessage( $key )->inContentLanguage();
4320 if ( $msg->exists() ) {
4321 $tzMsg = $msg->text();
4322 }
4323
4324 date_default_timezone_set( $oldtz );
4325
4326 $d = $wgContLang->timeanddate( $ts, false, false ) . " ($tzMsg)";
4327
4328 # Variable replacement
4329 # Because mOutputType is OT_WIKI, this will only process {{subst:xxx}} type tags
4330 $text = $this->replaceVariables( $text );
4331
4332 # This works almost by chance, as the replaceVariables are done before the getUserSig(),
4333 # which may corrupt this parser instance via its wfMsgExt( parsemag ) call-
4334
4335 # Signatures
4336 $sigText = $this->getUserSig( $user );
4337 $text = strtr( $text, array(
4338 '~~~~~' => $d,
4339 '~~~~' => "$sigText $d",
4340 '~~~' => $sigText
4341 ) );
4342
4343 # Context links: [[|name]] and [[name (context)|]]
4344 global $wgLegalTitleChars;
4345 $tc = "[$wgLegalTitleChars]";
4346 $nc = '[ _0-9A-Za-z\x80-\xff-]'; # Namespaces can use non-ascii!
4347
4348 $p1 = "/\[\[(:?$nc+:|:|)($tc+?)( ?\\($tc+\\))\\|]]/"; # [[ns:page (context)|]]
4349 $p4 = "/\[\[(:?$nc+:|:|)($tc+?)( ?($tc+))\\|]]/"; # [[ns:page(context)|]]
4350 $p3 = "/\[\[(:?$nc+:|:|)($tc+?)( ?\\($tc+\\)|)(, $tc+|)\\|]]/"; # [[ns:page (context), context|]]
4351 $p2 = "/\[\[\\|($tc+)]]/"; # [[|page]]
4352
4353 # try $p1 first, to turn "[[A, B (C)|]]" into "[[A, B (C)|A, B]]"
4354 $text = preg_replace( $p1, '[[\\1\\2\\3|\\2]]', $text );
4355 $text = preg_replace( $p4, '[[\\1\\2\\3|\\2]]', $text );
4356 $text = preg_replace( $p3, '[[\\1\\2\\3\\4|\\2]]', $text );
4357
4358 $t = $this->mTitle->getText();
4359 $m = array();
4360 if ( preg_match( "/^($nc+:|)$tc+?( \\($tc+\\))$/", $t, $m ) ) {
4361 $text = preg_replace( $p2, "[[$m[1]\\1$m[2]|\\1]]", $text );
4362 } elseif ( preg_match( "/^($nc+:|)$tc+?(, $tc+|)$/", $t, $m ) && "$m[1]$m[2]" != '' ) {
4363 $text = preg_replace( $p2, "[[$m[1]\\1$m[2]|\\1]]", $text );
4364 } else {
4365 # if there's no context, don't bother duplicating the title
4366 $text = preg_replace( $p2, '[[\\1]]', $text );
4367 }
4368
4369 # Trim trailing whitespace
4370 $text = rtrim( $text );
4371
4372 return $text;
4373 }
4374
4375 /**
4376 * Fetch the user's signature text, if any, and normalize to
4377 * validated, ready-to-insert wikitext.
4378 * If you have pre-fetched the nickname or the fancySig option, you can
4379 * specify them here to save a database query.
4380 * Do not reuse this parser instance after calling getUserSig(),
4381 * as it may have changed if it's the $wgParser.
4382 *
4383 * @param $user User
4384 * @param $nickname String|bool nickname to use or false to use user's default nickname
4385 * @param $fancySig Boolean|null whether the nicknname is the complete signature
4386 * or null to use default value
4387 * @return string
4388 */
4389 function getUserSig( &$user, $nickname = false, $fancySig = null ) {
4390 global $wgMaxSigChars;
4391
4392 $username = $user->getName();
4393
4394 # If not given, retrieve from the user object.
4395 if ( $nickname === false )
4396 $nickname = $user->getOption( 'nickname' );
4397
4398 if ( is_null( $fancySig ) ) {
4399 $fancySig = $user->getBoolOption( 'fancysig' );
4400 }
4401
4402 $nickname = $nickname == null ? $username : $nickname;
4403
4404 if ( mb_strlen( $nickname ) > $wgMaxSigChars ) {
4405 $nickname = $username;
4406 wfDebug( __METHOD__ . ": $username has overlong signature.\n" );
4407 } elseif ( $fancySig !== false ) {
4408 # Sig. might contain markup; validate this
4409 if ( $this->validateSig( $nickname ) !== false ) {
4410 # Validated; clean up (if needed) and return it
4411 return $this->cleanSig( $nickname, true );
4412 } else {
4413 # Failed to validate; fall back to the default
4414 $nickname = $username;
4415 wfDebug( __METHOD__.": $username has bad XML tags in signature.\n" );
4416 }
4417 }
4418
4419 # Make sure nickname doesnt get a sig in a sig
4420 $nickname = self::cleanSigInSig( $nickname );
4421
4422 # If we're still here, make it a link to the user page
4423 $userText = wfEscapeWikiText( $username );
4424 $nickText = wfEscapeWikiText( $nickname );
4425 $msgName = $user->isAnon() ? 'signature-anon' : 'signature';
4426
4427 return wfMessage( $msgName, $userText, $nickText )->inContentLanguage()->title( $this->getTitle() )->text();
4428 }
4429
4430 /**
4431 * Check that the user's signature contains no bad XML
4432 *
4433 * @param $text String
4434 * @return mixed An expanded string, or false if invalid.
4435 */
4436 function validateSig( $text ) {
4437 return( Xml::isWellFormedXmlFragment( $text ) ? $text : false );
4438 }
4439
4440 /**
4441 * Clean up signature text
4442 *
4443 * 1) Strip ~~~, ~~~~ and ~~~~~ out of signatures @see cleanSigInSig
4444 * 2) Substitute all transclusions
4445 *
4446 * @param $text String
4447 * @param $parsing bool Whether we're cleaning (preferences save) or parsing
4448 * @return String: signature text
4449 */
4450 public function cleanSig( $text, $parsing = false ) {
4451 if ( !$parsing ) {
4452 global $wgTitle;
4453 $this->startParse( $wgTitle, new ParserOptions, self::OT_PREPROCESS, true );
4454 }
4455
4456 # Option to disable this feature
4457 if ( !$this->mOptions->getCleanSignatures() ) {
4458 return $text;
4459 }
4460
4461 # @todo FIXME: Regex doesn't respect extension tags or nowiki
4462 # => Move this logic to braceSubstitution()
4463 $substWord = MagicWord::get( 'subst' );
4464 $substRegex = '/\{\{(?!(?:' . $substWord->getBaseRegex() . '))/x' . $substWord->getRegexCase();
4465 $substText = '{{' . $substWord->getSynonym( 0 );
4466
4467 $text = preg_replace( $substRegex, $substText, $text );
4468 $text = self::cleanSigInSig( $text );
4469 $dom = $this->preprocessToDom( $text );
4470 $frame = $this->getPreprocessor()->newFrame();
4471 $text = $frame->expand( $dom );
4472
4473 if ( !$parsing ) {
4474 $text = $this->mStripState->unstripBoth( $text );
4475 }
4476
4477 return $text;
4478 }
4479
4480 /**
4481 * Strip ~~~, ~~~~ and ~~~~~ out of signatures
4482 *
4483 * @param $text String
4484 * @return String: signature text with /~{3,5}/ removed
4485 */
4486 public static function cleanSigInSig( $text ) {
4487 $text = preg_replace( '/~{3,5}/', '', $text );
4488 return $text;
4489 }
4490
4491 /**
4492 * Set up some variables which are usually set up in parse()
4493 * so that an external function can call some class members with confidence
4494 *
4495 * @param $title Title|null
4496 * @param $options ParserOptions
4497 * @param $outputType
4498 * @param $clearState bool
4499 */
4500 public function startExternalParse( Title $title = null, ParserOptions $options, $outputType, $clearState = true ) {
4501 $this->startParse( $title, $options, $outputType, $clearState );
4502 }
4503
4504 /**
4505 * @param $title Title|null
4506 * @param $options ParserOptions
4507 * @param $outputType
4508 * @param $clearState bool
4509 */
4510 private function startParse( Title $title = null, ParserOptions $options, $outputType, $clearState = true ) {
4511 $this->setTitle( $title );
4512 $this->mOptions = $options;
4513 $this->setOutputType( $outputType );
4514 if ( $clearState ) {
4515 $this->clearState();
4516 }
4517 }
4518
4519 /**
4520 * Wrapper for preprocess()
4521 *
4522 * @param $text String: the text to preprocess
4523 * @param $options ParserOptions: options
4524 * @param $title Title object or null to use $wgTitle
4525 * @return String
4526 */
4527 public function transformMsg( $text, $options, $title = null ) {
4528 static $executing = false;
4529
4530 # Guard against infinite recursion
4531 if ( $executing ) {
4532 return $text;
4533 }
4534 $executing = true;
4535
4536 wfProfileIn( __METHOD__ );
4537 if ( !$title ) {
4538 global $wgTitle;
4539 $title = $wgTitle;
4540 }
4541 if ( !$title ) {
4542 # It's not uncommon having a null $wgTitle in scripts. See r80898
4543 # Create a ghost title in such case
4544 $title = Title::newFromText( 'Dwimmerlaik' );
4545 }
4546 $text = $this->preprocess( $text, $title, $options );
4547
4548 $executing = false;
4549 wfProfileOut( __METHOD__ );
4550 return $text;
4551 }
4552
4553 /**
4554 * Create an HTML-style tag, e.g. <yourtag>special text</yourtag>
4555 * The callback should have the following form:
4556 * function myParserHook( $text, $params, $parser, $frame ) { ... }
4557 *
4558 * Transform and return $text. Use $parser for any required context, e.g. use
4559 * $parser->getTitle() and $parser->getOptions() not $wgTitle or $wgOut->mParserOptions
4560 *
4561 * Hooks may return extended information by returning an array, of which the
4562 * first numbered element (index 0) must be the return string, and all other
4563 * entries are extracted into local variables within an internal function
4564 * in the Parser class.
4565 *
4566 * This interface (introduced r61913) appears to be undocumented, but
4567 * 'markerName' is used by some core tag hooks to override which strip
4568 * array their results are placed in. **Use great caution if attempting
4569 * this interface, as it is not documented and injudicious use could smash
4570 * private variables.**
4571 *
4572 * @param $tag Mixed: the tag to use, e.g. 'hook' for <hook>
4573 * @param $callback Mixed: the callback function (and object) to use for the tag
4574 * @return The old value of the mTagHooks array associated with the hook
4575 */
4576 public function setHook( $tag, $callback ) {
4577 $tag = strtolower( $tag );
4578 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) throw new MWException( "Invalid character {$m[0]} in setHook('$tag', ...) call" );
4579 $oldVal = isset( $this->mTagHooks[$tag] ) ? $this->mTagHooks[$tag] : null;
4580 $this->mTagHooks[$tag] = $callback;
4581 if ( !in_array( $tag, $this->mStripList ) ) {
4582 $this->mStripList[] = $tag;
4583 }
4584
4585 return $oldVal;
4586 }
4587
4588 /**
4589 * As setHook(), but letting the contents be parsed.
4590 *
4591 * Transparent tag hooks are like regular XML-style tag hooks, except they
4592 * operate late in the transformation sequence, on HTML instead of wikitext.
4593 *
4594 * This is probably obsoleted by things dealing with parser frames?
4595 * The only extension currently using it is geoserver.
4596 *
4597 * @since 1.10
4598 * @todo better document or deprecate this
4599 *
4600 * @param $tag Mixed: the tag to use, e.g. 'hook' for <hook>
4601 * @param $callback Mixed: the callback function (and object) to use for the tag
4602 * @return The old value of the mTagHooks array associated with the hook
4603 */
4604 function setTransparentTagHook( $tag, $callback ) {
4605 $tag = strtolower( $tag );
4606 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) throw new MWException( "Invalid character {$m[0]} in setTransparentHook('$tag', ...) call" );
4607 $oldVal = isset( $this->mTransparentTagHooks[$tag] ) ? $this->mTransparentTagHooks[$tag] : null;
4608 $this->mTransparentTagHooks[$tag] = $callback;
4609
4610 return $oldVal;
4611 }
4612
4613 /**
4614 * Remove all tag hooks
4615 */
4616 function clearTagHooks() {
4617 $this->mTagHooks = array();
4618 $this->mStripList = $this->mDefaultStripList;
4619 }
4620
4621 /**
4622 * Create a function, e.g. {{sum:1|2|3}}
4623 * The callback function should have the form:
4624 * function myParserFunction( &$parser, $arg1, $arg2, $arg3 ) { ... }
4625 *
4626 * Or with SFH_OBJECT_ARGS:
4627 * function myParserFunction( $parser, $frame, $args ) { ... }
4628 *
4629 * The callback may either return the text result of the function, or an array with the text
4630 * in element 0, and a number of flags in the other elements. The names of the flags are
4631 * specified in the keys. Valid flags are:
4632 * found The text returned is valid, stop processing the template. This
4633 * is on by default.
4634 * nowiki Wiki markup in the return value should be escaped
4635 * isHTML The returned text is HTML, armour it against wikitext transformation
4636 *
4637 * @param $id String: The magic word ID
4638 * @param $callback Mixed: the callback function (and object) to use
4639 * @param $flags Integer: a combination of the following flags:
4640 * SFH_NO_HASH No leading hash, i.e. {{plural:...}} instead of {{#if:...}}
4641 *
4642 * SFH_OBJECT_ARGS Pass the template arguments as PPNode objects instead of text. This
4643 * allows for conditional expansion of the parse tree, allowing you to eliminate dead
4644 * branches and thus speed up parsing. It is also possible to analyse the parse tree of
4645 * the arguments, and to control the way they are expanded.
4646 *
4647 * The $frame parameter is a PPFrame. This can be used to produce expanded text from the
4648 * arguments, for instance:
4649 * $text = isset( $args[0] ) ? $frame->expand( $args[0] ) : '';
4650 *
4651 * For technical reasons, $args[0] is pre-expanded and will be a string. This may change in
4652 * future versions. Please call $frame->expand() on it anyway so that your code keeps
4653 * working if/when this is changed.
4654 *
4655 * If you want whitespace to be trimmed from $args, you need to do it yourself, post-
4656 * expansion.
4657 *
4658 * Please read the documentation in includes/parser/Preprocessor.php for more information
4659 * about the methods available in PPFrame and PPNode.
4660 *
4661 * @return The old callback function for this name, if any
4662 */
4663 public function setFunctionHook( $id, $callback, $flags = 0 ) {
4664 global $wgContLang;
4665
4666 $oldVal = isset( $this->mFunctionHooks[$id] ) ? $this->mFunctionHooks[$id][0] : null;
4667 $this->mFunctionHooks[$id] = array( $callback, $flags );
4668
4669 # Add to function cache
4670 $mw = MagicWord::get( $id );
4671 if ( !$mw )
4672 throw new MWException( __METHOD__.'() expecting a magic word identifier.' );
4673
4674 $synonyms = $mw->getSynonyms();
4675 $sensitive = intval( $mw->isCaseSensitive() );
4676
4677 foreach ( $synonyms as $syn ) {
4678 # Case
4679 if ( !$sensitive ) {
4680 $syn = $wgContLang->lc( $syn );
4681 }
4682 # Add leading hash
4683 if ( !( $flags & SFH_NO_HASH ) ) {
4684 $syn = '#' . $syn;
4685 }
4686 # Remove trailing colon
4687 if ( substr( $syn, -1, 1 ) === ':' ) {
4688 $syn = substr( $syn, 0, -1 );
4689 }
4690 $this->mFunctionSynonyms[$sensitive][$syn] = $id;
4691 }
4692 return $oldVal;
4693 }
4694
4695 /**
4696 * Get all registered function hook identifiers
4697 *
4698 * @return Array
4699 */
4700 function getFunctionHooks() {
4701 return array_keys( $this->mFunctionHooks );
4702 }
4703
4704 /**
4705 * Create a tag function, e.g. <test>some stuff</test>.
4706 * Unlike tag hooks, tag functions are parsed at preprocessor level.
4707 * Unlike parser functions, their content is not preprocessed.
4708 */
4709 function setFunctionTagHook( $tag, $callback, $flags ) {
4710 $tag = strtolower( $tag );
4711 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) throw new MWException( "Invalid character {$m[0]} in setFunctionTagHook('$tag', ...) call" );
4712 $old = isset( $this->mFunctionTagHooks[$tag] ) ?
4713 $this->mFunctionTagHooks[$tag] : null;
4714 $this->mFunctionTagHooks[$tag] = array( $callback, $flags );
4715
4716 if ( !in_array( $tag, $this->mStripList ) ) {
4717 $this->mStripList[] = $tag;
4718 }
4719
4720 return $old;
4721 }
4722
4723 /**
4724 * @todo FIXME: Update documentation. makeLinkObj() is deprecated.
4725 * Replace <!--LINK--> link placeholders with actual links, in the buffer
4726 * Placeholders created in Skin::makeLinkObj()
4727 *
4728 * @param $text string
4729 * @param $options int
4730 *
4731 * @return array of link CSS classes, indexed by PDBK.
4732 */
4733 function replaceLinkHolders( &$text, $options = 0 ) {
4734 return $this->mLinkHolders->replace( $text );
4735 }
4736
4737 /**
4738 * Replace <!--LINK--> link placeholders with plain text of links
4739 * (not HTML-formatted).
4740 *
4741 * @param $text String
4742 * @return String
4743 */
4744 function replaceLinkHoldersText( $text ) {
4745 return $this->mLinkHolders->replaceText( $text );
4746 }
4747
4748 /**
4749 * Renders an image gallery from a text with one line per image.
4750 * text labels may be given by using |-style alternative text. E.g.
4751 * Image:one.jpg|The number "1"
4752 * Image:tree.jpg|A tree
4753 * given as text will return the HTML of a gallery with two images,
4754 * labeled 'The number "1"' and
4755 * 'A tree'.
4756 *
4757 * @param string $text
4758 * @param array $params
4759 * @return string HTML
4760 */
4761 function renderImageGallery( $text, $params ) {
4762 $ig = new ImageGallery();
4763 $ig->setContextTitle( $this->mTitle );
4764 $ig->setShowBytes( false );
4765 $ig->setShowFilename( false );
4766 $ig->setParser( $this );
4767 $ig->setHideBadImages();
4768 $ig->setAttributes( Sanitizer::validateTagAttributes( $params, 'table' ) );
4769
4770 if ( isset( $params['showfilename'] ) ) {
4771 $ig->setShowFilename( true );
4772 } else {
4773 $ig->setShowFilename( false );
4774 }
4775 if ( isset( $params['caption'] ) ) {
4776 $caption = $params['caption'];
4777 $caption = htmlspecialchars( $caption );
4778 $caption = $this->replaceInternalLinks( $caption );
4779 $ig->setCaptionHtml( $caption );
4780 }
4781 if ( isset( $params['perrow'] ) ) {
4782 $ig->setPerRow( $params['perrow'] );
4783 }
4784 if ( isset( $params['widths'] ) ) {
4785 $ig->setWidths( $params['widths'] );
4786 }
4787 if ( isset( $params['heights'] ) ) {
4788 $ig->setHeights( $params['heights'] );
4789 }
4790
4791 wfRunHooks( 'BeforeParserrenderImageGallery', array( &$this, &$ig ) );
4792
4793 $lines = StringUtils::explode( "\n", $text );
4794 foreach ( $lines as $line ) {
4795 # match lines like these:
4796 # Image:someimage.jpg|This is some image
4797 $matches = array();
4798 preg_match( "/^([^|]+)(\\|(.*))?$/", $line, $matches );
4799 # Skip empty lines
4800 if ( count( $matches ) == 0 ) {
4801 continue;
4802 }
4803
4804 if ( strpos( $matches[0], '%' ) !== false ) {
4805 $matches[1] = rawurldecode( $matches[1] );
4806 }
4807 $title = Title::newFromText( $matches[1], NS_FILE );
4808 if ( is_null( $title ) ) {
4809 # Bogus title. Ignore these so we don't bomb out later.
4810 continue;
4811 }
4812
4813 $label = '';
4814 $alt = '';
4815 if ( isset( $matches[3] ) ) {
4816 // look for an |alt= definition while trying not to break existing
4817 // captions with multiple pipes (|) in it, until a more sensible grammar
4818 // is defined for images in galleries
4819
4820 $matches[3] = $this->recursiveTagParse( trim( $matches[3] ) );
4821 $altmatches = StringUtils::explode('|', $matches[3]);
4822 $magicWordAlt = MagicWord::get( 'img_alt' );
4823
4824 foreach ( $altmatches as $altmatch ) {
4825 $match = $magicWordAlt->matchVariableStartToEnd( $altmatch );
4826 if ( $match ) {
4827 $alt = $this->stripAltText( $match, false );
4828 }
4829 else {
4830 // concatenate all other pipes
4831 $label .= '|' . $altmatch;
4832 }
4833 }
4834 // remove the first pipe
4835 $label = substr( $label, 1 );
4836 }
4837
4838 $ig->add( $title, $label, $alt );
4839 }
4840 return $ig->toHTML();
4841 }
4842
4843 /**
4844 * @param $handler
4845 * @return array
4846 */
4847 function getImageParams( $handler ) {
4848 if ( $handler ) {
4849 $handlerClass = get_class( $handler );
4850 } else {
4851 $handlerClass = '';
4852 }
4853 if ( !isset( $this->mImageParams[$handlerClass] ) ) {
4854 # Initialise static lists
4855 static $internalParamNames = array(
4856 'horizAlign' => array( 'left', 'right', 'center', 'none' ),
4857 'vertAlign' => array( 'baseline', 'sub', 'super', 'top', 'text-top', 'middle',
4858 'bottom', 'text-bottom' ),
4859 'frame' => array( 'thumbnail', 'manualthumb', 'framed', 'frameless',
4860 'upright', 'border', 'link', 'alt' ),
4861 );
4862 static $internalParamMap;
4863 if ( !$internalParamMap ) {
4864 $internalParamMap = array();
4865 foreach ( $internalParamNames as $type => $names ) {
4866 foreach ( $names as $name ) {
4867 $magicName = str_replace( '-', '_', "img_$name" );
4868 $internalParamMap[$magicName] = array( $type, $name );
4869 }
4870 }
4871 }
4872
4873 # Add handler params
4874 $paramMap = $internalParamMap;
4875 if ( $handler ) {
4876 $handlerParamMap = $handler->getParamMap();
4877 foreach ( $handlerParamMap as $magic => $paramName ) {
4878 $paramMap[$magic] = array( 'handler', $paramName );
4879 }
4880 }
4881 $this->mImageParams[$handlerClass] = $paramMap;
4882 $this->mImageParamsMagicArray[$handlerClass] = new MagicWordArray( array_keys( $paramMap ) );
4883 }
4884 return array( $this->mImageParams[$handlerClass], $this->mImageParamsMagicArray[$handlerClass] );
4885 }
4886
4887 /**
4888 * Parse image options text and use it to make an image
4889 *
4890 * @param $title Title
4891 * @param $options String
4892 * @param $holders LinkHolderArray|false
4893 * @return string HTML
4894 */
4895 function makeImage( $title, $options, $holders = false ) {
4896 # Check if the options text is of the form "options|alt text"
4897 # Options are:
4898 # * thumbnail make a thumbnail with enlarge-icon and caption, alignment depends on lang
4899 # * left no resizing, just left align. label is used for alt= only
4900 # * right same, but right aligned
4901 # * none same, but not aligned
4902 # * ___px scale to ___ pixels width, no aligning. e.g. use in taxobox
4903 # * center center the image
4904 # * frame Keep original image size, no magnify-button.
4905 # * framed Same as "frame"
4906 # * frameless like 'thumb' but without a frame. Keeps user preferences for width
4907 # * upright reduce width for upright images, rounded to full __0 px
4908 # * border draw a 1px border around the image
4909 # * alt Text for HTML alt attribute (defaults to empty)
4910 # * link Set the target of the image link. Can be external, interwiki, or local
4911 # vertical-align values (no % or length right now):
4912 # * baseline
4913 # * sub
4914 # * super
4915 # * top
4916 # * text-top
4917 # * middle
4918 # * bottom
4919 # * text-bottom
4920
4921 $parts = StringUtils::explode( "|", $options );
4922
4923 # Give extensions a chance to select the file revision for us
4924 $options = array();
4925 $descQuery = false;
4926 wfRunHooks( 'BeforeParserFetchFileAndTitle',
4927 array( $this, $title, &$options, &$descQuery ) );
4928 # Fetch and register the file (file title may be different via hooks)
4929 list( $file, $title ) = $this->fetchFileAndTitle( $title, $options );
4930
4931 # Get parameter map
4932 $handler = $file ? $file->getHandler() : false;
4933
4934 list( $paramMap, $mwArray ) = $this->getImageParams( $handler );
4935
4936 if ( !$file ) {
4937 $this->addTrackingCategory( 'broken-file-category' );
4938 }
4939
4940 # Process the input parameters
4941 $caption = '';
4942 $params = array( 'frame' => array(), 'handler' => array(),
4943 'horizAlign' => array(), 'vertAlign' => array() );
4944 foreach ( $parts as $part ) {
4945 $part = trim( $part );
4946 list( $magicName, $value ) = $mwArray->matchVariableStartToEnd( $part );
4947 $validated = false;
4948 if ( isset( $paramMap[$magicName] ) ) {
4949 list( $type, $paramName ) = $paramMap[$magicName];
4950
4951 # Special case; width and height come in one variable together
4952 if ( $type === 'handler' && $paramName === 'width' ) {
4953 $m = array();
4954 # (bug 13500) In both cases (width/height and width only),
4955 # permit trailing "px" for backward compatibility.
4956 if ( preg_match( '/^([0-9]*)x([0-9]*)\s*(?:px)?\s*$/', $value, $m ) ) {
4957 $width = intval( $m[1] );
4958 $height = intval( $m[2] );
4959 if ( $handler->validateParam( 'width', $width ) ) {
4960 $params[$type]['width'] = $width;
4961 $validated = true;
4962 }
4963 if ( $handler->validateParam( 'height', $height ) ) {
4964 $params[$type]['height'] = $height;
4965 $validated = true;
4966 }
4967 } elseif ( preg_match( '/^[0-9]*\s*(?:px)?\s*$/', $value ) ) {
4968 $width = intval( $value );
4969 if ( $handler->validateParam( 'width', $width ) ) {
4970 $params[$type]['width'] = $width;
4971 $validated = true;
4972 }
4973 } # else no validation -- bug 13436
4974 } else {
4975 if ( $type === 'handler' ) {
4976 # Validate handler parameter
4977 $validated = $handler->validateParam( $paramName, $value );
4978 } else {
4979 # Validate internal parameters
4980 switch( $paramName ) {
4981 case 'manualthumb':
4982 case 'alt':
4983 # @todo FIXME: Possibly check validity here for
4984 # manualthumb? downstream behavior seems odd with
4985 # missing manual thumbs.
4986 $validated = true;
4987 $value = $this->stripAltText( $value, $holders );
4988 break;
4989 case 'link':
4990 $chars = self::EXT_LINK_URL_CLASS;
4991 $prots = $this->mUrlProtocols;
4992 if ( $value === '' ) {
4993 $paramName = 'no-link';
4994 $value = true;
4995 $validated = true;
4996 } elseif ( preg_match( "/^$prots/", $value ) ) {
4997 if ( preg_match( "/^($prots)$chars+$/u", $value, $m ) ) {
4998 $paramName = 'link-url';
4999 $this->mOutput->addExternalLink( $value );
5000 if ( $this->mOptions->getExternalLinkTarget() ) {
5001 $params[$type]['link-target'] = $this->mOptions->getExternalLinkTarget();
5002 }
5003 $validated = true;
5004 }
5005 } else {
5006 $linkTitle = Title::newFromText( $value );
5007 if ( $linkTitle ) {
5008 $paramName = 'link-title';
5009 $value = $linkTitle;
5010 $this->mOutput->addLink( $linkTitle );
5011 $validated = true;
5012 }
5013 }
5014 break;
5015 default:
5016 # Most other things appear to be empty or numeric...
5017 $validated = ( $value === false || is_numeric( trim( $value ) ) );
5018 }
5019 }
5020
5021 if ( $validated ) {
5022 $params[$type][$paramName] = $value;
5023 }
5024 }
5025 }
5026 if ( !$validated ) {
5027 $caption = $part;
5028 }
5029 }
5030
5031 # Process alignment parameters
5032 if ( $params['horizAlign'] ) {
5033 $params['frame']['align'] = key( $params['horizAlign'] );
5034 }
5035 if ( $params['vertAlign'] ) {
5036 $params['frame']['valign'] = key( $params['vertAlign'] );
5037 }
5038
5039 $params['frame']['caption'] = $caption;
5040
5041 # Will the image be presented in a frame, with the caption below?
5042 $imageIsFramed = isset( $params['frame']['frame'] ) ||
5043 isset( $params['frame']['framed'] ) ||
5044 isset( $params['frame']['thumbnail'] ) ||
5045 isset( $params['frame']['manualthumb'] );
5046
5047 # In the old days, [[Image:Foo|text...]] would set alt text. Later it
5048 # came to also set the caption, ordinary text after the image -- which
5049 # makes no sense, because that just repeats the text multiple times in
5050 # screen readers. It *also* came to set the title attribute.
5051 #
5052 # Now that we have an alt attribute, we should not set the alt text to
5053 # equal the caption: that's worse than useless, it just repeats the
5054 # text. This is the framed/thumbnail case. If there's no caption, we
5055 # use the unnamed parameter for alt text as well, just for the time be-
5056 # ing, if the unnamed param is set and the alt param is not.
5057 #
5058 # For the future, we need to figure out if we want to tweak this more,
5059 # e.g., introducing a title= parameter for the title; ignoring the un-
5060 # named parameter entirely for images without a caption; adding an ex-
5061 # plicit caption= parameter and preserving the old magic unnamed para-
5062 # meter for BC; ...
5063 if ( $imageIsFramed ) { # Framed image
5064 if ( $caption === '' && !isset( $params['frame']['alt'] ) ) {
5065 # No caption or alt text, add the filename as the alt text so
5066 # that screen readers at least get some description of the image
5067 $params['frame']['alt'] = $title->getText();
5068 }
5069 # Do not set $params['frame']['title'] because tooltips don't make sense
5070 # for framed images
5071 } else { # Inline image
5072 if ( !isset( $params['frame']['alt'] ) ) {
5073 # No alt text, use the "caption" for the alt text
5074 if ( $caption !== '') {
5075 $params['frame']['alt'] = $this->stripAltText( $caption, $holders );
5076 } else {
5077 # No caption, fall back to using the filename for the
5078 # alt text
5079 $params['frame']['alt'] = $title->getText();
5080 }
5081 }
5082 # Use the "caption" for the tooltip text
5083 $params['frame']['title'] = $this->stripAltText( $caption, $holders );
5084 }
5085
5086 wfRunHooks( 'ParserMakeImageParams', array( $title, $file, &$params ) );
5087
5088 # Linker does the rest
5089 $time = isset( $options['time'] ) ? $options['time'] : false;
5090 $ret = Linker::makeImageLink2( $title, $file, $params['frame'], $params['handler'],
5091 $time, $descQuery, $this->mOptions->getThumbSize() );
5092
5093 # Give the handler a chance to modify the parser object
5094 if ( $handler ) {
5095 $handler->parserTransformHook( $this, $file );
5096 }
5097
5098 return $ret;
5099 }
5100
5101 /**
5102 * @param $caption
5103 * @param $holders LinkHolderArray
5104 * @return mixed|String
5105 */
5106 protected function stripAltText( $caption, $holders ) {
5107 # Strip bad stuff out of the title (tooltip). We can't just use
5108 # replaceLinkHoldersText() here, because if this function is called
5109 # from replaceInternalLinks2(), mLinkHolders won't be up-to-date.
5110 if ( $holders ) {
5111 $tooltip = $holders->replaceText( $caption );
5112 } else {
5113 $tooltip = $this->replaceLinkHoldersText( $caption );
5114 }
5115
5116 # make sure there are no placeholders in thumbnail attributes
5117 # that are later expanded to html- so expand them now and
5118 # remove the tags
5119 $tooltip = $this->mStripState->unstripBoth( $tooltip );
5120 $tooltip = Sanitizer::stripAllTags( $tooltip );
5121
5122 return $tooltip;
5123 }
5124
5125 /**
5126 * Set a flag in the output object indicating that the content is dynamic and
5127 * shouldn't be cached.
5128 */
5129 function disableCache() {
5130 wfDebug( "Parser output marked as uncacheable.\n" );
5131 if ( !$this->mOutput ) {
5132 throw new MWException( __METHOD__ .
5133 " can only be called when actually parsing something" );
5134 }
5135 $this->mOutput->setCacheTime( -1 ); // old style, for compatibility
5136 $this->mOutput->updateCacheExpiry( 0 ); // new style, for consistency
5137 }
5138
5139 /**
5140 * Callback from the Sanitizer for expanding items found in HTML attribute
5141 * values, so they can be safely tested and escaped.
5142 *
5143 * @param $text String
5144 * @param $frame PPFrame
5145 * @return String
5146 */
5147 function attributeStripCallback( &$text, $frame = false ) {
5148 $text = $this->replaceVariables( $text, $frame );
5149 $text = $this->mStripState->unstripBoth( $text );
5150 return $text;
5151 }
5152
5153 /**
5154 * Accessor
5155 *
5156 * @return array
5157 */
5158 function getTags() {
5159 return array_merge( array_keys( $this->mTransparentTagHooks ), array_keys( $this->mTagHooks ) );
5160 }
5161
5162 /**
5163 * Replace transparent tags in $text with the values given by the callbacks.
5164 *
5165 * Transparent tag hooks are like regular XML-style tag hooks, except they
5166 * operate late in the transformation sequence, on HTML instead of wikitext.
5167 *
5168 * @param $text string
5169 *
5170 * @return string
5171 */
5172 function replaceTransparentTags( $text ) {
5173 $matches = array();
5174 $elements = array_keys( $this->mTransparentTagHooks );
5175 $text = self::extractTagsAndParams( $elements, $text, $matches, $this->mUniqPrefix );
5176 $replacements = array();
5177
5178 foreach ( $matches as $marker => $data ) {
5179 list( $element, $content, $params, $tag ) = $data;
5180 $tagName = strtolower( $element );
5181 if ( isset( $this->mTransparentTagHooks[$tagName] ) ) {
5182 $output = call_user_func_array( $this->mTransparentTagHooks[$tagName], array( $content, $params, $this ) );
5183 } else {
5184 $output = $tag;
5185 }
5186 $replacements[$marker] = $output;
5187 }
5188 return strtr( $text, $replacements );
5189 }
5190
5191 /**
5192 * Break wikitext input into sections, and either pull or replace
5193 * some particular section's text.
5194 *
5195 * External callers should use the getSection and replaceSection methods.
5196 *
5197 * @param $text String: Page wikitext
5198 * @param $section String: a section identifier string of the form:
5199 * <flag1> - <flag2> - ... - <section number>
5200 *
5201 * Currently the only recognised flag is "T", which means the target section number
5202 * was derived during a template inclusion parse, in other words this is a template
5203 * section edit link. If no flags are given, it was an ordinary section edit link.
5204 * This flag is required to avoid a section numbering mismatch when a section is
5205 * enclosed by <includeonly> (bug 6563).
5206 *
5207 * The section number 0 pulls the text before the first heading; other numbers will
5208 * pull the given section along with its lower-level subsections. If the section is
5209 * not found, $mode=get will return $newtext, and $mode=replace will return $text.
5210 *
5211 * Section 0 is always considered to exist, even if it only contains the empty
5212 * string. If $text is the empty string and section 0 is replaced, $newText is
5213 * returned.
5214 *
5215 * @param $mode String: one of "get" or "replace"
5216 * @param $newText String: replacement text for section data.
5217 * @return String: for "get", the extracted section text.
5218 * for "replace", the whole page with the section replaced.
5219 */
5220 private function extractSections( $text, $section, $mode, $newText='' ) {
5221 global $wgTitle; # not generally used but removes an ugly failure mode
5222 $this->startParse( $wgTitle, new ParserOptions, self::OT_PLAIN, true );
5223 $outText = '';
5224 $frame = $this->getPreprocessor()->newFrame();
5225
5226 # Process section extraction flags
5227 $flags = 0;
5228 $sectionParts = explode( '-', $section );
5229 $sectionIndex = array_pop( $sectionParts );
5230 foreach ( $sectionParts as $part ) {
5231 if ( $part === 'T' ) {
5232 $flags |= self::PTD_FOR_INCLUSION;
5233 }
5234 }
5235
5236 # Check for empty input
5237 if ( strval( $text ) === '' ) {
5238 # Only sections 0 and T-0 exist in an empty document
5239 if ( $sectionIndex == 0 ) {
5240 if ( $mode === 'get' ) {
5241 return '';
5242 } else {
5243 return $newText;
5244 }
5245 } else {
5246 if ( $mode === 'get' ) {
5247 return $newText;
5248 } else {
5249 return $text;
5250 }
5251 }
5252 }
5253
5254 # Preprocess the text
5255 $root = $this->preprocessToDom( $text, $flags );
5256
5257 # <h> nodes indicate section breaks
5258 # They can only occur at the top level, so we can find them by iterating the root's children
5259 $node = $root->getFirstChild();
5260
5261 # Find the target section
5262 if ( $sectionIndex == 0 ) {
5263 # Section zero doesn't nest, level=big
5264 $targetLevel = 1000;
5265 } else {
5266 while ( $node ) {
5267 if ( $node->getName() === 'h' ) {
5268 $bits = $node->splitHeading();
5269 if ( $bits['i'] == $sectionIndex ) {
5270 $targetLevel = $bits['level'];
5271 break;
5272 }
5273 }
5274 if ( $mode === 'replace' ) {
5275 $outText .= $frame->expand( $node, PPFrame::RECOVER_ORIG );
5276 }
5277 $node = $node->getNextSibling();
5278 }
5279 }
5280
5281 if ( !$node ) {
5282 # Not found
5283 if ( $mode === 'get' ) {
5284 return $newText;
5285 } else {
5286 return $text;
5287 }
5288 }
5289
5290 # Find the end of the section, including nested sections
5291 do {
5292 if ( $node->getName() === 'h' ) {
5293 $bits = $node->splitHeading();
5294 $curLevel = $bits['level'];
5295 if ( $bits['i'] != $sectionIndex && $curLevel <= $targetLevel ) {
5296 break;
5297 }
5298 }
5299 if ( $mode === 'get' ) {
5300 $outText .= $frame->expand( $node, PPFrame::RECOVER_ORIG );
5301 }
5302 $node = $node->getNextSibling();
5303 } while ( $node );
5304
5305 # Write out the remainder (in replace mode only)
5306 if ( $mode === 'replace' ) {
5307 # Output the replacement text
5308 # Add two newlines on -- trailing whitespace in $newText is conventionally
5309 # stripped by the editor, so we need both newlines to restore the paragraph gap
5310 # Only add trailing whitespace if there is newText
5311 if ( $newText != "" ) {
5312 $outText .= $newText . "\n\n";
5313 }
5314
5315 while ( $node ) {
5316 $outText .= $frame->expand( $node, PPFrame::RECOVER_ORIG );
5317 $node = $node->getNextSibling();
5318 }
5319 }
5320
5321 if ( is_string( $outText ) ) {
5322 # Re-insert stripped tags
5323 $outText = rtrim( $this->mStripState->unstripBoth( $outText ) );
5324 }
5325
5326 return $outText;
5327 }
5328
5329 /**
5330 * This function returns the text of a section, specified by a number ($section).
5331 * A section is text under a heading like == Heading == or \<h1\>Heading\</h1\>, or
5332 * the first section before any such heading (section 0).
5333 *
5334 * If a section contains subsections, these are also returned.
5335 *
5336 * @param $text String: text to look in
5337 * @param $section String: section identifier
5338 * @param $deftext String: default to return if section is not found
5339 * @return string text of the requested section
5340 */
5341 public function getSection( $text, $section, $deftext='' ) {
5342 return $this->extractSections( $text, $section, "get", $deftext );
5343 }
5344
5345 /**
5346 * This function returns $oldtext after the content of the section
5347 * specified by $section has been replaced with $text. If the target
5348 * section does not exist, $oldtext is returned unchanged.
5349 *
5350 * @param $oldtext String: former text of the article
5351 * @param $section Numeric: section identifier
5352 * @param $text String: replacing text
5353 * @return String: modified text
5354 */
5355 public function replaceSection( $oldtext, $section, $text ) {
5356 return $this->extractSections( $oldtext, $section, "replace", $text );
5357 }
5358
5359 /**
5360 * Get the ID of the revision we are parsing
5361 *
5362 * @return Mixed: integer or null
5363 */
5364 function getRevisionId() {
5365 return $this->mRevisionId;
5366 }
5367
5368 /**
5369 * Get the revision object for $this->mRevisionId
5370 *
5371 * @return Revision|null either a Revision object or null
5372 */
5373 protected function getRevisionObject() {
5374 if ( !is_null( $this->mRevisionObject ) ) {
5375 return $this->mRevisionObject;
5376 }
5377 if ( is_null( $this->mRevisionId ) ) {
5378 return null;
5379 }
5380
5381 $this->mRevisionObject = Revision::newFromId( $this->mRevisionId );
5382 return $this->mRevisionObject;
5383 }
5384
5385 /**
5386 * Get the timestamp associated with the current revision, adjusted for
5387 * the default server-local timestamp
5388 */
5389 function getRevisionTimestamp() {
5390 if ( is_null( $this->mRevisionTimestamp ) ) {
5391 wfProfileIn( __METHOD__ );
5392
5393 global $wgContLang;
5394
5395 $revObject = $this->getRevisionObject();
5396 $timestamp = $revObject ? $revObject->getTimestamp() : wfTimestampNow();
5397
5398 # The cryptic '' timezone parameter tells to use the site-default
5399 # timezone offset instead of the user settings.
5400 #
5401 # Since this value will be saved into the parser cache, served
5402 # to other users, and potentially even used inside links and such,
5403 # it needs to be consistent for all visitors.
5404 $this->mRevisionTimestamp = $wgContLang->userAdjust( $timestamp, '' );
5405
5406 wfProfileOut( __METHOD__ );
5407 }
5408 return $this->mRevisionTimestamp;
5409 }
5410
5411 /**
5412 * Get the name of the user that edited the last revision
5413 *
5414 * @return String: user name
5415 */
5416 function getRevisionUser() {
5417 if( is_null( $this->mRevisionUser ) ) {
5418 $revObject = $this->getRevisionObject();
5419
5420 # if this template is subst: the revision id will be blank,
5421 # so just use the current user's name
5422 if( $revObject ) {
5423 $this->mRevisionUser = $revObject->getUserText();
5424 } elseif( $this->ot['wiki'] || $this->mOptions->getIsPreview() ) {
5425 $this->mRevisionUser = $this->getUser()->getName();
5426 }
5427 }
5428 return $this->mRevisionUser;
5429 }
5430
5431 /**
5432 * Mutator for $mDefaultSort
5433 *
5434 * @param $sort New value
5435 */
5436 public function setDefaultSort( $sort ) {
5437 $this->mDefaultSort = $sort;
5438 $this->mOutput->setProperty( 'defaultsort', $sort );
5439 }
5440
5441 /**
5442 * Accessor for $mDefaultSort
5443 * Will use the empty string if none is set.
5444 *
5445 * This value is treated as a prefix, so the
5446 * empty string is equivalent to sorting by
5447 * page name.
5448 *
5449 * @return string
5450 */
5451 public function getDefaultSort() {
5452 if ( $this->mDefaultSort !== false ) {
5453 return $this->mDefaultSort;
5454 } else {
5455 return '';
5456 }
5457 }
5458
5459 /**
5460 * Accessor for $mDefaultSort
5461 * Unlike getDefaultSort(), will return false if none is set
5462 *
5463 * @return string or false
5464 */
5465 public function getCustomDefaultSort() {
5466 return $this->mDefaultSort;
5467 }
5468
5469 /**
5470 * Try to guess the section anchor name based on a wikitext fragment
5471 * presumably extracted from a heading, for example "Header" from
5472 * "== Header ==".
5473 *
5474 * @param $text string
5475 *
5476 * @return string
5477 */
5478 public function guessSectionNameFromWikiText( $text ) {
5479 # Strip out wikitext links(they break the anchor)
5480 $text = $this->stripSectionName( $text );
5481 $text = Sanitizer::normalizeSectionNameWhitespace( $text );
5482 return '#' . Sanitizer::escapeId( $text, 'noninitial' );
5483 }
5484
5485 /**
5486 * Same as guessSectionNameFromWikiText(), but produces legacy anchors
5487 * instead. For use in redirects, since IE6 interprets Redirect: headers
5488 * as something other than UTF-8 (apparently?), resulting in breakage.
5489 *
5490 * @param $text String: The section name
5491 * @return string An anchor
5492 */
5493 public function guessLegacySectionNameFromWikiText( $text ) {
5494 # Strip out wikitext links(they break the anchor)
5495 $text = $this->stripSectionName( $text );
5496 $text = Sanitizer::normalizeSectionNameWhitespace( $text );
5497 return '#' . Sanitizer::escapeId( $text, array( 'noninitial', 'legacy' ) );
5498 }
5499
5500 /**
5501 * Strips a text string of wikitext for use in a section anchor
5502 *
5503 * Accepts a text string and then removes all wikitext from the
5504 * string and leaves only the resultant text (i.e. the result of
5505 * [[User:WikiSysop|Sysop]] would be "Sysop" and the result of
5506 * [[User:WikiSysop]] would be "User:WikiSysop") - this is intended
5507 * to create valid section anchors by mimicing the output of the
5508 * parser when headings are parsed.
5509 *
5510 * @param $text String: text string to be stripped of wikitext
5511 * for use in a Section anchor
5512 * @return Filtered text string
5513 */
5514 public function stripSectionName( $text ) {
5515 # Strip internal link markup
5516 $text = preg_replace( '/\[\[:?([^[|]+)\|([^[]+)\]\]/', '$2', $text );
5517 $text = preg_replace( '/\[\[:?([^[]+)\|?\]\]/', '$1', $text );
5518
5519 # Strip external link markup
5520 # @todo FIXME: Not tolerant to blank link text
5521 # I.E. [http://www.mediawiki.org] will render as [1] or something depending
5522 # on how many empty links there are on the page - need to figure that out.
5523 $text = preg_replace( '/\[(?:' . wfUrlProtocols() . ')([^ ]+?) ([^[]+)\]/', '$2', $text );
5524
5525 # Parse wikitext quotes (italics & bold)
5526 $text = $this->doQuotes( $text );
5527
5528 # Strip HTML tags
5529 $text = StringUtils::delimiterReplace( '<', '>', '', $text );
5530 return $text;
5531 }
5532
5533 /**
5534 * strip/replaceVariables/unstrip for preprocessor regression testing
5535 *
5536 * @param $text string
5537 * @param $title Title
5538 * @param $options ParserOptions
5539 * @param $outputType int
5540 *
5541 * @return string
5542 */
5543 function testSrvus( $text, Title $title, ParserOptions $options, $outputType = self::OT_HTML ) {
5544 $this->startParse( $title, $options, $outputType, true );
5545
5546 $text = $this->replaceVariables( $text );
5547 $text = $this->mStripState->unstripBoth( $text );
5548 $text = Sanitizer::removeHTMLtags( $text );
5549 return $text;
5550 }
5551
5552 /**
5553 * @param $text string
5554 * @param $title Title
5555 * @param $options ParserOptions
5556 * @return string
5557 */
5558 function testPst( $text, Title $title, ParserOptions $options ) {
5559 return $this->preSaveTransform( $text, $title, $options->getUser(), $options );
5560 }
5561
5562 /**
5563 * @param $text
5564 * @param $title Title
5565 * @param $options ParserOptions
5566 * @return string
5567 */
5568 function testPreprocess( $text, Title $title, ParserOptions $options ) {
5569 return $this->testSrvus( $text, $title, $options, self::OT_PREPROCESS );
5570 }
5571
5572 /**
5573 * Call a callback function on all regions of the given text that are not
5574 * inside strip markers, and replace those regions with the return value
5575 * of the callback. For example, with input:
5576 *
5577 * aaa<MARKER>bbb
5578 *
5579 * This will call the callback function twice, with 'aaa' and 'bbb'. Those
5580 * two strings will be replaced with the value returned by the callback in
5581 * each case.
5582 *
5583 * @param $s string
5584 * @param $callback
5585 *
5586 * @return string
5587 */
5588 function markerSkipCallback( $s, $callback ) {
5589 $i = 0;
5590 $out = '';
5591 while ( $i < strlen( $s ) ) {
5592 $markerStart = strpos( $s, $this->mUniqPrefix, $i );
5593 if ( $markerStart === false ) {
5594 $out .= call_user_func( $callback, substr( $s, $i ) );
5595 break;
5596 } else {
5597 $out .= call_user_func( $callback, substr( $s, $i, $markerStart - $i ) );
5598 $markerEnd = strpos( $s, self::MARKER_SUFFIX, $markerStart );
5599 if ( $markerEnd === false ) {
5600 $out .= substr( $s, $markerStart );
5601 break;
5602 } else {
5603 $markerEnd += strlen( self::MARKER_SUFFIX );
5604 $out .= substr( $s, $markerStart, $markerEnd - $markerStart );
5605 $i = $markerEnd;
5606 }
5607 }
5608 }
5609 return $out;
5610 }
5611
5612 /**
5613 * Save the parser state required to convert the given half-parsed text to
5614 * HTML. "Half-parsed" in this context means the output of
5615 * recursiveTagParse() or internalParse(). This output has strip markers
5616 * from replaceVariables (extensionSubstitution() etc.), and link
5617 * placeholders from replaceLinkHolders().
5618 *
5619 * Returns an array which can be serialized and stored persistently. This
5620 * array can later be loaded into another parser instance with
5621 * unserializeHalfParsedText(). The text can then be safely incorporated into
5622 * the return value of a parser hook.
5623 *
5624 * @param $text string
5625 *
5626 * @return array
5627 */
5628 function serializeHalfParsedText( $text ) {
5629 wfProfileIn( __METHOD__ );
5630 $data = array(
5631 'text' => $text,
5632 'version' => self::HALF_PARSED_VERSION,
5633 'stripState' => $this->mStripState->getSubState( $text ),
5634 'linkHolders' => $this->mLinkHolders->getSubArray( $text )
5635 );
5636 wfProfileOut( __METHOD__ );
5637 return $data;
5638 }
5639
5640 /**
5641 * Load the parser state given in the $data array, which is assumed to
5642 * have been generated by serializeHalfParsedText(). The text contents is
5643 * extracted from the array, and its markers are transformed into markers
5644 * appropriate for the current Parser instance. This transformed text is
5645 * returned, and can be safely included in the return value of a parser
5646 * hook.
5647 *
5648 * If the $data array has been stored persistently, the caller should first
5649 * check whether it is still valid, by calling isValidHalfParsedText().
5650 *
5651 * @param $data Serialized data
5652 * @return String
5653 */
5654 function unserializeHalfParsedText( $data ) {
5655 if ( !isset( $data['version'] ) || $data['version'] != self::HALF_PARSED_VERSION ) {
5656 throw new MWException( __METHOD__.': invalid version' );
5657 }
5658
5659 # First, extract the strip state.
5660 $texts = array( $data['text'] );
5661 $texts = $this->mStripState->merge( $data['stripState'], $texts );
5662
5663 # Now renumber links
5664 $texts = $this->mLinkHolders->mergeForeign( $data['linkHolders'], $texts );
5665
5666 # Should be good to go.
5667 return $texts[0];
5668 }
5669
5670 /**
5671 * Returns true if the given array, presumed to be generated by
5672 * serializeHalfParsedText(), is compatible with the current version of the
5673 * parser.
5674 *
5675 * @param $data Array
5676 *
5677 * @return bool
5678 */
5679 function isValidHalfParsedText( $data ) {
5680 return isset( $data['version'] ) && $data['version'] == self::HALF_PARSED_VERSION;
5681 }
5682 }