wiki.techinc.nl/includes/SearchEngine.php

488 lines
13 KiB
PHP
Raw Normal View History

2003-04-14 23:10:40 +00:00
<?
# See search.doc
class SearchEngine {
/* private */ var $mUsertext, $mSearchterms;
/* private */ var $mTitlecond, $mTextcond;
var $doSearchRedirects = true;
var $addtoquery = array();
var $namespacesToSearch = array();
var $alternateTitle;
function SearchEngine( $text )
{
# We display the query, so let's strip it for safety
#
global $wgDBmysql4;
2003-04-14 23:10:40 +00:00
$lc = SearchEngine::legalSearchChars() . "()";
if( $wgDBmysql4 ) $lc .= "\"~<>*+-";
2003-04-14 23:10:40 +00:00
$this->mUsertext = trim( preg_replace( "/[^{$lc}]/", " ", $text ) );
$this->mSearchterms = array();
$this->mStrictMatching = true; # Google-style, add '+' on all terms
2003-04-14 23:10:40 +00:00
}
function queryNamespaces()
{
$namespaces = implode( ",", $this->namespacesToSearch );
if ($namespaces == "") {
$namespaces = "0";
}
return "AND cur_namespace IN (" . $namespaces . ")";
2003-04-14 23:10:40 +00:00
}
function searchRedirects()
{
if ( $this->doSearchRedirects ) {
return "";
} else {
return "AND cur_is_redirect=0 ";
}
2003-04-14 23:10:40 +00:00
}
/* private */ function initNamespaceCheckbox( $i )
{
global $wgUser, $wgNamespacesToBeSearchedDefault;
if ($wgUser->getID()) {
// User is logged in so we retrieve his default namespaces
return $wgUser->getOption( "searchNs".$i );
} else {
// User is not logged in so we give him the global default namespaces
return $wgNamespacesToBeSearchedDefault[ $i ];
}
}
# Display the "power search" footer. Does not actually perform the search,
# that is done by showResults()
2003-04-14 23:10:40 +00:00
function powersearch()
{
global $wgUser, $wgOut, $wgLang, $wgTitle;
$search = $_REQUEST['search'];
$searchx = $_REQUEST['searchx'];
$listredirs = $_REQUEST['redirs'];
$ret = wfMsg("powersearchtext"); # Text to be returned
$tempText = ""; # Temporary text, for substitution into $ret
if( isset( $_REQUEST["searchx"] ) ) {
$this->addtoquery["searchx"] = "1";
}
# Do namespace checkboxes
$namespaces = $wgLang->getNamespaces();
foreach ( $namespaces as $i => $namespace ) {
# Skip virtual namespaces
if ( $i < 0 ) {
continue;
}
$formVar = "ns$i";
2003-04-14 23:10:40 +00:00
# Initialise checkboxValues, either from defaults or from
# a previous invocation
if ( !isset( $searchx ) ) {
$checkboxValue = $this->initNamespaceCheckbox( $i );
} else {
$checkboxValue = $_REQUEST[$formVar];
}
2003-04-14 23:10:40 +00:00
$checked = "";
if ( $checkboxValue == 1 ) {
2003-04-14 23:10:40 +00:00
$checked = " checked";
$this->addtoquery["ns{$i}"] = 1;
array_push( $this->namespacesToSearch, $i );
}
$name = str_replace( "_", " ", $namespaces[$i] );
if ( "" == $name ) {
$name = wfMsg( "blanknamespace" );
}
2003-04-14 23:10:40 +00:00
if ( $tempText !== "" ) {
$tempText .= " ";
}
$tempText .= "<input type=checkbox value=\"1\" name=\"" .
2003-04-14 23:10:40 +00:00
"ns{$i}\"{$checked}>{$name}\n";
}
$ret = str_replace ( "$1", $tempText, $ret );
2003-04-14 23:10:40 +00:00
# List redirects checkbox
$checked = "";
if ( $listredirs == 1 ) {
$this->addtoquery["redirs"] = 1;
$checked = " checked";
}
$tempText = "<input type=checkbox value=1 name=\"redirs\"{$checked}>\n";
$ret = str_replace( "$2", $tempText, $ret );
2003-04-14 23:10:40 +00:00
# Search field
$tempText = "<input type=text name=\"search\" value=\"" .
2003-04-14 23:10:40 +00:00
htmlspecialchars( $search ) ."\" width=80>\n";
$ret = str_replace( "$3", $tempText, $ret );
2003-04-14 23:10:40 +00:00
# Searchx button
$tempText = "<input type=submit name=\"searchx\" value=\"" .
2003-04-14 23:10:40 +00:00
wfMsg("powersearch") . "\">\n";
$ret = str_replace( "$9", $tempText, $ret );
2003-04-14 23:10:40 +00:00
$ret = "<br><br>\n<form id=\"powersearch\" method=\"get\" " .
"action=\"" . wfLocalUrl( "" ) . "\">\n{$ret}\n</form>\n";
if ( isset ( $searchx ) ) {
if ( ! $listredirs ) {
$this->doSearchRedirects = false;
}
2003-04-14 23:10:40 +00:00
}
return $ret;
}
# Perform the search and construct the results page
2003-04-14 23:10:40 +00:00
function showResults()
{
global $wgUser, $wgTitle, $wgOut, $wgLang, $wgDisableTextSearch;
2003-09-23 16:23:09 +00:00
global $wgInputEncoding;
2003-04-14 23:10:40 +00:00
$fname = "SearchEngine::showResults";
$search = $_REQUEST['search'];
2003-04-14 23:10:40 +00:00
$powersearch = $this->powersearch(); /* Need side-effects here? */
$wgOut->setPageTitle( wfMsg( "searchresults" ) );
$q = wfMsg( "searchquery", htmlspecialchars( $this->mUsertext ) );
2003-04-14 23:10:40 +00:00
$wgOut->setSubtitle( $q );
$wgOut->setArticleRelated( false );
2003-04-14 23:10:40 +00:00
$wgOut->setRobotpolicy( "noindex,nofollow" );
$sk = $wgUser->getSkin();
$header = wfMsg( "searchresulttext", $sk->makeKnownLink(
wfMsg( "searchhelppage" ), wfMsg( "searchingwikipedia" ) ) );
$wgOut->addHTML( $header );
2003-04-14 23:10:40 +00:00
$this->parseQuery();
if ( "" == $this->mTitlecond || "" == $this->mTextcond ) {
$wgOut->addHTML( "<h2>" . wfMsg( "badquery" ) . "</h2>\n" .
"<p>" . wfMsg( "badquerytext" ) );
return;
}
list( $limit, $offset ) = wfCheckLimits( 20, "searchlimit" );
2003-04-14 23:10:40 +00:00
$searchnamespaces = $this->queryNamespaces();
$redircond = $this->searchRedirects();
if ( $wgDisableTextSearch ) {
$wgOut->addHTML( wfMsg( "searchdisabled", htmlspecialchars( $search ), $wgInputEncoding ) );
2003-04-14 23:10:40 +00:00
} else {
$sql = "SELECT cur_id,cur_namespace,cur_title," .
"cur_text FROM cur,searchindex " .
"WHERE cur_id=si_page AND {$this->mTitlecond} " .
"{$searchnamespaces} {$redircond}" .
"LIMIT {$offset}, {$limit}";
$res1 = wfQuery( $sql, DB_READ, $fname );
$num = wfNumRows($res1);
$sk = $wgUser->getSkin();
$text = "";
$this->parseQuery();
if ( "" == $this->mTitlecond || "" == $this->mTextcond ) {
$wgOut->addHTML( "<h2>" . wfMsg( "badquery" ) . "</h2>\n" .
"<p>" . wfMsg( "badquerytext" ) );
return;
}
list( $limit, $offset ) = wfCheckLimits( 20, "searchlimit" );
$searchnamespaces = $this->queryNamespaces();
$redircond = $this->searchRedirects();
$sql = "SELECT cur_id,cur_namespace,cur_title," .
"cur_text FROM cur,searchindex " .
"WHERE cur_id=si_page AND {$this->mTitlecond} " .
"{$searchnamespaces} {$redircond}" .
"LIMIT {$offset}, {$limit}";
$res1 = wfQuery( $sql, DB_READ, $fname );
$num = wfNumRows($res1);
2003-04-14 23:10:40 +00:00
$sql = "SELECT cur_id,cur_namespace,cur_title," .
"cur_text FROM cur,searchindex " .
"WHERE cur_id=si_page AND {$this->mTextcond} " .
"{$searchnamespaces} {$redircond} " .
2003-04-14 23:10:40 +00:00
"LIMIT {$offset}, {$limit}";
$res2 = wfQuery( $sql, DB_READ, $fname );
$num = $num + wfNumRows($res2);
2003-04-14 23:10:40 +00:00
if ( $num == $limit ) {
$top = wfShowingResults( $offset, $limit);
} else {
$top = wfShowingResultsNum( $offset, $limit, $num );
}
$wgOut->addHTML( "<p>{$top}\n" );
# For powersearch
$a2l = "" ;
$akk = array_keys( $this->addtoquery ) ;
foreach ( $akk AS $ak ) {
$a2l .= "&{$ak}={$this->addtoquery[$ak]}" ;
}
$sl = wfViewPrevNext( $offset, $limit, "",
"search=" . wfUrlencode( $this->mUsertext ) . $a2l );
$wgOut->addHTML( "<br>{$sl}\n" );
$foundsome = false;
if ( 0 == wfNumRows( $res1 ) ) {
$wgOut->addHTML( "<h2>" . wfMsg( "notitlematches" ) .
"</h2>\n" );
} else {
$foundsome = true;
$off = $offset + 1;
$wgOut->addHTML( "<h2>" . wfMsg( "titlematches" ) .
"</h2>\n<ol start='{$off}'>" );
while ( $row = wfFetchObject( $res1 ) ) {
$this->showHit( $row );
}
wfFreeResult( $res1 );
$wgOut->addHTML( "</ol>\n" );
2003-04-14 23:10:40 +00:00
}
2003-04-14 23:10:40 +00:00
if ( 0 == wfNumRows( $res2 ) ) {
$wgOut->addHTML( "<h2>" . wfMsg( "notextmatches" ) .
"</h2>\n" );
} else {
$foundsome = true;
$off = $offset + 1;
$wgOut->addHTML( "<h2>" . wfMsg( "textmatches" ) . "</h2>\n" .
"<ol start='{$off}'>" );
while ( $row = wfFetchObject( $res2 ) ) {
$this->showHit( $row );
}
wfFreeResult( $res2 );
$wgOut->addHTML( "</ol>\n" );
}
if ( ! $foundsome ) {
$wgOut->addHTML( "<p>" . wfMsg( "nonefound" ) . "\n" );
}
$wgOut->addHTML( "<p>{$sl}\n" );
$wgOut->addHTML( $powersearch );
2003-04-14 23:10:40 +00:00
}
}
function legalSearchChars()
{
$lc = "A-Za-z_'0-9\\x80-\\xFF\\-";
return $lc;
}
function parseQuery()
{
global $wgDBminWordLen, $wgLang, $wgDBmysql4;
if( $wgDBmysql4 ) {
# Use cleaner boolean search if available
return $this->parseQuery4();
}
2003-04-14 23:10:40 +00:00
$lc = SearchEngine::legalSearchChars() . "()";
$q = preg_replace( "/([()])/", " \\1 ", $this->mUsertext );
$q = preg_replace( "/\\s+/", " ", $q );
$w = explode( " ", strtolower( trim( $q ) ) );
$last = $cond = "";
foreach ( $w as $word ) {
$word = $wgLang->stripForSearch( $word );
if ( "and" == $word || "or" == $word || "not" == $word
|| "(" == $word || ")" == $word ) {
$cond .= " " . strtoupper( $word );
$last = "";
} else if ( strlen( $word ) < $wgDBminWordLen ) {
continue;
} else if ( FulltextStoplist::inList( $word ) ) {
continue;
} else {
if ( "" != $last ) { $cond .= " AND"; }
$cond .= " (MATCH (##field##) AGAINST ('" .
wfStrencode( $word ). "'))";
$last = $word;
array_push( $this->mSearchterms, "\\b" . $word . "\\b" );
}
}
if ( 0 == count( $this->mSearchterms ) ) { return; }
$this->mTitlecond = "(" . str_replace( "##field##",
"si_title", $cond ) . " )";
$this->mTextcond = "(" . str_replace( "##field##",
"si_text", $cond ) . " AND (cur_is_redirect=0) )";
}
function parseQuery4()
{
global $wgLang;
$lc = SearchEngine::legalSearchChars();
$searchon = "";
$this->mSearchterms = array();
# FIXME: This doesn't handle parenthetical expressions.
if( preg_match_all( '/([-+<>~]?)(([' . $lc . ']+)(\*?)|"[^"]*")/',
$this->mUsertext, $m, PREG_SET_ORDER ) ) {
foreach( $m as $terms ) {
if( $searchon !== "" ) $searchon .= " ";
if( $this->mStrictMatching && ($terms[1] == "") ) {
$terms[1] = "+";
}
$searchon .= $terms[1] . $wgLang->stripForSearch( $terms[2] );
if( $terms[3] ) {
$regexp = preg_quote( $terms[3] );
if( $terms[4] ) $regexp .= "[0-9A-Za-z_]+";
} else {
$regexp = preg_quote( str_replace( '"', '', $terms[2] ) );
}
$this->mSearchterms[] = $regexp;
}
wfDebug( "Would search with '$searchon'\n" );
wfDebug( "Match with /\b" . implode( '\b|\b', $this->mSearchterms ) . "\b/\n" );
} else {
wfDebug( "Can't understand search query '$this->mUsertext'\n" );
}
$searchon = wfStrencode( $searchon );
$this->mTitlecond = " MATCH(si_title) AGAINST('$searchon' IN BOOLEAN MODE)";
$this->mTextcond = " (MATCH(si_text) AGAINST('$searchon' IN BOOLEAN MODE) AND cur_is_redirect=0)";
}
2003-04-14 23:10:40 +00:00
function showHit( $row )
{
global $wgUser, $wgOut;
$t = Title::makeName( $row->cur_namespace, $row->cur_title );
$sk = $wgUser->getSkin();
$contextlines = $wgUser->getOption( "contextlines" );
if ( "" == $contextlines ) { $contextlines = 5; }
$contextchars = $wgUser->getOption( "contextchars" );
if ( "" == $contextchars ) { $contextchars = 50; }
$link = $sk->makeKnownLink( $t, "" );
2003-11-15 14:11:30 +00:00
$size = wfMsg( "nbytes", strlen( $row->cur_text ) );
2003-04-14 23:10:40 +00:00
$wgOut->addHTML( "<li>{$link} ({$size})" );
$lines = explode( "\n", $row->cur_text );
$pat1 = "/(.*)(" . implode( "|", $this->mSearchterms ) . ")(.*)/i";
$lineno = 0;
foreach ( $lines as $line ) {
if ( 0 == $contextlines ) { break; }
--$contextlines;
++$lineno;
if ( ! preg_match( $pat1, $line, $m ) ) { continue; }
$pre = $m[1];
if ( 0 == $contextchars ) { $pre = "..."; }
else {
if ( strlen( $pre ) > $contextchars ) {
$pre = "..." . substr( $pre, -$contextchars );
}
}
$pre = wfEscapeHTML( $pre );
if ( count( $m ) < 3 ) { $post = ""; }
else { $post = $m[3]; }
if ( 0 == $contextchars ) { $post = "..."; }
else {
if ( strlen( $post ) > $contextchars ) {
$post = substr( $post, 0, $contextchars ) . "...";
}
}
$post = wfEscapeHTML( $post );
$found = wfEscapeHTML( $m[2] );
$line = "{$pre}{$found}{$post}";
$pat2 = "/(" . implode( "|", $this->mSearchterms ) . ")/i";
$line = preg_replace( $pat2,
"<font color='red'>\\1</font>", $line );
$wgOut->addHTML( "<br><small>{$lineno}: {$line}</small>\n" );
}
$wgOut->addHTML( "</li>\n" );
}
function goResult()
{
2003-11-24 09:35:11 +00:00
global $wgOut, $wgDisableTextSearch;
2003-04-14 23:10:40 +00:00
$fname = "SearchEngine::goResult";
$search = $_REQUEST['search'];
# First try to go to page as entered.
2003-04-14 23:10:40 +00:00
#
2003-09-01 08:11:29 +00:00
$t = Title::newFromText( $search );
2003-04-14 23:10:40 +00:00
# If the string cannot be used to create a title
if( false == $t ){
$this->showResults();
return;
}
2003-09-01 08:11:29 +00:00
if ( 0 != $t->getArticleID() ) {
$wgOut->redirect( wfLocalUrl( $t->getPrefixedURL() ) );
2003-04-14 23:10:40 +00:00
return;
}
# Now try all lower case (i.e. first letter capitalized)
#
2003-09-01 08:11:29 +00:00
$t = Title::newFromText( strtolower( $search ) );
if ( 0 != $t->getArticleID() ) {
$wgOut->redirect( wfLocalUrl( $t->getPrefixedURL() ) );
2003-04-14 23:10:40 +00:00
return;
}
2003-04-14 23:10:40 +00:00
# Now try capitalized string
#
2003-09-01 08:11:29 +00:00
$t = Title::newFromText( ucwords( strtolower( $search ) ) );
if ( 0 != $t->getArticleID() ) {
$wgOut->redirect( wfLocalUrl( $t->getPrefixedURL() ) );
2003-04-14 23:10:40 +00:00
return;
}
# Now try all upper case
#
2003-09-01 08:11:29 +00:00
$t = Title::newFromText( strtoupper( $search ) );
if ( 0 != $t->getArticleID() ) {
$wgOut->redirect( wfLocalUrl( $t->getPrefixedURL() ) );
return;
}
2003-04-14 23:10:40 +00:00
# Try a near match
#
if( !$wgDisableTextSearch ) {
$this->parseQuery();
$sql = "SELECT cur_id,cur_title,cur_namespace,si_page FROM cur,searchindex " .
"WHERE cur_id=si_page AND {$this->mTitlecond} ORDER BY cur_namespace LIMIT 1";
if ( "" != $this->mTitlecond ) {
$res = wfQuery( $sql, DB_READ, $fname );
}
if ( isset( $res ) && 0 != wfNumRows( $res ) ) {
$s = wfFetchObject( $res );
$t = Title::makeTitle( $s->cur_namespace, $s->cur_title );
$wgOut->redirect( wfLocalUrl( $t->getPrefixedURL() ) );
return;
}
2003-04-14 23:10:40 +00:00
}
$wgOut->addHTML( wfMsg("nogomatch",
htmlspecialchars( wfLocalUrl( ucfirst($this->mUsertext), "action=edit") ) )
. "\n<p>" );
2003-04-14 23:10:40 +00:00
$this->showResults();
}
}
?>