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