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