3 * SQLite search backend, based upon SearchMysql
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
24 use MediaWiki\MediaWikiServices
;
25 use Wikimedia\AtEase\AtEase
;
26 use Wikimedia\Rdbms\IDatabase
;
29 * Search engine hook for SQLite
32 class SearchSqlite
extends SearchDatabase
{
34 * Whether fulltext search is supported by current schema
37 private function fulltextSearchSupported() {
38 $dbr = $this->dbProvider
->getReplicaDatabase();
39 $sql = (string)$dbr->newSelectQueryBuilder()
41 ->from( 'sqlite_master' )
42 ->where( [ 'tbl_name' => $dbr->tableName( 'searchindex', 'raw' ) ] )
43 ->caller( __METHOD__
)->fetchField();
45 return ( stristr( $sql, 'fts' ) !== false );
49 * Parse the user's query and transform it into an SQL fragment which will
50 * become part of a WHERE clause
52 * @param string $filteredText
53 * @param bool $fulltext
56 private function parseQuery( $filteredText, $fulltext ) {
57 $lc = $this->legalSearchChars( self
::CHARS_NO_SYNTAX
); // Minus syntax chars (" and *)
59 $this->searchTerms
= [];
62 if ( preg_match_all( '/([-+<>~]?)(([' . $lc . ']+)(\*?)|"[^"]*")/',
63 $filteredText, $m, PREG_SET_ORDER
) ) {
64 foreach ( $m as $bits ) {
65 AtEase
::suppressWarnings();
66 [ /* all */, $modifier, $term, $nonQuoted, $wildcard ] = $bits;
67 AtEase
::restoreWarnings();
69 if ( $nonQuoted != '' ) {
73 $term = str_replace( '"', '', $term );
77 if ( $searchon !== '' ) {
81 // Some languages such as Serbian store the input form in the search index,
82 // so we may need to search for matches in multiple writing system variants.
84 $converter = MediaWikiServices
::getInstance()->getLanguageConverterFactory()
85 ->getLanguageConverter();
86 $convertedVariants = $converter->autoConvertToAllVariants( $term );
87 if ( is_array( $convertedVariants ) ) {
88 $variants = array_unique( array_values( $convertedVariants ) );
90 $variants = [ $term ];
93 // The low-level search index does some processing on input to work
94 // around problems with minimum lengths and encoding in MySQL's
96 // For Chinese this also inserts spaces between adjacent Han characters.
97 $strippedVariants = array_map(
98 [ MediaWikiServices
::getInstance()->getContentLanguage(),
99 'normalizeForSearch' ],
102 // Some languages such as Chinese force all variants to a canonical
103 // form when stripping to the low-level search index, so to be sure
104 // let's check our variants list for unique items after stripping.
105 $strippedVariants = array_unique( $strippedVariants );
107 $searchon .= $modifier;
108 if ( count( $strippedVariants ) > 1 ) {
112 foreach ( $strippedVariants as $stripped ) {
113 if ( $nonQuoted && strpos( $stripped, ' ' ) !== false ) {
114 // Hack for Chinese: we need to toss in quotes for
115 // multiple-character phrases since normalizeForSearch()
116 // added spaces between them to make word breaks.
117 $stripped = '"' . trim( $stripped ) . '"';
122 $searchon .= "$quote$stripped$quote$wildcard ";
125 if ( count( $strippedVariants ) > 1 ) {
129 // Match individual terms or quoted phrase in result highlighting...
130 // Note that variants will be introduced in a later stage for highlighting!
131 $regexp = $this->regexTerm( $term, $wildcard );
132 $this->searchTerms
[] = $regexp;
136 wfDebug( __METHOD__
. ": Can't understand search query '{$filteredText}'" );
139 $dbr = $this->dbProvider
->getReplicaDatabase();
140 $searchon = $dbr->addQuotes( $searchon );
141 $field = $this->getIndexField( $fulltext );
143 return " $field MATCH $searchon ";
146 private function regexTerm( $string, $wildcard ) {
147 $regex = preg_quote( $string, '/' );
148 if ( MediaWikiServices
::getInstance()->getContentLanguage()->hasWordBreaks() ) {
150 // Don't cut off the final bit!
153 $regex = "\b$regex\b";
156 // For Chinese, words may legitimately abut other words in the text literal.
157 // Don't add \b boundary checks... note this could cause false positives
163 public function legalSearchChars( $type = self
::CHARS_ALL
) {
164 $searchChars = parent
::legalSearchChars( $type );
165 if ( $type === self
::CHARS_ALL
) {
166 // " for phrase, * for wildcard
167 $searchChars = "\"*" . $searchChars;
173 * Perform a full text search query and return a result set.
175 * @param string $term Raw search term
176 * @return SqlSearchResultSet|null
178 protected function doSearchTextInDB( $term ) {
179 return $this->searchInternal( $term, true );
183 * Perform a title-only search query and return a result set.
185 * @param string $term Raw search term
186 * @return SqlSearchResultSet|null
188 protected function doSearchTitleInDB( $term ) {
189 return $this->searchInternal( $term, false );
192 protected function searchInternal( $term, $fulltext ) {
193 if ( !$this->fulltextSearchSupported() ) {
198 $this->filter( MediaWikiServices
::getInstance()->getContentLanguage()->lc( $term ) );
199 $dbr = $this->dbProvider
->getReplicaDatabase();
200 // The real type is still IDatabase, but IReplicaDatabase is used for safety.
201 '@phan-var IDatabase $dbr';
202 // phpcs:ignore MediaWiki.Usage.DbrQueryUsage.DbrQueryFound
203 $resultSet = $dbr->query( $this->getQuery( $filteredTerm, $fulltext ), __METHOD__
);
206 // phpcs:ignore MediaWiki.Usage.DbrQueryUsage.DbrQueryFound
207 $totalResult = $dbr->query( $this->getCountQuery( $filteredTerm, $fulltext ), __METHOD__
);
208 $row = $totalResult->fetchObject();
210 $total = intval( $row->c
);
212 $totalResult->free();
214 return new SqlSearchResultSet( $resultSet, $this->searchTerms
, $total );
218 * Return a partial WHERE clause to limit the search to the given namespaces
221 private function queryNamespaces() {
222 if ( $this->namespaces
=== null ) {
223 return ''; # search all
225 if ( $this->namespaces
=== [] ) {
226 $namespaces = NS_MAIN
;
228 $dbr = $this->dbProvider
->getReplicaDatabase();
229 $namespaces = $dbr->makeList( $this->namespaces
);
231 return 'AND page_namespace IN (' . $namespaces . ')';
235 * Returns a query with limit for number of results set.
239 private function limitResult( $sql ) {
240 return $this->dbProvider
->getReplicaDatabase()->limitResult( $sql, $this->limit
, $this->offset
);
244 * Construct the full SQL query to do the search.
245 * The guts shoulds be constructed in queryMain()
246 * @param string $filteredTerm
247 * @param bool $fulltext
250 private function getQuery( $filteredTerm, $fulltext ) {
251 return $this->limitResult(
252 $this->queryMain( $filteredTerm, $fulltext ) . ' ' .
253 $this->queryNamespaces()
258 * Picks which field to index on, depending on what type of query.
259 * @param bool $fulltext
262 private function getIndexField( $fulltext ) {
263 return $fulltext ?
'si_text' : 'si_title';
267 * Get the base part of the search query.
269 * @param string $filteredTerm
270 * @param bool $fulltext
273 private function queryMain( $filteredTerm, $fulltext ) {
274 $match = $this->parseQuery( $filteredTerm, $fulltext );
275 $dbr = $this->dbProvider
->getReplicaDatabase();
276 $page = $dbr->tableName( 'page' );
277 $searchindex = $dbr->tableName( 'searchindex' );
278 return "SELECT $searchindex.rowid, page_namespace, page_title " .
279 "FROM $searchindex CROSS JOIN $page " .
280 "WHERE page_id=$searchindex.rowid AND $match";
283 private function getCountQuery( $filteredTerm, $fulltext ) {
284 $match = $this->parseQuery( $filteredTerm, $fulltext );
285 $dbr = $this->dbProvider
->getReplicaDatabase();
286 $page = $dbr->tableName( 'page' );
287 $searchindex = $dbr->tableName( 'searchindex' );
288 return "SELECT COUNT(*) AS c " .
289 "FROM $searchindex CROSS JOIN $page " .
290 "WHERE page_id=$searchindex.rowid AND $match " .
291 $this->queryNamespaces();
295 * Create or update the search index record for the given page.
296 * Title and text should be pre-processed.
299 * @param string $title
300 * @param string $text
302 public function update( $id, $title, $text ) {
303 if ( !$this->fulltextSearchSupported() ) {
306 // @todo find a method to do it in a single request,
307 // couldn't do it so far due to typelessness of FTS3 tables.
308 $dbw = $this->dbProvider
->getPrimaryDatabase();
309 $dbw->newDeleteQueryBuilder()
310 ->deleteFrom( 'searchindex' )
311 ->where( [ 'rowid' => $id ] )
312 ->caller( __METHOD__
)->execute();
313 $dbw->newInsertQueryBuilder()
314 ->insertInto( 'searchindex' )
315 ->row( [ 'rowid' => $id, 'si_title' => $title, 'si_text' => $text ] )
316 ->caller( __METHOD__
)->execute();
320 * Update a search index record's title only.
321 * Title should be pre-processed.
324 * @param string $title
326 public function updateTitle( $id, $title ) {
327 if ( !$this->fulltextSearchSupported() ) {
331 $dbw = $this->dbProvider
->getPrimaryDatabase();
332 $dbw->newUpdateQueryBuilder()
333 ->update( 'searchindex' )
334 ->set( [ 'si_title' => $title ] )
335 ->where( [ 'rowid' => $id ] )
336 ->caller( __METHOD__
)->execute();