2 # Copyright (C) 2004 Brion Vibber <brion@pobox.com>
3 # http://www.mediawiki.org/
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
21 * Search engine hook base class for MySQL.
22 * Specific bits for MySQL 3 and 4 variants are in child classes.
27 /** @package MediaWiki */
28 class SearchMySQL
extends SearchEngine
{
30 * Perform a full text search query and return a result set.
32 * @param string $term - Raw search term
33 * @return MySQLSearchResultSet
36 function searchText( $term ) {
37 $resultSet = $this->db
->resultObject( $this->db
->query( $this->getQuery( $this->filter( $term ), true ) ) );
38 return new MySQLSearchResultSet( $resultSet, $this->searchTerms
);
42 * Perform a title-only search query and return a result set.
44 * @param string $term - Raw search term
45 * @return MySQLSearchResultSet
48 function searchTitle( $term ) {
49 $resultSet = $this->db
->resultObject( $this->db
->query( $this->getQuery( $this->filter( $term ), false ) ) );
50 return new MySQLSearchResultSet( $resultSet, $this->searchTerms
);
55 * Return a partial WHERE clause to exclude redirects, if so set
59 function queryRedirect() {
60 if( $this->showRedirects
) {
63 return 'AND page_is_redirect=0';
68 * Return a partial WHERE clause to limit the search to the given namespaces
72 function queryNamespaces() {
73 $namespaces = implode( ',', $this->namespaces
);
74 if ($namespaces == '') {
77 return 'AND page_namespace IN (' . $namespaces . ')';
81 * Return a LIMIT clause to limit results on the query.
85 function queryLimit() {
86 return $this->db
->limitResult( '', $this->limit
, $this->offset
);
90 * Does not do anything for generic search engine
91 * subclasses may define this though
95 function queryRanking( $filteredTerm, $fulltext ) {
100 * Construct the full SQL query to do the search.
101 * The guts shoulds be constructed in queryMain()
102 * @param string $filteredTerm
103 * @param bool $fulltext
106 function getQuery( $filteredTerm, $fulltext ) {
107 return $this->queryMain( $filteredTerm, $fulltext ) . ' ' .
108 $this->queryRedirect() . ' ' .
109 $this->queryNamespaces() . ' ' .
110 $this->queryRanking( $filteredTerm, $fulltext ) . ' ' .
116 * Picks which field to index on, depending on what type of query.
117 * @param bool $fulltext
120 function getIndexField( $fulltext ) {
121 return $fulltext ?
'si_text' : 'si_title';
125 * Get the base part of the search query.
126 * The actual match syntax will depend on the server
127 * version; MySQL 3 and MySQL 4 have different capabilities
128 * in their fulltext search indexes.
130 * @param string $filteredTerm
131 * @param bool $fulltext
135 function queryMain( $filteredTerm, $fulltext ) {
136 $match = $this->parseQuery( $filteredTerm, $fulltext );
137 $page = $this->db
->tableName( 'page' );
138 $searchindex = $this->db
->tableName( 'searchindex' );
139 return 'SELECT page_id, page_namespace, page_title ' .
140 "FROM $page,$searchindex " .
141 'WHERE page_id=si_page AND ' . $match;
145 * Create or update the search index record for the given page.
146 * Title and text should be pre-processed.
149 * @param string $title
150 * @param string $text
152 function update( $id, $title, $text ) {
153 $dbw=& wfGetDB( DB_MASTER
);
154 $dbw->replace( 'searchindex',
158 'si_title' => $title,
160 ), 'SearchMySQL4::update' );
164 * Update a search index record's title only.
165 * Title should be pre-processed.
168 * @param string $title
170 function updateTitle( $id, $title ) {
171 $dbw =& wfGetDB( DB_MASTER
);
173 $dbw->update( 'searchindex',
174 array( 'si_title' => $title ),
175 array( 'si_page' => $id ),
176 'SearchMySQL4::updateTitle',
177 array( $dbw->lowPriorityOption() ) );
181 /** @package MediaWiki */
182 class MySQLSearchResultSet
extends SearchResultSet
{
183 function MySQLSearchResultSet( $resultSet, $terms ) {
184 $this->mResultSet
= $resultSet;
185 $this->mTerms
= $terms;
188 function termMatches() {
189 return $this->mTerms
;
193 return $this->mResultSet
->numRows();
197 $row = $this->mResultSet
->fetchObject();
198 if( $row === false ) {
201 return new SearchResult( $row );