1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
|
<?php
/**
* Portions taken from phpwiki-1.3.3.
*
* Copyright © 2000, 2001 Geoffrey T. Dairiki <dairiki@dairiki.org>
* You may copy this code freely under the conditions of the GPL.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @ingroup DifferenceEngine
*/
namespace Wikimedia\Diff;
use InvalidArgumentException;
/**
* MediaWiki default table style diff formatter
* @todo document
* @newable
* @ingroup DifferenceEngine
*/
class TableDiffFormatter extends DiffFormatter {
/**
* Constants for diff sides. Note: these are also used for context lines.
*/
private const SIDE_DELETED = 'deleted';
private const SIDE_ADDED = 'added';
private const SIDE_CLASSES = [
self::SIDE_DELETED => 'diff-side-deleted',
self::SIDE_ADDED => 'diff-side-added'
];
public function __construct() {
$this->leadingContextLines = 2;
$this->trailingContextLines = 2;
}
/**
* @param string $msg
*
* @return string
*/
public static function escapeWhiteSpace( $msg ) {
$msg = preg_replace( '/^ /m', "\u{00A0} ", $msg );
$msg = preg_replace( '/ $/m', " \u{00A0}", $msg );
$msg = preg_replace( '/ /', "\u{00A0} ", $msg );
return $msg;
}
/**
* @param int $xbeg
* @param int $xlen
* @param int $ybeg
* @param int $ylen
*
* @return string
*/
protected function blockHeader( $xbeg, $xlen, $ybeg, $ylen ) {
// '<!--LINE \d+ -->' get replaced by a localised line number
// in BaseTextDiffer::localizeLineNumbers
return $this->rawElement(
'tr',
[],
$this->rawElement(
'td',
[ 'colspan' => '2', 'class' => 'diff-lineno', 'id' => 'mw-diff-left-l' . $xbeg ],
'<!--LINE ' . $xbeg . '-->'
) .
"\n" .
$this->rawElement(
'td',
[ 'colspan' => '2', 'class' => 'diff-lineno' ],
'<!--LINE ' . $ybeg . '-->'
)
) . "\n";
}
/** @inheritDoc */
protected function startBlock( $header ) {
$this->writeOutput( $header );
}
/** @inheritDoc */
protected function endBlock() {
}
/**
* @param string[] $lines
* @param string $prefix
* @param string $color
*/
protected function lines( $lines, $prefix = ' ', $color = 'white' ) {
}
/**
* HTML-escape parameter before calling this
*
* @param string $line
*
* @return string
*/
protected function addedLine( $line ) {
return $this->wrapLine( '+', [ 'diff-addedline', $this->getClassForSide( self::SIDE_ADDED ) ], $line );
}
/**
* HTML-escape parameter before calling this
*
* @param string $line
*
* @return string
*/
protected function deletedLine( $line ) {
return $this->wrapLine( '−', [ 'diff-deletedline', $this->getClassForSide( self::SIDE_DELETED ) ], $line );
}
/**
* HTML-escape parameter before calling this
*
* @param string $line
* @param string $side self::SIDE_DELETED or self::SIDE_ADDED
*
* @return string
*/
protected function contextLine( $line, string $side ) {
return $this->wrapLine( '', [ 'diff-context', $this->getClassForSide( $side ) ], $line );
}
/**
* @param string $marker
* @param string|string[] $class A single class or a list of classes
* @param string $line
*
* @return string
*/
protected function wrapLine( $marker, $class, $line ) {
if ( $line !== '' ) {
// The <div> wrapper is needed for 'overflow: auto' style to scroll properly
$line = $this->rawElement( 'div', [], $this->escapeWhiteSpace( $line ) );
} else {
$line = '<br>';
}
$markerAttrs = [ 'class' => 'diff-marker' ];
if ( $marker ) {
$markerAttrs['data-marker'] = $marker;
}
if ( is_array( $class ) ) {
$class = implode( ' ', $class );
}
return $this->element( 'td', $markerAttrs ) .
$this->rawElement( 'td', [ 'class' => $class ], $line );
}
/**
* @param string $side self::SIDE_DELETED or self::SIDE_ADDED
* @return string
*/
protected function emptyLine( string $side ) {
return $this->element( 'td', [ 'colspan' => '2', 'class' => $this->getClassForSide( $side ) ] );
}
/**
* Writes all lines to the output buffer, each enclosed in <tr>.
*
* @param string[] $lines
*/
protected function added( $lines ) {
foreach ( $lines as $line ) {
$this->writeOutput(
$this->rawElement(
'tr',
[],
$this->emptyLine( self::SIDE_DELETED ) .
$this->addedLine(
$this->element(
'ins',
[ 'class' => 'diffchange' ],
$line
)
)
) .
"\n"
);
}
}
/**
* Writes all lines to the output buffer, each enclosed in <tr>.
*
* @param string[] $lines
*/
protected function deleted( $lines ) {
foreach ( $lines as $line ) {
$this->writeOutput(
$this->rawElement(
'tr',
[],
$this->deletedLine(
$this->element(
'del',
[ 'class' => 'diffchange' ],
$line
)
) .
$this->emptyLine( self::SIDE_ADDED )
) .
"\n"
);
}
}
/**
* Writes all lines to the output buffer, each enclosed in <tr>.
*
* @param string[] $lines
*/
protected function context( $lines ) {
foreach ( $lines as $line ) {
$this->writeOutput(
$this->rawElement(
'tr',
[],
$this->contextLine( htmlspecialchars( $line ), self::SIDE_DELETED ) .
$this->contextLine( htmlspecialchars( $line ), self::SIDE_ADDED )
) .
"\n"
);
}
}
/**
* Writes the two sets of lines to the output buffer, each enclosed in <tr>.
*
* @param string[] $orig
* @param string[] $closing
*/
protected function changed( $orig, $closing ) {
$diff = new WordLevelDiff( $orig, $closing );
$del = $diff->orig();
$add = $diff->closing();
# Notice that WordLevelDiff returns HTML-escaped output.
# Hence, we will be calling addedLine/deletedLine without HTML-escaping.
$ndel = count( $del );
$nadd = count( $add );
$n = max( $ndel, $nadd );
for ( $i = 0; $i < $n; $i++ ) {
$delLine = $i < $ndel ? $this->deletedLine( $del[$i] ) : $this->emptyLine( self::SIDE_DELETED );
$addLine = $i < $nadd ? $this->addedLine( $add[$i] ) : $this->emptyLine( self::SIDE_ADDED );
$this->writeOutput(
$this->rawElement(
'tr',
[],
$delLine . $addLine
) .
"\n"
);
}
}
/**
* Get a class for the given diff side, or throw if the side is invalid.
*
* @param string $side self::SIDE_DELETED or self::SIDE_ADDED
* @return string
* @throws InvalidArgumentException
*/
private function getClassForSide( string $side ): string {
if ( !isset( self::SIDE_CLASSES[$side] ) ) {
throw new InvalidArgumentException( "Invalid diff side: $side" );
}
return self::SIDE_CLASSES[$side];
}
/**
* Serialize an HTML element, with raw contents.
*
* @param string $element
* @param string[] $attribs
* @param string $contents The HTML element contents
* @return string
*/
private function rawElement( $element, $attribs = [], $contents = '' ) {
$ret = "<$element";
foreach ( $attribs as $name => $value ) {
$ret .= " $name=\"" . htmlspecialchars( $value, ENT_QUOTES ) . '"';
}
$ret .= ">$contents</$element>";
return $ret;
}
/**
* Serialize an HTML element, encoding the text contents.
*
* @param string $element
* @param string[] $attribs
* @param string $contents The text contents
* @return string
*/
private function element( $element, $attribs = [], $contents = '' ) {
return $this->rawElement( $element, $attribs, htmlspecialchars( $contents, ENT_NOQUOTES ) );
}
}
/** @deprecated class alias since 1.41 */
class_alias( TableDiffFormatter::class, 'TableDiffFormatter' );
|