Search.php 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172
  1. <?php
  2. /**
  3. * Handle all of the searching from here.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines http://www.simplemachines.org
  9. * @copyright 2011 Simple Machines
  10. * @license http://www.simplemachines.org/about/smf/license.php BSD
  11. *
  12. * @version 2.1 Alpha 1
  13. */
  14. if (!defined('SMF'))
  15. die('Hacking attempt...');
  16. // This defines two version types for checking the API's are compatible with this version of SMF.
  17. $GLOBALS['search_versions'] = array(
  18. // This is the forum version but is repeated due to some people rewriting $forum_version.
  19. 'forum_version' => 'SMF 2.1 Alpha 1',
  20. // This is the minimum version of SMF that an API could have been written for to work. (strtr to stop accidentally updating version on release)
  21. 'search_version' => strtr('SMF 2+1=Alpha=1', array('+' => '.', '=' => ' ')),
  22. );
  23. /**
  24. * Ask the user what they want to search for.
  25. * What it does:
  26. * - shows the screen to search forum posts (action=search), and uses the simple version if the simpleSearch setting is enabled.
  27. * - uses the main sub template of the Search template.
  28. * - uses the Search language file.
  29. * - requires the search_posts permission.
  30. * - decodes and loads search parameters given in the URL (if any).
  31. * - the form redirects to index.php?action=search2.
  32. */
  33. function PlushSearch1()
  34. {
  35. global $txt, $scripturl, $modSettings, $user_info, $context, $smcFunc, $sourcedir;
  36. // Is the load average too high to allow searching just now?
  37. if (!empty($context['load_average']) && !empty($modSettings['loadavg_search']) && $context['load_average'] >= $modSettings['loadavg_search'])
  38. fatal_lang_error('loadavg_search_disabled', false);
  39. loadLanguage('Search');
  40. // Don't load this in XML mode.
  41. if (!isset($_REQUEST['xml']))
  42. loadTemplate('Search');
  43. // Check the user's permissions.
  44. isAllowedTo('search_posts');
  45. // Link tree....
  46. $context['linktree'][] = array(
  47. 'url' => $scripturl . '?action=search',
  48. 'name' => $txt['search']
  49. );
  50. // This is hard coded maximum string length.
  51. $context['search_string_limit'] = 100;
  52. $context['require_verification'] = $user_info['is_guest'] && !empty($modSettings['search_enable_captcha']) && empty($_SESSION['ss_vv_passed']);
  53. if ($context['require_verification'])
  54. {
  55. require_once($sourcedir . '/Subs-Editor.php');
  56. $verificationOptions = array(
  57. 'id' => 'search',
  58. );
  59. $context['require_verification'] = create_control_verification($verificationOptions);
  60. $context['visual_verification_id'] = $verificationOptions['id'];
  61. }
  62. // If you got back from search2 by using the linktree, you get your original search parameters back.
  63. if (isset($_REQUEST['params']))
  64. {
  65. // Due to IE's 2083 character limit, we have to compress long search strings
  66. $temp_params = base64_decode(str_replace(array('-', '_', '.'), array('+', '/', '='), $_REQUEST['params']));
  67. // Test for gzuncompress failing
  68. $temp_params2 = @gzuncompress($temp_params);
  69. $temp_params = explode('|"|', !empty($temp_params2) ? $temp_params2 : $temp_params);
  70. $context['search_params'] = array();
  71. foreach ($temp_params as $i => $data)
  72. {
  73. @list ($k, $v) = explode('|\'|', $data);
  74. $context['search_params'][$k] = $v;
  75. }
  76. if (isset($context['search_params']['brd']))
  77. $context['search_params']['brd'] = $context['search_params']['brd'] == '' ? array() : explode(',', $context['search_params']['brd']);
  78. }
  79. if (isset($_REQUEST['search']))
  80. $context['search_params']['search'] = un_htmlspecialchars($_REQUEST['search']);
  81. if (isset($context['search_params']['search']))
  82. $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']);
  83. if (isset($context['search_params']['userspec']))
  84. $context['search_params']['userspec'] = htmlspecialchars($context['search_params']['userspec']);
  85. if (!empty($context['search_params']['searchtype']))
  86. $context['search_params']['searchtype'] = 2;
  87. if (!empty($context['search_params']['minage']))
  88. $context['search_params']['minage'] = (int) $context['search_params']['minage'];
  89. if (!empty($context['search_params']['maxage']))
  90. $context['search_params']['maxage'] = (int) $context['search_params']['maxage'];
  91. $context['search_params']['show_complete'] = !empty($context['search_params']['show_complete']);
  92. $context['search_params']['subject_only'] = !empty($context['search_params']['subject_only']);
  93. // Load the error text strings if there were errors in the search.
  94. if (!empty($context['search_errors']))
  95. {
  96. loadLanguage('Errors');
  97. $context['search_errors']['messages'] = array();
  98. foreach ($context['search_errors'] as $search_error => $dummy)
  99. {
  100. if ($search_error === 'messages')
  101. continue;
  102. if ($search_error == 'string_too_long')
  103. $txt['error_string_too_long'] = sprintf($txt['error_string_too_long'], $context['search_string_limit']);
  104. $context['search_errors']['messages'][] = $txt['error_' . $search_error];
  105. }
  106. }
  107. // Find all the boards this user is allowed to see.
  108. $request = $smcFunc['db_query']('order_by_board_order', '
  109. SELECT b.id_cat, c.name AS cat_name, b.id_board, b.name, b.child_level
  110. FROM {db_prefix}boards AS b
  111. LEFT JOIN {db_prefix}categories AS c ON (c.id_cat = b.id_cat)
  112. WHERE {query_see_board}
  113. AND redirect = {string:empty_string}',
  114. array(
  115. 'empty_string' => '',
  116. )
  117. );
  118. $context['num_boards'] = $smcFunc['db_num_rows']($request);
  119. $context['boards_check_all'] = true;
  120. $context['categories'] = array();
  121. while ($row = $smcFunc['db_fetch_assoc']($request))
  122. {
  123. // This category hasn't been set up yet..
  124. if (!isset($context['categories'][$row['id_cat']]))
  125. $context['categories'][$row['id_cat']] = array(
  126. 'id' => $row['id_cat'],
  127. 'name' => $row['cat_name'],
  128. 'boards' => array()
  129. );
  130. // Set this board up, and let the template know when it's a child. (indent them..)
  131. $context['categories'][$row['id_cat']]['boards'][$row['id_board']] = array(
  132. 'id' => $row['id_board'],
  133. 'name' => $row['name'],
  134. 'child_level' => $row['child_level'],
  135. 'selected' => (empty($context['search_params']['brd']) && (empty($modSettings['recycle_enable']) || $row['id_board'] != $modSettings['recycle_board']) && !in_array($row['id_board'], $user_info['ignoreboards'])) || (!empty($context['search_params']['brd']) && in_array($row['id_board'], $context['search_params']['brd']))
  136. );
  137. // If a board wasn't checked that probably should have been ensure the board selection is selected, yo!
  138. if (!$context['categories'][$row['id_cat']]['boards'][$row['id_board']]['selected'] && (empty($modSettings['recycle_enable']) || $row['id_board'] != $modSettings['recycle_board']))
  139. $context['boards_check_all'] = false;
  140. }
  141. $smcFunc['db_free_result']($request);
  142. // Now, let's sort the list of categories into the boards for templates that like that.
  143. $temp_boards = array();
  144. foreach ($context['categories'] as $category)
  145. {
  146. $temp_boards[] = array(
  147. 'name' => $category['name'],
  148. 'child_ids' => array_keys($category['boards'])
  149. );
  150. $temp_boards = array_merge($temp_boards, array_values($category['boards']));
  151. // Include a list of boards per category for easy toggling.
  152. $context['categories'][$category['id']]['child_ids'] = array_keys($category['boards']);
  153. }
  154. $max_boards = ceil(count($temp_boards) / 2);
  155. if ($max_boards == 1)
  156. $max_boards = 2;
  157. // Now, alternate them so they can be shown left and right ;).
  158. $context['board_columns'] = array();
  159. for ($i = 0; $i < $max_boards; $i++)
  160. {
  161. $context['board_columns'][] = $temp_boards[$i];
  162. if (isset($temp_boards[$i + $max_boards]))
  163. $context['board_columns'][] = $temp_boards[$i + $max_boards];
  164. else
  165. $context['board_columns'][] = array();
  166. }
  167. if (!empty($_REQUEST['topic']))
  168. {
  169. $context['search_params']['topic'] = (int) $_REQUEST['topic'];
  170. $context['search_params']['show_complete'] = true;
  171. }
  172. if (!empty($context['search_params']['topic']))
  173. {
  174. $context['search_params']['topic'] = (int) $context['search_params']['topic'];
  175. $context['search_topic'] = array(
  176. 'id' => $context['search_params']['topic'],
  177. 'href' => $scripturl . '?topic=' . $context['search_params']['topic'] . '.0',
  178. );
  179. $request = $smcFunc['db_query']('', '
  180. SELECT ms.subject
  181. FROM {db_prefix}topics AS t
  182. INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board)
  183. INNER JOIN {db_prefix}messages AS ms ON (ms.id_msg = t.id_first_msg)
  184. WHERE t.id_topic = {int:search_topic_id}
  185. AND {query_see_board}' . ($modSettings['postmod_active'] ? '
  186. AND t.approved = {int:is_approved_true}' : '') . '
  187. LIMIT 1',
  188. array(
  189. 'is_approved_true' => 1,
  190. 'search_topic_id' => $context['search_params']['topic'],
  191. )
  192. );
  193. if ($smcFunc['db_num_rows']($request) == 0)
  194. fatal_lang_error('topic_gone', false);
  195. list ($context['search_topic']['subject']) = $smcFunc['db_fetch_row']($request);
  196. $smcFunc['db_free_result']($request);
  197. $context['search_topic']['link'] = '<a href="' . $context['search_topic']['href'] . '">' . $context['search_topic']['subject'] . '</a>';
  198. }
  199. // Simple or not?
  200. $context['simple_search'] = isset($context['search_params']['advanced']) ? empty($context['search_params']['advanced']) : !empty($modSettings['simpleSearch']) && !isset($_REQUEST['advanced']);
  201. $context['page_title'] = $txt['set_parameters'];
  202. call_integration_hook('integrate_search');
  203. }
  204. /**
  205. * Gather the results and show them.
  206. * What it does:
  207. * - checks user input and searches the messages table for messages matching the query.
  208. * - requires the search_posts permission.
  209. * - uses the results sub template of the Search template.
  210. * - uses the Search language file.
  211. * - stores the results into the search cache.
  212. * - show the results of the search query.
  213. */
  214. function PlushSearch2()
  215. {
  216. global $scripturl, $modSettings, $sourcedir, $txt, $db_connection;
  217. global $user_info, $context, $options, $messages_request, $boards_can;
  218. global $excludedWords, $participants, $smcFunc;
  219. // if comming from the quick search box, and we want to search on members, well we need to do that ;)
  220. if (isset($_REQUEST['search_selection']) && $_REQUEST['search_selection'] === 'members')
  221. redirectexit($scripturl . '?action=mlist;sa=search;fields=name,email;search=' . urlencode($_REQUEST['search']));
  222. if (!empty($context['load_average']) && !empty($modSettings['loadavg_search']) && $context['load_average'] >= $modSettings['loadavg_search'])
  223. fatal_lang_error('loadavg_search_disabled', false);
  224. // No, no, no... this is a bit hard on the server, so don't you go prefetching it!
  225. if (isset($_SERVER['HTTP_X_MOZ']) && $_SERVER['HTTP_X_MOZ'] == 'prefetch')
  226. {
  227. ob_end_clean();
  228. header('HTTP/1.1 403 Forbidden');
  229. die;
  230. }
  231. $weight_factors = array(
  232. 'frequency' => array(
  233. 'search' => 'COUNT(*) / (MAX(t.num_replies) + 1)',
  234. 'results' => '(t.num_replies + 1)',
  235. ),
  236. 'age' => array(
  237. 'search' => 'CASE WHEN MAX(m.id_msg) < {int:min_msg} THEN 0 ELSE (MAX(m.id_msg) - {int:min_msg}) / {int:recent_message} END',
  238. 'results' => 'CASE WHEN t.id_first_msg < {int:min_msg} THEN 0 ELSE (t.id_first_msg - {int:min_msg}) / {int:recent_message} END',
  239. ),
  240. 'length' => array(
  241. 'search' => 'CASE WHEN MAX(t.num_replies) < {int:huge_topic_posts} THEN MAX(t.num_replies) / {int:huge_topic_posts} ELSE 1 END',
  242. 'results' => 'CASE WHEN t.num_replies < {int:huge_topic_posts} THEN t.num_replies / {int:huge_topic_posts} ELSE 1 END',
  243. ),
  244. 'subject' => array(
  245. 'search' => 0,
  246. 'results' => 0,
  247. ),
  248. 'first_message' => array(
  249. 'search' => 'CASE WHEN MIN(m.id_msg) = MAX(t.id_first_msg) THEN 1 ELSE 0 END',
  250. ),
  251. 'sticky' => array(
  252. 'search' => 'MAX(t.is_sticky)',
  253. 'results' => 't.is_sticky',
  254. ),
  255. );
  256. call_integration_hook('integrate_search_weights', array(&$weight_factors));
  257. $weight = array();
  258. $weight_total = 0;
  259. foreach ($weight_factors as $weight_factor => $value)
  260. {
  261. $weight[$weight_factor] = empty($modSettings['search_weight_' . $weight_factor]) ? 0 : (int) $modSettings['search_weight_' . $weight_factor];
  262. $weight_total += $weight[$weight_factor];
  263. }
  264. // Zero weight. Weightless :P.
  265. if (empty($weight_total))
  266. fatal_lang_error('search_invalid_weights');
  267. // These vars don't require an interface, they're just here for tweaking.
  268. $recentPercentage = 0.30;
  269. $humungousTopicPosts = 200;
  270. $maxMembersToSearch = 500;
  271. $maxMessageResults = empty($modSettings['search_max_results']) ? 0 : $modSettings['search_max_results'] * 5;
  272. // Start with no errors.
  273. $context['search_errors'] = array();
  274. // Number of pages hard maximum - normally not set at all.
  275. $modSettings['search_max_results'] = empty($modSettings['search_max_results']) ? 200 * $modSettings['search_results_per_page'] : (int) $modSettings['search_max_results'];
  276. // Maximum length of the string.
  277. $context['search_string_limit'] = 100;
  278. loadLanguage('Search');
  279. if (!isset($_REQUEST['xml']))
  280. loadTemplate('Search');
  281. //If we're doing XML we need to use the results template regardless really.
  282. else
  283. $context['sub_template'] = 'results';
  284. // Are you allowed?
  285. isAllowedTo('search_posts');
  286. require_once($sourcedir . '/Display.php');
  287. require_once($sourcedir . '/Subs-Package.php');
  288. // Search has a special database set.
  289. db_extend('search');
  290. // Load up the search API we are going to use.
  291. $searchAPI = findSearchAPI();
  292. // $search_params will carry all settings that differ from the default search parameters.
  293. // That way, the URLs involved in a search page will be kept as short as possible.
  294. $search_params = array();
  295. if (isset($_REQUEST['params']))
  296. {
  297. // Due to IE's 2083 character limit, we have to compress long search strings
  298. $temp_params = base64_decode(str_replace(array('-', '_', '.'), array('+', '/', '='), $_REQUEST['params']));
  299. // Test for gzuncompress failing
  300. $temp_params2 = @gzuncompress($temp_params);
  301. $temp_params = explode('|"|', (!empty($temp_params2) ? $temp_params2 : $temp_params));
  302. foreach ($temp_params as $i => $data)
  303. {
  304. @list($k, $v) = explode('|\'|', $data);
  305. $search_params[$k] = $v;
  306. }
  307. if (isset($search_params['brd']))
  308. $search_params['brd'] = empty($search_params['brd']) ? array() : explode(',', $search_params['brd']);
  309. }
  310. // Store whether simple search was used (needed if the user wants to do another query).
  311. if (!isset($search_params['advanced']))
  312. $search_params['advanced'] = empty($_REQUEST['advanced']) ? 0 : 1;
  313. // 1 => 'allwords' (default, don't set as param) / 2 => 'anywords'.
  314. if (!empty($search_params['searchtype']) || (!empty($_REQUEST['searchtype']) && $_REQUEST['searchtype'] == 2))
  315. $search_params['searchtype'] = 2;
  316. // Minimum age of messages. Default to zero (don't set param in that case).
  317. if (!empty($search_params['minage']) || (!empty($_REQUEST['minage']) && $_REQUEST['minage'] > 0))
  318. $search_params['minage'] = !empty($search_params['minage']) ? (int) $search_params['minage'] : (int) $_REQUEST['minage'];
  319. // Maximum age of messages. Default to infinite (9999 days: param not set).
  320. if (!empty($search_params['maxage']) || (!empty($_REQUEST['maxage']) && $_REQUEST['maxage'] < 9999))
  321. $search_params['maxage'] = !empty($search_params['maxage']) ? (int) $search_params['maxage'] : (int) $_REQUEST['maxage'];
  322. // Searching a specific topic?
  323. if (!empty($_REQUEST['topic']) || (!empty($_REQUEST['search_selection']) && $_REQUEST['search_selection'] == 'topic'))
  324. {
  325. $search_params['topic'] = empty($_REQUEST['search_selection']) ? (int) $_REQUEST['topic'] : (isset($_REQUEST['sd_topic']) ? (int) $_REQUEST['sd_topic'] : '');
  326. $search_params['show_complete'] = true;
  327. }
  328. elseif (!empty($search_params['topic']))
  329. $search_params['topic'] = (int) $search_params['topic'];
  330. if (!empty($search_params['minage']) || !empty($search_params['maxage']))
  331. {
  332. $request = $smcFunc['db_query']('', '
  333. SELECT ' . (empty($search_params['maxage']) ? '0, ' : 'IFNULL(MIN(id_msg), -1), ') . (empty($search_params['minage']) ? '0' : 'IFNULL(MAX(id_msg), -1)') . '
  334. FROM {db_prefix}messages
  335. WHERE 1=1' . ($modSettings['postmod_active'] ? '
  336. AND approved = {int:is_approved_true}' : '') . (empty($search_params['minage']) ? '' : '
  337. AND poster_time <= {int:timestamp_minimum_age}') . (empty($search_params['maxage']) ? '' : '
  338. AND poster_time >= {int:timestamp_maximum_age}'),
  339. array(
  340. 'timestamp_minimum_age' => empty($search_params['minage']) ? 0 : time() - 86400 * $search_params['minage'],
  341. 'timestamp_maximum_age' => empty($search_params['maxage']) ? 0 : time() - 86400 * $search_params['maxage'],
  342. 'is_approved_true' => 1,
  343. )
  344. );
  345. list ($minMsgID, $maxMsgID) = $smcFunc['db_fetch_row']($request);
  346. if ($minMsgID < 0 || $maxMsgID < 0)
  347. $context['search_errors']['no_messages_in_time_frame'] = true;
  348. $smcFunc['db_free_result']($request);
  349. }
  350. // Default the user name to a wildcard matching every user (*).
  351. if (!empty($search_params['userspec']) || (!empty($_REQUEST['userspec']) && $_REQUEST['userspec'] != '*'))
  352. $search_params['userspec'] = isset($search_params['userspec']) ? $search_params['userspec'] : $_REQUEST['userspec'];
  353. // If there's no specific user, then don't mention it in the main query.
  354. if (empty($search_params['userspec']))
  355. $userQuery = '';
  356. else
  357. {
  358. $userString = strtr($smcFunc['htmlspecialchars']($search_params['userspec'], ENT_QUOTES), array('&quot;' => '"'));
  359. $userString = strtr($userString, array('%' => '\%', '_' => '\_', '*' => '%', '?' => '_'));
  360. preg_match_all('~"([^"]+)"~', $userString, $matches);
  361. $possible_users = array_merge($matches[1], explode(',', preg_replace('~"[^"]+"~', '', $userString)));
  362. for ($k = 0, $n = count($possible_users); $k < $n; $k++)
  363. {
  364. $possible_users[$k] = trim($possible_users[$k]);
  365. if (strlen($possible_users[$k]) == 0)
  366. unset($possible_users[$k]);
  367. }
  368. // Create a list of database-escaped search names.
  369. $realNameMatches = array();
  370. foreach ($possible_users as $possible_user)
  371. $realNameMatches[] = $smcFunc['db_quote'](
  372. '{string:possible_user}',
  373. array(
  374. 'possible_user' => $possible_user
  375. )
  376. );
  377. // Retrieve a list of possible members.
  378. $request = $smcFunc['db_query']('', '
  379. SELECT id_member
  380. FROM {db_prefix}members
  381. WHERE {raw:match_possible_users}',
  382. array(
  383. 'match_possible_users' => 'real_name LIKE ' . implode(' OR real_name LIKE ', $realNameMatches),
  384. )
  385. );
  386. // Simply do nothing if there're too many members matching the criteria.
  387. if ($smcFunc['db_num_rows']($request) > $maxMembersToSearch)
  388. $userQuery = '';
  389. elseif ($smcFunc['db_num_rows']($request) == 0)
  390. {
  391. $userQuery = $smcFunc['db_quote'](
  392. 'm.id_member = {int:id_member_guest} AND ({raw:match_possible_guest_names})',
  393. array(
  394. 'id_member_guest' => 0,
  395. 'match_possible_guest_names' => 'm.poster_name LIKE ' . implode(' OR m.poster_name LIKE ', $realNameMatches),
  396. )
  397. );
  398. }
  399. else
  400. {
  401. $memberlist = array();
  402. while ($row = $smcFunc['db_fetch_assoc']($request))
  403. $memberlist[] = $row['id_member'];
  404. $userQuery = $smcFunc['db_quote'](
  405. '(m.id_member IN ({array_int:matched_members}) OR (m.id_member = {int:id_member_guest} AND ({raw:match_possible_guest_names})))',
  406. array(
  407. 'matched_members' => $memberlist,
  408. 'id_member_guest' => 0,
  409. 'match_possible_guest_names' => 'm.poster_name LIKE ' . implode(' OR m.poster_name LIKE ', $realNameMatches),
  410. )
  411. );
  412. }
  413. $smcFunc['db_free_result']($request);
  414. }
  415. // If the boards were passed by URL (params=), temporarily put them back in $_REQUEST.
  416. if (!empty($search_params['brd']) && is_array($search_params['brd']))
  417. $_REQUEST['brd'] = $search_params['brd'];
  418. // Ensure that brd is an array.
  419. if ((!empty($_REQUEST['brd']) && !is_array($_REQUEST['brd'])) || (!empty($_REQUEST['search_selection']) && $_REQUEST['search_selection'] == 'board'))
  420. {
  421. if (!empty($_REQUEST['brd']))
  422. $_REQUEST['brd'] = strpos($_REQUEST['brd'], ',') !== false ? explode(',', $_REQUEST['brd']) : array($_REQUEST['brd']);
  423. else
  424. $_REQUEST['brd'] = isset($_REQUEST['sd_brd']) ? array($_REQUEST['sd_brd']) : array();
  425. }
  426. // Make sure all boards are integers.
  427. if (!empty($_REQUEST['brd']))
  428. foreach ($_REQUEST['brd'] as $id => $brd)
  429. $_REQUEST['brd'][$id] = (int) $brd;
  430. // Special case for boards: searching just one topic?
  431. if (!empty($search_params['topic']))
  432. {
  433. $request = $smcFunc['db_query']('', '
  434. SELECT b.id_board
  435. FROM {db_prefix}topics AS t
  436. INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board)
  437. WHERE t.id_topic = {int:search_topic_id}
  438. AND {query_see_board}' . ($modSettings['postmod_active'] ? '
  439. AND t.approved = {int:is_approved_true}' : '') . '
  440. LIMIT 1',
  441. array(
  442. 'search_topic_id' => $search_params['topic'],
  443. 'is_approved_true' => 1,
  444. )
  445. );
  446. if ($smcFunc['db_num_rows']($request) == 0)
  447. fatal_lang_error('topic_gone', false);
  448. $search_params['brd'] = array();
  449. list ($search_params['brd'][0]) = $smcFunc['db_fetch_row']($request);
  450. $smcFunc['db_free_result']($request);
  451. }
  452. // Select all boards you've selected AND are allowed to see.
  453. elseif ($user_info['is_admin'] && (!empty($search_params['advanced']) || !empty($_REQUEST['brd'])))
  454. $search_params['brd'] = empty($_REQUEST['brd']) ? array() : $_REQUEST['brd'];
  455. else
  456. {
  457. $see_board = empty($search_params['advanced']) ? 'query_wanna_see_board' : 'query_see_board';
  458. $request = $smcFunc['db_query']('', '
  459. SELECT b.id_board
  460. FROM {db_prefix}boards AS b
  461. WHERE {raw:boards_allowed_to_see}
  462. AND redirect = {string:empty_string}' . (empty($_REQUEST['brd']) ? (!empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0 ? '
  463. AND b.id_board != {int:recycle_board_id}' : '') : '
  464. AND b.id_board IN ({array_int:selected_search_boards})'),
  465. array(
  466. 'boards_allowed_to_see' => $user_info[$see_board],
  467. 'empty_string' => '',
  468. 'selected_search_boards' => empty($_REQUEST['brd']) ? array() : $_REQUEST['brd'],
  469. 'recycle_board_id' => $modSettings['recycle_board'],
  470. )
  471. );
  472. $search_params['brd'] = array();
  473. while ($row = $smcFunc['db_fetch_assoc']($request))
  474. $search_params['brd'][] = $row['id_board'];
  475. $smcFunc['db_free_result']($request);
  476. // This error should pro'bly only happen for hackers.
  477. if (empty($search_params['brd']))
  478. $context['search_errors']['no_boards_selected'] = true;
  479. }
  480. if (count($search_params['brd']) != 0)
  481. {
  482. foreach ($search_params['brd'] as $k => $v)
  483. $search_params['brd'][$k] = (int) $v;
  484. // If we've selected all boards, this parameter can be left empty.
  485. $request = $smcFunc['db_query']('', '
  486. SELECT COUNT(*)
  487. FROM {db_prefix}boards
  488. WHERE redirect = {string:empty_string}',
  489. array(
  490. 'empty_string' => '',
  491. )
  492. );
  493. list ($num_boards) = $smcFunc['db_fetch_row']($request);
  494. $smcFunc['db_free_result']($request);
  495. if (count($search_params['brd']) == $num_boards)
  496. $boardQuery = '';
  497. elseif (count($search_params['brd']) == $num_boards - 1 && !empty($modSettings['recycle_board']) && !in_array($modSettings['recycle_board'], $search_params['brd']))
  498. $boardQuery = '!= ' . $modSettings['recycle_board'];
  499. else
  500. $boardQuery = 'IN (' . implode(', ', $search_params['brd']) . ')';
  501. }
  502. else
  503. $boardQuery = '';
  504. $search_params['show_complete'] = !empty($search_params['show_complete']) || !empty($_REQUEST['show_complete']);
  505. $search_params['subject_only'] = !empty($search_params['subject_only']) || !empty($_REQUEST['subject_only']);
  506. $context['compact'] = !$search_params['show_complete'];
  507. // Get the sorting parameters right. Default to sort by relevance descending.
  508. $sort_columns = array(
  509. 'relevance',
  510. 'num_replies',
  511. 'id_msg',
  512. );
  513. call_integration_hook('integrate_search_sort_columns', array(&$sort_columns));
  514. if (empty($search_params['sort']) && !empty($_REQUEST['sort']))
  515. list ($search_params['sort'], $search_params['sort_dir']) = array_pad(explode('|', $_REQUEST['sort']), 2, '');
  516. $search_params['sort'] = !empty($search_params['sort']) && in_array($search_params['sort'], $sort_columns) ? $search_params['sort'] : 'relevance';
  517. if (!empty($search_params['topic']) && $search_params['sort'] === 'num_replies')
  518. $search_params['sort'] = 'id_msg';
  519. // Sorting direction: descending unless stated otherwise.
  520. $search_params['sort_dir'] = !empty($search_params['sort_dir']) && $search_params['sort_dir'] == 'asc' ? 'asc' : 'desc';
  521. // Determine some values needed to calculate the relevance.
  522. $minMsg = (int) ((1 - $recentPercentage) * $modSettings['maxMsgID']);
  523. $recentMsg = $modSettings['maxMsgID'] - $minMsg;
  524. // *** Parse the search query
  525. call_integration_hook('integrate_search_params', array(&$search_params));
  526. /*
  527. * Unfortunately, searching for words like this is going to be slow, so we're blacklisting them.
  528. *
  529. * @todo Setting to add more here?
  530. * @todo Maybe only blacklist if they are the only word, or "any" is used?
  531. */
  532. $blacklisted_words = array('img', 'url', 'quote', 'www', 'http', 'the', 'is', 'it', 'are', 'if');
  533. call_integration_hook('integrate_search_blacklisted_words', array(&$blacklisted_words));
  534. // What are we searching for?
  535. if (empty($search_params['search']))
  536. {
  537. if (isset($_GET['search']))
  538. $search_params['search'] = un_htmlspecialchars($_GET['search']);
  539. elseif (isset($_POST['search']))
  540. $search_params['search'] = $_POST['search'];
  541. else
  542. $search_params['search'] = '';
  543. }
  544. // Nothing??
  545. if (!isset($search_params['search']) || $search_params['search'] == '')
  546. $context['search_errors']['invalid_search_string'] = true;
  547. // Too long?
  548. elseif ($smcFunc['strlen']($search_params['search']) > $context['search_string_limit'])
  549. {
  550. $context['search_errors']['string_too_long'] = true;
  551. }
  552. // Change non-word characters into spaces.
  553. $stripped_query = preg_replace('~(?:[\x0B\0' . ($context['utf8'] ? '\x{A0}' : '\xA0') . '\t\r\s\n(){}\\[\\]<>!@$%^*.,:+=`\~\?/\\\\]+|&(?:amp|lt|gt|quot);)+~' . ($context['utf8'] ? 'u' : ''), ' ', $search_params['search']);
  554. // Make the query lower case. It's gonna be case insensitive anyway.
  555. $stripped_query = un_htmlspecialchars($smcFunc['strtolower']($stripped_query));
  556. // This (hidden) setting will do fulltext searching in the most basic way.
  557. if (!empty($modSettings['search_simple_fulltext']))
  558. $stripped_query = strtr($stripped_query, array('"' => ''));
  559. $no_regexp = preg_match('~&#(?:\d{1,7}|x[0-9a-fA-F]{1,6});~', $stripped_query) === 1;
  560. // Extract phrase parts first (e.g. some words "this is a phrase" some more words.)
  561. preg_match_all('/(?:^|\s)([-]?)"([^"]+)"(?:$|\s)/', $stripped_query, $matches, PREG_PATTERN_ORDER);
  562. $phraseArray = $matches[2];
  563. // Remove the phrase parts and extract the words.
  564. $wordArray = preg_replace('~(?:^|\s)(?:[-]?)"(?:[^"]+)"(?:$|\s)~' . ($context['utf8'] ? 'u' : ''), ' ', $search_params['search']);
  565. $wordArray = explode(' ', $smcFunc['htmlspecialchars'](un_htmlspecialchars($wordArray), ENT_QUOTES));
  566. // A minus sign in front of a word excludes the word.... so...
  567. $excludedWords = array();
  568. $excludedIndexWords = array();
  569. $excludedSubjectWords = array();
  570. $excludedPhrases = array();
  571. // .. first, we check for things like -"some words", but not "-some words".
  572. foreach ($matches[1] as $index => $word)
  573. {
  574. if ($word === '-')
  575. {
  576. if (($word = trim($phraseArray[$index], '-_\' ')) !== '' && !in_array($word, $blacklisted_words))
  577. $excludedWords[] = $word;
  578. unset($phraseArray[$index]);
  579. }
  580. }
  581. // Now we look for -test, etc.... normaller.
  582. foreach ($wordArray as $index => $word)
  583. {
  584. if (strpos(trim($word), '-') === 0)
  585. {
  586. if (($word = trim($word, '-_\' ')) !== '' && !in_array($word, $blacklisted_words))
  587. $excludedWords[] = $word;
  588. unset($wordArray[$index]);
  589. }
  590. }
  591. // The remaining words and phrases are all included.
  592. $searchArray = array_merge($phraseArray, $wordArray);
  593. // Trim everything and make sure there are no words that are the same.
  594. foreach ($searchArray as $index => $value)
  595. {
  596. // Skip anything practically empty.
  597. if (($searchArray[$index] = trim($value, '-_\' ')) === '')
  598. unset($searchArray[$index]);
  599. // Skip blacklisted words. Make sure to note we skipped them in case we end up with nothing.
  600. elseif (in_array($searchArray[$index], $blacklisted_words))
  601. {
  602. $foundBlackListedWords = true;
  603. unset($searchArray[$index]);
  604. }
  605. // Don't allow very, very short words.
  606. elseif ($smcFunc['strlen']($value) < 2)
  607. {
  608. $context['search_errors']['search_string_small_words'] = true;
  609. unset($searchArray[$index]);
  610. }
  611. else
  612. $searchArray[$index] = $searchArray[$index];
  613. }
  614. $searchArray = array_slice(array_unique($searchArray), 0, 10);
  615. // Create an array of replacements for highlighting.
  616. $context['mark'] = array();
  617. foreach ($searchArray as $word)
  618. $context['mark'][$word] = '<strong class="highlight">' . $word . '</strong>';
  619. // Initialize two arrays storing the words that have to be searched for.
  620. $orParts = array();
  621. $searchWords = array();
  622. // Make sure at least one word is being searched for.
  623. if (empty($searchArray))
  624. $context['search_errors']['invalid_search_string' . (!empty($foundBlackListedWords) ? '_blacklist' : '')] = true;
  625. // All words/sentences must match.
  626. elseif (empty($search_params['searchtype']))
  627. $orParts[0] = $searchArray;
  628. // Any word/sentence must match.
  629. else
  630. foreach ($searchArray as $index => $value)
  631. $orParts[$index] = array($value);
  632. // Don't allow duplicate error messages if one string is too short.
  633. if (isset($context['search_errors']['search_string_small_words'], $context['search_errors']['invalid_search_string']))
  634. unset($context['search_errors']['invalid_search_string']);
  635. // Make sure the excluded words are in all or-branches.
  636. foreach ($orParts as $orIndex => $andParts)
  637. foreach ($excludedWords as $word)
  638. $orParts[$orIndex][] = $word;
  639. // Determine the or-branches and the fulltext search words.
  640. foreach ($orParts as $orIndex => $andParts)
  641. {
  642. $searchWords[$orIndex] = array(
  643. 'indexed_words' => array(),
  644. 'words' => array(),
  645. 'subject_words' => array(),
  646. 'all_words' => array(),
  647. 'complex_words' => array(),
  648. );
  649. // Sort the indexed words (large words -> small words -> excluded words).
  650. if ($searchAPI->supportsMethod('searchSort'))
  651. usort($orParts[$orIndex], 'searchSort');
  652. foreach ($orParts[$orIndex] as $word)
  653. {
  654. $is_excluded = in_array($word, $excludedWords);
  655. $searchWords[$orIndex]['all_words'][] = $word;
  656. $subjectWords = text2words($word);
  657. if (!$is_excluded || count($subjectWords) === 1)
  658. {
  659. $searchWords[$orIndex]['subject_words'] = array_merge($searchWords[$orIndex]['subject_words'], $subjectWords);
  660. if ($is_excluded)
  661. $excludedSubjectWords = array_merge($excludedSubjectWords, $subjectWords);
  662. }
  663. else
  664. $excludedPhrases[] = $word;
  665. // Have we got indexes to prepare?
  666. if ($searchAPI->supportsMethod('prepareIndexes'))
  667. $searchAPI->prepareIndexes($word, $searchWords[$orIndex], $excludedIndexWords, $is_excluded);
  668. }
  669. // Search_force_index requires all AND parts to have at least one fulltext word.
  670. if (!empty($modSettings['search_force_index']) && empty($searchWords[$orIndex]['indexed_words']))
  671. {
  672. $context['search_errors']['query_not_specific_enough'] = true;
  673. break;
  674. }
  675. elseif ($search_params['subject_only'] && empty($searchWords[$orIndex]['subject_words']) && empty($excludedSubjectWords))
  676. {
  677. $context['search_errors']['query_not_specific_enough'] = true;
  678. break;
  679. }
  680. // Make sure we aren't searching for too many indexed words.
  681. else
  682. {
  683. $searchWords[$orIndex]['indexed_words'] = array_slice($searchWords[$orIndex]['indexed_words'], 0, 7);
  684. $searchWords[$orIndex]['subject_words'] = array_slice($searchWords[$orIndex]['subject_words'], 0, 7);
  685. $searchWords[$orIndex]['words'] = array_slice($searchWords[$orIndex]['words'], 0, 4);
  686. }
  687. }
  688. // *** Spell checking
  689. $context['show_spellchecking'] = !empty($modSettings['enableSpellChecking']) && function_exists('pspell_new');
  690. if ($context['show_spellchecking'])
  691. {
  692. // Windows fix.
  693. ob_start();
  694. $old = error_reporting(0);
  695. pspell_new('en');
  696. $pspell_link = pspell_new($txt['lang_dictionary'], $txt['lang_spelling'], '', strtr($txt['lang_character_set'], array('iso-' => 'iso', 'ISO-' => 'iso')), PSPELL_FAST | PSPELL_RUN_TOGETHER);
  697. if (!$pspell_link)
  698. $pspell_link = pspell_new('en', '', '', '', PSPELL_FAST | PSPELL_RUN_TOGETHER);
  699. error_reporting($old);
  700. ob_end_clean();
  701. $did_you_mean = array('search' => array(), 'display' => array());
  702. $found_misspelling = false;
  703. foreach ($searchArray as $word)
  704. {
  705. if (empty($pspell_link))
  706. continue;
  707. // Don't check phrases.
  708. if (preg_match('~^\w+$~', $word) === 0)
  709. {
  710. $did_you_mean['search'][] = '"' . $word . '"';
  711. $did_you_mean['display'][] = '&quot;' . $smcFunc['htmlspecialchars']($word) . '&quot;';
  712. continue;
  713. }
  714. // For some strange reason spell check can crash PHP on decimals.
  715. elseif (preg_match('~\d~', $word) === 1)
  716. {
  717. $did_you_mean['search'][] = $word;
  718. $did_you_mean['display'][] = $smcFunc['htmlspecialchars']($word);
  719. continue;
  720. }
  721. elseif (pspell_check($pspell_link, $word))
  722. {
  723. $did_you_mean['search'][] = $word;
  724. $did_you_mean['display'][] = $smcFunc['htmlspecialchars']($word);
  725. continue;
  726. }
  727. $suggestions = pspell_suggest($pspell_link, $word);
  728. foreach ($suggestions as $i => $s)
  729. {
  730. // Search is case insensitive.
  731. if ($smcFunc['strtolower']($s) == $smcFunc['strtolower']($word))
  732. unset($suggestions[$i]);
  733. // Plus, don't suggest something the user thinks is rude!
  734. elseif ($suggestions[$i] != censorText($s))
  735. unset($suggestions[$i]);
  736. }
  737. // Anything found? If so, correct it!
  738. if (!empty($suggestions))
  739. {
  740. $suggestions = array_values($suggestions);
  741. $did_you_mean['search'][] = $suggestions[0];
  742. $did_you_mean['display'][] = '<em><strong>' . $smcFunc['htmlspecialchars']($suggestions[0]) . '</strong></em>';
  743. $found_misspelling = true;
  744. }
  745. else
  746. {
  747. $did_you_mean['search'][] = $word;
  748. $did_you_mean['display'][] = $smcFunc['htmlspecialchars']($word);
  749. }
  750. }
  751. if ($found_misspelling)
  752. {
  753. // Don't spell check excluded words, but add them still...
  754. $temp_excluded = array('search' => array(), 'display' => array());
  755. foreach ($excludedWords as $word)
  756. {
  757. if (preg_match('~^\w+$~', $word) == 0)
  758. {
  759. $temp_excluded['search'][] = '-"' . $word . '"';
  760. $temp_excluded['display'][] = '-&quot;' . $smcFunc['htmlspecialchars']($word) . '&quot;';
  761. }
  762. else
  763. {
  764. $temp_excluded['search'][] = '-' . $word;
  765. $temp_excluded['display'][] = '-' . $smcFunc['htmlspecialchars']($word);
  766. }
  767. }
  768. $did_you_mean['search'] = array_merge($did_you_mean['search'], $temp_excluded['search']);
  769. $did_you_mean['display'] = array_merge($did_you_mean['display'], $temp_excluded['display']);
  770. $temp_params = $search_params;
  771. $temp_params['search'] = implode(' ', $did_you_mean['search']);
  772. if (isset($temp_params['brd']))
  773. $temp_params['brd'] = implode(',', $temp_params['brd']);
  774. $context['params'] = array();
  775. foreach ($temp_params as $k => $v)
  776. $context['did_you_mean_params'][] = $k . '|\'|' . $v;
  777. $context['did_you_mean_params'] = base64_encode(implode('|"|', $context['did_you_mean_params']));
  778. $context['did_you_mean'] = implode(' ', $did_you_mean['display']);
  779. }
  780. }
  781. // Let the user adjust the search query, should they wish?
  782. $context['search_params'] = $search_params;
  783. if (isset($context['search_params']['search']))
  784. $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']);
  785. if (isset($context['search_params']['userspec']))
  786. $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']);
  787. // Do we have captcha enabled?
  788. if ($user_info['is_guest'] && !empty($modSettings['search_enable_captcha']) && empty($_SESSION['ss_vv_passed']) && (empty($_SESSION['last_ss']) || $_SESSION['last_ss'] != $search_params['search']))
  789. {
  790. // If we come from another search box tone down the error...
  791. if (!isset($_REQUEST['search_vv']))
  792. $context['search_errors']['need_verification_code'] = true;
  793. else
  794. {
  795. require_once($sourcedir . '/Subs-Editor.php');
  796. $verificationOptions = array(
  797. 'id' => 'search',
  798. );
  799. $context['require_verification'] = create_control_verification($verificationOptions, true);
  800. if (is_array($context['require_verification']))
  801. {
  802. foreach ($context['require_verification'] as $error)
  803. $context['search_errors'][$error] = true;
  804. }
  805. // Don't keep asking for it - they've proven themselves worthy.
  806. else
  807. $_SESSION['ss_vv_passed'] = true;
  808. }
  809. }
  810. // *** Encode all search params
  811. // All search params have been checked, let's compile them to a single string... made less simple by PHP 4.3.9 and below.
  812. $temp_params = $search_params;
  813. if (isset($temp_params['brd']))
  814. $temp_params['brd'] = implode(',', $temp_params['brd']);
  815. $context['params'] = array();
  816. foreach ($temp_params as $k => $v)
  817. $context['params'][] = $k . '|\'|' . $v;
  818. if (!empty($context['params']))
  819. {
  820. // Due to old IE's 2083 character limit, we have to compress long search strings
  821. $params = @gzcompress(implode('|"|', $context['params']));
  822. // Gzcompress failed, use try non-gz
  823. if (empty($params))
  824. $params = implode('|"|', $context['params']);
  825. // Base64 encode, then replace +/= with uri safe ones that can be reverted
  826. $context['params'] = str_replace(array('+', '/', '='), array('-', '_', '.'), base64_encode($params));
  827. }
  828. // ... and add the links to the link tree.
  829. $context['linktree'][] = array(
  830. 'url' => $scripturl . '?action=search;params=' . $context['params'],
  831. 'name' => $txt['search']
  832. );
  833. $context['linktree'][] = array(
  834. 'url' => $scripturl . '?action=search2;params=' . $context['params'],
  835. 'name' => $txt['search_results']
  836. );
  837. // *** A last error check
  838. call_integration_hook('integrate_search_errors');
  839. // One or more search errors? Go back to the first search screen.
  840. if (!empty($context['search_errors']))
  841. {
  842. $_REQUEST['params'] = $context['params'];
  843. return PlushSearch1();
  844. }
  845. // Spam me not, Spam-a-lot?
  846. if (empty($_SESSION['last_ss']) || $_SESSION['last_ss'] != $search_params['search'])
  847. spamProtection('search');
  848. // Store the last search string to allow pages of results to be browsed.
  849. $_SESSION['last_ss'] = $search_params['search'];
  850. // *** Reserve an ID for caching the search results.
  851. $query_params = array_merge($search_params, array(
  852. 'min_msg_id' => isset($minMsgID) ? (int) $minMsgID : 0,
  853. 'max_msg_id' => isset($maxMsgID) ? (int) $maxMsgID : 0,
  854. 'memberlist' => !empty($memberlist) ? $memberlist : array(),
  855. ));
  856. // Can this search rely on the API given the parameters?
  857. if ($searchAPI->supportsMethod('searchQuery', $query_params))
  858. {
  859. $participants = array();
  860. $searchArray = array();
  861. $num_results = $searchAPI->searchQuery($query_params, $searchWords, $excludedIndexWords, $participants, $searchArray);
  862. }
  863. // Update the cache if the current search term is not yet cached.
  864. else
  865. {
  866. $update_cache = empty($_SESSION['search_cache']) || ($_SESSION['search_cache']['params'] != $context['params']);
  867. if ($update_cache)
  868. {
  869. // Increase the pointer...
  870. $modSettings['search_pointer'] = empty($modSettings['search_pointer']) ? 0 : (int) $modSettings['search_pointer'];
  871. // ...and store it right off.
  872. updateSettings(array('search_pointer' => $modSettings['search_pointer'] >= 255 ? 0 : $modSettings['search_pointer'] + 1));
  873. // As long as you don't change the parameters, the cache result is yours.
  874. $_SESSION['search_cache'] = array(
  875. 'id_search' => $modSettings['search_pointer'],
  876. 'num_results' => -1,
  877. 'params' => $context['params'],
  878. );
  879. // Clear the previous cache of the final results cache.
  880. $smcFunc['db_search_query']('delete_log_search_results', '
  881. DELETE FROM {db_prefix}log_search_results
  882. WHERE id_search = {int:search_id}',
  883. array(
  884. 'search_id' => $_SESSION['search_cache']['id_search'],
  885. )
  886. );
  887. if ($search_params['subject_only'])
  888. {
  889. // We do this to try and avoid duplicate keys on databases not supporting INSERT IGNORE.
  890. $inserts = array();
  891. foreach ($searchWords as $orIndex => $words)
  892. {
  893. $subject_query_params = array();
  894. $subject_query = array(
  895. 'from' => '{db_prefix}topics AS t',
  896. 'inner_join' => array(),
  897. 'left_join' => array(),
  898. 'where' => array(),
  899. );
  900. if ($modSettings['postmod_active'])
  901. $subject_query['where'][] = 't.approved = {int:is_approved}';
  902. $numTables = 0;
  903. $prev_join = 0;
  904. $numSubjectResults = 0;
  905. foreach ($words['subject_words'] as $subjectWord)
  906. {
  907. $numTables++;
  908. if (in_array($subjectWord, $excludedSubjectWords))
  909. {
  910. $subject_query['left_join'][] = '{db_prefix}log_search_subjects AS subj' . $numTables . ' ON (subj' . $numTables . '.word ' . (empty($modSettings['search_match_words']) ? 'LIKE {string:subject_words_' . $numTables . '_wild}' : '= {string:subject_words_' . $numTables . '}') . ' AND subj' . $numTables . '.id_topic = t.id_topic)';
  911. $subject_query['where'][] = '(subj' . $numTables . '.word IS NULL)';
  912. }
  913. else
  914. {
  915. $subject_query['inner_join'][] = '{db_prefix}log_search_subjects AS subj' . $numTables . ' ON (subj' . $numTables . '.id_topic = ' . ($prev_join === 0 ? 't' : 'subj' . $prev_join) . '.id_topic)';
  916. $subject_query['where'][] = 'subj' . $numTables . '.word ' . (empty($modSettings['search_match_words']) ? 'LIKE {string:subject_words_' . $numTables . '_wild}' : '= {string:subject_words_' . $numTables . '}');
  917. $prev_join = $numTables;
  918. }
  919. $subject_query_params['subject_words_' . $numTables] = $subjectWord;
  920. $subject_query_params['subject_words_' . $numTables . '_wild'] = '%' . $subjectWord . '%';
  921. }
  922. if (!empty($userQuery))
  923. {
  924. if ($subject_query['from'] != '{db_prefix}messages AS m')
  925. {
  926. $subject_query['inner_join'][] = '{db_prefix}messages AS m ON (m.id_topic = t.id_topic)';
  927. }
  928. $subject_query['where'][] = $userQuery;
  929. }
  930. if (!empty($search_params['topic']))
  931. $subject_query['where'][] = 't.id_topic = ' . $search_params['topic'];
  932. if (!empty($minMsgID))
  933. $subject_query['where'][] = 't.id_first_msg >= ' . $minMsgID;
  934. if (!empty($maxMsgID))
  935. $subject_query['where'][] = 't.id_last_msg <= ' . $maxMsgID;
  936. if (!empty($boardQuery))
  937. $subject_query['where'][] = 't.id_board ' . $boardQuery;
  938. if (!empty($excludedPhrases))
  939. {
  940. if ($subject_query['from'] != '{db_prefix}messages AS m')
  941. {
  942. $subject_query['inner_join'][] = '{db_prefix}messages AS m ON (m.id_msg = t.id_first_msg)';
  943. }
  944. $count = 0;
  945. foreach ($excludedPhrases as $phrase)
  946. {
  947. $subject_query['where'][] = 'm.subject NOT ' . (empty($modSettings['search_match_words']) || $no_regexp ? ' LIKE ' : ' RLIKE ') . '{string:excluded_phrases_' . $count . '}';
  948. $subject_query_params['excluded_phrases_' . $count++] = empty($modSettings['search_match_words']) || $no_regexp ? '%' . strtr($phrase, array('_' => '\\_', '%' => '\\%')) . '%' : '[[:<:]]' . addcslashes(preg_replace(array('/([\[\]$.+*?|{}()])/'), array('[$1]'), $phrase), '\\\'') . '[[:>:]]';
  949. }
  950. }
  951. call_integration_hook('integrate_subject_only_search_query', array(&$subject_query, &$subject_query_params));
  952. $relevance = '1000 * (';
  953. foreach ($weight_factors as $type => $value)
  954. {
  955. $relevance .= $weight[$type];
  956. if (!empty($value['search']))
  957. $relevance .= ' * ' . $value['search'];
  958. $relevance .= ' + ';
  959. }
  960. $relevance = substr($relevance, 0, -3) . ') / ' . $weight_total . ' AS relevance';
  961. $ignoreRequest = $smcFunc['db_search_query']('insert_log_search_results_subject',
  962. ($smcFunc['db_support_ignore'] ? '
  963. INSERT IGNORE INTO {db_prefix}log_search_results
  964. (id_search, id_topic, relevance, id_msg, num_matches)' : '') . '
  965. SELECT
  966. {int:id_search},
  967. t.id_topic,
  968. ' . $relevance. ',
  969. ' . (empty($userQuery) ? 't.id_first_msg' : 'm.id_msg') . ',
  970. 1
  971. FROM ' . $subject_query['from'] . (empty($subject_query['inner_join']) ? '' : '
  972. INNER JOIN ' . implode('
  973. INNER JOIN ', $subject_query['inner_join'])) . (empty($subject_query['left_join']) ? '' : '
  974. LEFT JOIN ' . implode('
  975. LEFT JOIN ', $subject_query['left_join'])) . '
  976. WHERE ' . implode('
  977. AND ', $subject_query['where']) . (empty($modSettings['search_max_results']) ? '' : '
  978. LIMIT ' . ($modSettings['search_max_results'] - $numSubjectResults)),
  979. array_merge($subject_query_params, array(
  980. 'id_search' => $_SESSION['search_cache']['id_search'],
  981. 'min_msg' => $minMsg,
  982. 'recent_message' => $recentMsg,
  983. 'huge_topic_posts' => $humungousTopicPosts,
  984. 'is_approved' => 1,
  985. ))
  986. );
  987. // If the database doesn't support IGNORE to make this fast we need to do some tracking.
  988. if (!$smcFunc['db_support_ignore'])
  989. {
  990. while ($row = $smcFunc['db_fetch_row']($ignoreRequest))
  991. {
  992. // No duplicates!
  993. if (isset($inserts[$row[1]]))
  994. continue;
  995. foreach ($row as $key => $value)
  996. $inserts[$row[1]][] = (int) $row[$key];
  997. }
  998. $smcFunc['db_free_result']($ignoreRequest);
  999. $numSubjectResults = count($inserts);
  1000. }
  1001. else
  1002. $numSubjectResults += $smcFunc['db_affected_rows']();
  1003. if (!empty($modSettings['search_max_results']) && $numSubjectResults >= $modSettings['search_max_results'])
  1004. break;
  1005. }
  1006. // If there's data to be inserted for non-IGNORE databases do it here!
  1007. if (!empty($inserts))
  1008. {
  1009. $smcFunc['db_insert']('',
  1010. '{db_prefix}log_search_results',
  1011. array('id_search' => 'int', 'id_topic' => 'int', 'relevance' => 'int', 'id_msg' => 'int', 'num_matches' => 'int'),
  1012. $inserts,
  1013. array('id_search', 'id_topic')
  1014. );
  1015. }
  1016. $_SESSION['search_cache']['num_results'] = $numSubjectResults;
  1017. }
  1018. else
  1019. {
  1020. $main_query = array(
  1021. 'select' => array(
  1022. 'id_search' => $_SESSION['search_cache']['id_search'],
  1023. 'relevance' => '0',
  1024. ),
  1025. 'weights' => array(),
  1026. 'from' => '{db_prefix}topics AS t',
  1027. 'inner_join' => array(
  1028. '{db_prefix}messages AS m ON (m.id_topic = t.id_topic)'
  1029. ),
  1030. 'left_join' => array(),
  1031. 'where' => array(),
  1032. 'group_by' => array(),
  1033. 'parameters' => array(
  1034. 'min_msg' => $minMsg,
  1035. 'recent_message' => $recentMsg,
  1036. 'huge_topic_posts' => $humungousTopicPosts,
  1037. 'is_approved' => 1,
  1038. ),
  1039. );
  1040. if (empty($search_params['topic']) && empty($search_params['show_complete']))
  1041. {
  1042. $main_query['select']['id_topic'] = 't.id_topic';
  1043. $main_query['select']['id_msg'] = 'MAX(m.id_msg) AS id_msg';
  1044. $main_query['select']['num_matches'] = 'COUNT(*) AS num_matches';
  1045. $main_query['weights'] = $weight_factors;
  1046. $main_query['group_by'][] = 't.id_topic';
  1047. }
  1048. else
  1049. {
  1050. // This is outrageous!
  1051. $main_query['select']['id_topic'] = 'm.id_msg AS id_topic';
  1052. $main_query['select']['id_msg'] = 'm.id_msg';
  1053. $main_query['select']['num_matches'] = '1 AS num_matches';
  1054. $main_query['weights'] = array(
  1055. 'age' => '((m.id_msg - t.id_first_msg) / CASE WHEN t.id_last_msg = t.id_first_msg THEN 1 ELSE t.id_last_msg - t.id_first_msg END)',
  1056. 'first_message' => 'CASE WHEN m.id_msg = t.id_first_msg THEN 1 ELSE 0 END',
  1057. );
  1058. if (!empty($search_params['topic']))
  1059. {
  1060. $main_query['where'][] = 't.id_topic = {int:topic}';
  1061. $main_query['parameters']['topic'] = $search_params['topic'];
  1062. }
  1063. if (!empty($search_params['show_complete']))
  1064. $main_query['group_by'][] = 'm.id_msg, t.id_first_msg, t.id_last_msg';
  1065. }
  1066. // *** Get the subject results.
  1067. $numSubjectResults = 0;
  1068. if (empty($search_params['topic']))
  1069. {
  1070. $inserts = array();
  1071. // Create a temporary table to store some preliminary results in.
  1072. $smcFunc['db_search_query']('drop_tmp_log_search_topics', '
  1073. DROP TABLE IF EXISTS {db_prefix}tmp_log_search_topics',
  1074. array(
  1075. 'db_error_skip' => true,
  1076. )
  1077. );
  1078. $createTemporary = $smcFunc['db_search_query']('create_tmp_log_search_topics', '
  1079. CREATE TEMPORARY TABLE {db_prefix}tmp_log_search_topics (
  1080. id_topic mediumint(8) unsigned NOT NULL default {string:string_zero},
  1081. PRIMARY KEY (id_topic)
  1082. ) TYPE=HEAP',
  1083. array(
  1084. 'string_zero' => '0',
  1085. 'db_error_skip' => true,
  1086. )
  1087. ) !== false;
  1088. // Clean up some previous cache.
  1089. if (!$createTemporary)
  1090. $smcFunc['db_search_query']('delete_log_search_topics', '
  1091. DELETE FROM {db_prefix}log_search_topics
  1092. WHERE id_search = {int:search_id}',
  1093. array(
  1094. 'search_id' => $_SESSION['search_cache']['id_search'],
  1095. )
  1096. );
  1097. foreach ($searchWords as $orIndex => $words)
  1098. {
  1099. $subject_query = array(
  1100. 'from' => '{db_prefix}topics AS t',
  1101. 'inner_join' => array(),
  1102. 'left_join' => array(),
  1103. 'where' => array(),
  1104. 'params' => array(),
  1105. );
  1106. $numTables = 0;
  1107. $prev_join = 0;
  1108. $count = 0;
  1109. $excluded = false;
  1110. foreach ($words['subject_words'] as $subjectWord)
  1111. {
  1112. $numTables++;
  1113. if (in_array($subjectWord, $excludedSubjectWords))
  1114. {
  1115. if (($subject_query['from'] != '{db_prefix}messages AS m') && !$excluded)
  1116. {
  1117. $subject_query['inner_join'][] = '{db_prefix}messages AS m ON (m.id_msg = t.id_first_msg)';
  1118. $excluded = true;
  1119. }
  1120. $subject_query['left_join'][] = '{db_prefix}log_search_subjects AS subj' . $numTables . ' ON (subj' . $numTables . '.word ' . (empty($modSettings['search_match_words']) ? 'LIKE {string:subject_not_' . $count . '}' : '= {string:subject_not_' . $count . '}') . ' AND subj' . $numTables . '.id_topic = t.id_topic)';
  1121. $subject_query['params']['subject_not_' . $count] = empty($modSettings['search_match_words']) ? '%' . $subjectWord . '%' : $subjectWord;
  1122. $subject_query['where'][] = '(subj' . $numTables . '.word IS NULL)';
  1123. $subject_query['where'][] = 'm.body NOT ' . (empty($modSettings['search_match_words']) || $no_regexp ? ' LIKE ' : ' RLIKE ') . '{string:body_not_' . $count . '}';
  1124. $subject_query['params']['body_not_' . $count++] = empty($modSettings['search_match_words']) || $no_regexp ? '%' . strtr($subjectWord, array('_' => '\\_', '%' => '\\%')) . '%' : '[[:<:]]' . addcslashes(preg_replace(array('/([\[\]$.+*?|{}()])/'), array('[$1]'), $subjectWord), '\\\'') . '[[:>:]]';
  1125. }
  1126. else
  1127. {
  1128. $subject_query['inner_join'][] = '{db_prefix}log_search_subjects AS subj' . $numTables . ' ON (subj' . $numTables . '.id_topic = ' . ($prev_join === 0 ? 't' : 'subj' . $prev_join) . '.id_topic)';
  1129. $subject_query['where'][] = 'subj' . $numTables . '.word LIKE {string:subject_like_' . $count . '}';
  1130. $subject_query['params']['subject_like_' . $count++] = empty($modSettings['search_match_words']) ? '%' . $subjectWord . '%' : $subjectWord;
  1131. $prev_join = $numTables;
  1132. }
  1133. }
  1134. if (!empty($userQuery))
  1135. {
  1136. if ($subject_query['from'] != '{db_prefix}messages AS m')
  1137. {
  1138. $subject_query['inner_join'][] = '{db_prefix}messages AS m ON (m.id_msg = t.id_first_msg)';
  1139. }
  1140. $subject_query['where'][] = '{raw:user_query}';
  1141. $subject_query['params']['user_query'] = $userQuery;
  1142. }
  1143. if (!empty($search_params['topic']))
  1144. {
  1145. $subject_query['where'][] = 't.id_topic = {int:topic}';
  1146. $subject_query['params']['topic'] = $search_params['topic'];
  1147. }
  1148. if (!empty($minMsgID))
  1149. {
  1150. $subject_query['where'][] = 't.id_first_msg >= {int:min_msg_id}';
  1151. $subject_query['params']['min_msg_id'] = $minMsgID;
  1152. }
  1153. if (!empty($maxMsgID))
  1154. {
  1155. $subject_query['where'][] = 't.id_last_msg <= {int:max_msg_id}';
  1156. $subject_query['params']['max_msg_id'] = $maxMsgID;
  1157. }
  1158. if (!empty($boardQuery))
  1159. {
  1160. $subject_query['where'][] = 't.id_board {raw:board_query}';
  1161. $subject_query['params']['board_query'] = $boardQuery;
  1162. }
  1163. if (!empty($excludedPhrases))
  1164. {
  1165. if ($subject_query['from'] != '{db_prefix}messages AS m')
  1166. {
  1167. $subject_query['inner_join'][] = '{db_prefix}messages AS m ON (m.id_msg = t.id_first_msg)';
  1168. }
  1169. $count = 0;
  1170. foreach ($excludedPhrases as $phrase)
  1171. {
  1172. $subject_query['where'][] = 'm.subject NOT ' . (empty($modSettings['search_match_words']) || $no_regexp ? ' LIKE ' : ' RLIKE ') . '{string:exclude_phrase_' . $count . '}';
  1173. $subject_query['where'][] = 'm.body NOT ' . (empty($modSettings['search_match_words']) || $no_regexp ? ' LIKE ' : ' RLIKE ') . '{string:exclude_phrase_' . $count . '}';
  1174. $subject_query['params']['exclude_phrase_' . $count++] = empty($modSettings['search_match_words']) || $no_regexp ? '%' . strtr($phrase, array('_' => '\\_', '%' => '\\%')) . '%' : '[[:<:]]' . addcslashes(preg_replace(array('/([\[\]$.+*?|{}()])/'), array('[$1]'), $phrase), '\\\'') . '[[:>:]]';
  1175. }
  1176. }
  1177. call_integration_hook('integrate_subject_search_query', array(&$subject_query));
  1178. // Nothing to search for?
  1179. if (empty($subject_query['where']))
  1180. continue;
  1181. $ignoreRequest = $smcFunc['db_search_query']('insert_log_search_topics', ($smcFunc['db_support_ignore'] ? ( '
  1182. INSERT IGNORE INTO {db_prefix}' . ($createTemporary ? 'tmp_' : '') . 'log_search_topics
  1183. (' . ($createTemporary ? '' : 'id_search, ') . 'id_topic)') : '') . '
  1184. SELECT ' . ($createTemporary ? '' : $_SESSION['search_cache']['id_search'] . ', ') . 't.id_topic
  1185. FROM ' . $subject_query['from'] . (empty($subject_query['inner_join']) ? '' : '
  1186. INNER JOIN ' . implode('
  1187. INNER JOIN ', $subject_query['inner_join'])) . (empty($subject_query['left_join']) ? '' : '
  1188. LEFT JOIN ' . implode('
  1189. LEFT JOIN ', $subject_query['left_join'])) . '
  1190. WHERE ' . implode('
  1191. AND ', $subject_query['where']) . (empty($modSettings['search_max_results']) ? '' : '
  1192. LIMIT ' . ($modSettings['search_max_results'] - $numSubjectResults)),
  1193. $subject_query['params']
  1194. );
  1195. // Don't do INSERT IGNORE? Manually fix this up!
  1196. if (!$smcFunc['db_support_ignore'])
  1197. {
  1198. while ($row = $smcFunc['db_fetch_row']($ignoreRequest))
  1199. {
  1200. $ind = $createTemporary ? 0 : 1;
  1201. // No duplicates!
  1202. if (isset($inserts[$row[$ind]]))
  1203. continue;
  1204. $inserts[$row[$ind]] = $row;
  1205. }
  1206. $smcFunc['db_free_result']($ignoreRequest);
  1207. $numSubjectResults = count($inserts);
  1208. }
  1209. else
  1210. $numSubjectResults += $smcFunc['db_affected_rows']();
  1211. if (!empty($modSettings['search_max_results']) && $numSubjectResults >= $modSettings['search_max_results'])
  1212. break;
  1213. }
  1214. // Got some non-MySQL data to plonk in?
  1215. if (!empty($inserts))
  1216. {
  1217. $smcFunc['db_insert']('',
  1218. ('{db_prefix}' . ($createTemporary ? 'tmp_' : '') . 'log_search_topics'),
  1219. $createTemporary ? array('id_topic' => 'int') : array('id_search' => 'int', 'id_topic' => 'int'),
  1220. $inserts,
  1221. $createTemporary ? array('id_topic') : array('id_search', 'id_topic')
  1222. );
  1223. }
  1224. if ($numSubjectResults !== 0)
  1225. {
  1226. $main_query['weights']['subject'] = 'CASE WHEN MAX(lst.id_topic) IS NULL THEN 0 ELSE 1 END';
  1227. $main_query['left_join'][] = '{db_prefix}' . ($createTemporary ? 'tmp_' : '') . 'log_search_topics AS lst ON (' . ($createTemporary ? '' : 'lst.id_search = {int:id_search} AND ') . 'lst.id_topic = t.id_topic)';
  1228. if (!$createTemporary)
  1229. $main_query['parameters']['id_search'] = $_SESSION['search_cache']['id_search'];
  1230. }
  1231. }
  1232. $indexedResults = 0;
  1233. // We building an index?
  1234. if ($searchAPI->supportsMethod('indexedWordQuery', $query_params))
  1235. {
  1236. $inserts = array();
  1237. $smcFunc['db_search_query']('drop_tmp_log_search_messages', '
  1238. DROP TABLE IF EXISTS {db_prefix}tmp_log_search_messages',
  1239. array(
  1240. 'db_error_skip' => true,
  1241. )
  1242. );
  1243. $createTemporary = $smcFunc['db_search_query']('create_tmp_log_search_messages', '
  1244. CREATE TEMPORARY TABLE {db_prefix}tmp_log_search_messages (
  1245. id_msg int(10) unsigned NOT NULL default {string:string_zero},
  1246. PRIMARY KEY (id_msg)
  1247. ) TYPE=HEAP',
  1248. array(
  1249. 'string_zero' => '0',
  1250. 'db_error_skip' => true,
  1251. )
  1252. ) !== false;
  1253. // Clear, all clear!
  1254. if (!$createTemporary)
  1255. $smcFunc['db_search_query']('delete_log_search_messages', '
  1256. DELETE FROM {db_prefix}log_search_messages
  1257. WHERE id_search = {int:id_search}',
  1258. array(
  1259. 'id_search' => $_SESSION['search_cache']['id_search'],
  1260. )
  1261. );
  1262. foreach ($searchWords as $orIndex => $words)
  1263. {
  1264. // Search for this word, assuming we have some words!
  1265. if (!empty($words['indexed_words']))
  1266. {
  1267. // Variables required for the search.
  1268. $search_data = array(
  1269. 'insert_into' => ($createTemporary ? 'tmp_' : '') . 'log_search_messages',
  1270. 'no_regexp' => $no_regexp,
  1271. 'max_results' => $maxMessageResults,
  1272. 'indexed_results' => $indexedResults,
  1273. 'params' => array(
  1274. 'id_search' => !$createTemporary ? $_SESSION['search_cache']['id_search'] : 0,
  1275. 'excluded_words' => $excludedWords,
  1276. 'user_query' => !empty($userQuery) ? $userQuery : '',
  1277. 'board_query' => !empty($boardQuery) ? $boardQuery : '',
  1278. 'topic' => !empty($search_params['topic']) ? $search_params['topic'] : 0,
  1279. 'min_msg_id' => !empty($minMsgID) ? $minMsgID : 0,
  1280. 'max_msg_id' => !empty($maxMsgID) ? $maxMsgID : 0,
  1281. 'excluded_phrases' => !empty($excludedPhrases) ? $excludedPhrases : array(),
  1282. 'excluded_index_words' => !empty($excludedIndexWords) ? $excludedIndexWords : array(),
  1283. 'excluded_subject_words' => !empty($excludedSubjectWords) ? $excludedSubjectWords : array(),
  1284. ),
  1285. );
  1286. $ignoreRequest = $searchAPI->indexedWordQuery($words, $search_data);
  1287. if (!$smcFunc['db_support_ignore'])
  1288. {
  1289. while ($row = $smcFunc['db_fetch_row']($ignoreRequest))
  1290. {
  1291. // No duplicates!
  1292. if (isset($inserts[$row[0]]))
  1293. continue;
  1294. $inserts[$row[0]] = $row;
  1295. }
  1296. $smcFunc['db_free_result']($ignoreRequest);
  1297. $indexedResults = count($inserts);
  1298. }
  1299. else
  1300. $indexedResults += $smcFunc['db_affected_rows']();
  1301. if (!empty($maxMessageResults) && $indexedResults >= $maxMessageResults)
  1302. break;
  1303. }
  1304. }
  1305. // More non-MySQL stuff needed?
  1306. if (!empty($inserts))
  1307. {
  1308. $smcFunc['db_insert']('',
  1309. '{db_prefix}' . ($createTemporary ? 'tmp_' : '') . 'log_search_messages',
  1310. $createTemporary ? array('id_msg' => 'int') : array('id_msg' => 'int', 'id_search' => 'int'),
  1311. $inserts,
  1312. $createTemporary ? array('id_msg') : array('id_msg', 'id_search')
  1313. );
  1314. }
  1315. if (empty($indexedResults) && empty($numSubjectResults) && !empty($modSettings['search_force_index']))
  1316. {
  1317. $context['search_errors']['query_not_specific_enough'] = true;
  1318. $_REQUEST['params'] = $context['params'];
  1319. return PlushSearch1();
  1320. }
  1321. elseif (!empty($indexedResults))
  1322. {
  1323. $main_query['inner_join'][] = '{db_prefix}' . ($createTemporary ? 'tmp_' : '') . 'log_search_messages AS lsm ON (lsm.id_msg = m.id_msg)';
  1324. if (!$createTemporary)
  1325. {
  1326. $main_query['where'][] = 'lsm.id_search = {int:id_search}';
  1327. $main_query['parameters']['id_search'] = $_SESSION['search_cache']['id_search'];
  1328. }
  1329. }
  1330. }
  1331. // Not using an index? All conditions have to be carried over.
  1332. else
  1333. {
  1334. $orWhere = array();
  1335. $count = 0;
  1336. foreach ($searchWords as $orIndex => $words)
  1337. {
  1338. $where = array();
  1339. foreach ($words['all_words'] as $regularWord)
  1340. {
  1341. $where[] = 'm.body' . (in_array($regularWord, $excludedWords) ? ' NOT' : '') . (empty($modSettings['search_match_words']) || $no_regexp ? ' LIKE ' : ' RLIKE ') . '{string:all_word_body_' . $count . '}';
  1342. if (in_array($regularWord, $excludedWords))
  1343. $where[] = 'm.subject NOT' . (empty($modSettings['search_match_words']) || $no_regexp ? ' LIKE ' : ' RLIKE ') . '{string:all_word_body_' . $count . '}';
  1344. $main_query['parameters']['all_word_body_' . $count++] = empty($modSettings['search_match_words']) || $no_regexp ? '%' . strtr($regularWord, array('_' => '\\_', '%' => '\\%')) . '%' : '[[:<:]]' . addcslashes(preg_replace(array('/([\[\]$.+*?|{}()])/'), array('[$1]'), $regularWord), '\\\'') . '[[:>:]]';
  1345. }
  1346. if (!empty($where))
  1347. $orWhere[] = count($where) > 1 ? '(' . implode(' AND ', $where) . ')' : $where[0];
  1348. }
  1349. if (!empty($orWhere))
  1350. $main_query['where'][] = count($orWhere) > 1 ? '(' . implode(' OR ', $orWhere) . ')' : $orWhere[0];
  1351. if (!empty($userQuery))
  1352. {
  1353. $main_query['where'][] = '{raw:user_query}';
  1354. $main_query['parameters']['user_query'] = $userQuery;
  1355. }
  1356. if (!empty($search_params['topic']))
  1357. {
  1358. $main_query['where'][] = 'm.id_topic = {int:topic}';
  1359. $main_query['parameters']['topic'] = $search_params['topic'];
  1360. }
  1361. if (!empty($minMsgID))
  1362. {
  1363. $main_query['where'][] = 'm.id_msg >= {int:min_msg_id}';
  1364. $main_query['parameters']['min_msg_id'] = $minMsgID;
  1365. }
  1366. if (!empty($maxMsgID))
  1367. {
  1368. $main_query['where'][] = 'm.id_msg <= {int:max_msg_id}';
  1369. $main_query['parameters']['max_msg_id'] = $maxMsgID;
  1370. }
  1371. if (!empty($boardQuery))
  1372. {
  1373. $main_query['where'][] = 'm.id_board {raw:board_query}';
  1374. $main_query['parameters']['board_query'] = $boardQuery;
  1375. }
  1376. }
  1377. call_integration_hook('integrate_main_search_query', array(&$main_query));
  1378. // Did we either get some indexed results, or otherwise did not do an indexed query?
  1379. if (!empty($indexedResults) || !$searchAPI->supportsMethod('indexedWordQuery', $query_params))
  1380. {
  1381. $relevance = '1000 * (';
  1382. $new_weight_total = 0;
  1383. foreach ($main_query['weights'] as $type => $value)
  1384. {
  1385. $relevance .= $weight[$type];
  1386. if (!empty($value['search']))
  1387. $relevance .= ' * ' . $value['search'];
  1388. $relevance .= ' + ';
  1389. $new_weight_total += $weight[$type];
  1390. }
  1391. $main_query['select']['relevance'] = substr($relevance, 0, -3) . ') / ' . $new_weight_total . ' AS relevance';
  1392. $ignoreRequest = $smcFunc['db_search_query']('insert_log_search_results_no_index', ($smcFunc['db_support_ignore'] ? ( '
  1393. INSERT IGNORE INTO ' . '{db_prefix}log_search_results
  1394. (' . implode(', ', array_keys($main_query['select'])) . ')') : '') . '
  1395. SELECT
  1396. ' . implode(',
  1397. ', $main_query['select']) . '
  1398. FROM ' . $main_query['from'] . (empty($main_query['inner_join']) ? '' : '
  1399. INNER JOIN ' . implode('
  1400. INNER JOIN ', $main_query['inner_join'])) . (empty($main_query['left_join']) ? '' : '
  1401. LEFT JOIN ' . implode('
  1402. LEFT JOIN ', $main_query['left_join'])) . (!empty($main_query['where']) ? '
  1403. WHERE ' : '') . implode('
  1404. AND ', $main_query['where']) . (empty($main_query['group_by']) ? '' : '
  1405. GROUP BY ' . implode(', ', $main_query['group_by'])) . (empty($modSettings['search_max_results']) ? '' : '
  1406. LIMIT ' . $modSettings['search_max_results']),
  1407. $main_query['parameters']
  1408. );
  1409. // We love to handle non-good databases that don't support our ignore!
  1410. if (!$smcFunc['db_support_ignore'])
  1411. {
  1412. $inserts = array();
  1413. while ($row = $smcFunc['db_fetch_row']($ignoreRequest))
  1414. {
  1415. // No duplicates!
  1416. if (isset($inserts[$row[2]]))
  1417. continue;
  1418. foreach ($row as $key => $value)
  1419. $inserts[$row[2]][] = (int) $row[$key];
  1420. }
  1421. $smcFunc['db_free_result']($ignoreRequest);
  1422. // Now put them in!
  1423. if (!empty($inserts))
  1424. {
  1425. $query_columns = array();
  1426. foreach ($main_query['select'] as $k => $v)
  1427. $query_columns[$k] = 'int';
  1428. $smcFunc['db_insert']('',
  1429. '{db_prefix}log_search_results',
  1430. $query_columns,
  1431. $inserts,
  1432. array('id_search', 'id_topic')
  1433. );
  1434. }
  1435. $_SESSION['search_cache']['num_results'] += count($inserts);
  1436. }
  1437. else
  1438. $_SESSION['search_cache']['num_results'] = $smcFunc['db_affected_rows']();
  1439. }
  1440. // Insert subject-only matches.
  1441. if ($_SESSION['search_cache']['num_results'] < $modSettings['search_max_results'] && $numSubjectResults !== 0)
  1442. {
  1443. $relevance = '1000 * (';
  1444. foreach ($main_query['weights'] as $type => $value)
  1445. if (isset($value['results']))
  1446. {
  1447. $relevance .= $weight[$type];
  1448. if (!empty($value['results']))
  1449. $relevance .= ' * ' . $value['results'];
  1450. $relevance .= ' + ';
  1451. }
  1452. $relevance = substr($relevance, 0, -3) . ') / ' . $weight_total . ' AS relevance';
  1453. $usedIDs = array_flip(empty($inserts) ? array() : array_keys($inserts));
  1454. $ignoreRequest = $smcFunc['db_search_query']('insert_log_search_results_sub_only', ($smcFunc['db_support_ignore'] ? ( '
  1455. INSERT IGNORE INTO {db_prefix}log_search_results
  1456. (id_search, id_topic, relevance, id_msg, num_matches)') : '') . '
  1457. SELECT
  1458. {int:id_search},
  1459. t.id_topic,
  1460. ' . $relevance. ',
  1461. t.id_first_msg,
  1462. 1
  1463. FROM {db_prefix}topics AS t
  1464. INNER JOIN {db_prefix}' . ($createTemporary ? 'tmp_' : '') . 'log_search_topics AS lst ON (lst.id_topic = t.id_topic)'
  1465. . ($createTemporary ? '' : 'WHERE lst.id_search = {int:id_search}')
  1466. . (empty($modSettings['search_max_results']) ? '' : '
  1467. LIMIT ' . ($modSettings['search_max_results'] - $_SESSION['search_cache']['num_results'])),
  1468. array(
  1469. 'id_search' => $_SESSION['search_cache']['id_search'],
  1470. 'min_msg' => $minMsg,
  1471. 'recent_message' => $recentMsg,
  1472. 'huge_topic_posts' => $humungousTopicPosts,
  1473. )
  1474. );
  1475. // Once again need to do the inserts if the database don't support ignore!
  1476. if (!$smcFunc['db_support_ignore'])
  1477. {
  1478. $inserts = array();
  1479. while ($row = $smcFunc['db_fetch_row']($ignoreRequest))
  1480. {
  1481. // No duplicates!
  1482. if (isset($usedIDs[$row[1]]))
  1483. continue;
  1484. $usedIDs[$row[1]] = true;
  1485. $inserts[] = $row;
  1486. }
  1487. $smcFunc['db_free_result']($ignoreRequest);
  1488. // Now put them in!
  1489. if (!empty($inserts))
  1490. {
  1491. $smcFunc['db_insert']('',
  1492. '{db_prefix}log_search_results',
  1493. array('id_search' => 'int', 'id_topic' => 'int', 'relevance' => 'float', 'id_msg' => 'int', 'num_matches' => 'int'),
  1494. $inserts,
  1495. array('id_search', 'id_topic')
  1496. );
  1497. }
  1498. $_SESSION['search_cache']['num_results'] += count($inserts);
  1499. }
  1500. else
  1501. $_SESSION['search_cache']['num_results'] += $smcFunc['db_affected_rows']();
  1502. }
  1503. elseif ($_SESSION['search_cache']['num_results'] == -1)
  1504. $_SESSION['search_cache']['num_results'] = 0;
  1505. }
  1506. }
  1507. // *** Retrieve the results to be shown on the page
  1508. $participants = array();
  1509. $request = $smcFunc['db_search_query']('', '
  1510. SELECT ' . (empty($search_params['topic']) ? 'lsr.id_topic' : $search_params['topic'] . ' AS id_topic') . ', lsr.id_msg, lsr.relevance, lsr.num_matches
  1511. FROM {db_prefix}log_search_results AS lsr' . ($search_params['sort'] == 'num_replies' ? '
  1512. INNER JOIN {db_prefix}topics AS t ON (t.id_topic = lsr.id_topic)' : '') . '
  1513. WHERE lsr.id_search = {int:id_search}
  1514. ORDER BY ' . $search_params['sort'] . ' ' . $search_params['sort_dir'] . '
  1515. LIMIT ' . (int) $_REQUEST['start'] . ', ' . $modSettings['search_results_per_page'],
  1516. array(
  1517. 'id_search' => $_SESSION['search_cache']['id_search'],
  1518. )
  1519. );
  1520. while ($row = $smcFunc['db_fetch_assoc']($request))
  1521. {
  1522. $context['topics'][$row['id_msg']] = array(
  1523. 'relevance' => round($row['relevance'] / 10, 1) . '%',
  1524. 'num_matches' => $row['num_matches'],
  1525. 'matches' => array(),
  1526. );
  1527. // By default they didn't participate in the topic!
  1528. $participants[$row['id_topic']] = false;
  1529. }
  1530. $smcFunc['db_free_result']($request);
  1531. $num_results = $_SESSION['search_cache']['num_results'];
  1532. }
  1533. if (!empty($context['topics']))
  1534. {
  1535. // Create an array for the permissions.
  1536. $boards_can = boardsAllowedTo(array('post_reply_own', 'post_reply_any', 'mark_any_notify'), true, false);
  1537. // How's about some quick moderation?
  1538. if (!empty($options['display_quick_mod']))
  1539. {
  1540. $boards_can = array_merge($boards_can, boardsAllowedTo(array('lock_any', 'lock_own', 'make_sticky', 'move_any', 'move_own', 'remove_any', 'remove_own', 'merge_any'), true, false));
  1541. $context['can_lock'] = in_array(0, $boards_can['lock_any']);
  1542. $context['can_sticky'] = in_array(0, $boards_can['make_sticky']) && !empty($modSettings['enableStickyTopics']);
  1543. $context['can_move'] = in_array(0, $boards_can['move_any']);
  1544. $context['can_remove'] = in_array(0, $boards_can['remove_any']);
  1545. $context['can_merge'] = in_array(0, $boards_can['merge_any']);
  1546. }
  1547. // What messages are we using?
  1548. $msg_list = array_keys($context['topics']);
  1549. // Load the posters...
  1550. $request = $smcFunc['db_query']('', '
  1551. SELECT id_member
  1552. FROM {db_prefix}messages
  1553. WHERE id_member != {int:no_member}
  1554. AND id_msg IN ({array_int:message_list})
  1555. LIMIT ' . count($context['topics']),
  1556. array(
  1557. 'message_list' => $msg_list,
  1558. 'no_member' => 0,
  1559. )
  1560. );
  1561. $posters = array();
  1562. while ($row = $smcFunc['db_fetch_assoc']($request))
  1563. $posters[] = $row['id_member'];
  1564. $smcFunc['db_free_result']($request);
  1565. if (!empty($posters))
  1566. loadMemberData(array_unique($posters));
  1567. call_integration_hook('integrate_search_message_list', array($msg_list, $posters));
  1568. // Get the messages out for the callback - select enough that it can be made to look just like Display.
  1569. $messages_request = $smcFunc['db_query']('', '
  1570. SELECT
  1571. m.id_msg, m.subject, m.poster_name, m.poster_email, m.poster_time, m.id_member,
  1572. m.icon, m.poster_ip, m.body, m.smileys_enabled, m.modified_time, m.modified_name,
  1573. first_m.id_msg AS first_msg, first_m.subject AS first_subject, first_m.icon AS first_icon, first_m.poster_time AS first_poster_time,
  1574. first_mem.id_member AS first_member_id, IFNULL(first_mem.real_name, first_m.poster_name) AS first_member_name,
  1575. last_m.id_msg AS last_msg, last_m.poster_time AS last_poster_time, last_mem.id_member AS last_member_id,
  1576. IFNULL(last_mem.real_name, last_m.poster_name) AS last_member_name, last_m.icon AS last_icon, last_m.subject AS last_subject,
  1577. t.id_topic, t.is_sticky, t.locked, t.id_poll, t.num_replies, t.num_views,
  1578. b.id_board, b.name AS board_name, c.id_cat, c.name AS cat_name
  1579. FROM {db_prefix}messages AS m
  1580. INNER JOIN {db_prefix}topics AS t ON (t.id_topic = m.id_topic)
  1581. INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board)
  1582. INNER JOIN {db_prefix}categories AS c ON (c.id_cat = b.id_cat)
  1583. INNER JOIN {db_prefix}messages AS first_m ON (first_m.id_msg = t.id_first_msg)
  1584. INNER JOIN {db_prefix}messages AS last_m ON (last_m.id_msg = t.id_last_msg)
  1585. LEFT JOIN {db_prefix}members AS first_mem ON (first_mem.id_member = first_m.id_member)
  1586. LEFT JOIN {db_prefix}members AS last_mem ON (last_mem.id_member = first_m.id_member)
  1587. WHERE m.id_msg IN ({array_int:message_list})' . ($modSettings['postmod_active'] ? '
  1588. AND m.approved = {int:is_approved}' : '') . '
  1589. ORDER BY FIND_IN_SET(m.id_msg, {string:message_list_in_set})
  1590. LIMIT {int:limit}',
  1591. array(
  1592. 'message_list' => $msg_list,
  1593. 'is_approved' => 1,
  1594. 'message_list_in_set' => implode(',', $msg_list),
  1595. 'limit' => count($context['topics']),
  1596. )
  1597. );
  1598. // If there are no results that means the things in the cache got deleted, so pretend we have no topics anymore.
  1599. if ($smcFunc['db_num_rows']($messages_request) == 0)
  1600. $context['topics'] = array();
  1601. // If we want to know who participated in what then load this now.
  1602. if (!empty($modSettings['enableParticipation']) && !$user_info['is_guest'])
  1603. {
  1604. $result = $smcFunc['db_query']('', '
  1605. SELECT id_topic
  1606. FROM {db_prefix}messages
  1607. WHERE id_topic IN ({array_int:topic_list})
  1608. AND id_member = {int:current_member}
  1609. GROUP BY id_topic
  1610. LIMIT ' . count($participants),
  1611. array(
  1612. 'current_member' => $user_info['id'],
  1613. 'topic_list' => array_keys($participants),
  1614. )
  1615. );
  1616. while ($row = $smcFunc['db_fetch_assoc']($result))
  1617. $participants[$row['id_topic']] = true;
  1618. $smcFunc['db_free_result']($result);
  1619. }
  1620. }
  1621. // Now that we know how many results to expect we can start calculating the page numbers.
  1622. $context['page_index'] = constructPageIndex($scripturl . '?action=search2;params=' . $context['params'], $_REQUEST['start'], $num_results, $modSettings['search_results_per_page'], false);
  1623. // Consider the search complete!
  1624. if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2)
  1625. cache_put_data('search_start:' . ($user_info['is_guest'] ? $user_info['ip'] : $user_info['id']), null, 90);
  1626. $context['key_words'] = &$searchArray;
  1627. // Setup the default topic icons... for checking they exist and the like!
  1628. $stable_icons = array('xx', 'thumbup', 'thumbdown', 'exclamation', 'question', 'lamp', 'smiley', 'angry', 'cheesy', 'grin', 'sad', 'wink', 'poll', 'moved', 'recycled', 'wireless', 'clip');
  1629. $context['icon_sources'] = array();
  1630. foreach ($stable_icons as $icon)
  1631. $context['icon_sources'][$icon] = 'images_url';
  1632. $context['sub_template'] = 'results';
  1633. $context['page_title'] = $txt['search_results'];
  1634. $context['get_topics'] = 'prepareSearchContext';
  1635. $context['can_send_pm'] = allowedTo('pm_send');
  1636. $context['can_send_email'] = allowedTo('send_email_to_members');
  1637. $context['can_restore'] = allowedTo('move_any') && !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] == $board;
  1638. $context['jump_to'] = array(
  1639. 'label' => addslashes(un_htmlspecialchars($txt['jump_to'])),
  1640. 'board_name' => addslashes(un_htmlspecialchars($txt['select_destination'])),
  1641. );
  1642. }
  1643. /**
  1644. * Callback to return messages - saves memory.
  1645. * @todo Fix this, update it, whatever... from Display.php mainly.
  1646. * Note that the call to loadAttachmentContext() doesn't work:
  1647. * this function doesn't fulfill the pre-condition to fill $attachments global...
  1648. * So all it does is to fallback and return.
  1649. *
  1650. * What it does:
  1651. * - callback function for the results sub template.
  1652. * - loads the necessary contextual data to show a search result.
  1653. *
  1654. * @param $reset = false
  1655. * @return array
  1656. */
  1657. function prepareSearchContext($reset = false)
  1658. {
  1659. global $txt, $modSettings, $scripturl, $user_info, $sourcedir;
  1660. global $memberContext, $context, $settings, $options, $messages_request;
  1661. global $boards_can, $participants, $smcFunc;
  1662. // Remember which message this is. (ie. reply #83)
  1663. static $counter = null;
  1664. if ($counter == null || $reset)
  1665. $counter = $_REQUEST['start'] + 1;
  1666. // If the query returned false, bail.
  1667. if ($messages_request == false)
  1668. return false;
  1669. // Start from the beginning...
  1670. if ($reset)
  1671. return @$smcFunc['db_data_seek']($messages_request, 0);
  1672. // Attempt to get the next message.
  1673. $message = $smcFunc['db_fetch_assoc']($messages_request);
  1674. if (!$message)
  1675. return false;
  1676. // Can't have an empty subject can we?
  1677. $message['subject'] = $message['subject'] != '' ? $message['subject'] : $txt['no_subject'];
  1678. $message['first_subject'] = $message['first_subject'] != '' ? $message['first_subject'] : $txt['no_subject'];
  1679. $message['last_subject'] = $message['last_subject'] != '' ? $message['last_subject'] : $txt['no_subject'];
  1680. // If it couldn't load, or the user was a guest.... someday may be done with a guest table.
  1681. if (!loadMemberContext($message['id_member']))
  1682. {
  1683. // Notice this information isn't used anywhere else.... *cough guest table cough*.
  1684. $memberContext[$message['id_member']]['name'] = $message['poster_name'];
  1685. $memberContext[$message['id_member']]['id'] = 0;
  1686. $memberContext[$message['id_member']]['group'] = $txt['guest_title'];
  1687. $memberContext[$message['id_member']]['link'] = $message['poster_name'];
  1688. $memberContext[$message['id_member']]['email'] = $message['poster_email'];
  1689. }
  1690. $memberContext[$message['id_member']]['ip'] = $message['poster_ip'];
  1691. // Do the censor thang...
  1692. censorText($message['body']);
  1693. censorText($message['subject']);
  1694. censorText($message['first_subject']);
  1695. censorText($message['last_subject']);
  1696. // Shorten this message if necessary.
  1697. if ($context['compact'])
  1698. {
  1699. // Set the number of characters before and after the searched keyword.
  1700. $charLimit = 50;
  1701. $message['body'] = strtr($message['body'], array("\n" => ' ', '<br />' => "\n"));
  1702. $message['body'] = parse_bbc($message['body'], $message['smileys_enabled'], $message['id_msg']);
  1703. $message['body'] = strip_tags(strtr($message['body'], array('</div>' => '<br />', '</li>' => '<br />')), '<br>');
  1704. if ($smcFunc['strlen']($message['body']) > $charLimit)
  1705. {
  1706. if (empty($context['key_words']))
  1707. $message['body'] = $smcFunc['substr']($message['body'], 0, $charLimit) . '<strong>...</strong>';
  1708. else
  1709. {
  1710. $matchString = '';
  1711. $force_partial_word = false;
  1712. foreach ($context['key_words'] as $keyword)
  1713. {
  1714. $keyword = un_htmlspecialchars($keyword);
  1715. $keyword = preg_replace('~&amp;#(\d{1,7}|x[0-9a-fA-F]{1,6});~e', '$GLOBALS[\'smcFunc\'][\'entity_fix\'](\'\\1\')', strtr($keyword, array('\\\'' => '\'', '&' => '&amp;')));
  1716. if (preg_match('~[\'\.,/@%&;:(){}\[\]_\-+\\\\]$~', $keyword) != 0 || preg_match('~^[\'\.,/@%&;:(){}\[\]_\-+\\\\]~', $keyword) != 0)
  1717. $force_partial_word = true;
  1718. $matchString .= strtr(preg_quote($keyword, '/'), array('\*' => '.+?')) . '|';
  1719. }
  1720. $matchString = un_htmlspecialchars(substr($matchString, 0, -1));
  1721. $message['body'] = un_htmlspecialchars(strtr($message['body'], array('&nbsp;' => ' ', '<br />' => "\n", '&#91;' => '[', '&#93;' => ']', '&#58;' => ':', '&#64;' => '@')));
  1722. if (empty($modSettings['search_method']) || $force_partial_word)
  1723. preg_match_all('/([^\s\W]{' . $charLimit . '}[\s\W]|[\s\W].{0,' . $charLimit . '}?|^)(' . $matchString . ')(.{0,' . $charLimit . '}[\s\W]|[^\s\W]{0,' . $charLimit . '})/is' . ($context['utf8'] ? 'u' : ''), $message['body'], $matches);
  1724. else
  1725. preg_match_all('/([^\s\W]{' . $charLimit . '}[\s\W]|[\s\W].{0,' . $charLimit . '}?[\s\W]|^)(' . $matchString . ')([\s\W].{0,' . $charLimit . '}[\s\W]|[\s\W][^\s\W]{0,' . $charLimit . '})/is' . ($context['utf8'] ? 'u' : ''), $message['body'], $matches);
  1726. $message['body'] = '';
  1727. foreach ($matches[0] as $index => $match)
  1728. {
  1729. $match = strtr(htmlspecialchars($match, ENT_QUOTES), array("\n" => '&nbsp;'));
  1730. $message['body'] .= '<strong>......</strong>&nbsp;' . $match . '&nbsp;<strong>......</strong>';
  1731. }
  1732. }
  1733. // Re-fix the international characters.
  1734. $message['body'] = preg_replace('~&amp;#(\d{1,7}|x[0-9a-fA-F]{1,6});~e', '$GLOBALS[\'smcFunc\'][\'entity_fix\'](\'\\1\')', $message['body']);
  1735. }
  1736. }
  1737. else
  1738. {
  1739. // Run BBC interpreter on the message.
  1740. $message['body'] = parse_bbc($message['body'], $message['smileys_enabled'], $message['id_msg']);
  1741. }
  1742. // Make sure we don't end up with a practically empty message body.
  1743. $message['body'] = preg_replace('~^(?:&nbsp;)+$~', '', $message['body']);
  1744. // Sadly, we need to check the icon ain't broke.
  1745. if (!empty($modSettings['messageIconChecks_enable']))
  1746. {
  1747. if (!isset($context['icon_sources'][$message['first_icon']]))
  1748. $context['icon_sources'][$message['first_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['first_icon'] . '.png') ? 'images_url' : 'default_images_url';
  1749. if (!isset($context['icon_sources'][$message['last_icon']]))
  1750. $context['icon_sources'][$message['last_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['last_icon'] . '.png') ? 'images_url' : 'default_images_url';
  1751. if (!isset($context['icon_sources'][$message['icon']]))
  1752. $context['icon_sources'][$message['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['icon'] . '.png') ? 'images_url' : 'default_images_url';
  1753. }
  1754. else
  1755. {
  1756. if (!isset($context['icon_sources'][$message['first_icon']]))
  1757. $context['icon_sources'][$message['first_icon']] = 'images_url';
  1758. if (!isset($context['icon_sources'][$message['last_icon']]))
  1759. $context['icon_sources'][$message['last_icon']] = 'images_url';
  1760. if (!isset($context['icon_sources'][$message['icon']]))
  1761. $context['icon_sources'][$message['icon']] = 'images_url';
  1762. }
  1763. // Do we have quote tag enabled?
  1764. $quote_enabled = empty($modSettings['disabledBBC']) || !in_array('quote', explode(',', $modSettings['disabledBBC']));
  1765. $output = array_merge($context['topics'][$message['id_msg']], array(
  1766. 'id' => $message['id_topic'],
  1767. 'is_sticky' => !empty($modSettings['enableStickyTopics']) && !empty($message['is_sticky']),
  1768. 'is_locked' => !empty($message['locked']),
  1769. 'is_poll' => $modSettings['pollMode'] == '1' && $message['id_poll'] > 0,
  1770. 'is_hot' => $message['num_replies'] >= $modSettings['hotTopicPosts'],
  1771. 'is_very_hot' => $message['num_replies'] >= $modSettings['hotTopicVeryPosts'],
  1772. 'posted_in' => !empty($participants[$message['id_topic']]),
  1773. 'views' => $message['num_views'],
  1774. 'replies' => $message['num_replies'],
  1775. 'can_reply' => in_array($message['id_board'], $boards_can['post_reply_any']) || in_array(0, $boards_can['post_reply_any']),
  1776. 'can_quote' => (in_array($message['id_board'], $boards_can['post_reply_any']) || in_array(0, $boards_can['post_reply_any'])) && $quote_enabled,
  1777. 'can_mark_notify' => in_array($message['id_board'], $boards_can['mark_any_notify']) || in_array(0, $boards_can['mark_any_notify']) && !$context['user']['is_guest'],
  1778. 'first_post' => array(
  1779. 'id' => $message['first_msg'],
  1780. 'time' => timeformat($message['first_poster_time']),
  1781. 'timestamp' => forum_time(true, $message['first_poster_time']),
  1782. 'subject' => $message['first_subject'],
  1783. 'href' => $scripturl . '?topic=' . $message['id_topic'] . '.0',
  1784. 'link' => '<a href="' . $scripturl . '?topic=' . $message['id_topic'] . '.0">' . $message['first_subject'] . '</a>',
  1785. 'icon' => $message['first_icon'],
  1786. 'icon_url' => $settings[$context['icon_sources'][$message['first_icon']]] . '/post/' . $message['first_icon'] . '.png',
  1787. 'member' => array(
  1788. 'id' => $message['first_member_id'],
  1789. 'name' => $message['first_member_name'],
  1790. 'href' => !empty($message['first_member_id']) ? $scripturl . '?action=profile;u=' . $message['first_member_id'] : '',
  1791. 'link' => !empty($message['first_member_id']) ? '<a href="' . $scripturl . '?action=profile;u=' . $message['first_member_id'] . '" title="' . $txt['profile_of'] . ' ' . $message['first_member_name'] . '">' . $message['first_member_name'] . '</a>' : $message['first_member_name']
  1792. )
  1793. ),
  1794. 'last_post' => array(
  1795. 'id' => $message['last_msg'],
  1796. 'time' => timeformat($message['last_poster_time']),
  1797. 'timestamp' => forum_time(true, $message['last_poster_time']),
  1798. 'subject' => $message['last_subject'],
  1799. 'href' => $scripturl . '?topic=' . $message['id_topic'] . ($message['num_replies'] == 0 ? '.0' : '.msg' . $message['last_msg']) . '#msg' . $message['last_msg'],
  1800. 'link' => '<a href="' . $scripturl . '?topic=' . $message['id_topic'] . ($message['num_replies'] == 0 ? '.0' : '.msg' . $message['last_msg']) . '#msg' . $message['last_msg'] . '">' . $message['last_subject'] . '</a>',
  1801. 'icon' => $message['last_icon'],
  1802. 'icon_url' => $settings[$context['icon_sources'][$message['last_icon']]] . '/post/' . $message['last_icon'] . '.png',
  1803. 'member' => array(
  1804. 'id' => $message['last_member_id'],
  1805. 'name' => $message['last_member_name'],
  1806. 'href' => !empty($message['last_member_id']) ? $scripturl . '?action=profile;u=' . $message['last_member_id'] : '',
  1807. 'link' => !empty($message['last_member_id']) ? '<a href="' . $scripturl . '?action=profile;u=' . $message['last_member_id'] . '" title="' . $txt['profile_of'] . ' ' . $message['last_member_name'] . '">' . $message['last_member_name'] . '</a>' : $message['last_member_name']
  1808. )
  1809. ),
  1810. 'board' => array(
  1811. 'id' => $message['id_board'],
  1812. 'name' => $message['board_name'],
  1813. 'href' => $scripturl . '?board=' . $message['id_board'] . '.0',
  1814. 'link' => '<a href="' . $scripturl . '?board=' . $message['id_board'] . '.0">' . $message['board_name'] . '</a>'
  1815. ),
  1816. 'category' => array(
  1817. 'id' => $message['id_cat'],
  1818. 'name' => $message['cat_name'],
  1819. 'href' => $scripturl . '#c' . $message['id_cat'],
  1820. 'link' => '<a href="' . $scripturl . '#c' . $message['id_cat'] . '">' . $message['cat_name'] . '</a>'
  1821. )
  1822. ));
  1823. determineTopicClass($output);
  1824. if ($output['posted_in'])
  1825. $output['class'] = 'my_' . $output['class'];
  1826. $body_highlighted = $message['body'];
  1827. $subject_highlighted = $message['subject'];
  1828. if (!empty($options['display_quick_mod']))
  1829. {
  1830. $started = $output['first_post']['member']['id'] == $user_info['id'];
  1831. $output['quick_mod'] = array(
  1832. 'lock' => in_array(0, $boards_can['lock_any']) || in_array($output['board']['id'], $boards_can['lock_any']) || ($started && (in_array(0, $boards_can['lock_own']) || in_array($output['board']['id'], $boards_can['lock_own']))),
  1833. 'sticky' => (in_array(0, $boards_can['make_sticky']) || in_array($output['board']['id'], $boards_can['make_sticky'])) && !empty($modSettings['enableStickyTopics']),
  1834. 'move' => in_array(0, $boards_can['move_any']) || in_array($output['board']['id'], $boards_can['move_any']) || ($started && (in_array(0, $boards_can['move_own']) || in_array($output['board']['id'], $boards_can['move_own']))),
  1835. 'remove' => in_array(0, $boards_can['remove_any']) || in_array($output['board']['id'], $boards_can['remove_any']) || ($started && (in_array(0, $boards_can['remove_own']) || in_array($output['board']['id'], $boards_can['remove_own']))),
  1836. );
  1837. $context['can_lock'] |= $output['quick_mod']['lock'];
  1838. $context['can_sticky'] |= $output['quick_mod']['sticky'];
  1839. $context['can_move'] |= $output['quick_mod']['move'];
  1840. $context['can_remove'] |= $output['quick_mod']['remove'];
  1841. $context['can_merge'] |= in_array($output['board']['id'], $boards_can['merge_any']);
  1842. $context['can_markread'] = $context['user']['is_logged'];
  1843. $context['qmod_actions'] = array('remove', 'lock', 'sticky', 'move', 'merge', 'restore', 'markread');
  1844. call_integration_hook('integrate_quick_mod_actions_search');
  1845. }
  1846. foreach ($context['key_words'] as $query)
  1847. {
  1848. // Fix the international characters in the keyword too.
  1849. $query = un_htmlspecialchars($query);
  1850. $query = trim($query, "\*+");
  1851. $query = strtr($smcFunc['htmlspecialchars']($query), array('\\\'' => '\''));
  1852. $body_highlighted = preg_replace('/((<[^>]*)|' . preg_quote(strtr($query, array('\'' => '&#039;')), '/') . ')/ie' . ($context['utf8'] ? 'u' : ''), "'\$2' == '\$1' ? stripslashes('\$1') : '<strong class=\"highlight\">\$1</strong>'", $body_highlighted);
  1853. $subject_highlighted = preg_replace('/(' . preg_quote($query, '/') . ')/i' . ($context['utf8'] ? 'u' : ''), '<strong class="highlight">$1</strong>', $subject_highlighted);
  1854. }
  1855. $output['matches'][] = array(
  1856. 'id' => $message['id_msg'],
  1857. 'attachment' => loadAttachmentContext($message['id_msg']),
  1858. 'alternate' => $counter % 2,
  1859. 'member' => &$memberContext[$message['id_member']],
  1860. 'icon' => $message['icon'],
  1861. 'icon_url' => $settings[$context['icon_sources'][$message['icon']]] . '/post/' . $message['icon'] . '.png',
  1862. 'subject' => $message['subject'],
  1863. 'subject_highlighted' => $subject_highlighted,
  1864. 'time' => timeformat($message['poster_time']),
  1865. 'timestamp' => forum_time(true, $message['poster_time']),
  1866. 'counter' => $counter,
  1867. 'modified' => array(
  1868. 'time' => timeformat($message['modified_time']),
  1869. 'timestamp' => forum_time(true, $message['modified_time']),
  1870. 'name' => $message['modified_name']
  1871. ),
  1872. 'body' => $message['body'],
  1873. 'body_highlighted' => $body_highlighted,
  1874. 'start' => 'msg' . $message['id_msg']
  1875. );
  1876. $counter++;
  1877. call_integration_hook('integrate_search_message_context', array($counter, &$output));
  1878. return $output;
  1879. }
  1880. /**
  1881. * Creates a search API and returns the object.
  1882. *
  1883. */
  1884. function findSearchAPI()
  1885. {
  1886. global $sourcedir, $modSettings, $search_versions, $searchAPI, $txt;
  1887. require_once($sourcedir . '/Subs-Package.php');
  1888. // Search has a special database set.
  1889. db_extend('search');
  1890. // Load up the search API we are going to use.
  1891. $modSettings['search_index'] = empty($modSettings['search_index']) ? 'standard' : $modSettings['search_index'];
  1892. if (!file_exists($sourcedir . '/SearchAPI-' . ucwords($modSettings['search_index']) . '.php'))
  1893. fatal_lang_error('search_api_missing');
  1894. require_once($sourcedir . '/SearchAPI-' . ucwords($modSettings['search_index']) . '.php');
  1895. // Create an instance of the search API and check it is valid for this version of SMF.
  1896. $search_class_name = $modSettings['search_index'] . '_search';
  1897. $searchAPI = new $search_class_name();
  1898. // An invalid Search API.
  1899. if (!$searchAPI || ($searchAPI->supportsMethod('isValid') && !$searchAPI->isValid()) || !matchPackageVersion($search_versions['forum_version'], $searchAPI->min_smf_version . '-' . $searchAPI->version_compatible))
  1900. {
  1901. // Log the error.
  1902. loadLanguage('Errors');
  1903. log_error(sprintf($txt['search_api_not_compatible'], 'SearchAPI-' . ucwords($modSettings['search_index']) . '.php'), 'critical');
  1904. require_once($sourcedir . '/SearchAPI-Standard.php');
  1905. $searchAPI = new standard_search();
  1906. }
  1907. return $searchAPI;
  1908. }
  1909. /**
  1910. * This function compares the length of two strings plus a little.
  1911. * What it does:
  1912. * - callback function for usort used to sort the fulltext results.
  1913. * - passes sorting duty to the current API.
  1914. *
  1915. * @param string $a
  1916. * @param string $b
  1917. * @return int
  1918. */
  1919. function searchSort($a, $b)
  1920. {
  1921. global $searchAPI;
  1922. return $searchAPI->searchSort($a, $b);
  1923. }
  1924. ?>