Merge "shell script fix using shellcheck lint"
[lhc/web/wiklou.git] / includes / search / SearchSqlite.php
1 <?php
2 /**
3 * SQLite search backend, based upon SearchMysql
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup Search
22 */
23
24 /**
25 * Search engine hook for SQLite
26 * @ingroup Search
27 */
28 class SearchSqlite extends SearchDatabase {
29 /**
30 * Whether fulltext search is supported by current schema
31 * @return bool
32 */
33 function fulltextSearchSupported() {
34 return $this->db->checkForEnabledSearch();
35 }
36
37 /**
38 * Parse the user's query and transform it into an SQL fragment which will
39 * become part of a WHERE clause
40 *
41 * @return string
42 */
43 function parseQuery( $filteredText, $fulltext ) {
44 global $wgContLang;
45 $lc = $this->legalSearchChars(); // Minus format chars
46 $searchon = '';
47 $this->searchTerms = array();
48
49 $m = array();
50 if ( preg_match_all( '/([-+<>~]?)(([' . $lc . ']+)(\*?)|"[^"]*")/',
51 $filteredText, $m, PREG_SET_ORDER ) ) {
52 foreach ( $m as $bits ) {
53 wfSuppressWarnings();
54 list( /* all */, $modifier, $term, $nonQuoted, $wildcard ) = $bits;
55 wfRestoreWarnings();
56
57 if ( $nonQuoted != '' ) {
58 $term = $nonQuoted;
59 $quote = '';
60 } else {
61 $term = str_replace( '"', '', $term );
62 $quote = '"';
63 }
64
65 if ( $searchon !== '' ) {
66 $searchon .= ' ';
67 }
68
69 // Some languages such as Serbian store the input form in the search index,
70 // so we may need to search for matches in multiple writing system variants.
71 $convertedVariants = $wgContLang->autoConvertToAllVariants( $term );
72 if ( is_array( $convertedVariants ) ) {
73 $variants = array_unique( array_values( $convertedVariants ) );
74 } else {
75 $variants = array( $term );
76 }
77
78 // The low-level search index does some processing on input to work
79 // around problems with minimum lengths and encoding in MySQL's
80 // fulltext engine.
81 // For Chinese this also inserts spaces between adjacent Han characters.
82 $strippedVariants = array_map(
83 array( $wgContLang, 'normalizeForSearch' ),
84 $variants );
85
86 // Some languages such as Chinese force all variants to a canonical
87 // form when stripping to the low-level search index, so to be sure
88 // let's check our variants list for unique items after stripping.
89 $strippedVariants = array_unique( $strippedVariants );
90
91 $searchon .= $modifier;
92 if ( count( $strippedVariants ) > 1 ) {
93 $searchon .= '(';
94 }
95 foreach ( $strippedVariants as $stripped ) {
96 if ( $nonQuoted && strpos( $stripped, ' ' ) !== false ) {
97 // Hack for Chinese: we need to toss in quotes for
98 // multiple-character phrases since normalizeForSearch()
99 // added spaces between them to make word breaks.
100 $stripped = '"' . trim( $stripped ) . '"';
101 }
102 $searchon .= "$quote$stripped$quote$wildcard ";
103 }
104 if ( count( $strippedVariants ) > 1 ) {
105 $searchon .= ')';
106 }
107
108 // Match individual terms or quoted phrase in result highlighting...
109 // Note that variants will be introduced in a later stage for highlighting!
110 $regexp = $this->regexTerm( $term, $wildcard );
111 $this->searchTerms[] = $regexp;
112 }
113
114 } else {
115 wfDebug( __METHOD__ . ": Can't understand search query '{$filteredText}'\n" );
116 }
117
118 $searchon = $this->db->addQuotes( $searchon );
119 $field = $this->getIndexField( $fulltext );
120 return " $field MATCH $searchon ";
121 }
122
123 function regexTerm( $string, $wildcard ) {
124 global $wgContLang;
125
126 $regex = preg_quote( $string, '/' );
127 if ( $wgContLang->hasWordBreaks() ) {
128 if ( $wildcard ) {
129 // Don't cut off the final bit!
130 $regex = "\b$regex";
131 } else {
132 $regex = "\b$regex\b";
133 }
134 } else {
135 // For Chinese, words may legitimately abut other words in the text literal.
136 // Don't add \b boundary checks... note this could cause false positives
137 // for latin chars.
138 }
139 return $regex;
140 }
141
142 public static function legalSearchChars() {
143 return "\"*" . parent::legalSearchChars();
144 }
145
146 /**
147 * Perform a full text search query and return a result set.
148 *
149 * @param string $term Raw search term
150 * @return SqlSearchResultSet
151 */
152 function searchText( $term ) {
153 return $this->searchInternal( $term, true );
154 }
155
156 /**
157 * Perform a title-only search query and return a result set.
158 *
159 * @param string $term Raw search term
160 * @return SqlSearchResultSet
161 */
162 function searchTitle( $term ) {
163 return $this->searchInternal( $term, false );
164 }
165
166 protected function searchInternal( $term, $fulltext ) {
167 global $wgCountTotalSearchHits, $wgContLang;
168
169 if ( !$this->fulltextSearchSupported() ) {
170 return null;
171 }
172
173 $filteredTerm = $this->filter( $wgContLang->lc( $term ) );
174 $resultSet = $this->db->query( $this->getQuery( $filteredTerm, $fulltext ) );
175
176 $total = null;
177 if ( $wgCountTotalSearchHits ) {
178 $totalResult = $this->db->query( $this->getCountQuery( $filteredTerm, $fulltext ) );
179 $row = $totalResult->fetchObject();
180 if ( $row ) {
181 $total = intval( $row->c );
182 }
183 $totalResult->free();
184 }
185
186 return new SqlSearchResultSet( $resultSet, $this->searchTerms, $total );
187 }
188
189 /**
190 * Return a partial WHERE clause to limit the search to the given namespaces
191 * @return string
192 */
193 function queryNamespaces() {
194 if ( is_null( $this->namespaces ) ) {
195 return ''; # search all
196 }
197 if ( !count( $this->namespaces ) ) {
198 $namespaces = '0';
199 } else {
200 $namespaces = $this->db->makeList( $this->namespaces );
201 }
202 return 'AND page_namespace IN (' . $namespaces . ')';
203 }
204
205 /**
206 * Returns a query with limit for number of results set.
207 * @param string $sql
208 * @return string
209 */
210 function limitResult( $sql ) {
211 return $this->db->limitResult( $sql, $this->limit, $this->offset );
212 }
213
214 /**
215 * Construct the full SQL query to do the search.
216 * The guts shoulds be constructed in queryMain()
217 * @param string $filteredTerm
218 * @param bool $fulltext
219 * @return string
220 */
221 function getQuery( $filteredTerm, $fulltext ) {
222 return $this->limitResult(
223 $this->queryMain( $filteredTerm, $fulltext ) . ' ' .
224 $this->queryNamespaces()
225 );
226 }
227
228 /**
229 * Picks which field to index on, depending on what type of query.
230 * @param bool $fulltext
231 * @return string
232 */
233 function getIndexField( $fulltext ) {
234 return $fulltext ? 'si_text' : 'si_title';
235 }
236
237 /**
238 * Get the base part of the search query.
239 *
240 * @param string $filteredTerm
241 * @param bool $fulltext
242 * @return string
243 */
244 function queryMain( $filteredTerm, $fulltext ) {
245 $match = $this->parseQuery( $filteredTerm, $fulltext );
246 $page = $this->db->tableName( 'page' );
247 $searchindex = $this->db->tableName( 'searchindex' );
248 return "SELECT $searchindex.rowid, page_namespace, page_title " .
249 "FROM $page,$searchindex " .
250 "WHERE page_id=$searchindex.rowid AND $match";
251 }
252
253 function getCountQuery( $filteredTerm, $fulltext ) {
254 $match = $this->parseQuery( $filteredTerm, $fulltext );
255 $page = $this->db->tableName( 'page' );
256 $searchindex = $this->db->tableName( 'searchindex' );
257 return "SELECT COUNT(*) AS c " .
258 "FROM $page,$searchindex " .
259 "WHERE page_id=$searchindex.rowid AND $match " .
260 $this->queryNamespaces();
261 }
262
263 /**
264 * Create or update the search index record for the given page.
265 * Title and text should be pre-processed.
266 *
267 * @param int $id
268 * @param string $title
269 * @param string $text
270 */
271 function update( $id, $title, $text ) {
272 if ( !$this->fulltextSearchSupported() ) {
273 return;
274 }
275 // @todo find a method to do it in a single request,
276 // couldn't do it so far due to typelessness of FTS3 tables.
277 $dbw = wfGetDB( DB_MASTER );
278
279 $dbw->delete( 'searchindex', array( 'rowid' => $id ), __METHOD__ );
280
281 $dbw->insert( 'searchindex',
282 array(
283 'rowid' => $id,
284 'si_title' => $title,
285 'si_text' => $text
286 ), __METHOD__ );
287 }
288
289 /**
290 * Update a search index record's title only.
291 * Title should be pre-processed.
292 *
293 * @param int $id
294 * @param string $title
295 */
296 function updateTitle( $id, $title ) {
297 if ( !$this->fulltextSearchSupported() ) {
298 return;
299 }
300 $dbw = wfGetDB( DB_MASTER );
301
302 $dbw->update( 'searchindex',
303 array( 'si_title' => $title ),
304 array( 'rowid' => $id ),
305 __METHOD__ );
306 }
307 }