3 * Basic search engine highlighting
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.
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.
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
25 * Highlight bits of wikitext
29 class SearchHighlighter
{
30 protected $mCleanWikitext = true;
32 function __construct( $cleanupWikitext = true ) {
33 $this->mCleanWikitext
= $cleanupWikitext;
37 * Wikitext highlighting when $wgAdvancedSearchHighlighting = true
40 * @param array $terms Terms to highlight (not html escaped but
41 * regex escaped via SearchDatabase::regexTerm())
42 * @param int $contextlines
43 * @param int $contextchars
46 public function highlightText( $text, $terms, $contextlines, $contextchars ) {
47 global $wgContLang, $wgSearchHighlightBoundaries;
53 // spli text into text + templates/links/tables
54 $spat = "/(\\{\\{)|(\\[\\[[^\\]:]+:)|(\n\\{\\|)";
55 // first capture group is for detecting nested templates/links/tables/references
57 1 => '/(\{\{)|(\}\})/', // template
58 2 => '/(\[\[)|(\]\])/', // image
59 3 => "/(\n\\{\\|)|(\n\\|\\})/" ]; // table
61 // @todo FIXME: This should prolly be a hook or something
62 // instead of hardcoding a class name from the Cite extension
63 if ( class_exists( 'Cite' ) ) {
64 $spat .= '|(<ref>)'; // references via cite extension
65 $endPatterns[4] = '/(<ref>)|(<\/ref>)/';
68 $textExt = []; // text extracts
69 $otherExt = []; // other extracts
71 $textLen = strlen( $text );
72 $count = 0; // sequence number to maintain ordering
73 while ( $start < $textLen ) {
74 // find start of template/image/table
75 if ( preg_match( $spat, $text, $matches, PREG_OFFSET_CAPTURE
, $start ) ) {
77 foreach ( $matches as $key => $val ) {
78 if ( $key > 0 && $val[1] != -1 ) {
80 // see if this is an image link
81 $ns = substr( $val[0], 2, -1 );
82 if ( $wgContLang->getNsIndex( $ns ) != NS_FILE
) {
87 $epat = $endPatterns[$key];
88 $this->splitAndAdd( $textExt, $count, substr( $text, $start, $val[1] - $start ) );
94 // find end (and detect any nested elements)
98 while ( preg_match( $epat, $text, $endMatches, PREG_OFFSET_CAPTURE
, $offset ) ) {
99 if ( array_key_exists( 2, $endMatches ) ) {
102 $len = strlen( $endMatches[2][0] );
103 $off = $endMatches[2][1];
104 $this->splitAndAdd( $otherExt, $count,
105 substr( $text, $start, $off +
$len - $start ) );
106 $start = $off +
$len;
110 // end of nested element
117 $offset = $endMatches[0][1] +
strlen( $endMatches[0][0] );
120 // couldn't find appropriate closing tag, skip
121 $this->splitAndAdd( $textExt, $count, substr( $text, $start, strlen( $matches[0][0] ) ) );
122 $start +
= strlen( $matches[0][0] );
127 // else: add as text extract
128 $this->splitAndAdd( $textExt, $count, substr( $text, $start ) );
132 $all = $textExt +
$otherExt; // these have disjunct key sets
135 foreach ( $terms as $index => $term ) {
136 // manually do upper/lowercase stuff for utf-8 since PHP won't do it
137 if ( preg_match( '/[\x80-\xff]/', $term ) ) {
138 $terms[$index] = preg_replace_callback(
140 [ $this, 'caseCallback' ],
144 $terms[$index] = $term;
147 $anyterm = implode( '|', $terms );
148 $phrase = implode( "$wgSearchHighlightBoundaries+", $terms );
149 // @todo FIXME: A hack to scale contextchars, a correct solution
150 // would be to have contextchars actually be char and not byte
151 // length, and do proper utf-8 substrings and lengths everywhere,
152 // but PHP is making that very hard and unclean to implement :(
153 $scale = strlen( $anyterm ) / mb_strlen( $anyterm );
154 $contextchars = intval( $contextchars * $scale );
156 $patPre = "(^|$wgSearchHighlightBoundaries)";
157 $patPost = "($wgSearchHighlightBoundaries|$)";
159 $pat1 = "/(" . $phrase . ")/ui";
160 $pat2 = "/$patPre(" . $anyterm . ")$patPost/ui";
162 $left = $contextlines;
167 // show beginning only if it contains all words
170 foreach ( $textExt as $index => $line ) {
171 if ( strlen( $line ) > 0 && $line[0] != ';' && $line[0] != ':' ) {
172 $firstText = $this->extract( $line, 0, $contextchars * $contextlines );
179 // check if first text contains all terms
180 foreach ( $terms as $term ) {
181 if ( !preg_match( "/$patPre" . $term . "$patPost/ui", $firstText ) ) {
187 $snippets[$first] = $firstText;
188 $offsets[$first] = 0;
192 // match whole query on text
193 $this->process( $pat1, $textExt, $left, $contextchars, $snippets, $offsets );
194 // match whole query on templates/tables/images
195 $this->process( $pat1, $otherExt, $left, $contextchars, $snippets, $offsets );
196 // match any words on text
197 $this->process( $pat2, $textExt, $left, $contextchars, $snippets, $offsets );
198 // match any words on templates/tables/images
199 $this->process( $pat2, $otherExt, $left, $contextchars, $snippets, $offsets );
204 // add extra chars to each snippet to make snippets constant size
206 if ( count( $snippets ) == 0 ) {
207 // couldn't find the target words, just show beginning of article
208 if ( array_key_exists( $first, $all ) ) {
209 $targetchars = $contextchars * $contextlines;
210 $snippets[$first] = '';
211 $offsets[$first] = 0;
214 // if begin of the article contains the whole phrase, show only that !!
215 if ( array_key_exists( $first, $snippets ) && preg_match( $pat1, $snippets[$first] )
216 && $offsets[$first] < $contextchars * 2 ) {
217 $snippets = [ $first => $snippets[$first] ];
220 // calc by how much to extend existing snippets
221 $targetchars = intval( ( $contextchars * $contextlines ) / count( $snippets ) );
224 foreach ( $snippets as $index => $line ) {
225 $extended[$index] = $line;
226 $len = strlen( $line );
227 if ( $len < $targetchars - 20 ) {
228 // complete this line
229 if ( $len < strlen( $all[$index] ) ) {
230 $extended[$index] = $this->extract(
233 $offsets[$index] +
$targetchars,
236 $len = strlen( $extended[$index] );
241 while ( $len < $targetchars - 20
242 && array_key_exists( $add, $all )
243 && !array_key_exists( $add, $snippets ) ) {
245 $tt = "\n" . $this->extract( $all[$add], 0, $targetchars - $len, $offsets[$add] );
246 $extended[$add] = $tt;
247 $len +
= strlen( $tt );
253 // $snippets = array_map( 'htmlspecialchars', $extended );
254 $snippets = $extended;
257 foreach ( $snippets as $index => $line ) {
259 $extract .= $line; // first line
260 } elseif ( $last +
1 == $index
261 && $offsets[$last] +
strlen( $snippets[$last] ) >= strlen( $all[$last] )
263 $extract .= " " . $line; // continous lines
265 $extract .= '<b> ... </b>' . $line;
271 $extract .= '<b> ... </b>';
275 foreach ( $terms as $term ) {
276 if ( !isset( $processed[$term] ) ) {
277 $pat3 = "/$patPre(" . $term . ")$patPost/ui"; // highlight word
278 $extract = preg_replace( $pat3,
279 "\\1<span class='searchmatch'>\\2</span>\\3", $extract );
280 $processed[$term] = true;
288 * Split text into lines and add it to extracts array
290 * @param array $extracts Index -> $line
292 * @param string $text
294 function splitAndAdd( &$extracts, &$count, $text ) {
295 $split = explode( "\n", $this->mCleanWikitext ?
$this->removeWiki( $text ) : $text );
296 foreach ( $split as $line ) {
299 $extracts[$count++
] = $tt;
305 * Do manual case conversion for non-ascii chars
307 * @param array $matches
310 function caseCallback( $matches ) {
312 if ( strlen( $matches[0] ) > 1 ) {
313 return '[' . $wgContLang->lc( $matches[0] ) . $wgContLang->uc( $matches[0] ) . ']';
320 * Extract part of the text from start to end, but by
321 * not chopping up words
322 * @param string $text
325 * @param int $posStart (out) actual start position
326 * @param int $posEnd (out) actual end position
329 function extract( $text, $start, $end, &$posStart = null, &$posEnd = null ) {
331 $start = $this->position( $text, $start, 1 );
333 if ( $end >= strlen( $text ) ) {
334 $end = strlen( $text );
336 $end = $this->position( $text, $end );
339 if ( !is_null( $posStart ) ) {
342 if ( !is_null( $posEnd ) ) {
346 if ( $end > $start ) {
347 return substr( $text, $start, $end - $start );
354 * Find a nonletter near a point (index) in the text
356 * @param string $text
358 * @param int $offset Offset to found index
359 * @return int Nearest nonletter index, or beginning of utf8 char if none
361 function position( $text, $point, $offset = 0 ) {
363 $s = max( 0, $point - $tolerance );
364 $l = min( strlen( $text ), $point +
$tolerance ) - $s;
368 '/[ ,.!?~!@#$%^&*\(\)+=\-\\\|\[\]"\'<>]/',
369 substr( $text, $s, $l ),
373 return $m[0][1] +
$s +
$offset;
375 // check if point is on a valid first UTF8 char
376 $char = ord( $text[$point] );
377 while ( $char >= 0x80 && $char < 0xc0 ) {
378 // skip trailing bytes
380 if ( $point >= strlen( $text ) ) {
381 return strlen( $text );
383 $char = ord( $text[$point] );
392 * Search extracts for a pattern, and return snippets
394 * @param string $pattern Regexp for matching lines
395 * @param array $extracts Extracts to search
396 * @param int $linesleft Number of extracts to make
397 * @param int $contextchars Length of snippet
398 * @param array $out Map for highlighted snippets
399 * @param array $offsets Map of starting points of snippets
402 function process( $pattern, $extracts, &$linesleft, &$contextchars, &$out, &$offsets ) {
403 if ( $linesleft == 0 ) {
404 return; // nothing to do
406 foreach ( $extracts as $index => $line ) {
407 if ( array_key_exists( $index, $out ) ) {
408 continue; // this line already highlighted
412 if ( !preg_match( $pattern, $line, $m, PREG_OFFSET_CAPTURE
) ) {
417 $len = strlen( $m[0][0] );
418 if ( $offset +
$len < $contextchars ) {
420 } elseif ( $len > $contextchars ) {
423 $begin = $offset +
intval( ( $len - $contextchars ) / 2 );
426 $end = $begin +
$contextchars;
429 // basic snippet from this line
430 $out[$index] = $this->extract( $line, $begin, $end, $posBegin );
431 $offsets[$index] = $posBegin;
433 if ( $linesleft == 0 ) {
440 * Basic wikitext removal
442 * @param string $text
445 function removeWiki( $text ) {
446 $text = preg_replace( "/\\{\\{([^|]+?)\\}\\}/", "", $text );
447 $text = preg_replace( "/\\{\\{([^|]+\\|)(.*?)\\}\\}/", "\\2", $text );
448 $text = preg_replace( "/\\[\\[([^|]+?)\\]\\]/", "\\1", $text );
449 $text = preg_replace_callback(
450 "/\\[\\[([^|]+\\|)(.*?)\\]\\]/",
451 [ $this, 'linkReplace' ],
454 $text = preg_replace( "/<\/?[^>]+>/", "", $text );
455 $text = preg_replace( "/'''''/", "", $text );
456 $text = preg_replace( "/('''|<\/?[iIuUbB]>)/", "", $text );
457 $text = preg_replace( "/''/", "", $text );
463 * callback to replace [[target|caption]] kind of links, if
464 * the target is category or image, leave it
466 * @param array $matches
469 function linkReplace( $matches ) {
470 $colon = strpos( $matches[1], ':' );
471 if ( $colon === false ) {
472 return $matches[2]; // replace with caption
475 $ns = substr( $matches[1], 0, $colon );
476 $index = $wgContLang->getNsIndex( $ns );
477 if ( $index !== false && ( $index == NS_FILE ||
$index == NS_CATEGORY
) ) {
478 return $matches[0]; // return the whole thing
485 * Simple & fast snippet extraction, but gives completely unrelevant
488 * Used when $wgAdvancedSearchHighlighting is false.
490 * @param string $text
491 * @param array $terms Escaped for regex by SearchDatabase::regexTerm()
492 * @param int $contextlines
493 * @param int $contextchars
496 public function highlightSimple( $text, $terms, $contextlines, $contextchars ) {
499 $lines = explode( "\n", $text );
501 $terms = implode( '|', $terms );
502 $max = intval( $contextchars ) +
1;
503 $pat1 = "/(.*)($terms)(.{0,$max})/i";
508 foreach ( $lines as $line ) {
509 if ( 0 == $contextlines ) {
514 if ( !preg_match( $pat1, $line, $m ) ) {
518 // truncate function changes ... to relevant i18n message.
519 $pre = $wgContLang->truncate( $m[1], - $contextchars, '...', false );
521 if ( count( $m ) < 3 ) {
524 $post = $wgContLang->truncate( $m[3], $contextchars, '...', false );
529 $line = htmlspecialchars( $pre . $found . $post );
530 $pat2 = '/(' . $terms . ")/i";
531 $line = preg_replace( $pat2, "<span class='searchmatch'>\\1</span>", $line );
533 $extract .= "${line}\n";
540 * Returns the first few lines of the text
542 * @param string $text
543 * @param int $contextlines Max number of returned lines
544 * @param int $contextchars Average number of characters per line
547 public function highlightNone( $text, $contextlines, $contextchars ) {
549 $text = ltrim( $text ) . "\n"; // make sure the preg_match may find the last line
550 $text = str_replace( "\n\n", "\n", $text ); // remove empty lines
551 preg_match( "/^(.*\n){0,$contextlines}/", $text, $match );
553 // Trim and limit to max number of chars
554 $text = htmlspecialchars( substr( trim( $match[0] ), 0, $contextlines * $contextchars ) );
555 return str_replace( "\n", '<br>', $text );