4 * This is the part of the wikitext parser which handles automatic paragraphs
5 * and conversion of start-of-line prefixes to HTML lists.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
25 class BlockLevelPass
{
26 private $DTopen = false;
27 private $inPre = false;
28 private $lastSection = '';
32 # State constants for the definition list colon extraction
33 const COLON_STATE_TEXT
= 0;
34 const COLON_STATE_TAG
= 1;
35 const COLON_STATE_TAGSTART
= 2;
36 const COLON_STATE_CLOSETAG
= 3;
37 const COLON_STATE_TAGSLASH
= 4;
38 const COLON_STATE_COMMENT
= 5;
39 const COLON_STATE_COMMENTDASH
= 6;
40 const COLON_STATE_COMMENTDASHDASH
= 7;
41 const COLON_STATE_LC
= 8;
44 * Make lists from lines starting with ':', '*', '#', etc.
47 * @param bool $lineStart Whether or not this is at the start of a line.
48 * @return string The lists rendered as HTML
50 public static function doBlockLevels( $text, $lineStart ) {
51 $pass = new self( $text, $lineStart );
52 return $pass->execute();
58 private function __construct( $text, $lineStart ) {
60 $this->lineStart
= $lineStart;
64 * If a pre or p is open, return the corresponding close tag and update
65 * the state. If no tag is open, return an empty string.
68 private function closeParagraph() {
70 if ( $this->lastSection
!== '' ) {
71 $result = '</' . $this->lastSection
. ">\n";
74 $this->lastSection
= '';
79 * getCommon() returns the length of the longest common substring
80 * of both arguments, starting at the beginning of both.
87 private function getCommon( $st1, $st2 ) {
88 $shorter = min( strlen( $st1 ), strlen( $st2 ) );
90 for ( $i = 0; $i < $shorter; ++
$i ) {
91 if ( $st1[$i] !== $st2[$i] ) {
99 * Open the list item element identified by the prefix character.
101 * @param string $char
105 private function openList( $char ) {
106 $result = $this->closeParagraph();
108 if ( '*' === $char ) {
109 $result .= "<ul><li>";
110 } elseif ( '#' === $char ) {
111 $result .= "<ol><li>";
112 } elseif ( ':' === $char ) {
113 $result .= "<dl><dd>";
114 } elseif ( ';' === $char ) {
115 $result .= "<dl><dt>";
116 $this->DTopen
= true;
118 $result = '<!-- ERR 1 -->';
125 * Close the current list item and open the next one.
126 * @param string $char
130 private function nextItem( $char ) {
131 if ( '*' === $char ||
'#' === $char ) {
132 return "</li>\n<li>";
133 } elseif ( ':' === $char ||
';' === $char ) {
135 if ( $this->DTopen
) {
138 if ( ';' === $char ) {
139 $this->DTopen
= true;
140 return $close . '<dt>';
142 $this->DTopen
= false;
143 return $close . '<dd>';
146 return '<!-- ERR 2 -->';
150 * Close the current list item identified by the prefix character.
151 * @param string $char
155 private function closeList( $char ) {
156 if ( '*' === $char ) {
157 $text = "</li></ul>";
158 } elseif ( '#' === $char ) {
159 $text = "</li></ol>";
160 } elseif ( ':' === $char ) {
161 if ( $this->DTopen
) {
162 $this->DTopen
= false;
163 $text = "</dt></dl>";
165 $text = "</dd></dl>";
168 return '<!-- ERR 3 -->';
177 private function execute() {
179 # Parsing through the text line by line. The main thing
180 # happening here is handling of block-level elements p, pre,
181 # and making lists from lines starting with * # : etc.
182 $textLines = StringUtils
::explode( "\n", $text );
184 $lastPrefix = $output = '';
185 $this->DTopen
= $inBlockElem = false;
187 $pendingPTag = false;
188 $inBlockquote = false;
190 foreach ( $textLines as $inputLine ) {
192 if ( !$this->lineStart
) {
193 $output .= $inputLine;
194 $this->lineStart
= true;
202 $lastPrefixLength = strlen( $lastPrefix );
203 $preCloseMatch = preg_match( '/<\\/pre/i', $inputLine );
204 $preOpenMatch = preg_match( '/<pre/i', $inputLine );
205 # If not in a <pre> element, scan for and figure out what prefixes are there.
206 if ( !$this->inPre
) {
207 # Multiple prefixes may abut each other for nested lists.
208 $prefixLength = strspn( $inputLine, '*#:;' );
209 $prefix = substr( $inputLine, 0, $prefixLength );
212 # ; and : are both from definition-lists, so they're equivalent
213 # for the purposes of determining whether or not we need to open/close
215 $prefix2 = str_replace( ';', ':', $prefix );
216 $t = substr( $inputLine, $prefixLength );
217 $this->inPre
= (bool)$preOpenMatch;
219 # Don't interpret any other prefixes in preformatted text
221 $prefix = $prefix2 = '';
226 if ( $prefixLength && $lastPrefix === $prefix2 ) {
227 # Same as the last item, so no need to deal with nesting or opening stuff
228 $output .= $this->nextItem( substr( $prefix, -1 ) );
229 $pendingPTag = false;
231 if ( substr( $prefix, -1 ) === ';' ) {
232 # The one nasty exception: definition lists work like this:
233 # ; title : definition text
234 # So we check for : in the remainder text to split up the
235 # title and definition, without b0rking links.
237 if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
239 $output .= $term . $this->nextItem( ':' );
242 } elseif ( $prefixLength ||
$lastPrefixLength ) {
243 # We need to open or close prefixes, or both.
245 # Either open or close a level...
246 $commonPrefixLength = $this->getCommon( $prefix, $lastPrefix );
247 $pendingPTag = false;
249 # Close all the prefixes which aren't shared.
250 while ( $commonPrefixLength < $lastPrefixLength ) {
251 $output .= $this->closeList( $lastPrefix[$lastPrefixLength - 1] );
255 # Continue the current prefix if appropriate.
256 if ( $prefixLength <= $commonPrefixLength && $commonPrefixLength > 0 ) {
257 $output .= $this->nextItem( $prefix[$commonPrefixLength - 1] );
260 # Open prefixes where appropriate.
261 if ( $lastPrefix && $prefixLength > $commonPrefixLength ) {
264 while ( $prefixLength > $commonPrefixLength ) {
265 $char = substr( $prefix, $commonPrefixLength, 1 );
266 $output .= $this->openList( $char );
268 if ( ';' === $char ) {
269 # @todo FIXME: This is dupe of code above
270 if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
272 $output .= $term . $this->nextItem( ':' );
275 ++
$commonPrefixLength;
277 if ( !$prefixLength && $lastPrefix ) {
280 $lastPrefix = $prefix2;
283 # If we have no prefixes, go to paragraph mode.
284 if ( 0 == $prefixLength ) {
285 # No prefix (not in list)--go to paragraph mode
286 # @todo consider using a stack for nestable elements like span, table and div
287 $openMatch = preg_match(
288 '/(?:<table|<h1|<h2|<h3|<h4|<h5|<h6|<pre|<tr|'
289 . '<p|<ul|<ol|<dl|<li|<\\/tr|<\\/td|<\\/th)/iS',
292 $closeMatch = preg_match(
293 '/(?:<\\/table|<\\/h1|<\\/h2|<\\/h3|<\\/h4|<\\/h5|<\\/h6|'
294 . '<td|<th|<\\/?blockquote|<\\/?div|<hr|<\\/pre|<\\/p|<\\/mw:|'
295 . Parser
::MARKER_PREFIX
296 . '-pre|<\\/li|<\\/ul|<\\/ol|<\\/dl|<\\/?center)/iS',
300 if ( $openMatch ||
$closeMatch ) {
301 $pendingPTag = false;
302 # @todo T7718: paragraph closed
303 $output .= $this->closeParagraph();
304 if ( $preOpenMatch && !$preCloseMatch ) {
308 while ( preg_match( '/<(\\/?)blockquote[\s>]/i', $t,
309 $bqMatch, PREG_OFFSET_CAPTURE
, $bqOffset )
311 $inBlockquote = !$bqMatch[1][0]; // is this a close tag?
312 $bqOffset = $bqMatch[0][1] +
strlen( $bqMatch[0][0] );
314 $inBlockElem = !$closeMatch;
315 } elseif ( !$inBlockElem && !$this->inPre
) {
316 if ( ' ' == substr( $t, 0, 1 )
317 && ( $this->lastSection
=== 'pre' ||
trim( $t ) != '' )
321 if ( $this->lastSection
!== 'pre' ) {
322 $pendingPTag = false;
323 $output .= $this->closeParagraph() . '<pre>';
324 $this->lastSection
= 'pre';
326 $t = substr( $t, 1 );
329 if ( trim( $t ) === '' ) {
330 if ( $pendingPTag ) {
331 $output .= $pendingPTag . '<br />';
332 $pendingPTag = false;
333 $this->lastSection
= 'p';
335 if ( $this->lastSection
!== 'p' ) {
336 $output .= $this->closeParagraph();
337 $this->lastSection
= '';
338 $pendingPTag = '<p>';
340 $pendingPTag = '</p><p>';
344 if ( $pendingPTag ) {
345 $output .= $pendingPTag;
346 $pendingPTag = false;
347 $this->lastSection
= 'p';
348 } elseif ( $this->lastSection
!== 'p' ) {
349 $output .= $this->closeParagraph() . '<p>';
350 $this->lastSection
= 'p';
356 # somewhere above we forget to get out of pre block (T2785)
357 if ( $preCloseMatch && $this->inPre
) {
358 $this->inPre
= false;
360 if ( $pendingPTag === false ) {
362 if ( $prefixLength === 0 ) {
367 while ( $prefixLength ) {
368 $output .= $this->closeList( $prefix2[$prefixLength - 1] );
370 if ( !$prefixLength ) {
374 if ( $this->lastSection
!== '' ) {
375 $output .= '</' . $this->lastSection
. '>';
376 $this->lastSection
= '';
383 * Split up a string on ':', ignoring any occurrences inside tags
384 * to prevent illegal overlapping.
386 * @param string $str The string to split
387 * @param string &$before Set to everything before the ':'
388 * @param string &$after Set to everything after the ':'
389 * @throws MWException
390 * @return string The position of the ':', or false if none found
392 private function findColonNoLinks( $str, &$before, &$after ) {
393 if ( !preg_match( '/:|<|-\{/', $str, $m, PREG_OFFSET_CAPTURE
) ) {
398 if ( $m[0][0] === ':' ) {
399 # Easy; no tag nesting to worry about
400 $colonPos = $m[0][1];
401 $before = substr( $str, 0, $colonPos );
402 $after = substr( $str, $colonPos +
1 );
406 # Ugly state machine to walk through avoiding tags.
407 $state = self
::COLON_STATE_TEXT
;
410 $len = strlen( $str );
411 for ( $i = $m[0][1]; $i < $len; $i++
) {
415 case self
::COLON_STATE_TEXT
:
418 # Could be either a <start> tag or an </end> tag
419 $state = self
::COLON_STATE_TAGSTART
;
422 if ( $ltLevel === 0 ) {
424 $before = substr( $str, 0, $i );
425 $after = substr( $str, $i +
1 );
428 # Embedded in a tag; don't break it.
431 # Skip ahead looking for something interesting
432 if ( !preg_match( '/:|<|-\{/', $str, $m, PREG_OFFSET_CAPTURE
, $i ) ) {
433 # Nothing else interesting
436 if ( $m[0][0] === '-{' ) {
437 $state = self
::COLON_STATE_LC
;
441 # Skip ahead to next interesting character.
447 case self
::COLON_STATE_LC
:
448 # In language converter markup -{ ... }-
449 if ( !preg_match( '/-\{|\}-/', $str, $m, PREG_OFFSET_CAPTURE
, $i ) ) {
450 # Nothing else interesting to find; abort!
451 # We're nested in language converter markup, but there
452 # are no close tags left. Abort!
454 } elseif ( $m[0][0] === '-{' ) {
457 } elseif ( $m[0][0] === '}-' ) {
460 if ( $lcLevel === 0 ) {
461 $state = self
::COLON_STATE_TEXT
;
465 case self
::COLON_STATE_TAG
:
470 $state = self
::COLON_STATE_TEXT
;
473 # Slash may be followed by >?
474 $state = self
::COLON_STATE_TAGSLASH
;
480 case self
::COLON_STATE_TAGSTART
:
483 $state = self
::COLON_STATE_CLOSETAG
;
486 $state = self
::COLON_STATE_COMMENT
;
489 # Illegal early close? This shouldn't happen D:
490 $state = self
::COLON_STATE_TEXT
;
493 $state = self
::COLON_STATE_TAG
;
496 case self
::COLON_STATE_CLOSETAG
:
499 if ( $ltLevel > 0 ) {
502 # ignore the excess close tag, but keep looking for
503 # colons. (This matches Parsoid behavior.)
504 wfDebug( __METHOD__
. ": Invalid input; too many close tags\n" );
506 $state = self
::COLON_STATE_TEXT
;
509 case self
::COLON_STATE_TAGSLASH
:
511 # Yes, a self-closed tag <blah/>
512 $state = self
::COLON_STATE_TEXT
;
514 # Probably we're jumping the gun, and this is an attribute
515 $state = self
::COLON_STATE_TAG
;
518 case self
::COLON_STATE_COMMENT
:
520 $state = self
::COLON_STATE_COMMENTDASH
;
523 case self
::COLON_STATE_COMMENTDASH
:
525 $state = self
::COLON_STATE_COMMENTDASHDASH
;
527 $state = self
::COLON_STATE_COMMENT
;
530 case self
::COLON_STATE_COMMENTDASHDASH
:
532 $state = self
::COLON_STATE_TEXT
;
534 $state = self
::COLON_STATE_COMMENT
;
538 throw new MWException( "State machine error in " . __METHOD__
);
541 if ( $ltLevel > 0 ||
$lcLevel > 0 ) {
543 __METHOD__
. ": Invalid input; not enough close tags " .
544 "(level $ltLevel/$lcLevel, state $state)\n"