quotes
[lhc/web/wiklou.git] / includes / SpecialSearch.php
index f3fa3e6..93daf34 100644 (file)
@@ -23,7 +23,9 @@
  * @subpackage SpecialPage
  */
 
+/** */
 require_once( 'SearchEngine.php' );
+require_once( 'Revision.php' );
 
 function wfSpecialSearch( $par='' ) {
        global $wgRequest, $wgUser;
@@ -39,8 +41,13 @@ function wfSpecialSearch( $par='' ) {
        }
 }
 
-
+/**
+ * @todo document
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 class SpecialSearch {
+
        /**
         * Set up basic search parameters from the request and user settings.
         * Typically you'll pass $wgRequest and $wgUser.
@@ -132,6 +139,12 @@ class SpecialSearch {
                
                global $wgDisableTextSearch;
                if ( $wgDisableTextSearch ) {
+                       global $wgForwardSearchUrl;
+                       if( $wgForwardSearchUrl ) {
+                               $url = str_replace( '$1', urlencode( $term ), $wgForwardSearchUrl );
+                               $wgOut->redirect( $url );
+                               return;
+                       }
                        global $wgInputEncoding;
                        $wgOut->addHTML( wfMsg( 'searchdisabled' ) );
                        $wgOut->addHTML( wfMsg( 'googlesearch',
@@ -141,7 +154,9 @@ class SpecialSearch {
                        return;
                }
 
-               $search =& $this->getSearchEngine();
+               $search =& SearchEngine::create();
+               $search->setLimitOffset( $this->limit, $this->offset );
+               $search->setNamespaces( $this->namespaces );
                $titleMatches = $search->searchTitle( $term );
                $textMatches = $search->searchText( $term );
                
@@ -162,7 +177,9 @@ class SpecialSearch {
                        $wgOut->addHTML( "<br />{$prevnext}\n" );
                }
 
-               $terms = implode( '|', $search->termMatches() );
+               global $wgContLang;
+               $tm = $wgContLang->convertForSearchResult( $search->termMatches() );
+               $terms = implode( '|', $tm );
                
                if( $titleMatches->numRows() ) {
                        $wgOut->addWikiText( '==' . wfMsg( 'titlematches' ) . "==\n" );
@@ -202,32 +219,6 @@ class SpecialSearch {
                $wgOut->setArticleRelated( false );
                $wgOut->setRobotpolicy( 'noindex,nofollow' );
        }
-
-       /**
-        * Load up the appropriate search engine class for the currently
-        * active database backend, and return a configured instance.
-        *
-        * @return SearchEngine
-        * @access private
-        */
-       function &getSearchEngine() {
-               global $wgDBtype, $wgDBmysql4, $wgSearchType;
-               if( $wgDBtype == 'mysql' ) {
-                       if( $wgDBmysql4 ) {
-                               $class = 'SearchMySQL4';
-                               require_once( 'SearchMySQL4.php' );
-                       } else {
-                               $class = 'SearchMysql3';
-                               require_once( 'SearchMySQL3.php' );
-                       }
-               } else {
-                       $class = 'SearchEngineDummy';
-               }
-               $search = new $class( wfGetDB( DB_SLAVE ) );
-               $search->setLimitOffset( $this->limit, $this->offset );
-               $search->setNamespaces( $this->namespaces );
-               return $search;
-       }
        
        /**
         * Extract default namespaces to search from the given user's
@@ -296,6 +287,10 @@ class SpecialSearch {
                        $out .= $this->showHit( $row, $terms );
                }
                $out .= "</ol>\n";
+
+               // convert the whole thing to desired language variant
+               global $wgContLang;
+               $out = $wgContLang->convert( $out );
                wfProfileOut( $fname );
                return $out;
        }
@@ -310,7 +305,7 @@ class SpecialSearch {
                wfProfileIn( $fname );
                global $wgUser, $wgContLang;
 
-               $t = Title::makeTitle( $row->cur_namespace, $row->cur_title );
+               $t = Title::makeTitle( $row->page_namespace, $row->page_title );
                if( is_null( $t ) ) {
                        wfProfileOut( $fname );
                        return "<!-- Broken link in search result -->\n";
@@ -323,11 +318,14 @@ class SpecialSearch {
                if ( '' == $contextchars ) { $contextchars = 50; }
 
                $link = $sk->makeKnownLinkObj( $t, '' );
-               $size = wfMsg( 'nbytes', strlen( $row->cur_text ) );
+               $text = Revision::getRevisionText( $row );
+               $size = wfMsg( 'nbytes', strlen( $text ) );
+
+               $lines = explode( "\n", $text );
 
-               $lines = explode( "\n", $row->cur_text );
                $max = IntVal( $contextchars ) + 1;
                $pat1 = "/(.*)($terms)(.{0,$max})/i";
+
                $lineno = 0;
                
                $extract = '';