search.module 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933
  1. <?php
  2. /**
  3. * @file
  4. * Enables site-wide keyword searching.
  5. */
  6. use Drupal\Component\Utility\Html;
  7. use Drupal\Component\Utility\Unicode;
  8. use Drupal\Core\Cache\Cache;
  9. use Drupal\Core\Database\Query\Condition;
  10. use Drupal\Core\Form\FormStateInterface;
  11. use Drupal\Core\Routing\RouteMatchInterface;
  12. /**
  13. * Matches all 'N' Unicode character classes (numbers)
  14. */
  15. define('PREG_CLASS_NUMBERS',
  16. '\x{30}-\x{39}\x{b2}\x{b3}\x{b9}\x{bc}-\x{be}\x{660}-\x{669}\x{6f0}-\x{6f9}' .
  17. '\x{966}-\x{96f}\x{9e6}-\x{9ef}\x{9f4}-\x{9f9}\x{a66}-\x{a6f}\x{ae6}-\x{aef}' .
  18. '\x{b66}-\x{b6f}\x{be7}-\x{bf2}\x{c66}-\x{c6f}\x{ce6}-\x{cef}\x{d66}-\x{d6f}' .
  19. '\x{e50}-\x{e59}\x{ed0}-\x{ed9}\x{f20}-\x{f33}\x{1040}-\x{1049}\x{1369}-' .
  20. '\x{137c}\x{16ee}-\x{16f0}\x{17e0}-\x{17e9}\x{17f0}-\x{17f9}\x{1810}-\x{1819}' .
  21. '\x{1946}-\x{194f}\x{2070}\x{2074}-\x{2079}\x{2080}-\x{2089}\x{2153}-\x{2183}' .
  22. '\x{2460}-\x{249b}\x{24ea}-\x{24ff}\x{2776}-\x{2793}\x{3007}\x{3021}-\x{3029}' .
  23. '\x{3038}-\x{303a}\x{3192}-\x{3195}\x{3220}-\x{3229}\x{3251}-\x{325f}\x{3280}-' .
  24. '\x{3289}\x{32b1}-\x{32bf}\x{ff10}-\x{ff19}');
  25. /**
  26. * Matches all 'P' Unicode character classes (punctuation)
  27. */
  28. define('PREG_CLASS_PUNCTUATION',
  29. '\x{21}-\x{23}\x{25}-\x{2a}\x{2c}-\x{2f}\x{3a}\x{3b}\x{3f}\x{40}\x{5b}-\x{5d}' .
  30. '\x{5f}\x{7b}\x{7d}\x{a1}\x{ab}\x{b7}\x{bb}\x{bf}\x{37e}\x{387}\x{55a}-\x{55f}' .
  31. '\x{589}\x{58a}\x{5be}\x{5c0}\x{5c3}\x{5f3}\x{5f4}\x{60c}\x{60d}\x{61b}\x{61f}' .
  32. '\x{66a}-\x{66d}\x{6d4}\x{700}-\x{70d}\x{964}\x{965}\x{970}\x{df4}\x{e4f}' .
  33. '\x{e5a}\x{e5b}\x{f04}-\x{f12}\x{f3a}-\x{f3d}\x{f85}\x{104a}-\x{104f}\x{10fb}' .
  34. '\x{1361}-\x{1368}\x{166d}\x{166e}\x{169b}\x{169c}\x{16eb}-\x{16ed}\x{1735}' .
  35. '\x{1736}\x{17d4}-\x{17d6}\x{17d8}-\x{17da}\x{1800}-\x{180a}\x{1944}\x{1945}' .
  36. '\x{2010}-\x{2027}\x{2030}-\x{2043}\x{2045}-\x{2051}\x{2053}\x{2054}\x{2057}' .
  37. '\x{207d}\x{207e}\x{208d}\x{208e}\x{2329}\x{232a}\x{23b4}-\x{23b6}\x{2768}-' .
  38. '\x{2775}\x{27e6}-\x{27eb}\x{2983}-\x{2998}\x{29d8}-\x{29db}\x{29fc}\x{29fd}' .
  39. '\x{3001}-\x{3003}\x{3008}-\x{3011}\x{3014}-\x{301f}\x{3030}\x{303d}\x{30a0}' .
  40. '\x{30fb}\x{fd3e}\x{fd3f}\x{fe30}-\x{fe52}\x{fe54}-\x{fe61}\x{fe63}\x{fe68}' .
  41. '\x{fe6a}\x{fe6b}\x{ff01}-\x{ff03}\x{ff05}-\x{ff0a}\x{ff0c}-\x{ff0f}\x{ff1a}' .
  42. '\x{ff1b}\x{ff1f}\x{ff20}\x{ff3b}-\x{ff3d}\x{ff3f}\x{ff5b}\x{ff5d}\x{ff5f}-' .
  43. '\x{ff65}');
  44. /**
  45. * Matches CJK (Chinese, Japanese, Korean) letter-like characters.
  46. *
  47. * This list is derived from the "East Asian Scripts" section of
  48. * http://www.unicode.org/charts/index.html, as well as a comment on
  49. * http://unicode.org/reports/tr11/tr11-11.html listing some character
  50. * ranges that are reserved for additional CJK ideographs.
  51. *
  52. * The character ranges do not include numbers, punctuation, or symbols, since
  53. * these are handled separately in search. Note that radicals and strokes are
  54. * considered symbols. (See
  55. * http://www.unicode.org/Public/UNIDATA/extracted/DerivedGeneralCategory.txt)
  56. *
  57. * @see search_expand_cjk()
  58. */
  59. define('PREG_CLASS_CJK', '\x{1100}-\x{11FF}\x{3040}-\x{309F}\x{30A1}-\x{318E}' .
  60. '\x{31A0}-\x{31B7}\x{31F0}-\x{31FF}\x{3400}-\x{4DBF}\x{4E00}-\x{9FCF}' .
  61. '\x{A000}-\x{A48F}\x{A4D0}-\x{A4FD}\x{A960}-\x{A97F}\x{AC00}-\x{D7FF}' .
  62. '\x{F900}-\x{FAFF}\x{FF21}-\x{FF3A}\x{FF41}-\x{FF5A}\x{FF66}-\x{FFDC}' .
  63. '\x{20000}-\x{2FFFD}\x{30000}-\x{3FFFD}');
  64. /**
  65. * Implements hook_help().
  66. */
  67. function search_help($route_name, RouteMatchInterface $route_match) {
  68. switch ($route_name) {
  69. case 'help.page.search':
  70. $output = '';
  71. $output .= '<h3>' . t('About') . '</h3>';
  72. $output .= '<p>' . t('The Search module provides the ability to set up search pages based on plugins provided by other modules. In Drupal core, there are two page-type plugins: the Content page type provides keyword searching for content managed by the Node module, and the Users page type provides keyword searching for registered users. Contributed modules may provide other page-type plugins. For more information, see the <a href=":search-module">online documentation for the Search module</a>.', [':search-module' => 'https://www.drupal.org/documentation/modules/search']) . '</p>';
  73. $output .= '<h3>' . t('Uses') . '</h3>';
  74. $output .= '<dl>';
  75. $output .= '<dt>' . t('Configuring search pages') . '</dt>';
  76. $output .= '<dd>' . t('To configure search pages, visit the <a href=":search-settings">Search pages page</a>. In the Search pages section, you can add a new search page, edit the configuration of existing search pages, enable and disable search pages, and choose the default search page. Each enabled search page has a URL path starting with <em>search</em>, and each will appear as a tab or local task link on the <a href=":search-url">search page</a>; you can configure the text that is shown in the tab. In addition, some search page plugins have additional settings that you can configure for each search page.', [':search-settings' => \Drupal::url('entity.search_page.collection'), ':search-url' => \Drupal::url('search.view')]) . '</dd>';
  77. $output .= '<dt>' . t('Managing the search index') . '</dt>';
  78. $output .= '<dd>' . t('Some search page plugins, such as the core Content search page, index searchable text using the Drupal core search index, and will not work unless content is indexed. Indexing is done during <em>cron</em> runs, so it requires a <a href=":cron">cron maintenance task</a> to be set up. There are also several settings affecting indexing that can be configured on the <a href=":search-settings">Search pages page</a>: the number of items to index per cron run, the minimum word length to index, and how to handle Chinese, Japanese, and Korean characters.', [':cron' => \Drupal::url('system.cron_settings'), ':search-settings' => \Drupal::url('entity.search_page.collection')]) . '</dd>';
  79. $output .= '<dd>' . t('Modules providing search page plugins generally ensure that content-related actions on your site (creating, editing, or deleting content and comments) automatically cause affected content items to be marked for indexing or reindexing at the next cron run. When content is marked for reindexing, the previous content remains in the index until cron runs, at which time it is replaced by the new content. However, there are some actions related to the structure of your site that do not cause affected content to be marked for reindexing. Examples of structure-related actions that affect content include deleting or editing taxonomy terms, enabling or disabling modules that add text to content (such as Taxonomy, Comment, and field-providing modules), and modifying the fields or display parameters of your content types. If you take one of these actions and you want to ensure that the search index is updated to reflect your changed site structure, you can mark all content for reindexing by clicking the "Re-index site" button on the <a href=":search-settings">Search pages page</a>. If you have a lot of content on your site, it may take several cron runs for the content to be reindexed.', [':search-settings' => \Drupal::url('entity.search_page.collection')]) . '</dd>';
  80. $output .= '<dt>' . t('Displaying the Search block') . '</dt>';
  81. $output .= '<dd>' . t('The Search module includes a block, which can be enabled and configured on the <a href=":blocks">Block layout page</a>, if you have the Block module enabled; the default block title is Search, and it is the Search form block in the Forms category, if you wish to add another instance. The block is available to users with the <a href=":search_permission">Use search</a> permission, and it performs a search using the configured default search page.', [':blocks' => (\Drupal::moduleHandler()->moduleExists('block')) ? \Drupal::url('block.admin_display') : '#', ':search_permission' => \Drupal::url('user.admin_permissions', [], ['fragment' => 'module-search'])]) . '</dd>';
  82. $output .= '<dt>' . t('Searching your site') . '</dt>';
  83. $output .= '<dd>' . t('Users with <a href=":search_permission">Use search</a> permission can use the Search block and <a href=":search">Search page</a>. Users with the <a href=":node_permission">View published content</a> permission can use configured search pages of type <em>Content</em> to search for content containing exact keywords; in addition, users with <a href=":search_permission">Use advanced search</a> permission can use more complex search filtering. Users with the <a href=":user_permission">View user information</a> permission can use configured search pages of type <em>Users</em> to search for active users containing the keyword anywhere in the username, and users with the <a href=":user_permission">Administer users</a> permission can search for active and blocked users, by email address or username keyword.', [':search' => \Drupal::url('search.view'), ':search_permission' => \Drupal::url('user.admin_permissions', [], ['fragment' => 'module-search']), ':node_permission' => \Drupal::url('user.admin_permissions', [], ['fragment' => 'module-node']), ':user_permission' => \Drupal::url('user.admin_permissions', [], ['fragment' => 'module-user'])]) . '</dd>';
  84. $output .= '<dt>' . t('Extending the Search module') . '</dt>';
  85. $output .= '<dd>' . t('By default, the Search module only supports exact keyword matching in content searches. You can modify this behavior by installing a language-specific stemming module for your language (such as <a href=":porterstemmer_url">Porter Stemmer</a> for American English), which allows words such as walk, walking, and walked to be matched in the Search module. Another approach is to use a third-party search technology with stemming or partial word matching features built in, such as <a href=":solr_url">Apache Solr</a> or <a href=":sphinx_url">Sphinx</a>. There are also contributed modules that provide additional search pages. These and other <a href=":contrib-search">search-related contributed modules</a> can be downloaded by visiting Drupal.org.', [':contrib-search' => 'https://www.drupal.org/project/project_module?f[2]=im_vid_3%3A105', ':porterstemmer_url' => 'https://www.drupal.org/project/porterstemmer', ':solr_url' => 'https://www.drupal.org/project/apachesolr', ':sphinx_url' => 'https://www.drupal.org/project/sphinx']) . '</dd>';
  86. $output .= '</dl>';
  87. return $output;
  88. }
  89. }
  90. /**
  91. * Implements hook_theme().
  92. */
  93. function search_theme() {
  94. return [
  95. 'search_result' => [
  96. 'variables' => ['result' => NULL, 'plugin_id' => NULL],
  97. 'file' => 'search.pages.inc',
  98. ],
  99. ];
  100. }
  101. /**
  102. * Implements hook_preprocess_HOOK() for block templates.
  103. */
  104. function search_preprocess_block(&$variables) {
  105. if ($variables['plugin_id'] == 'search_form_block') {
  106. $variables['attributes']['role'] = 'search';
  107. }
  108. }
  109. /**
  110. * Clears either a part of, or the entire search index.
  111. *
  112. * This function is meant for use by search page plugins, or for building a
  113. * user interface that lets users clear all or parts of the search index.
  114. *
  115. * @param string|null $type
  116. * (optional) The plugin ID or other machine-readable type for the items to
  117. * remove from the search index. If omitted, $sid and $langcode are ignored
  118. * and the entire search index is cleared.
  119. * @param string|null $sid
  120. * (optional) The ID of the items to remove from the search index. If
  121. * omitted, all items matching $type are cleared, and $langcode is ignored.
  122. * @param string|null $langcode
  123. * (optional) Language code of the item to remove from the search index. If
  124. * omitted, all items matching $sid and $type are cleared.
  125. */
  126. function search_index_clear($type = NULL, $sid = NULL, $langcode = NULL) {
  127. $query_index = db_delete('search_index');
  128. $query_dataset = db_delete('search_dataset');
  129. if ($type) {
  130. $query_index->condition('type', $type);
  131. $query_dataset->condition('type', $type);
  132. if ($sid) {
  133. $query_index->condition('sid', $sid);
  134. $query_dataset->condition('sid', $sid);
  135. if ($langcode) {
  136. $query_index->condition('langcode', $langcode);
  137. $query_dataset->condition('langcode', $langcode);
  138. }
  139. }
  140. }
  141. $query_index->execute();
  142. $query_dataset->execute();
  143. if ($type) {
  144. // Invalidate all render cache items that contain data from this index.
  145. Cache::invalidateTags(['search_index:' . $type]);
  146. }
  147. else {
  148. // Invalidate all render cache items that contain data from any index.
  149. Cache::invalidateTags(['search_index']);
  150. }
  151. }
  152. /**
  153. * Marks a word as "dirty" (changed), or retrieves the list of dirty words.
  154. *
  155. * This is used during indexing (cron). Words that are dirty have outdated
  156. * total counts in the search_total table, and need to be recounted.
  157. */
  158. function search_dirty($word = NULL) {
  159. $dirty = &drupal_static(__FUNCTION__, []);
  160. if ($word !== NULL) {
  161. $dirty[$word] = TRUE;
  162. }
  163. else {
  164. return $dirty;
  165. }
  166. }
  167. /**
  168. * Implements hook_cron().
  169. *
  170. * Fires updateIndex() in the plugins for all indexable active search pages,
  171. * and cleans up dirty words.
  172. *
  173. * @see search_dirty()
  174. */
  175. function search_cron() {
  176. // We register a shutdown function to ensure that search_total is always up
  177. // to date.
  178. drupal_register_shutdown_function('search_update_totals');
  179. /** @var $search_page_repository \Drupal\search\SearchPageRepositoryInterface */
  180. $search_page_repository = \Drupal::service('search.search_page_repository');
  181. foreach ($search_page_repository->getIndexableSearchPages() as $entity) {
  182. $entity->getPlugin()->updateIndex();
  183. }
  184. }
  185. /**
  186. * Updates the {search_total} database table.
  187. *
  188. * This function is called on shutdown to ensure that {search_total} is always
  189. * up to date (even if cron times out or otherwise fails).
  190. */
  191. function search_update_totals() {
  192. // Update word IDF (Inverse Document Frequency) counts for new/changed words.
  193. foreach (search_dirty() as $word => $dummy) {
  194. // Get total count
  195. $total = db_query("SELECT SUM(score) FROM {search_index} WHERE word = :word", [':word' => $word], ['target' => 'replica'])->fetchField();
  196. // Apply Zipf's law to equalize the probability distribution.
  197. $total = log10(1 + 1 / (max(1, $total)));
  198. db_merge('search_total')
  199. ->key('word', $word)
  200. ->fields(['count' => $total])
  201. ->execute();
  202. }
  203. // Find words that were deleted from search_index, but are still in
  204. // search_total. We use a LEFT JOIN between the two tables and keep only the
  205. // rows which fail to join.
  206. $result = db_query("SELECT t.word AS realword, i.word FROM {search_total} t LEFT JOIN {search_index} i ON t.word = i.word WHERE i.word IS NULL", [], ['target' => 'replica']);
  207. $or = new Condition('OR');
  208. foreach ($result as $word) {
  209. $or->condition('word', $word->realword);
  210. }
  211. if (count($or) > 0) {
  212. db_delete('search_total')
  213. ->condition($or)
  214. ->execute();
  215. }
  216. }
  217. /**
  218. * Simplifies and preprocesses text for searching.
  219. *
  220. * Processing steps:
  221. * - Entities are decoded.
  222. * - Text is lower-cased and diacritics (accents) are removed.
  223. * - hook_search_preprocess() is invoked.
  224. * - CJK (Chinese, Japanese, Korean) characters are processed, depending on
  225. * the search settings.
  226. * - Punctuation is processed (removed or replaced with spaces, depending on
  227. * where it is; see code for details).
  228. * - Words are truncated to 50 characters maximum.
  229. *
  230. * @param string $text
  231. * Text to simplify.
  232. * @param string|null $langcode
  233. * Language code for the language of $text, if known.
  234. *
  235. * @return string
  236. * Simplified and processed text.
  237. *
  238. * @see hook_search_preprocess()
  239. */
  240. function search_simplify($text, $langcode = NULL) {
  241. // Decode entities to UTF-8
  242. $text = Html::decodeEntities($text);
  243. // Lowercase
  244. $text = Unicode::strtolower($text);
  245. // Remove diacritics.
  246. $text = \Drupal::service('transliteration')->removeDiacritics($text);
  247. // Call an external processor for word handling.
  248. search_invoke_preprocess($text, $langcode);
  249. // Simple CJK handling
  250. if (\Drupal::config('search.settings')->get('index.overlap_cjk')) {
  251. $text = preg_replace_callback('/[' . PREG_CLASS_CJK . ']+/u', 'search_expand_cjk', $text);
  252. }
  253. // To improve searching for numerical data such as dates, IP addresses
  254. // or version numbers, we consider a group of numerical characters
  255. // separated only by punctuation characters to be one piece.
  256. // This also means that searching for e.g. '20/03/1984' also returns
  257. // results with '20-03-1984' in them.
  258. // Readable regexp: ([number]+)[punctuation]+(?=[number])
  259. $text = preg_replace('/([' . PREG_CLASS_NUMBERS . ']+)[' . PREG_CLASS_PUNCTUATION . ']+(?=[' . PREG_CLASS_NUMBERS . '])/u', '\1', $text);
  260. // Multiple dot and dash groups are word boundaries and replaced with space.
  261. // No need to use the unicode modifier here because 0-127 ASCII characters
  262. // can't match higher UTF-8 characters as the leftmost bit of those are 1.
  263. $text = preg_replace('/[.-]{2,}/', ' ', $text);
  264. // The dot, underscore and dash are simply removed. This allows meaningful
  265. // search behavior with acronyms and URLs. See unicode note directly above.
  266. $text = preg_replace('/[._-]+/', '', $text);
  267. // With the exception of the rules above, we consider all punctuation,
  268. // marks, spacers, etc, to be a word boundary.
  269. $text = preg_replace('/[' . Unicode::PREG_CLASS_WORD_BOUNDARY . ']+/u', ' ', $text);
  270. // Truncate everything to 50 characters.
  271. $words = explode(' ', $text);
  272. array_walk($words, '_search_index_truncate');
  273. $text = implode(' ', $words);
  274. return $text;
  275. }
  276. /**
  277. * Splits CJK (Chinese, Japanese, Korean) text into tokens.
  278. *
  279. * The Search module matches exact words, where a word is defined to be a
  280. * sequence of characters delimited by spaces or punctuation. CJK languages are
  281. * written in long strings of characters, though, not split up into words. So
  282. * in order to allow search matching, we split up CJK text into tokens
  283. * consisting of consecutive, overlapping sequences of characters whose length
  284. * is equal to the 'minimum_word_size' variable. This tokenizing is only done
  285. * if the 'overlap_cjk' variable is TRUE.
  286. *
  287. * @param array $matches
  288. * This function is a callback for preg_replace_callback(), which is called
  289. * from search_simplify(). So, $matches is an array of regular expression
  290. * matches, which means that $matches[0] contains the matched text -- a
  291. * string of CJK characters to tokenize.
  292. *
  293. * @return string
  294. * Tokenized text, starting and ending with a space character.
  295. */
  296. function search_expand_cjk($matches) {
  297. $min = \Drupal::config('search.settings')->get('index.minimum_word_size');
  298. $str = $matches[0];
  299. $length = Unicode::strlen($str);
  300. // If the text is shorter than the minimum word size, don't tokenize it.
  301. if ($length <= $min) {
  302. return ' ' . $str . ' ';
  303. }
  304. $tokens = ' ';
  305. // Build a FIFO queue of characters.
  306. $chars = [];
  307. for ($i = 0; $i < $length; $i++) {
  308. // Add the next character off the beginning of the string to the queue.
  309. $current = Unicode::substr($str, 0, 1);
  310. $str = substr($str, strlen($current));
  311. $chars[] = $current;
  312. if ($i >= $min - 1) {
  313. // Make a token of $min characters, and add it to the token string.
  314. $tokens .= implode('', $chars) . ' ';
  315. // Shift out the first character in the queue.
  316. array_shift($chars);
  317. }
  318. }
  319. return $tokens;
  320. }
  321. /**
  322. * Simplifies and splits a string into words for indexing.
  323. *
  324. * @param string $text
  325. * Text to process.
  326. * @param string|null $langcode
  327. * Language code for the language of $text, if known.
  328. *
  329. * @return array
  330. * Array of words in the simplified, preprocessed text.
  331. *
  332. * @see search_simplify()
  333. */
  334. function search_index_split($text, $langcode = NULL) {
  335. $last = &drupal_static(__FUNCTION__);
  336. $lastsplit = &drupal_static(__FUNCTION__ . ':lastsplit');
  337. if ($last == $text) {
  338. return $lastsplit;
  339. }
  340. // Process words
  341. $text = search_simplify($text, $langcode);
  342. $words = explode(' ', $text);
  343. // Save last keyword result
  344. $last = $text;
  345. $lastsplit = $words;
  346. return $words;
  347. }
  348. /**
  349. * Helper function for array_walk in search_index_split.
  350. */
  351. function _search_index_truncate(&$text) {
  352. // Use a static array to avoid re-truncating text we've done before.
  353. // The same words may often be passed in during excerpt generation.
  354. static $truncated = [];
  355. if (isset($truncated[$text])) {
  356. $text = $truncated[$text];
  357. return;
  358. }
  359. // If we didn't find it in the static array, perform the operation.
  360. $original = $text;
  361. if (is_numeric($text)) {
  362. $text = ltrim($text, '0');
  363. }
  364. $text = Unicode::truncate($text, 50);
  365. // Save it for the next time.
  366. $truncated[$original] = $text;
  367. }
  368. /**
  369. * Invokes hook_search_preprocess() to simplify text.
  370. *
  371. * @param string $text
  372. * Text to preprocess, passed by reference and altered in place.
  373. * @param string|null $langcode
  374. * Language code for the language of $text, if known.
  375. */
  376. function search_invoke_preprocess(&$text, $langcode = NULL) {
  377. foreach (\Drupal::moduleHandler()->getImplementations('search_preprocess') as $module) {
  378. $text = \Drupal::moduleHandler()->invoke($module, 'search_preprocess', [$text, $langcode]);
  379. }
  380. }
  381. /**
  382. * Updates the full-text search index for a particular item.
  383. *
  384. * @param string $type
  385. * The plugin ID or other machine-readable type of this item,
  386. * which should be less than 64 bytes.
  387. * @param int $sid
  388. * An ID number identifying this particular item (e.g., node ID).
  389. * @param string $langcode
  390. * Language code for the language of the text being indexed.
  391. * @param string $text
  392. * The content of this item. Must be a piece of HTML or plain text.
  393. *
  394. * @ingroup search
  395. */
  396. function search_index($type, $sid, $langcode, $text) {
  397. $minimum_word_size = \Drupal::config('search.settings')->get('index.minimum_word_size');
  398. // Multipliers for scores of words inside certain HTML tags. The weights are
  399. // stored in config so that modules can overwrite the default weights.
  400. // Note: 'a' must be included for link ranking to work.
  401. $tags = \Drupal::config('search.settings')->get('index.tag_weights');
  402. // Strip off all ignored tags to speed up processing, but insert space before
  403. // and after them to keep word boundaries.
  404. $text = str_replace(['<', '>'], [' <', '> '], $text);
  405. $text = strip_tags($text, '<' . implode('><', array_keys($tags)) . '>');
  406. // Split HTML tags from plain text.
  407. $split = preg_split('/\s*<([^>]+?)>\s*/', $text, -1, PREG_SPLIT_DELIM_CAPTURE);
  408. // Note: PHP ensures the array consists of alternating delimiters and literals
  409. // and begins and ends with a literal (inserting $null as required).
  410. // Odd/even counter. Tag or no tag.
  411. $tag = FALSE;
  412. // Starting score per word.
  413. $score = 1;
  414. // Accumulator for cleaned up data.
  415. $accum = ' ';
  416. // Stack with open tags.
  417. $tagstack = [];
  418. // Counter for consecutive words.
  419. $tagwords = 0;
  420. // Focus state.
  421. $focus = 1;
  422. // Accumulator for words for index.
  423. $scored_words = [];
  424. foreach ($split as $value) {
  425. if ($tag) {
  426. // Increase or decrease score per word based on tag
  427. list($tagname) = explode(' ', $value, 2);
  428. $tagname = Unicode::strtolower($tagname);
  429. // Closing or opening tag?
  430. if ($tagname[0] == '/') {
  431. $tagname = substr($tagname, 1);
  432. // If we encounter unexpected tags, reset score to avoid incorrect boosting.
  433. if (!count($tagstack) || $tagstack[0] != $tagname) {
  434. $tagstack = [];
  435. $score = 1;
  436. }
  437. else {
  438. // Remove from tag stack and decrement score
  439. $score = max(1, $score - $tags[array_shift($tagstack)]);
  440. }
  441. }
  442. else {
  443. if (isset($tagstack[0]) && $tagstack[0] == $tagname) {
  444. // None of the tags we look for make sense when nested identically.
  445. // If they are, it's probably broken HTML.
  446. $tagstack = [];
  447. $score = 1;
  448. }
  449. else {
  450. // Add to open tag stack and increment score
  451. array_unshift($tagstack, $tagname);
  452. $score += $tags[$tagname];
  453. }
  454. }
  455. // A tag change occurred, reset counter.
  456. $tagwords = 0;
  457. }
  458. else {
  459. // Note: use of PREG_SPLIT_DELIM_CAPTURE above will introduce empty values
  460. if ($value != '') {
  461. $words = search_index_split($value, $langcode);
  462. foreach ($words as $word) {
  463. // Add word to accumulator
  464. $accum .= $word . ' ';
  465. // Check wordlength
  466. if (is_numeric($word) || Unicode::strlen($word) >= $minimum_word_size) {
  467. if (!isset($scored_words[$word])) {
  468. $scored_words[$word] = 0;
  469. }
  470. $scored_words[$word] += $score * $focus;
  471. // Focus is a decaying value in terms of the amount of unique words up to this point.
  472. // From 100 words and more, it decays, to e.g. 0.5 at 500 words and 0.3 at 1000 words.
  473. $focus = min(1, .01 + 3.5 / (2 + count($scored_words) * .015));
  474. }
  475. $tagwords++;
  476. // Too many words inside a single tag probably mean a tag was accidentally left open.
  477. if (count($tagstack) && $tagwords >= 15) {
  478. $tagstack = [];
  479. $score = 1;
  480. }
  481. }
  482. }
  483. }
  484. $tag = !$tag;
  485. }
  486. // Remove the item $sid from the search index, and invalidate the relevant
  487. // cache tags.
  488. search_index_clear($type, $sid, $langcode);
  489. // Insert cleaned up data into dataset
  490. db_insert('search_dataset')
  491. ->fields([
  492. 'sid' => $sid,
  493. 'langcode' => $langcode,
  494. 'type' => $type,
  495. 'data' => $accum,
  496. 'reindex' => 0,
  497. ])
  498. ->execute();
  499. // Insert results into search index
  500. foreach ($scored_words as $word => $score) {
  501. // If a word already exists in the database, its score gets increased
  502. // appropriately. If not, we create a new record with the appropriate
  503. // starting score.
  504. db_merge('search_index')
  505. ->keys([
  506. 'word' => $word,
  507. 'sid' => $sid,
  508. 'langcode' => $langcode,
  509. 'type' => $type,
  510. ])
  511. ->fields(['score' => $score])
  512. ->expression('score', 'score + :score', [':score' => $score])
  513. ->execute();
  514. search_dirty($word);
  515. }
  516. }
  517. /**
  518. * Changes the timestamp on indexed items to 'now' to force reindexing.
  519. *
  520. * This function is meant for use by search page plugins, or for building a
  521. * user interface that lets users mark all or parts of the search index for
  522. * reindexing.
  523. *
  524. * @param string $type
  525. * (optional) The plugin ID or other machine-readable type of this item. If
  526. * omitted, the entire search index is marked for reindexing, and $sid and
  527. * $langcode are ignored.
  528. * @param int $sid
  529. * (optional) An ID number identifying this particular item (e.g., node ID).
  530. * If omitted, everything matching $type is marked, and $langcode is ignored.
  531. * @param string $langcode
  532. * (optional) The language code to clear. If omitted, everything matching
  533. * $type and $sid is marked.
  534. */
  535. function search_mark_for_reindex($type = NULL, $sid = NULL, $langcode = NULL) {
  536. $query = db_update('search_dataset')
  537. ->fields(['reindex' => REQUEST_TIME])
  538. // Only mark items that were not previously marked for reindex, so that
  539. // marked items maintain their priority by request time.
  540. ->condition('reindex', 0);
  541. if ($type) {
  542. $query->condition('type', $type);
  543. if ($sid) {
  544. $query->condition('sid', $sid);
  545. if ($langcode) {
  546. $query->condition('langcode', $langcode);
  547. }
  548. }
  549. }
  550. $query->execute();
  551. }
  552. /**
  553. * @defgroup search Search interface
  554. * @{
  555. * The Drupal search interface manages a global search mechanism.
  556. *
  557. * Modules may plug into this system to provide searches of different types of
  558. * data. Most of the system is handled by the Search module, so this must be
  559. * enabled for all of the search features to work.
  560. *
  561. * There are two ways to interact with the search system:
  562. * - Specifically for searching nodes, you can implement
  563. * hook_node_update_index() and hook_node_search_result(). However, note that
  564. * the search system already indexes all visible output of a node; i.e.,
  565. * everything displayed normally during node viewing. This is
  566. * usually sufficient. You should only use this mechanism if you want
  567. * additional, non-visible data to be indexed.
  568. * - Define a plugin implementing \Drupal\search\Plugin\SearchInterface and
  569. * annotated as \Drupal\search\Annotation\SearchPlugin. This will create a
  570. * search page type that users can use to set up one or more search pages.
  571. * Each of these corresponds to a tab on the /search page, which can be
  572. * used to perform searches. You will also need to implement the execute()
  573. * method from the interface to perform the search. A base class is provided
  574. * in \Drupal\search\Plugin\SearchPluginBase. For more information about
  575. * plugins, see the @link plugin_api Plugin API topic. @endlink
  576. *
  577. * If your module needs to provide a more complicated search form, then you
  578. * need to implement it yourself. In that case, you may wish to define it as a
  579. * local task (tab) under the /search page (e.g. /search/mymodule) so that users
  580. * can easily find it.
  581. *
  582. * @see plugin_api
  583. * @see annotation
  584. */
  585. /**
  586. * Returns snippets from a piece of text, with search keywords highlighted.
  587. *
  588. * Used for formatting search results. All HTML tags will be stripped from
  589. * $text.
  590. *
  591. * @param string $keys
  592. * A string containing a search query.
  593. * @param string $text
  594. * The text to extract fragments from.
  595. * @param string|null $langcode
  596. * Language code for the language of $text, if known.
  597. *
  598. * @return array
  599. * A render array containing HTML for the excerpt.
  600. */
  601. function search_excerpt($keys, $text, $langcode = NULL) {
  602. // We highlight around non-indexable or CJK characters.
  603. $boundary_character = '[' . Unicode::PREG_CLASS_WORD_BOUNDARY . PREG_CLASS_CJK . ']';
  604. $preceded_by_boundary = '(?<=' . $boundary_character . ')';
  605. $followed_by_boundary = '(?=' . $boundary_character . ')';
  606. // Extract positive keywords and phrases.
  607. preg_match_all('/ ("([^"]+)"|(?!OR)([^" ]+))/', ' ' . $keys, $matches);
  608. $keys = array_merge($matches[2], $matches[3]);
  609. // Prepare text by stripping HTML tags and decoding HTML entities.
  610. $text = strip_tags(str_replace(['<', '>'], [' <', '> '], $text));
  611. $text = Html::decodeEntities($text);
  612. $text_length = strlen($text);
  613. // Make a list of unique keywords that are actually found in the text,
  614. // which could be items in $keys or replacements that are equivalent through
  615. // search_simplify().
  616. $temp_keys = [];
  617. foreach ($keys as $key) {
  618. $key = _search_find_match_with_simplify($key, $text, $boundary_character, $langcode);
  619. if (isset($key)) {
  620. // Quote slashes so they can be used in regular expressions.
  621. $temp_keys[] = preg_quote($key, '/');
  622. }
  623. }
  624. // Several keywords could have simplified down to the same thing, so pick
  625. // out the unique ones.
  626. $keys = array_unique($temp_keys);
  627. // Extract fragments of about 60 characters around keywords, bounded by word
  628. // boundary characters. Try to reach 256 characters, using second occurrences
  629. // if necessary.
  630. $ranges = [];
  631. $length = 0;
  632. $look_start = [];
  633. $remaining_keys = $keys;
  634. while ($length < 256 && !empty($remaining_keys)) {
  635. $found_keys = [];
  636. foreach ($remaining_keys as $key) {
  637. if ($length >= 256) {
  638. break;
  639. }
  640. // Remember where we last found $key, in case we are coming through a
  641. // second time.
  642. if (!isset($look_start[$key])) {
  643. $look_start[$key] = 0;
  644. }
  645. // See if we can find $key after where we found it the last time. Since
  646. // we are requiring a match on a word boundary, make sure $text starts
  647. // and ends with a space.
  648. $matches = [];
  649. if (preg_match('/' . $preceded_by_boundary . $key . $followed_by_boundary . '/iu', ' ' . $text . ' ', $matches, PREG_OFFSET_CAPTURE, $look_start[$key])) {
  650. $found_position = $matches[0][1];
  651. $look_start[$key] = $found_position + 1;
  652. // Keep track of which keys we found this time, in case we need to
  653. // pass through again to find more text.
  654. $found_keys[] = $key;
  655. // Locate a space before and after this match, leaving about 60
  656. // characters of context on each end.
  657. $before = strpos(' ' . $text, ' ', max(0, $found_position - 61));
  658. if ($before !== FALSE && $before <= $found_position) {
  659. if ($text_length > $found_position + 60) {
  660. $after = strrpos(substr($text, 0, $found_position + 60), ' ', $found_position);
  661. }
  662. else {
  663. $after = $text_length;
  664. }
  665. if ($after !== FALSE && $after > $found_position) {
  666. // Account for the spaces we added.
  667. $before = max($before - 1, 0);
  668. if ($before < $after) {
  669. // Save this range.
  670. $ranges[$before] = $after;
  671. $length += $after - $before;
  672. }
  673. }
  674. }
  675. }
  676. }
  677. // Next time through this loop, only look for keys we found this time,
  678. // if any.
  679. $remaining_keys = $found_keys;
  680. }
  681. if (empty($ranges)) {
  682. // We didn't find any keyword matches, so just return the first part of the
  683. // text. We also need to re-encode any HTML special characters that we
  684. // entity-decoded above.
  685. return [
  686. '#plain_text' => Unicode::truncate($text, 256, TRUE, TRUE),
  687. ];
  688. }
  689. // Sort the text ranges by starting position.
  690. ksort($ranges);
  691. // Collapse overlapping text ranges into one. The sorting makes it O(n).
  692. $new_ranges = [];
  693. $max_end = 0;
  694. foreach ($ranges as $this_from => $this_to) {
  695. $max_end = max($max_end, $this_to);
  696. if (!isset($working_from)) {
  697. // This is the first time through this loop: initialize.
  698. $working_from = $this_from;
  699. $working_to = $this_to;
  700. continue;
  701. }
  702. if ($this_from <= $working_to) {
  703. // The ranges overlap: combine them.
  704. $working_to = max($working_to, $this_to);
  705. }
  706. else {
  707. // The ranges do not overlap: save the working range and start a new one.
  708. $new_ranges[$working_from] = $working_to;
  709. $working_from = $this_from;
  710. $working_to = $this_to;
  711. }
  712. }
  713. // Save the remaining working range.
  714. $new_ranges[$working_from] = $working_to;
  715. // Fetch text within the combined ranges we found.
  716. $out = [];
  717. foreach ($new_ranges as $from => $to) {
  718. $out[] = substr($text, $from, $to - $from);
  719. }
  720. // Combine the text chunks with "…" separators. The "…" needs to be
  721. // translated. Let translators have the … separator text as one chunk.
  722. $ellipses = explode('@excerpt', t('… @excerpt … @excerpt …'));
  723. $text = (isset($new_ranges[0]) ? '' : $ellipses[0]) . implode($ellipses[1], $out) . (($max_end < strlen($text) - 1) ? $ellipses[2] : '');
  724. $text = Html::escape($text);
  725. // Highlight keywords. Must be done at once to prevent conflicts ('strong'
  726. // and '<strong>').
  727. $text = trim(preg_replace('/' . $preceded_by_boundary . '(?:' . implode('|', $keys) . ')' . $followed_by_boundary . '/iu', '<strong>\0</strong>', ' ' . $text . ' '));
  728. return [
  729. '#markup' => $text,
  730. '#allowed_tags' => ['strong']
  731. ];
  732. }
  733. /**
  734. * @} End of "defgroup search".
  735. */
  736. /**
  737. * Finds an appropriate keyword in text.
  738. *
  739. * @param string $key
  740. * The keyword to find.
  741. * @param string $text
  742. * The text to search for the keyword.
  743. * @param string $boundary
  744. * Regular expression for the boundary character class (characters that
  745. * indicate spaces between words).
  746. * @param string|null $langcode
  747. * Language code for the language of $text, if known.
  748. *
  749. * @return string|null
  750. * A segment of $text that is between word boundary characters that either
  751. * matches $key directly, or matches $key when both this text segment and
  752. * $key are processed by search_simplify(). If a matching text segment is
  753. * not located, NULL is returned.
  754. */
  755. function _search_find_match_with_simplify($key, $text, $boundary, $langcode = NULL) {
  756. $preceded_by_boundary = '(?<=' . $boundary . ')';
  757. $followed_by_boundary = '(?=' . $boundary . ')';
  758. // See if $key appears as-is. When testing, make sure $text starts/ends with
  759. // a space, because we require $key to be surrounded by word boundary
  760. // characters.
  761. $temp = trim($key);
  762. if ($temp == '') {
  763. return NULL;
  764. }
  765. if (preg_match('/' . $preceded_by_boundary . preg_quote($temp, '/') . $followed_by_boundary . '/iu', ' ' . $text . ' ')) {
  766. return $temp;
  767. }
  768. // See if there is a match after lower-casing and removing diacritics in
  769. // both, which should preserve the string length.
  770. $new_text = Unicode::strtolower($text);
  771. $new_text = \Drupal::service('transliteration')->removeDiacritics($new_text);
  772. $new_key = Unicode::strtolower($temp);
  773. $new_key = \Drupal::service('transliteration')->removeDiacritics($new_key);
  774. if (preg_match('/' . $preceded_by_boundary . preg_quote($new_key, '/') . $followed_by_boundary . '/u', ' ' . $new_text . ' ')) {
  775. $position = Unicode::strpos($new_text, $new_key);
  776. return Unicode::substr($text, $position, Unicode::strlen($new_key));
  777. }
  778. // Run both text and key through search_simplify.
  779. $simplified_key = trim(search_simplify($key, $langcode));
  780. $simplified_text = trim(search_simplify($text, $langcode));
  781. if ($simplified_key == '' || $simplified_text == '' || strpos($simplified_text, $simplified_key) === FALSE) {
  782. // The simplified keyword and text do not match at all, or are empty.
  783. return NULL;
  784. }
  785. // Split $text into words, keeping track of where the word boundaries are.
  786. $words = preg_split('/' . $boundary . '+/u', $text, NULL, PREG_SPLIT_OFFSET_CAPTURE);
  787. // Add an entry pointing to the end of the string, for the loop below.
  788. $words[] = ['', strlen($text)];
  789. // Using a binary search, find the earliest possible ending position in
  790. // $text where it will still match the keyword after applying
  791. // search_simplify().
  792. $start_index = 0;
  793. $start_pos = $words[$start_index][1];
  794. $min_end_index = 1;
  795. $max_end_index = count($words) - 1;
  796. while ($max_end_index > $min_end_index) {
  797. // Check the index half way between min and max. See if we ended there,
  798. // if we would still have a match.
  799. $proposed_end_index = floor(($max_end_index + $min_end_index) / 2);
  800. $proposed_end_pos = $words[$proposed_end_index][1];
  801. // Since the split was done with preg_split(), the positions are byte counts
  802. // not character counts, so use substr() not Unicode::substr() here.
  803. $trial_text = trim(search_simplify(substr($text, $start_pos, $proposed_end_pos - $start_pos), $langcode));
  804. if (strpos($trial_text, $simplified_key) !== FALSE) {
  805. // The proposed endpoint is fine, text still matches.
  806. $max_end_index = $proposed_end_index;
  807. }
  808. else {
  809. // The proposed endpoint index is too early, so the earliest possible
  810. // OK ending point would be the next index.
  811. $min_end_index = $proposed_end_index + 1;
  812. }
  813. }
  814. // Now do the same for the starting position: using a binary search, find the
  815. // latest possible starting position in $text where it will still match the
  816. // keyword after applying search_simplify().
  817. $end_index = $min_end_index;
  818. $end_pos = $words[$end_index][1];
  819. $min_start_index = 0;
  820. $max_start_index = $end_index - 1;
  821. while ($max_start_index > $min_start_index) {
  822. // Check the index half way between min and max. See if we started there,
  823. // if we would still have a match.
  824. $proposed_start_index = ceil(($max_start_index + $min_start_index) / 2);
  825. $proposed_start_pos = $words[$proposed_start_index][1];
  826. // Since the split was done with preg_split(), the positions are byte counts
  827. // not character counts, so use substr() not Unicode::substr() here.
  828. $trial_text = trim(search_simplify(substr($text, $proposed_start_pos, $end_pos - $proposed_start_pos), $langcode));
  829. if (strpos($trial_text, $simplified_key) !== FALSE) {
  830. // The proposed start point is fine, text still matches.
  831. $min_start_index = $proposed_start_index;
  832. }
  833. else {
  834. // The proposed start point index is too late, so the latest possible
  835. // OK starting point would be the previous index.
  836. $max_start_index = $proposed_start_index - 1;
  837. }
  838. }
  839. $start_index = $max_start_index;
  840. // Return the matching text. We need to use substr() here and not the
  841. // Unicode::substr() function, because the indices in $words came from
  842. // preg_split(), so they are Unicode-safe byte positions, not character
  843. // positions.
  844. return trim(substr($text, $words[$start_index][1], $words[$end_index][1] - $words[$start_index][1]));
  845. }
  846. /**
  847. * Implements hook_form_FORM_ID_alter() for the search_block_form form.
  848. *
  849. * Since the exposed form is a GET form, we don't want it to send the form
  850. * tokens. However, you cannot make this happen in the form builder function
  851. * itself, because the tokens are added to the form after the builder function
  852. * is called. So, we have to do it in a form_alter.
  853. *
  854. * @see \Drupal\search\Form\SearchBlockForm
  855. */
  856. function search_form_search_block_form_alter(&$form, FormStateInterface $form_state) {
  857. $form['form_build_id']['#access'] = FALSE;
  858. $form['form_token']['#access'] = FALSE;
  859. $form['form_id']['#access'] = FALSE;
  860. }