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