SearchAPI-Fulltext.php 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines http://www.simplemachines.org
  7. * @copyright 2011 Simple Machines
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.0
  11. */
  12. if (!defined('SMF'))
  13. die('Hacking attempt...');
  14. /*
  15. int searchSort(string $wordA, string $wordB)
  16. - callback function for usort used to sort the fulltext results.
  17. - the order of sorting is: large words, small words, large words that
  18. are excluded from the search, small words that are excluded.
  19. */
  20. class fulltext_search
  21. {
  22. // This is the last version of SMF that this was tested on, to protect against API changes.
  23. public $version_compatible = 'SMF 2.0';
  24. // This won't work with versions of SMF less than this.
  25. public $min_smf_version = 'SMF 2.0 Beta 2';
  26. // Is it supported?
  27. public $is_supported = true;
  28. // Can we do a boolean search - tested on construct.
  29. protected $canDoBooleanSearch = false;
  30. // What words are banned?
  31. protected $bannedWords = array();
  32. // What is the minimum word length?
  33. protected $min_word_length = 4;
  34. // What databases support the fulltext index?
  35. protected $supported_databases = array('mysql');
  36. public function __construct()
  37. {
  38. global $smcFunc, $db_connection, $modSettings, $db_type;
  39. // Is this database supported?
  40. if (!in_array($db_type, $this->supported_databases))
  41. {
  42. $this->is_supported = false;
  43. return;
  44. }
  45. // Some MySQL versions are superior to others :P.
  46. $this->canDoBooleanSearch = version_compare($smcFunc['db_server_info']($db_connection), '4.0.1', '>=');
  47. $this->bannedWords = empty($modSettings['search_banned_words']) ? array() : explode(',', $modSettings['search_banned_words']);
  48. $this->min_word_length = $this->_getMinWordLength();
  49. }
  50. // Check whether the method can be performed by this API.
  51. public function supportsMethod($methodName, $query_params = null)
  52. {
  53. switch ($methodName)
  54. {
  55. case 'searchSort':
  56. case 'prepareIndexes':
  57. case 'indexedWordQuery':
  58. return true;
  59. break;
  60. default:
  61. return false;
  62. break;
  63. }
  64. }
  65. // What is the minimum word length full text supports?
  66. protected function _getMinWordLength()
  67. {
  68. global $smcFunc;
  69. // Try to determine the minimum number of letters for a fulltext search.
  70. $request = $smcFunc['db_search_query']('max_fulltext_length', '
  71. SHOW VARIABLES
  72. LIKE {string:fulltext_minimum_word_length}',
  73. array(
  74. 'fulltext_minimum_word_length' => 'ft_min_word_len',
  75. )
  76. );
  77. if ($request !== false && $smcFunc['db_num_rows']($request) == 1)
  78. {
  79. list (, $min_word_length) = $smcFunc['db_fetch_row']($request);
  80. $smcFunc['db_free_result']($request);
  81. }
  82. // 4 is the MySQL default...
  83. else
  84. $min_word_length = 4;
  85. return $min_word_length;
  86. }
  87. // This function compares the length of two strings plus a little.
  88. public function searchSort($a, $b)
  89. {
  90. global $modSettings, $excludedWords;
  91. $x = strlen($a) - (in_array($a, $excludedWords) ? 1000 : 0);
  92. $y = strlen($b) - (in_array($b, $excludedWords) ? 1000 : 0);
  93. return $x < $y ? 1 : ($x > $y ? -1 : 0);
  94. }
  95. // Do we have to do some work with the words we are searching for to prepare them?
  96. public function prepareIndexes($word, &$wordsSearch, &$wordsExclude, $isExcluded)
  97. {
  98. global $modSettings;
  99. $subwords = text2words($word, null, false);
  100. if (!$this->canDoBooleanSearch && count($subwords) > 1 && empty($modSettings['search_force_index']))
  101. $wordsSearch['words'][] = $word;
  102. if ($this->canDoBooleanSearch)
  103. {
  104. $fulltextWord = count($subwords) === 1 ? $word : '"' . $word . '"';
  105. $wordsSearch['indexed_words'][] = $fulltextWord;
  106. if ($isExcluded)
  107. $wordsExclude[] = $fulltextWord;
  108. }
  109. // Excluded phrases don't benefit from being split into subwords.
  110. elseif (count($subwords) > 1 && $isExcluded)
  111. return;
  112. else
  113. {
  114. $relyOnIndex = true;
  115. foreach ($subwords as $subword)
  116. {
  117. if (($smcFunc['strlen']($subword) >= $this->min_word_length) && !in_array($subword, $this->bannedWords))
  118. {
  119. $wordsSearch['indexed_words'][] = $subword;
  120. if ($isExcluded)
  121. $wordsExclude[] = $subword;
  122. }
  123. elseif (!in_array($subword, $this->bannedWords))
  124. $relyOnIndex = false;
  125. }
  126. if ($this->canDoBooleanSearch && !$relyOnIndex && empty($modSettings['search_force_index']))
  127. $wordsSearch['words'][] = $word;
  128. }
  129. }
  130. // Search for indexed words.
  131. public function indexedWordQuery($words, $search_data)
  132. {
  133. global $modSettings, $smcFunc;
  134. $query_select = array(
  135. 'id_msg' => 'm.id_msg',
  136. );
  137. $query_where = array();
  138. $query_params = $search_data['params'];
  139. if ($query_params['id_search'])
  140. $query_select['id_search'] = '{int:id_search}';
  141. $count = 0;
  142. if (empty($modSettings['search_simple_fulltext']))
  143. foreach ($words['words'] as $regularWord)
  144. {
  145. $query_where[] = 'm.body' . (in_array($regularWord, $query_params['excluded_words']) ? ' NOT' : '') . (empty($modSettings['search_match_words']) || $no_regexp ? ' LIKE ' : 'RLIKE') . '{string:complex_body_' . $count . '}';
  146. $query_params['complex_body_' . $count++] = empty($modSettings['search_match_words']) || $no_regexp ? '%' . strtr($regularWord, array('_' => '\\_', '%' => '\\%')) . '%' : '[[:<:]]' . addcslashes(preg_replace(array('/([\[\]$.+*?|{}()])/'), array('[$1]'), $regularWord), '\\\'') . '[[:>:]]';
  147. }
  148. if ($query_params['user_query'])
  149. $query_where[] = '{raw:user_query}';
  150. if ($query_params['board_query'])
  151. $query_where[] = 'm.id_board {raw:board_query}';
  152. if ($query_params['topic'])
  153. $query_where[] = 'm.id_topic = {int:topic}';
  154. if ($query_params['min_msg_id'])
  155. $query_where[] = 'm.id_msg >= {int:min_msg_id}';
  156. if ($query_params['max_msg_id'])
  157. $query_where[] = 'm.id_msg <= {int:max_msg_id}';
  158. $count = 0;
  159. if (!empty($query_params['excluded_phrases']) && empty($modSettings['search_force_index']))
  160. foreach ($query_params['excluded_phrases'] as $phrase)
  161. {
  162. $query_where[] = 'subject NOT ' . (empty($modSettings['search_match_words']) || $no_regexp ? ' LIKE ' : 'RLIKE') . '{string:exclude_subject_phrase_' . $count . '}';
  163. $query_params['exclude_subject_phrase_' . $count++] = empty($modSettings['search_match_words']) || $no_regexp ? '%' . strtr($phrase, array('_' => '\\_', '%' => '\\%')) . '%' : '[[:<:]]' . addcslashes(preg_replace(array('/([\[\]$.+*?|{}()])/'), array('[$1]'), $phrase), '\\\'') . '[[:>:]]';
  164. }
  165. $count = 0;
  166. if (!empty($query_params['excluded_subject_words']) && empty($modSettings['search_force_index']))
  167. foreach ($query_params['excluded_subject_words'] as $excludedWord)
  168. {
  169. $query_where[] = 'subject NOT ' . (empty($modSettings['search_match_words']) || $no_regexp ? ' LIKE ' : 'RLIKE') . '{string:exclude_subject_words_' . $count . '}';
  170. $query_params['exclude_subject_words_' . $count++] = empty($modSettings['search_match_words']) || $no_regexp ? '%' . strtr($excludedWord, array('_' => '\\_', '%' => '\\%')) . '%' : '[[:<:]]' . addcslashes(preg_replace(array('/([\[\]$.+*?|{}()])/'), array('[$1]'), $excludedWord), '\\\'') . '[[:>:]]';
  171. }
  172. if (!empty($modSettings['search_simple_fulltext']))
  173. {
  174. $query_where[] = 'MATCH (body) AGAINST ({string:body_match})';
  175. $query_params['body_match'] = implode(' ', array_diff($words['indexed_words'], $query_params['excluded_index_words']));
  176. }
  177. elseif ($this->canDoBooleanSearch)
  178. {
  179. $query_params['boolean_match'] = '';
  180. foreach ($words['indexed_words'] as $fulltextWord)
  181. $query_params['boolean_match'] .= (in_array($fulltextWord, $query_params['excluded_index_words']) ? '-' : '+') . $fulltextWord . ' ';
  182. $query_params['boolean_match'] = substr($query_params['boolean_match'], 0, -1);
  183. $query_where[] = 'MATCH (body) AGAINST ({string:boolean_match} IN BOOLEAN MODE)';
  184. }
  185. else
  186. {
  187. $count = 0;
  188. foreach ($words['indexed_words'] as $fulltextWord)
  189. {
  190. $query_where[] = (in_array($fulltextWord, $query_params['excluded_index_words']) ? 'NOT ' : '') . 'MATCH (body) AGAINST ({string:fulltext_match_' . $count . '})';
  191. $query_params['fulltext_match_' . $count++] = $fulltextWord;
  192. }
  193. }
  194. $ignoreRequest = $smcFunc['db_search_query']('insert_into_log_messages_fulltext', ($smcFunc['db_support_ignore'] ? ( '
  195. INSERT IGNORE INTO {db_prefix}' . $search_data['insert_into'] . '
  196. (' . implode(', ', array_keys($query_select)) . ')') : '') . '
  197. SELECT ' . implode(', ', $query_select) . '
  198. FROM {db_prefix}messages AS m
  199. WHERE ' . implode('
  200. AND ', $query_where) . (empty($search_data['max_results']) ? '' : '
  201. LIMIT ' . ($search_data['max_results'] - $search_data['indexed_results'])),
  202. $query_params
  203. );
  204. return $ignoreRequest;
  205. }
  206. }
  207. ?>