MediaWiki master
SearchSqlite.php
Go to the documentation of this file.
1<?php
25use Wikimedia\AtEase\AtEase;
27
37 private function fulltextSearchSupported() {
38 $dbr = $this->dbProvider->getReplicaDatabase();
39 $sql = (string)$dbr->newSelectQueryBuilder()
40 ->select( 'sql' )
41 ->from( $dbr->addIdentifierQuotes( 'sqlite_master' ) )
42 ->where( [ 'tbl_name' => $dbr->tableName( 'searchindex', 'raw' ) ] )
43 ->caller( __METHOD__ )->fetchField();
44
45 return ( stristr( $sql, 'fts' ) !== false );
46 }
47
56 private function parseQuery( $filteredText, $fulltext ) {
57 $lc = $this->legalSearchChars( self::CHARS_NO_SYNTAX ); // Minus syntax chars (" and *)
58 $searchon = '';
59 $this->searchTerms = [];
60
61 $m = [];
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();
68
69 if ( $nonQuoted != '' ) {
70 $term = $nonQuoted;
71 $quote = '';
72 } else {
73 $term = str_replace( '"', '', $term );
74 $quote = '"';
75 }
76
77 if ( $searchon !== '' ) {
78 $searchon .= ' ';
79 }
80
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.
83
84 $converter = MediaWikiServices::getInstance()->getLanguageConverterFactory()
85 ->getLanguageConverter();
86 $convertedVariants = $converter->autoConvertToAllVariants( $term );
87 if ( is_array( $convertedVariants ) ) {
88 $variants = array_unique( array_values( $convertedVariants ) );
89 } else {
90 $variants = [ $term ];
91 }
92
93 // The low-level search index does some processing on input to work
94 // around problems with minimum lengths and encoding in MySQL's
95 // fulltext engine.
96 // For Chinese this also inserts spaces between adjacent Han characters.
97 $strippedVariants = array_map(
98 [ MediaWikiServices::getInstance()->getContentLanguage(),
99 'normalizeForSearch' ],
100 $variants );
101
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 );
106
107 $searchon .= $modifier;
108 if ( count( $strippedVariants ) > 1 ) {
109 $searchon .= '(';
110 }
111 $count = 0;
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 ) . '"';
118 }
119 if ( $count > 0 ) {
120 $searchon .= " OR ";
121 }
122 $searchon .= "$quote$stripped$quote$wildcard ";
123 ++$count;
124 }
125 if ( count( $strippedVariants ) > 1 ) {
126 $searchon .= ')';
127 }
128
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;
133 }
134
135 } else {
136 wfDebug( __METHOD__ . ": Can't understand search query '{$filteredText}'" );
137 }
138
139 $dbr = $this->dbProvider->getReplicaDatabase();
140 $searchon = $dbr->addQuotes( $searchon );
141 $field = $this->getIndexField( $fulltext );
142
143 return " $field MATCH $searchon ";
144 }
145
146 private function regexTerm( $string, $wildcard ) {
147 $regex = preg_quote( $string, '/' );
148 if ( MediaWikiServices::getInstance()->getContentLanguage()->hasWordBreaks() ) {
149 if ( $wildcard ) {
150 // Don't cut off the final bit!
151 $regex = "\b$regex";
152 } else {
153 $regex = "\b$regex\b";
154 }
155 } else {
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
158 // for Latin chars.
159 }
160 return $regex;
161 }
162
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;
168 }
169 return $searchChars;
170 }
171
178 protected function doSearchTextInDB( $term ) {
179 return $this->searchInternal( $term, true );
180 }
181
188 protected function doSearchTitleInDB( $term ) {
189 return $this->searchInternal( $term, false );
190 }
191
192 protected function searchInternal( $term, $fulltext ) {
193 if ( !$this->fulltextSearchSupported() ) {
194 return null;
195 }
196
197 $filteredTerm =
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__ );
204
205 $total = null;
206 // phpcs:ignore MediaWiki.Usage.DbrQueryUsage.DbrQueryFound
207 $totalResult = $dbr->query( $this->getCountQuery( $filteredTerm, $fulltext ), __METHOD__ );
208 $row = $totalResult->fetchObject();
209 if ( $row ) {
210 $total = intval( $row->c );
211 }
212 $totalResult->free();
213
214 return new SqlSearchResultSet( $resultSet, $this->searchTerms, $total );
215 }
216
221 private function queryNamespaces() {
222 if ( $this->namespaces === null ) {
223 return ''; # search all
224 }
225 if ( $this->namespaces === [] ) {
227 } else {
228 $dbr = $this->dbProvider->getReplicaDatabase();
229 $namespaces = $dbr->makeList( $this->namespaces );
230 }
231 return 'AND page_namespace IN (' . $namespaces . ')';
232 }
233
239 private function limitResult( $sql ) {
240 return $this->dbProvider->getReplicaDatabase()->limitResult( $sql, $this->limit, $this->offset );
241 }
242
250 private function getQuery( $filteredTerm, $fulltext ) {
251 return $this->limitResult(
252 $this->queryMain( $filteredTerm, $fulltext ) . ' ' .
253 $this->queryNamespaces()
254 );
255 }
256
262 private function getIndexField( $fulltext ) {
263 return $fulltext ? 'si_text' : 'si_title';
264 }
265
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";
281 }
282
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();
292 }
293
302 public function update( $id, $title, $text ) {
303 if ( !$this->fulltextSearchSupported() ) {
304 return;
305 }
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();
317 }
318
326 public function updateTitle( $id, $title ) {
327 if ( !$this->fulltextSearchSupported() ) {
328 return;
329 }
330
331 $dbw = $this->dbProvider->getPrimaryDatabase();
332 $dbw->newUpdateQueryBuilder()
333 ->update( 'searchindex' )
334 ->set( [ 'si_title' => $title ] )
335 ->where( [ 'rowid' => $id ] )
336 ->caller( __METHOD__ )->execute();
337 }
338}
const NS_MAIN
Definition Defines.php:65
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Service locator for MediaWiki core services.
Base search engine base class for database-backed searches.
filter( $text)
Return a 'cleaned up' search string.
int[] null $namespaces
Search engine hook for SQLite.
searchInternal( $term, $fulltext)
update( $id, $title, $text)
Create or update the search index record for the given page.
updateTitle( $id, $title)
Update a search index record's title only.
doSearchTitleInDB( $term)
Perform a title-only search query and return a result set.
doSearchTextInDB( $term)
Perform a full text search query and return a result set.
legalSearchChars( $type=self::CHARS_ALL)
Get chars legal for search.
This class is used for different SQL-based search engines shipped with MediaWiki.
Interface to a relational database.
Definition IDatabase.php:48