1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549: 550: 551: 552: 553: 554: 555: 556: 557: 558: 559: 560: 561: 562: 563: 564: 565: 566: 567: 568: 569: 570: 571: 572: 573: 574: 575: 576: 577: 578: 579: 580: 581: 582: 583: 584: 585: 586: 587: 588: 589: 590: 591: 592: 593: 594: 595: 596: 597: 598: 599: 600: 601: 602: 603: 604: 605: 606: 607: 608: 609: 610: 611: 612: 613: 614: 615: 616: 617: 618: 619: 620: 621: 622: 623: 624: 625: 626: 627: 628: 629: 630: 631: 632: 633: 634: 635: 636: 637: 638: 639: 640: 641: 642: 643: 644: 645: 646: 647: 648: 649: 650: 651: 652: 653: 654: 655: 656: 657: 658: 659: 660: 661: 662: 663: 664: 665: 666: 667: 668: 669: 670: 671: 672: 673: 674: 675: 676: 677: 678: 679: 680: 681: 682: 683: 684: 685: 686: 687: 688: 689: 690: 691: 692: 693: 694: 695: 696: 697: 698: 699: 700: 701: 702: 703: 704: 705: 706: 707: 708: 709: 710: 711: 712: 713: 714: 715: 716: 717: 718: 719: 720: 721: 722: 723: 724: 725: 726: 727: 728: 729: 730: 731: 732: 733: 734: 735: 736: 737: 738: 739: 740: 741: 742: 743: 744: 745: 746: 747: 748: 749: 750: 751: 752: 753: 754: 755: 756: 757: 758: 759: 760: 761: 762: 763: 764: 765: 766: 767: 768: 769: 770: 771: 772: 773: 774: 775: 776: 777: 778: 779: 780: 781: 782: 783: 784: 785: 786: 787: 788: 789: 790: 791: 792: 793: 794: 795: 796: 797: 798: 799: 800: 801: 802: 803: 804: 805: 806: 807: 808: 809: 810: 811: 812: 813: 814: 815: 816: 817: 818: 819: 820: 821: 822: 823: 824: 825: 826: 827: 828: 829: 830: 831: 832: 833: 834: 835: 836: 837: 838: 839: 840: 841: 842: 843: 844: 845: 846: 847: 848: 849: 850: 851: 852: 853: 854: 855: 856: 857: 858: 859: 860: 861: 862: 863: 864: 865: 866: 867: 868:
<?php
if (!defined('SMF'))
die('No direct access...');
function ManageSearch()
{
global $context, $txt;
isAllowedTo('admin_forum');
loadLanguage('Search');
loadTemplate('ManageSearch');
db_extend('search');
$subActions = array(
'settings' => 'EditSearchSettings',
'weights' => 'EditWeights',
'method' => 'EditSearchMethod',
'createfulltext' => 'EditSearchMethod',
'removecustom' => 'EditSearchMethod',
'removefulltext' => 'EditSearchMethod',
'createmsgindex' => 'CreateMessageIndex',
);
$_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : 'weights';
$context['sub_action'] = $_REQUEST['sa'];
$context[$context['admin_menu_name']]['tab_data'] = array(
'title' => $txt['manage_search'],
'help' => 'search',
'description' => $txt['search_settings_desc'],
'tabs' => array(
'weights' => array(
'description' => $txt['search_weights_desc'],
),
'method' => array(
'description' => $txt['search_method_desc'],
),
'settings' => array(
'description' => $txt['search_settings_desc'],
),
),
);
call_integration_hook('integrate_manage_search', array(&$subActions));
call_helper($subActions[$_REQUEST['sa']]);
}
function EditSearchSettings($return_config = false)
{
global $txt, $context, $scripturl, $sourcedir, $modSettings;
$config_vars = array(
array('permissions', 'search_posts'),
array('int', 'search_results_per_page'),
array('int', 'search_max_results', 'subtext' => $txt['search_max_results_disable']),
'',
array('int', 'search_floodcontrol_time', 'subtext' => $txt['search_floodcontrol_time_desc'], 6, 'postinput' => $txt['seconds']),
);
call_integration_hook('integrate_modify_search_settings', array(&$config_vars));
require_once($sourcedir . '/Search.php');
$searchAPI = findSearchAPI();
if (is_callable(array($searchAPI, 'searchSettings')))
call_user_func_array(array($searchAPI, 'searchSettings'), array(&$config_vars));
if ($return_config)
return $config_vars;
$context['page_title'] = $txt['search_settings_title'];
$context['sub_template'] = 'show_settings';
require_once($sourcedir . '/ManageServer.php');
if (isset($_REQUEST['save']))
{
checkSession();
call_integration_hook('integrate_save_search_settings');
if (empty($_POST['search_results_per_page']))
$_POST['search_results_per_page'] = !empty($modSettings['search_results_per_page']) ? $modSettings['search_results_per_page'] : $modSettings['defaultMaxMessages'];
saveDBSettings($config_vars);
$_SESSION['adm-save'] = true;
redirectexit('action=admin;area=managesearch;sa=settings;' . $context['session_var'] . '=' . $context['session_id']);
}
$context['post_url'] = $scripturl . '?action=admin;area=managesearch;save;sa=settings';
$context['settings_title'] = $txt['search_settings_title'];
createToken('admin-mp');
prepareDBSettingContext($config_vars);
}
function EditWeights()
{
global $txt, $context, $modSettings;
$context['page_title'] = $txt['search_weights_title'];
$context['sub_template'] = 'modify_weights';
$factors = array(
'search_weight_frequency',
'search_weight_age',
'search_weight_length',
'search_weight_subject',
'search_weight_first_message',
'search_weight_sticky',
);
call_integration_hook('integrate_modify_search_weights', array(&$factors));
if (isset($_POST['save']))
{
checkSession();
validateToken('admin-msw');
call_integration_hook('integrate_save_search_weights');
$changes = array();
foreach ($factors as $factor)
$changes[$factor] = (int) $_POST[$factor];
updateSettings($changes);
}
$context['relative_weights'] = array('total' => 0);
foreach ($factors as $factor)
$context['relative_weights']['total'] += isset($modSettings[$factor]) ? $modSettings[$factor] : 0;
foreach ($factors as $factor)
$context['relative_weights'][$factor] = round(100 * (isset($modSettings[$factor]) ? $modSettings[$factor] : 0) / $context['relative_weights']['total'], 1);
createToken('admin-msw');
}
function EditSearchMethod()
{
global $txt, $context, $modSettings, $smcFunc, $db_type, $db_prefix;
$context['page_title'] = $txt['search_method_title'];
$context['sub_template'] = 'select_search_method';
$context['supports_fulltext'] = $smcFunc['db_search_support']('fulltext');
$context['search_apis'] = loadSearchAPIs();
if ($context['supports_fulltext'])
detectFulltextIndex();
if (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'createfulltext')
{
checkSession('get');
validateToken('admin-msm', 'get');
if ($db_type == 'postgresql')
{
$smcFunc['db_query']('', '
DROP INDEX IF EXISTS {db_prefix}messages_ftx',
array(
'db_error_skip' => true,
)
);
$language_ftx = $smcFunc['db_search_language']();
$smcFunc['db_query']('', '
CREATE INDEX {db_prefix}messages_ftx ON {db_prefix}messages
USING gin(to_tsvector({string:language},body))',
array(
'language' => $language_ftx
)
);
}
else
{
$smcFunc['db_query']('', '
ALTER TABLE {db_prefix}messages
DROP INDEX body',
array(
'db_error_skip' => true,
)
);
$smcFunc['db_query']('', '
ALTER TABLE {db_prefix}messages
ADD FULLTEXT body (body)',
array(
)
);
}
redirectexit('action=admin;area=managesearch;sa=method');
}
elseif (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'removefulltext' && !empty($context['fulltext_index']))
{
checkSession('get');
validateToken('admin-msm', 'get');
$smcFunc['db_query']('', '
ALTER TABLE {db_prefix}messages
DROP INDEX ' . implode(',
DROP INDEX ', $context['fulltext_index']),
array(
'db_error_skip' => true,
)
);
if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'fulltext')
updateSettings(array(
'search_index' => '',
));
redirectexit('action=admin;area=managesearch;sa=method');
}
elseif (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'removecustom')
{
checkSession('get');
validateToken('admin-msm', 'get');
db_extend();
$tables = $smcFunc['db_list_tables'](false, $db_prefix . 'log_search_words');
if (!empty($tables))
{
$smcFunc['db_search_query']('drop_words_table', '
DROP TABLE {db_prefix}log_search_words',
array(
)
);
}
updateSettings(array(
'search_custom_index_config' => '',
'search_custom_index_resume' => '',
));
if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'custom')
updateSettings(array(
'search_index' => '',
));
redirectexit('action=admin;area=managesearch;sa=method');
}
elseif (isset($_POST['save']))
{
checkSession();
validateToken('admin-msmpost');
updateSettings(array(
'search_index' => empty($_POST['search_index']) || (!in_array($_POST['search_index'], array('fulltext', 'custom')) && !isset($context['search_apis'][$_POST['search_index']])) ? '' : $_POST['search_index'],
'search_force_index' => isset($_POST['search_force_index']) ? '1' : '0',
'search_match_words' => isset($_POST['search_match_words']) ? '1' : '0',
));
redirectexit('action=admin;area=managesearch;sa=method');
}
$context['table_info'] = array(
'data_length' => 0,
'index_length' => 0,
'fulltext_length' => 0,
'custom_index_length' => 0,
);
if ($db_type == 'mysql')
{
if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0)
$request = $smcFunc['db_query']('', '
SHOW TABLE STATUS
FROM {string:database_name}
LIKE {string:table_name}',
array(
'database_name' => '`' . strtr($match[1], array('`' => '')) . '`',
'table_name' => str_replace('_', '\_', $match[2]) . 'messages',
)
);
else
$request = $smcFunc['db_query']('', '
SHOW TABLE STATUS
LIKE {string:table_name}',
array(
'table_name' => str_replace('_', '\_', $db_prefix) . 'messages',
)
);
if ($request !== false && $smcFunc['db_num_rows']($request) == 1)
{
$row = $smcFunc['db_fetch_assoc']($request);
$context['table_info']['data_length'] = $row['Data_length'];
$context['table_info']['index_length'] = $row['Index_length'];
$context['table_info']['fulltext_length'] = $row['Index_length'];
$smcFunc['db_free_result']($request);
}
if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0)
$request = $smcFunc['db_query']('', '
SHOW TABLE STATUS
FROM {string:database_name}
LIKE {string:table_name}',
array(
'database_name' => '`' . strtr($match[1], array('`' => '')) . '`',
'table_name' => str_replace('_', '\_', $match[2]) . 'log_search_words',
)
);
else
$request = $smcFunc['db_query']('', '
SHOW TABLE STATUS
LIKE {string:table_name}',
array(
'table_name' => str_replace('_', '\_', $db_prefix) . 'log_search_words',
)
);
if ($request !== false && $smcFunc['db_num_rows']($request) == 1)
{
$row = $smcFunc['db_fetch_assoc']($request);
$context['table_info']['index_length'] += $row['Data_length'] + $row['Index_length'];
$context['table_info']['custom_index_length'] = $row['Data_length'] + $row['Index_length'];
$smcFunc['db_free_result']($request);
}
}
elseif ($db_type == 'postgresql')
{
$request = $smcFunc['db_query']('', '
SELECT
indexname,
pg_relation_size(quote_ident(t.tablename)::text) AS table_size,
pg_relation_size(quote_ident(indexrelname)::text) AS index_size
FROM pg_tables t
LEFT OUTER JOIN pg_class c ON t.tablename=c.relname
LEFT OUTER JOIN
(SELECT c.relname AS ctablename, ipg.relname AS indexname, indexrelname FROM pg_index x
JOIN pg_class c ON c.oid = x.indrelid
JOIN pg_class ipg ON ipg.oid = x.indexrelid
JOIN pg_stat_all_indexes psai ON x.indexrelid = psai.indexrelid)
AS foo
ON t.tablename = foo.ctablename
WHERE t.schemaname= {string:schema} and (
indexname = {string:messages_ftx} OR indexname = {string:log_search_words} )',
array(
'messages_ftx' => $db_prefix . 'messages_ftx',
'log_search_words' => $db_prefix . 'log_search_words',
'schema' => 'public',
)
);
if ($request !== false && $smcFunc['db_num_rows']($request) > 0)
{
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if ($row['indexname'] == $db_prefix . 'messages_ftx')
{
$context['table_info']['data_length'] = (int) $row['table_size'];
$context['table_info']['index_length'] = (int) $row['index_size'];
$context['table_info']['fulltext_length'] = (int) $row['index_size'];
}
elseif ($row['indexname'] == $db_prefix . 'log_search_words')
{
$context['table_info']['index_length'] = (int) $row['index_size'];
$context['table_info']['custom_index_length'] = (int) $row['index_size'];
}
}
$smcFunc['db_free_result']($request);
}
else
$context['table_info'] = array(
'data_length' => $txt['not_applicable'],
'index_length' => $txt['not_applicable'],
'fulltext_length' => $txt['not_applicable'],
'custom_index_length' => $txt['not_applicable'],
);
}
else
$context['table_info'] = array(
'data_length' => $txt['not_applicable'],
'index_length' => $txt['not_applicable'],
'fulltext_length' => $txt['not_applicable'],
'custom_index_length' => $txt['not_applicable'],
);
foreach ($context['table_info'] as $type => $size)
{
if (!is_numeric($size))
break;
$context['table_info'][$type] = comma_format($context['table_info'][$type] / 1024) . ' ' . $txt['search_method_kilobytes'];
}
$context['custom_index'] = !empty($modSettings['search_custom_index_config']);
$context['partial_custom_index'] = !empty($modSettings['search_custom_index_resume']) && empty($modSettings['search_custom_index_config']);
$context['double_index'] = !empty($context['fulltext_index']) && $context['custom_index'];
createToken('admin-msmpost');
createToken('admin-msm', 'get');
}
function CreateMessageIndex()
{
global $modSettings, $context, $smcFunc, $db_prefix, $txt;
@set_time_limit(600);
if (function_exists('apache_reset_timeout'))
@apache_reset_timeout();
$context[$context['admin_menu_name']]['current_subsection'] = 'method';
$context['page_title'] = $txt['search_index_custom'];
$messages_per_batch = 50;
$index_properties = array(
2 => array(
'column_definition' => 'small',
'step_size' => 1000000,
),
4 => array(
'column_definition' => 'medium',
'step_size' => 1000000,
'max_size' => 16777215,
),
5 => array(
'column_definition' => 'large',
'step_size' => 100000000,
'max_size' => 2000000000,
),
);
if (isset($_REQUEST['resume']) && !empty($modSettings['search_custom_index_resume']))
{
$context['index_settings'] = $smcFunc['json_decode']($modSettings['search_custom_index_resume'], true);
$context['start'] = (int) $context['index_settings']['resume_at'];
unset($context['index_settings']['resume_at']);
$context['step'] = 1;
}
else
{
$context['index_settings'] = array(
'bytes_per_word' => isset($_REQUEST['bytes_per_word']) && isset($index_properties[$_REQUEST['bytes_per_word']]) ? (int) $_REQUEST['bytes_per_word'] : 2,
);
$context['start'] = isset($_REQUEST['start']) ? (int) $_REQUEST['start'] : 0;
$context['step'] = isset($_REQUEST['step']) ? (int) $_REQUEST['step'] : 0;
if (empty($modSettings['securityDisable']) && $_SESSION['admin_time'] + 3300 < time() && $context['step'] >= 1)
$_SESSION['admin_time'] = time();
}
if ($context['step'] !== 0)
checkSession('request');
if ($context['step'] === 0)
{
$context['sub_template'] = 'create_index';
}
if ($context['step'] === 1)
{
$context['sub_template'] = 'create_index_progress';
if ($context['start'] === 0)
{
db_extend();
$tables = $smcFunc['db_list_tables'](false, $db_prefix . 'log_search_words');
if (!empty($tables))
{
$smcFunc['db_search_query']('drop_words_table', '
DROP TABLE {db_prefix}log_search_words',
array(
)
);
}
$smcFunc['db_create_word_search']($index_properties[$context['index_settings']['bytes_per_word']]['column_definition']);
if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'custom')
updateSettings(array('search_index' => ''));
if (!empty($modSettings['search_custom_index_config']))
updateSettings(array('search_custom_index_config' => ''));
}
$num_messages = array(
'done' => 0,
'todo' => 0,
);
$request = $smcFunc['db_query']('', '
SELECT id_msg >= {int:starting_id} AS todo, COUNT(*) AS num_messages
FROM {db_prefix}messages
GROUP BY todo',
array(
'starting_id' => $context['start'],
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
$num_messages[empty($row['todo']) ? 'done' : 'todo'] = $row['num_messages'];
if (empty($num_messages['todo']))
{
$context['step'] = 2;
$context['percentage'] = 80;
$context['start'] = 0;
}
else
{
$stop = time() + 3;
while (time() < $stop)
{
$inserts = array();
$request = $smcFunc['db_query']('', '
SELECT id_msg, body
FROM {db_prefix}messages
WHERE id_msg BETWEEN {int:starting_id} AND {int:ending_id}
LIMIT {int:limit}',
array(
'starting_id' => $context['start'],
'ending_id' => $context['start'] + $messages_per_batch - 1,
'limit' => $messages_per_batch,
)
);
$forced_break = false;
$number_processed = 0;
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if ($stop < time())
{
$forced_break = true;
break;
}
$number_processed++;
foreach (text2words($row['body'], $context['index_settings']['bytes_per_word'], true) as $id_word)
{
$inserts[] = array($id_word, $row['id_msg']);
}
}
$num_messages['done'] += $number_processed;
$num_messages['todo'] -= $number_processed;
$smcFunc['db_free_result']($request);
$context['start'] += $forced_break ? $number_processed : $messages_per_batch;
if (!empty($inserts))
$smcFunc['db_insert']('ignore',
'{db_prefix}log_search_words',
array('id_word' => 'int', 'id_msg' => 'int'),
$inserts,
array('id_word', 'id_msg')
);
if ($num_messages['todo'] === 0)
{
$context['step'] = 2;
$context['start'] = 0;
break;
}
else
updateSettings(array('search_custom_index_resume' => $smcFunc['json_encode'](array_merge($context['index_settings'], array('resume_at' => $context['start'])))));
}
$context['percentage'] = round($num_messages['done'] / ($num_messages['done'] + $num_messages['todo']), 3) * 80;
}
}
elseif ($context['step'] === 2)
{
if ($context['index_settings']['bytes_per_word'] < 4)
$context['step'] = 3;
else
{
$stop_words = $context['start'] === 0 || empty($modSettings['search_stopwords']) ? array() : explode(',', $modSettings['search_stopwords']);
$stop = time() + 3;
$context['sub_template'] = 'create_index_progress';
$max_messages = ceil(60 * $modSettings['totalMessages'] / 100);
while (time() < $stop)
{
$request = $smcFunc['db_query']('', '
SELECT id_word, COUNT(id_word) AS num_words
FROM {db_prefix}log_search_words
WHERE id_word BETWEEN {int:starting_id} AND {int:ending_id}
GROUP BY id_word
HAVING COUNT(id_word) > {int:minimum_messages}',
array(
'starting_id' => $context['start'],
'ending_id' => $context['start'] + $index_properties[$context['index_settings']['bytes_per_word']]['step_size'] - 1,
'minimum_messages' => $max_messages,
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
$stop_words[] = $row['id_word'];
$smcFunc['db_free_result']($request);
updateSettings(array('search_stopwords' => implode(',', $stop_words)));
if (!empty($stop_words))
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_search_words
WHERE id_word in ({array_int:stop_words})',
array(
'stop_words' => $stop_words,
)
);
$context['start'] += $index_properties[$context['index_settings']['bytes_per_word']]['step_size'];
if ($context['start'] > $index_properties[$context['index_settings']['bytes_per_word']]['max_size'])
{
$context['step'] = 3;
break;
}
}
$context['percentage'] = 80 + round($context['start'] / $index_properties[$context['index_settings']['bytes_per_word']]['max_size'], 3) * 20;
}
}
if ($context['step'] === 3)
{
$context['sub_template'] = 'create_index_done';
updateSettings(array('search_index' => 'custom', 'search_custom_index_config' => $smcFunc['json_encode']($context['index_settings'])));
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}settings
WHERE variable = {string:search_custom_index_resume}',
array(
'search_custom_index_resume' => 'search_custom_index_resume',
)
);
}
}
function loadSearchAPIs()
{
global $sourcedir, $txt;
require_once($sourcedir . '/Class-SearchAPI.php');
$apis = array();
if ($dh = opendir($sourcedir))
{
while (($file = readdir($dh)) !== false)
{
if (is_file($sourcedir . '/' . $file) && preg_match('~^SearchAPI-([A-Za-z\d_]+)\.php$~', $file, $matches))
{
$fp = fopen($sourcedir . '/' . $file, 'rb');
$header = fread($fp, 4096);
fclose($fp);
if (strpos($header, '* SearchAPI-' . $matches[1] . '.php') !== false)
{
require_once($sourcedir . '/' . $file);
$index_name = strtolower($matches[1]);
$search_class_name = $index_name . '_search';
$searchAPI = new $search_class_name();
if (!$searchAPI->is_supported)
continue;
$apis[$index_name] = array(
'filename' => $file,
'setting_index' => $index_name,
'has_template' => in_array($index_name, array('custom', 'fulltext', 'standard')),
'label' => $index_name && isset($txt['search_index_' . $index_name]) ? $txt['search_index_' . $index_name] : '',
'desc' => $index_name && isset($txt['search_index_' . $index_name . '_desc']) ? $txt['search_index_' . $index_name . '_desc'] : '',
);
}
}
}
}
closedir($dh);
return $apis;
}
function detectFulltextIndex()
{
global $smcFunc, $context, $db_prefix;
db_extend();
if ($smcFunc['db_title'] === POSTGRE_TITLE)
{
$request = $smcFunc['db_query']('', '
SELECT
indexname
FROM pg_tables t
LEFT OUTER JOIN
(SELECT c.relname AS ctablename, ipg.relname AS indexname, indexrelname FROM pg_index x
JOIN pg_class c ON c.oid = x.indrelid
JOIN pg_class ipg ON ipg.oid = x.indexrelid
JOIN pg_stat_all_indexes psai ON x.indexrelid = psai.indexrelid)
AS foo
ON t.tablename = foo.ctablename
WHERE t.schemaname= {string:schema} and indexname = {string:messages_ftx}',
array(
'schema' => 'public',
'messages_ftx' => $db_prefix . 'messages_ftx',
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
$context['fulltext_index'][] = $row['indexname'];
}
else
{
$request = $smcFunc['db_query']('', '
SHOW INDEX
FROM {db_prefix}messages',
array(
)
);
$context['fulltext_index'] = array();
if ($request !== false || $smcFunc['db_num_rows']($request) != 0)
{
while ($row = $smcFunc['db_fetch_assoc']($request))
if ($row['Column_name'] == 'body' && (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT' || isset($row['Comment']) && $row['Comment'] == 'FULLTEXT'))
$context['fulltext_index'][] = $row['Key_name'];
$smcFunc['db_free_result']($request);
if (is_array($context['fulltext_index']))
$context['fulltext_index'] = array_unique($context['fulltext_index']);
}
if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0)
$request = $smcFunc['db_query']('', '
SHOW TABLE STATUS
FROM {string:database_name}
LIKE {string:table_name}',
array(
'database_name' => '`' . strtr($match[1], array('`' => '')) . '`',
'table_name' => str_replace('_', '\_', $match[2]) . 'messages',
)
);
else
$request = $smcFunc['db_query']('', '
SHOW TABLE STATUS
LIKE {string:table_name}',
array(
'table_name' => str_replace('_', '\_', $db_prefix) . 'messages',
)
);
if ($request !== false)
{
while ($row = $smcFunc['db_fetch_assoc']($request))
if (isset($row['Engine']) && strtolower($row['Engine']) != 'myisam' && !(strtolower($row['Engine']) == 'innodb' && version_compare($smcFunc['db_get_version'](), '5.6.4', '>=')))
$context['cannot_create_fulltext'] = true;
$smcFunc['db_free_result']($request);
}
}
}
?>