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 * @defgroup Search Search
29 * Contain a class for special pages
36 var $searchTerms = array();
37 var $namespaces = array( NS_MAIN
);
38 var $showRedirects = false;
41 protected $features = array();
48 function __construct( $db = null ) {
52 $this->db
= wfGetDB( DB_SLAVE
);
57 * Perform a full text search query and return a result set.
58 * If title searches are not supported or disabled, return null.
61 * @param string $term raw search term
62 * @return SearchResultSet|Status|null
64 function searchText( $term ) {
69 * Perform a title-only search query and return a result set.
70 * If title searches are not supported or disabled, return null.
73 * @param string $term raw search term
74 * @return SearchResultSet|null
76 function searchTitle( $term ) {
81 * If this search backend can list/unlist redirects
82 * @deprecated since 1.18 Call supports( 'list-redirects' );
85 function acceptListRedirects() {
86 wfDeprecated( __METHOD__
, '1.18' );
87 return $this->supports( 'list-redirects' );
92 * @param $feature String
95 public function supports( $feature ) {
97 case 'list-redirects':
99 case 'title-suffix-filter':
106 * Way to pass custom data for engines
108 * @param $feature String
112 public function setFeatureData( $feature, $data ) {
113 $this->features
[$feature] = $data;
117 * When overridden in derived class, performs database-specific conversions
118 * on text to be used for searching or updating search index.
119 * Default implementation does nothing (simply returns $string).
121 * @param string $string String to process
124 public function normalizeText( $string ) {
127 // Some languages such as Chinese require word segmentation
128 return $wgContLang->segmentByWord( $string );
132 * Transform search term in cases when parts of the query came as different GET params (when supported)
133 * e.g. for prefix queries: search=test&prefix=Main_Page/Archive -> test prefix:Main Page/Archive
135 function transformSearchTerm( $term ) {
140 * If an exact title match can be found, or a very slightly close match,
141 * return the title. If no match, returns NULL.
143 * @param $searchterm String
146 public static function getNearMatch( $searchterm ) {
147 $title = self
::getNearMatchInternal( $searchterm );
149 wfRunHooks( 'SearchGetNearMatchComplete', array( $searchterm, &$title ) );
154 * Do a near match (see SearchEngine::getNearMatch) and wrap it into a
157 * @param $searchterm string
158 * @return SearchResultSet
160 public static function getNearMatchResultSet( $searchterm ) {
161 return new SearchNearMatchResultSet( self
::getNearMatch( $searchterm ) );
165 * Really find the title match.
168 private static function getNearMatchInternal( $searchterm ) {
169 global $wgContLang, $wgEnableSearchContributorsByIP;
171 $allSearchTerms = array( $searchterm );
173 if ( $wgContLang->hasVariants() ) {
174 $allSearchTerms = array_merge( $allSearchTerms, $wgContLang->autoConvertToAllVariants( $searchterm ) );
178 if ( !wfRunHooks( 'SearchGetNearMatchBefore', array( $allSearchTerms, &$titleResult ) ) ) {
182 foreach ( $allSearchTerms as $term ) {
184 # Exact match? No need to look further.
185 $title = Title
::newFromText( $term );
186 if ( is_null( $title ) ) {
190 # Try files if searching in the Media: namespace
191 if ( $title->getNamespace() == NS_MEDIA
) {
192 $title = Title
::makeTitle( NS_FILE
, $title->getText() );
195 if ( $title->isSpecialPage() ||
$title->isExternal() ||
$title->exists() ) {
199 # See if it still otherwise has content is some sane sense
200 $page = WikiPage
::factory( $title );
201 if ( $page->hasViewableContent() ) {
205 if ( !wfRunHooks( 'SearchAfterNoDirectMatch', array( $term, &$title ) ) ) {
209 # Now try all lower case (i.e. first letter capitalized)
210 $title = Title
::newFromText( $wgContLang->lc( $term ) );
211 if ( $title && $title->exists() ) {
215 # Now try capitalized string
216 $title = Title
::newFromText( $wgContLang->ucwords( $term ) );
217 if ( $title && $title->exists() ) {
221 # Now try all upper case
222 $title = Title
::newFromText( $wgContLang->uc( $term ) );
223 if ( $title && $title->exists() ) {
227 # Now try Word-Caps-Breaking-At-Word-Breaks, for hyphenated names etc
228 $title = Title
::newFromText( $wgContLang->ucwordbreaks( $term ) );
229 if ( $title && $title->exists() ) {
233 // Give hooks a chance at better match variants
235 if ( !wfRunHooks( 'SearchGetNearMatch', array( $term, &$title ) ) ) {
240 $title = Title
::newFromText( $searchterm );
242 # Entering an IP address goes to the contributions page
243 if ( $wgEnableSearchContributorsByIP ) {
244 if ( ( $title->getNamespace() == NS_USER
&& User
::isIP( $title->getText() ) )
245 || User
::isIP( trim( $searchterm ) ) ) {
246 return SpecialPage
::getTitleFor( 'Contributions', $title->getDBkey() );
250 # Entering a user goes to the user page whether it's there or not
251 if ( $title->getNamespace() == NS_USER
) {
255 # Go to images that exist even if there's no local page.
256 # There may have been a funny upload, or it may be on a shared
257 # file repository such as Wikimedia Commons.
258 if ( $title->getNamespace() == NS_FILE
) {
259 $image = wfFindFile( $title );
265 # MediaWiki namespace? Page may be "implied" if not customized.
266 # Just return it, with caps forced as the message system likes it.
267 if ( $title->getNamespace() == NS_MEDIAWIKI
) {
268 return Title
::makeTitle( NS_MEDIAWIKI
, $wgContLang->ucfirst( $title->getText() ) );
271 # Quoted term? Try without the quotes...
273 if ( preg_match( '/^"([^"]+)"$/', $searchterm, $matches ) ) {
274 return SearchEngine
::getNearMatch( $matches[1] );
280 public static function legalSearchChars() {
281 return "A-Za-z_'.0-9\\x80-\\xFF\\-";
285 * Set the maximum number of results to return
286 * and how many to skip before returning the first.
288 * @param $limit Integer
289 * @param $offset Integer
291 function setLimitOffset( $limit, $offset = 0 ) {
292 $this->limit
= intval( $limit );
293 $this->offset
= intval( $offset );
297 * Set which namespaces the search should include.
298 * Give an array of namespace index numbers.
300 * @param $namespaces Array
302 function setNamespaces( $namespaces ) {
303 $this->namespaces
= $namespaces;
307 * Parse some common prefixes: all (search everything)
310 * @param $query String
313 function replacePrefixes( $query ) {
317 if ( strpos( $query, ':' ) === false ) { // nothing to do
318 wfRunHooks( 'SearchEngineReplacePrefixesComplete', array( $this, $query, &$parsed ) );
322 $allkeyword = wfMessage( 'searchall' )->inContentLanguage()->text() . ":";
323 if ( strncmp( $query, $allkeyword, strlen( $allkeyword ) ) == 0 ) {
324 $this->namespaces
= null;
325 $parsed = substr( $query, strlen( $allkeyword ) );
326 } elseif ( strpos( $query, ':' ) !== false ) {
327 $prefix = substr( $query, 0, strpos( $query, ':' ) );
328 $index = $wgContLang->getNsIndex( $prefix );
329 if ( $index !== false ) {
330 $this->namespaces
= array( $index );
331 $parsed = substr( $query, strlen( $prefix ) +
1 );
334 if ( trim( $parsed ) == '' ) {
335 $parsed = $query; // prefix was the whole query
338 wfRunHooks( 'SearchEngineReplacePrefixesComplete', array( $this, $query, &$parsed ) );
344 * Make a list of searchable namespaces and their canonical names.
347 public static function searchableNamespaces() {
350 foreach ( $wgContLang->getNamespaces() as $ns => $name ) {
351 if ( $ns >= NS_MAIN
) {
356 wfRunHooks( 'SearchableNamespaces', array( &$arr ) );
361 * Extract default namespaces to search from the given user's
362 * settings, returning a list of index numbers.
367 public static function userNamespaces( $user ) {
368 global $wgSearchEverythingOnlyLoggedIn;
370 $searchableNamespaces = SearchEngine
::searchableNamespaces();
372 // get search everything preference, that can be set to be read for logged-in users
373 // it overrides other options
374 if ( !$wgSearchEverythingOnlyLoggedIn ||
$user->isLoggedIn() ) {
375 if ( $user->getOption( 'searcheverything' ) ) {
376 return array_keys( $searchableNamespaces );
381 foreach ( $searchableNamespaces as $ns => $name ) {
382 if ( $user->getOption( 'searchNs' . $ns ) ) {
391 * Find snippet highlight settings for all users
393 * @return Array contextlines, contextchars
395 public static function userHighlightPrefs() {
396 $contextlines = 2; // Hardcode this. Old defaults sucked. :)
397 $contextchars = 75; // same as above.... :P
398 return array( $contextlines, $contextchars );
402 * An array of namespaces indexes to be searched by default
406 public static function defaultNamespaces() {
407 global $wgNamespacesToBeSearchedDefault;
409 return array_keys( $wgNamespacesToBeSearchedDefault, true );
413 * Get a list of namespace names useful for showing in tooltips
416 * @param $namespaces Array
419 public static function namespacesAsText( $namespaces ) {
422 $formatted = array_map( array( $wgContLang, 'getFormattedNsText' ), $namespaces );
423 foreach ( $formatted as $key => $ns ) {
424 if ( empty( $ns ) ) {
425 $formatted[$key] = wfMessage( 'blanknamespace' )->text();
432 * Return the help namespaces to be shown on Special:Search
436 public static function helpNamespaces() {
437 global $wgNamespacesToBeSearchedHelp;
439 return array_keys( $wgNamespacesToBeSearchedHelp, true );
443 * Return a 'cleaned up' search string
445 * @param $text String
448 function filter( $text ) {
449 $lc = $this->legalSearchChars();
450 return trim( preg_replace( "/[^{$lc}]/", " ", $text ) );
453 * Load up the appropriate search engine class for the currently
454 * active database backend, and return a configured instance.
456 * @return SearchEngine
458 public static function create() {
459 global $wgSearchType;
461 if ( $wgSearchType ) {
462 $class = $wgSearchType;
464 $dbr = wfGetDB( DB_SLAVE
);
465 $class = $dbr->getSearchEngine();
467 $search = new $class( $dbr );
468 $search->setLimitOffset( 0, 0 );
473 * Create or update the search index record for the given page.
474 * Title and text should be pre-processed.
478 * @param $title String
479 * @param $text String
481 function update( $id, $title, $text ) {
486 * Update a search index record's title only.
487 * Title should be pre-processed.
491 * @param $title String
493 function updateTitle( $id, $title ) {
498 * Get OpenSearch suggestion template
502 public static function getOpenSearchTemplate() {
503 global $wgOpenSearchTemplate, $wgCanonicalServer;
504 if ( $wgOpenSearchTemplate ) {
505 return $wgOpenSearchTemplate;
507 $ns = implode( '|', SearchEngine
::defaultNamespaces() );
511 return $wgCanonicalServer . wfScript( 'api' ) . '?action=opensearch&search={searchTerms}&namespace=' . $ns;
519 class SearchResultSet
{
521 * Fetch an array of regular expression fragments for matching
522 * the search terms as parsed by this engine in a text extract.
527 function termMatches() {
536 * Return true if results are included in this result set.
541 function hasResults() {
546 * Some search modes return a total hit count for the query
547 * in the entire article database. This may include pages
548 * in namespaces that would not be matched on the given
551 * Return null if no total hits number is supported.
555 function getTotalHits() {
560 * Some search modes return a suggested alternate term if there are
561 * no exact hits. Returns true if there is one on this set.
565 function hasSuggestion() {
570 * @return String: suggested query, null if none
572 function getSuggestionQuery() {
577 * @return String: HTML highlighted suggested query, '' if none
579 function getSuggestionSnippet() {
584 * Return information about how and from where the results were fetched,
585 * should be useful for diagnostics and debugging
594 * Return a result set of hits on other (multiple) wikis associated with this one
596 * @return SearchResultSet
598 function getInterwikiResults() {
603 * Check if there are results on other wikis
607 function hasInterwikiResults() {
608 return $this->getInterwikiResults() != null;
612 * Fetches next search result, or false.
615 * @return SearchResult
622 * Frees the result set, if applicable.
630 * This class is used for different SQL-based search engines shipped with MediaWiki
632 class SqlSearchResultSet
extends SearchResultSet
{
634 protected $mResultSet;
636 function __construct( $resultSet, $terms ) {
637 $this->mResultSet
= $resultSet;
638 $this->mTerms
= $terms;
641 function termMatches() {
642 return $this->mTerms
;
646 if ( $this->mResultSet
=== false ) {
650 return $this->mResultSet
->numRows();
654 if ( $this->mResultSet
=== false ) {
658 $row = $this->mResultSet
->fetchObject();
659 if ( $row === false ) {
663 return SearchResult
::newFromRow( $row );
667 if ( $this->mResultSet
=== false ) {
671 $this->mResultSet
->free();
678 class SearchResultTooMany
{
679 # # Some search engines may bail out if too many matches are found
683 * @todo FIXME: This class is horribly factored. It would probably be better to
684 * have a useful base class to which you pass some standard information, then
685 * let the fancy self-highlighters extend that.
693 var $mRevision = null;
707 * Return a new SearchResult and initializes it with a title.
709 * @param $title Title
710 * @return SearchResult
712 public static function newFromTitle( $title ) {
713 $result = new self();
714 $result->initFromTitle( $title );
718 * Return a new SearchResult and initializes it with a row.
721 * @return SearchResult
723 public static function newFromRow( $row ) {
724 $result = new self();
725 $result->initFromRow( $row );
729 public function __construct( $row = null ) {
730 if ( !is_null( $row ) ) {
731 // Backwards compatibility with pre-1.17 callers
732 $this->initFromRow( $row );
737 * Initialize from a database row. Makes a Title and passes that to
742 protected function initFromRow( $row ) {
743 $this->initFromTitle( Title
::makeTitle( $row->page_namespace
, $row->page_title
) );
747 * Initialize from a Title and if possible initializes a corresponding
750 * @param $title Title
752 protected function initFromTitle( $title ) {
753 $this->mTitle
= $title;
754 if ( !is_null( $this->mTitle
) ) {
756 wfRunHooks( 'SearchResultInitFromTitle', array( $title, &$id ) );
757 $this->mRevision
= Revision
::newFromTitle(
758 $this->mTitle
, $id, Revision
::READ_NORMAL
);
759 if ( $this->mTitle
->getNamespace() === NS_FILE
) {
760 $this->mImage
= wfFindFile( $this->mTitle
);
766 * Check if this is result points to an invalid title
770 function isBrokenTitle() {
771 if ( is_null( $this->mTitle
) ) {
778 * Check if target page is missing, happens when index is out of date
782 function isMissingRevision() {
783 return !$this->mRevision
&& !$this->mImage
;
789 function getTitle() {
790 return $this->mTitle
;
794 * @return float|null if not supported
796 function getScore() {
801 * Lazy initialization of article text from DB
803 protected function initText() {
804 if ( !isset( $this->mText
) ) {
805 if ( $this->mRevision
!= null ) {
806 //TODO: if we could plug in some code that knows about special content models *and* about
807 // special features of the search engine, the search could benefit.
808 $content = $this->mRevision
->getContent();
809 $this->mText
= $content ?
$content->getTextForSearchIndex() : '';
810 } else { // TODO: can we fetch raw wikitext for commons images?
817 * @param array $terms terms to highlight
818 * @return String: highlighted text snippet, null (and not '') if not supported
820 function getTextSnippet( $terms ) {
821 global $wgUser, $wgAdvancedSearchHighlighting;
824 // TODO: make highliter take a content object. Make ContentHandler a factory for SearchHighliter.
825 list( $contextlines, $contextchars ) = SearchEngine
::userHighlightPrefs( $wgUser );
826 $h = new SearchHighlighter();
827 if ( $wgAdvancedSearchHighlighting ) {
828 return $h->highlightText( $this->mText
, $terms, $contextlines, $contextchars );
830 return $h->highlightSimple( $this->mText
, $terms, $contextlines, $contextchars );
835 * @param array $terms terms to highlight
836 * @return String: highlighted title, '' if not supported
838 function getTitleSnippet( $terms ) {
843 * @param array $terms terms to highlight
844 * @return String: highlighted redirect name (redirect to this page), '' if none or not supported
846 function getRedirectSnippet( $terms ) {
851 * @return Title object for the redirect to this page, null if none or not supported
853 function getRedirectTitle() {
858 * @return string highlighted relevant section name, null if none or not supported
860 function getSectionSnippet() {
865 * @return Title object (pagename+fragment) for the section, null if none or not supported
867 function getSectionTitle() {
872 * @return String: timestamp
874 function getTimestamp() {
875 if ( $this->mRevision
) {
876 return $this->mRevision
->getTimestamp();
877 } elseif ( $this->mImage
) {
878 return $this->mImage
->getTimestamp();
884 * @return Integer: number of words
886 function getWordCount() {
888 return str_word_count( $this->mText
);
892 * @return Integer: size in bytes
894 function getByteSize() {
896 return strlen( $this->mText
);
900 * @return Boolean if hit has related articles
902 function hasRelated() {
907 * @return String: interwiki prefix of the title (return iw even if title is broken)
909 function getInterwikiPrefix() {
914 * A SearchResultSet wrapper for SearchEngine::getNearMatch
916 class SearchNearMatchResultSet
extends SearchResultSet
{
917 private $fetched = false;
919 * @param $match mixed Title if matched, else null
921 public function __construct( $match ) {
922 $this->result
= $match;
924 public function hasResult() {
925 return (bool)$this->result
;
927 public function numRows() {
928 return $this->hasResults() ?
1 : 0;
930 public function next() {
931 if ( $this->fetched ||
!$this->result
) {
934 $this->fetched
= true;
935 return SearchResult
::newFromTitle( $this->result
);
940 * Highlight bits of wikitext
944 class SearchHighlighter
{
945 var $mCleanWikitext = true;
947 function __construct( $cleanupWikitext = true ) {
948 $this->mCleanWikitext
= $cleanupWikitext;
952 * Default implementation of wikitext highlighting
954 * @param $text String
955 * @param array $terms terms to highlight (unescaped)
956 * @param $contextlines Integer
957 * @param $contextchars Integer
960 public function highlightText( $text, $terms, $contextlines, $contextchars ) {
962 global $wgSearchHighlightBoundaries;
969 // spli text into text + templates/links/tables
970 $spat = "/(\\{\\{)|(\\[\\[[^\\]:]+:)|(\n\\{\\|)";
971 // first capture group is for detecting nested templates/links/tables/references
972 $endPatterns = array(
973 1 => '/(\{\{)|(\}\})/', // template
974 2 => '/(\[\[)|(\]\])/', // image
975 3 => "/(\n\\{\\|)|(\n\\|\\})/" ); // table
977 // @todo FIXME: This should prolly be a hook or something
978 if ( function_exists( 'wfCite' ) ) {
979 $spat .= '|(<ref>)'; // references via cite extension
980 $endPatterns[4] = '/(<ref>)|(<\/ref>)/';
983 $textExt = array(); // text extracts
984 $otherExt = array(); // other extracts
985 wfProfileIn( "$fname-split" );
987 $textLen = strlen( $text );
988 $count = 0; // sequence number to maintain ordering
989 while ( $start < $textLen ) {
990 // find start of template/image/table
991 if ( preg_match( $spat, $text, $matches, PREG_OFFSET_CAPTURE
, $start ) ) {
993 foreach ( $matches as $key => $val ) {
994 if ( $key > 0 && $val[1] != - 1 ) {
996 // see if this is an image link
997 $ns = substr( $val[0], 2, - 1 );
998 if ( $wgContLang->getNsIndex( $ns ) != NS_FILE
) {
1003 $epat = $endPatterns[$key];
1004 $this->splitAndAdd( $textExt, $count, substr( $text, $start, $val[1] - $start ) );
1010 // find end (and detect any nested elements)
1012 $offset = $start +
1;
1014 while ( preg_match( $epat, $text, $endMatches, PREG_OFFSET_CAPTURE
, $offset ) ) {
1015 if ( array_key_exists( 2, $endMatches ) ) {
1017 if ( $level == 0 ) {
1018 $len = strlen( $endMatches[2][0] );
1019 $off = $endMatches[2][1];
1020 $this->splitAndAdd( $otherExt, $count,
1021 substr( $text, $start, $off +
$len - $start ) );
1022 $start = $off +
$len;
1026 // end of nested element
1033 $offset = $endMatches[0][1] +
strlen( $endMatches[0][0] );
1036 // couldn't find appropriate closing tag, skip
1037 $this->splitAndAdd( $textExt, $count, substr( $text, $start, strlen( $matches[0][0] ) ) );
1038 $start +
= strlen( $matches[0][0] );
1043 // else: add as text extract
1044 $this->splitAndAdd( $textExt, $count, substr( $text, $start ) );
1048 $all = $textExt +
$otherExt; // these have disjunct key sets
1050 wfProfileOut( "$fname-split" );
1053 foreach ( $terms as $index => $term ) {
1054 // manually do upper/lowercase stuff for utf-8 since PHP won't do it
1055 if ( preg_match( '/[\x80-\xff]/', $term ) ) {
1056 $terms[$index] = preg_replace_callback( '/./us', array( $this, 'caseCallback' ), $terms[$index] );
1058 $terms[$index] = $term;
1061 $anyterm = implode( '|', $terms );
1062 $phrase = implode( "$wgSearchHighlightBoundaries+", $terms );
1064 // @todo FIXME: A hack to scale contextchars, a correct solution
1065 // would be to have contextchars actually be char and not byte
1066 // length, and do proper utf-8 substrings and lengths everywhere,
1067 // but PHP is making that very hard and unclean to implement :(
1068 $scale = strlen( $anyterm ) / mb_strlen( $anyterm );
1069 $contextchars = intval( $contextchars * $scale );
1071 $patPre = "(^|$wgSearchHighlightBoundaries)";
1072 $patPost = "($wgSearchHighlightBoundaries|$)";
1074 $pat1 = "/(" . $phrase . ")/ui";
1075 $pat2 = "/$patPre(" . $anyterm . ")$patPost/ui";
1077 wfProfileIn( "$fname-extract" );
1079 $left = $contextlines;
1081 $snippets = array();
1084 // show beginning only if it contains all words
1087 foreach ( $textExt as $index => $line ) {
1088 if ( strlen( $line ) > 0 && $line[0] != ';' && $line[0] != ':' ) {
1089 $firstText = $this->extract( $line, 0, $contextchars * $contextlines );
1096 // check if first text contains all terms
1097 foreach ( $terms as $term ) {
1098 if ( ! preg_match( "/$patPre" . $term . "$patPost/ui", $firstText ) ) {
1104 $snippets[$first] = $firstText;
1105 $offsets[$first] = 0;
1108 if ( ! $snippets ) {
1109 // match whole query on text
1110 $this->process( $pat1, $textExt, $left, $contextchars, $snippets, $offsets );
1111 // match whole query on templates/tables/images
1112 $this->process( $pat1, $otherExt, $left, $contextchars, $snippets, $offsets );
1113 // match any words on text
1114 $this->process( $pat2, $textExt, $left, $contextchars, $snippets, $offsets );
1115 // match any words on templates/tables/images
1116 $this->process( $pat2, $otherExt, $left, $contextchars, $snippets, $offsets );
1121 // add extra chars to each snippet to make snippets constant size
1122 $extended = array();
1123 if ( count( $snippets ) == 0 ) {
1124 // couldn't find the target words, just show beginning of article
1125 if ( array_key_exists( $first, $all ) ) {
1126 $targetchars = $contextchars * $contextlines;
1127 $snippets[$first] = '';
1128 $offsets[$first] = 0;
1131 // if begin of the article contains the whole phrase, show only that !!
1132 if ( array_key_exists( $first, $snippets ) && preg_match( $pat1, $snippets[$first] )
1133 && $offsets[$first] < $contextchars * 2 ) {
1134 $snippets = array( $first => $snippets[$first] );
1137 // calc by how much to extend existing snippets
1138 $targetchars = intval( ( $contextchars * $contextlines ) / count ( $snippets ) );
1141 foreach ( $snippets as $index => $line ) {
1142 $extended[$index] = $line;
1143 $len = strlen( $line );
1144 if ( $len < $targetchars - 20 ) {
1145 // complete this line
1146 if ( $len < strlen( $all[$index] ) ) {
1147 $extended[$index] = $this->extract( $all[$index], $offsets[$index], $offsets[$index] +
$targetchars, $offsets[$index] );
1148 $len = strlen( $extended[$index] );
1153 while ( $len < $targetchars - 20
1154 && array_key_exists( $add, $all )
1155 && !array_key_exists( $add, $snippets ) ) {
1157 $tt = "\n" . $this->extract( $all[$add], 0, $targetchars - $len, $offsets[$add] );
1158 $extended[$add] = $tt;
1159 $len +
= strlen( $tt );
1165 // $snippets = array_map( 'htmlspecialchars', $extended );
1166 $snippets = $extended;
1169 foreach ( $snippets as $index => $line ) {
1170 if ( $last == - 1 ) {
1171 $extract .= $line; // first line
1172 } elseif ( $last +
1 == $index && $offsets[$last] +
strlen( $snippets[$last] ) >= strlen( $all[$last] ) ) {
1173 $extract .= " " . $line; // continous lines
1175 $extract .= '<b> ... </b>' . $line;
1181 $extract .= '<b> ... </b>';
1184 $processed = array();
1185 foreach ( $terms as $term ) {
1186 if ( ! isset( $processed[$term] ) ) {
1187 $pat3 = "/$patPre(" . $term . ")$patPost/ui"; // highlight word
1188 $extract = preg_replace( $pat3,
1189 "\\1<span class='searchmatch'>\\2</span>\\3", $extract );
1190 $processed[$term] = true;
1194 wfProfileOut( "$fname-extract" );
1200 * Split text into lines and add it to extracts array
1202 * @param array $extracts index -> $line
1203 * @param $count Integer
1204 * @param $text String
1206 function splitAndAdd( &$extracts, &$count, $text ) {
1207 $split = explode( "\n", $this->mCleanWikitext ?
$this->removeWiki( $text ) : $text );
1208 foreach ( $split as $line ) {
1209 $tt = trim( $line );
1211 $extracts[$count++
] = $tt;
1217 * Do manual case conversion for non-ascii chars
1219 * @param $matches Array
1222 function caseCallback( $matches ) {
1224 if ( strlen( $matches[0] ) > 1 ) {
1225 return '[' . $wgContLang->lc( $matches[0] ) . $wgContLang->uc( $matches[0] ) . ']';
1232 * Extract part of the text from start to end, but by
1233 * not chopping up words
1234 * @param $text String
1235 * @param $start Integer
1236 * @param $end Integer
1237 * @param $posStart Integer: (out) actual start position
1238 * @param $posEnd Integer: (out) actual end position
1241 function extract( $text, $start, $end, &$posStart = null, &$posEnd = null ) {
1242 if ( $start != 0 ) {
1243 $start = $this->position( $text, $start, 1 );
1245 if ( $end >= strlen( $text ) ) {
1246 $end = strlen( $text );
1248 $end = $this->position( $text, $end );
1251 if ( !is_null( $posStart ) ) {
1254 if ( !is_null( $posEnd ) ) {
1258 if ( $end > $start ) {
1259 return substr( $text, $start, $end - $start );
1266 * Find a nonletter near a point (index) in the text
1268 * @param $text String
1269 * @param $point Integer
1270 * @param $offset Integer: offset to found index
1271 * @return Integer: nearest nonletter index, or beginning of utf8 char if none
1273 function position( $text, $point, $offset = 0 ) {
1275 $s = max( 0, $point - $tolerance );
1276 $l = min( strlen( $text ), $point +
$tolerance ) - $s;
1278 if ( preg_match( '/[ ,.!?~!@#$%^&*\(\)+=\-\\\|\[\]"\'<>]/', substr( $text, $s, $l ), $m, PREG_OFFSET_CAPTURE
) ) {
1279 return $m[0][1] +
$s +
$offset;
1281 // check if point is on a valid first UTF8 char
1282 $char = ord( $text[$point] );
1283 while ( $char >= 0x80 && $char < 0xc0 ) {
1284 // skip trailing bytes
1286 if ( $point >= strlen( $text ) ) {
1287 return strlen( $text );
1289 $char = ord( $text[$point] );
1297 * Search extracts for a pattern, and return snippets
1299 * @param string $pattern regexp for matching lines
1300 * @param array $extracts extracts to search
1301 * @param $linesleft Integer: number of extracts to make
1302 * @param $contextchars Integer: length of snippet
1303 * @param array $out map for highlighted snippets
1304 * @param array $offsets map of starting points of snippets
1307 function process( $pattern, $extracts, &$linesleft, &$contextchars, &$out, &$offsets ) {
1308 if ( $linesleft == 0 ) {
1309 return; // nothing to do
1311 foreach ( $extracts as $index => $line ) {
1312 if ( array_key_exists( $index, $out ) ) {
1313 continue; // this line already highlighted
1317 if ( !preg_match( $pattern, $line, $m, PREG_OFFSET_CAPTURE
) ) {
1322 $len = strlen( $m[0][0] );
1323 if ( $offset +
$len < $contextchars ) {
1325 } elseif ( $len > $contextchars ) {
1328 $begin = $offset +
intval( ( $len - $contextchars ) / 2 );
1331 $end = $begin +
$contextchars;
1334 // basic snippet from this line
1335 $out[$index] = $this->extract( $line, $begin, $end, $posBegin );
1336 $offsets[$index] = $posBegin;
1338 if ( $linesleft == 0 ) {
1345 * Basic wikitext removal
1349 function removeWiki( $text ) {
1350 $fname = __METHOD__
;
1351 wfProfileIn( $fname );
1353 // $text = preg_replace( "/'{2,5}/", "", $text );
1354 // $text = preg_replace( "/\[[a-z]+:\/\/[^ ]+ ([^]]+)\]/", "\\2", $text );
1355 // $text = preg_replace( "/\[\[([^]|]+)\]\]/", "\\1", $text );
1356 // $text = preg_replace( "/\[\[([^]]+\|)?([^|]]+)\]\]/", "\\2", $text );
1357 // $text = preg_replace( "/\\{\\|(.*?)\\|\\}/", "", $text );
1358 // $text = preg_replace( "/\\[\\[[A-Za-z_-]+:([^|]+?)\\]\\]/", "", $text );
1359 $text = preg_replace( "/\\{\\{([^|]+?)\\}\\}/", "", $text );
1360 $text = preg_replace( "/\\{\\{([^|]+\\|)(.*?)\\}\\}/", "\\2", $text );
1361 $text = preg_replace( "/\\[\\[([^|]+?)\\]\\]/", "\\1", $text );
1362 $text = preg_replace_callback( "/\\[\\[([^|]+\\|)(.*?)\\]\\]/", array( $this, 'linkReplace' ), $text );
1363 // $text = preg_replace("/\\[\\[([^|]+\\|)(.*?)\\]\\]/", "\\2", $text);
1364 $text = preg_replace( "/<\/?[^>]+>/", "", $text );
1365 $text = preg_replace( "/'''''/", "", $text );
1366 $text = preg_replace( "/('''|<\/?[iIuUbB]>)/", "", $text );
1367 $text = preg_replace( "/''/", "", $text );
1369 wfProfileOut( $fname );
1374 * callback to replace [[target|caption]] kind of links, if
1375 * the target is category or image, leave it
1377 * @param $matches Array
1379 function linkReplace( $matches ) {
1380 $colon = strpos( $matches[1], ':' );
1381 if ( $colon === false ) {
1382 return $matches[2]; // replace with caption
1385 $ns = substr( $matches[1], 0, $colon );
1386 $index = $wgContLang->getNsIndex( $ns );
1387 if ( $index !== false && ( $index == NS_FILE ||
$index == NS_CATEGORY
) ) {
1388 return $matches[0]; // return the whole thing
1395 * Simple & fast snippet extraction, but gives completely unrelevant
1398 * @param $text String
1399 * @param $terms Array
1400 * @param $contextlines Integer
1401 * @param $contextchars Integer
1404 public function highlightSimple( $text, $terms, $contextlines, $contextchars ) {
1406 $fname = __METHOD__
;
1408 $lines = explode( "\n", $text );
1410 $terms = implode( '|', $terms );
1411 $max = intval( $contextchars ) +
1;
1412 $pat1 = "/(.*)($terms)(.{0,$max})/i";
1417 wfProfileIn( "$fname-extract" );
1418 foreach ( $lines as $line ) {
1419 if ( 0 == $contextlines ) {
1424 if ( ! preg_match( $pat1, $line, $m ) ) {
1428 // truncate function changes ... to relevant i18n message.
1429 $pre = $wgContLang->truncate( $m[1], - $contextchars, '...', false );
1431 if ( count( $m ) < 3 ) {
1434 $post = $wgContLang->truncate( $m[3], $contextchars, '...', false );
1439 $line = htmlspecialchars( $pre . $found . $post );
1440 $pat2 = '/(' . $terms . ")/i";
1441 $line = preg_replace( $pat2, "<span class='searchmatch'>\\1</span>", $line );
1443 $extract .= "${line}\n";
1445 wfProfileOut( "$fname-extract" );
1453 * Dummy class to be used when non-supported Database engine is present.
1454 * @todo FIXME: Dummy class should probably try something at least mildly useful,
1455 * such as a LIKE search through titles.
1458 class SearchEngineDummy
extends SearchEngine
{