mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 11:44:49 +08:00
DEV: Make search results blurb non-pg headlines setting dependent (#20939)
Followup to #20915. If we're grouping search results that don't rely on core's search, we won't have access to pg headlines. This is now configurable via the constructor, defaulting to `SiteSetting.use_pg_headlines_for_excerpt`
This commit is contained in:
parent
f3402be262
commit
ecac62dd6f
|
@ -24,6 +24,7 @@ class Search
|
|||
:search_context,
|
||||
:more_full_page_results,
|
||||
:error,
|
||||
:use_pg_headlines_for_excerpt,
|
||||
)
|
||||
|
||||
attr_accessor :search_log_id
|
||||
|
@ -36,7 +37,8 @@ class Search
|
|||
search_context:,
|
||||
blurb_length: nil,
|
||||
blurb_term: nil,
|
||||
is_header_search: false
|
||||
is_header_search: false,
|
||||
use_pg_headlines_for_excerpt: SiteSetting.use_pg_headlines_for_excerpt
|
||||
)
|
||||
@type_filter = type_filter
|
||||
@term = term
|
||||
|
@ -50,6 +52,7 @@ class Search
|
|||
@groups = []
|
||||
@error = nil
|
||||
@is_header_search = is_header_search
|
||||
@use_pg_headlines_for_excerpt = use_pg_headlines_for_excerpt
|
||||
end
|
||||
|
||||
def error=(error)
|
||||
|
@ -73,7 +76,7 @@ class Search
|
|||
|
||||
if post.post_search_data.version >= SearchIndexer::MIN_POST_BLURB_INDEX_VERSION &&
|
||||
!Search.segment_chinese? && !Search.segment_japanese?
|
||||
if SiteSetting.use_pg_headlines_for_excerpt
|
||||
if use_pg_headlines_for_excerpt
|
||||
scrubbed_headline = post.headline.gsub(SCRUB_HEADLINE_REGEXP, '\1')
|
||||
prefix_omission = scrubbed_headline.start_with?(post.leading_raw_data) ? "" : OMISSION
|
||||
postfix_omission = scrubbed_headline.end_with?(post.trailing_raw_data) ? "" : OMISSION
|
||||
|
|
Loading…
Reference in New Issue
Block a user