SearchSqlite.php 9.6 KB

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