From 86592daaa16817b7554c243e59b0277006edf0fa Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 19 Sep 2020 10:45:11 +0000 Subject: [PATCH] Include more field in the fulltext search --- src/Model/ItemContent.php | 9 ++++++++- src/Module/Search/Index.php | 3 ++- static/dbstructure.config.php | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/Model/ItemContent.php b/src/Model/ItemContent.php index c4e77cf413..daa2766e2f 100644 --- a/src/Model/ItemContent.php +++ b/src/Model/ItemContent.php @@ -31,7 +31,7 @@ class ItemContent { public static function getURIIdListBySearch(string $search, int $uid = 0, int $start = 0, int $limit = 100) { - $condition = ["`uri-id` IN (SELECT `uri-id` FROM `item-content` WHERE MATCH (`body`) AGAINST (? IN BOOLEAN MODE)) + $condition = ["`uri-id` IN (SELECT `uri-id` FROM `item-content` WHERE MATCH (`title`, `content-warning`, `body`) AGAINST (? IN BOOLEAN MODE)) AND (NOT `private` OR (`private` AND `uid` = ?))", $search, $uid]; $params = [ 'order' => ['uri-id' => true], @@ -50,6 +50,13 @@ class ItemContent return $uriids; } + public static function countBySearch(string $search, int $uid = 0) + { + $condition = ["`uri-id` IN (SELECT `uri-id` FROM `item-content` WHERE MATCH (`title`, `content-warning`, `body`) AGAINST (? IN BOOLEAN MODE)) + AND (NOT `private` OR (`private` AND `uid` = ?))", $search, $uid]; + return DBA::count('item', $condition); + } + /** * Convert a message into plaintext for connectors to other networks * diff --git a/src/Module/Search/Index.php b/src/Module/Search/Index.php index 030b684e6b..42d1d50c7b 100644 --- a/src/Module/Search/Index.php +++ b/src/Module/Search/Index.php @@ -152,16 +152,17 @@ class Index extends BaseSearch if ($tag) { Logger::info('Start tag search.', ['q' => $search]); $uriids = Tag::getURIIdListByTag($search, local_user(), $pager->getStart(), $pager->getItemsPerPage()); + $count = Tag::countByTag($search, local_user()); } else { Logger::info('Start fulltext search.', ['q' => $search]); $uriids = ItemContent::getURIIdListBySearch($search, local_user(), $pager->getStart(), $pager->getItemsPerPage()); + $count = ItemContent::countBySearch($search, local_user()); } if (!empty($uriids)) { $params = ['order' => ['id' => true], 'group_by' => ['uri-id']]; $items = Item::selectForUser(local_user(), [], ['uri-id' => $uriids], $params); $r = Item::inArray($items); - $count = Tag::countByTag($search, local_user()); } else { $count = 0; } diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php index c69da5a0ef..ea506b4a92 100755 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -857,7 +857,7 @@ return [ "indexes" => [ "PRIMARY" => ["id"], "uri-plink-hash" => ["UNIQUE", "uri-plink-hash"], - "body" => ["FULLTEXT", "body"], + "title-content-warning-body" => ["FULLTEXT", "title", "content-warning", "body"], "uri" => ["uri(191)"], "plink" => ["plink(191)"], "uri-id" => ["uri-id"]