2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 17:15:08 +08:00
|
|
|
require 'sanitize'
|
|
|
|
|
2013-05-24 02:26:51 +08:00
|
|
|
class Search
|
|
|
|
|
|
|
|
class GroupedSearchResults
|
2014-09-02 17:15:08 +08:00
|
|
|
include ActiveModel::Serialization
|
2013-05-24 02:26:51 +08:00
|
|
|
|
2014-09-02 17:15:08 +08:00
|
|
|
class TextHelper
|
|
|
|
extend ActionView::Helpers::TextHelper
|
2013-05-24 02:26:51 +08:00
|
|
|
end
|
|
|
|
|
2017-07-17 23:57:13 +08:00
|
|
|
attr_reader(
|
|
|
|
:type_filter,
|
|
|
|
:posts,
|
|
|
|
:categories,
|
|
|
|
:users,
|
2017-08-25 23:52:18 +08:00
|
|
|
:tags,
|
2019-03-04 17:30:09 +08:00
|
|
|
:groups,
|
2017-07-17 23:57:13 +08:00
|
|
|
:more_posts,
|
|
|
|
:more_categories,
|
|
|
|
:more_users,
|
|
|
|
:term,
|
|
|
|
:search_context,
|
2017-07-21 00:07:13 +08:00
|
|
|
:include_blurbs,
|
2019-07-02 09:21:52 +08:00
|
|
|
:more_full_page_results,
|
|
|
|
:error
|
2017-07-17 23:57:13 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
attr_accessor :search_log_id
|
2014-09-02 17:15:08 +08:00
|
|
|
|
2015-07-27 14:13:11 +08:00
|
|
|
def initialize(type_filter, term, search_context, include_blurbs, blurb_length)
|
2014-09-02 17:15:08 +08:00
|
|
|
@type_filter = type_filter
|
|
|
|
@term = term
|
|
|
|
@search_context = search_context
|
|
|
|
@include_blurbs = include_blurbs
|
2015-07-27 14:46:50 +08:00
|
|
|
@blurb_length = blurb_length || 200
|
2014-09-02 17:15:08 +08:00
|
|
|
@posts = []
|
|
|
|
@categories = []
|
|
|
|
@users = []
|
2017-08-25 23:52:18 +08:00
|
|
|
@tags = []
|
2019-03-04 17:30:09 +08:00
|
|
|
@groups = []
|
2019-07-02 09:21:52 +08:00
|
|
|
@error = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def error=(error)
|
|
|
|
@error = error
|
2013-05-24 02:26:51 +08:00
|
|
|
end
|
|
|
|
|
2016-03-18 13:26:20 +08:00
|
|
|
def find_user_data(guardian)
|
|
|
|
if user = guardian.user
|
|
|
|
topics = @posts.map(&:topic)
|
|
|
|
topic_lookup = TopicUser.lookup_for(user, topics)
|
|
|
|
topics.each { |ft| ft.user_data = topic_lookup[ft.id] }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-02 17:15:08 +08:00
|
|
|
def blurb(post)
|
2015-07-27 14:13:11 +08:00
|
|
|
GroupedSearchResults.blurb_for(post.cooked, @term, @blurb_length)
|
2014-09-02 17:15:08 +08:00
|
|
|
end
|
2013-05-24 02:26:51 +08:00
|
|
|
|
2014-09-02 17:15:08 +08:00
|
|
|
def add(object)
|
|
|
|
type = object.class.to_s.downcase.pluralize
|
2013-05-24 02:26:51 +08:00
|
|
|
|
2019-05-07 10:22:37 +08:00
|
|
|
if @type_filter.present? && public_send(type).length == Search.per_filter
|
2017-07-21 00:07:13 +08:00
|
|
|
@more_full_page_results = true
|
2019-05-07 10:22:37 +08:00
|
|
|
elsif !@type_filter.present? && public_send(type).length == Search.per_facet
|
2014-09-02 17:15:08 +08:00
|
|
|
instance_variable_set("@more_#{type}".to_sym, true)
|
2013-05-24 02:26:51 +08:00
|
|
|
else
|
2019-05-07 10:05:58 +08:00
|
|
|
(self.public_send(type)) << object
|
2013-05-24 02:26:51 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-28 09:20:09 +08:00
|
|
|
def self.blurb_for(cooked, term = nil, blurb_length = 200)
|
2015-06-25 03:08:22 +08:00
|
|
|
blurb = nil
|
2018-09-17 16:31:15 +08:00
|
|
|
cooked = SearchIndexer.scrub_html_for_search(cooked)
|
|
|
|
|
2019-10-31 01:07:16 +08:00
|
|
|
urls = Set.new
|
|
|
|
cooked.scan(URI.regexp(%w{http https})) { urls << $& }
|
|
|
|
urls.each do |url|
|
2019-11-06 23:32:15 +08:00
|
|
|
begin
|
|
|
|
case File.extname(URI(url).path || "")
|
|
|
|
when Oneboxer::VIDEO_REGEX
|
|
|
|
cooked.gsub!(url, I18n.t("search.video"))
|
|
|
|
when Oneboxer::AUDIO_REGEX
|
|
|
|
cooked.gsub!(url, I18n.t("search.audio"))
|
|
|
|
end
|
|
|
|
rescue URI::InvalidURIError
|
2019-10-31 21:13:24 +08:00
|
|
|
end
|
2019-10-31 01:07:16 +08:00
|
|
|
end
|
|
|
|
|
2015-06-25 03:08:22 +08:00
|
|
|
if term
|
|
|
|
terms = term.split(/\s+/)
|
2019-03-26 17:01:19 +08:00
|
|
|
phrase = terms.first
|
|
|
|
|
|
|
|
if phrase =~ Regexp.new(Search::PHRASE_MATCH_REGEXP_PATTERN)
|
|
|
|
phrase = Regexp.last_match[1]
|
|
|
|
end
|
|
|
|
|
|
|
|
blurb = TextHelper.excerpt(cooked, phrase,
|
2019-10-31 21:32:42 +08:00
|
|
|
radius: blurb_length / 2
|
2019-03-26 17:01:19 +08:00
|
|
|
)
|
2015-06-25 03:08:22 +08:00
|
|
|
end
|
2018-09-17 16:31:15 +08:00
|
|
|
|
2019-10-31 21:32:42 +08:00
|
|
|
blurb = TextHelper.truncate(cooked, length: blurb_length) if blurb.blank?
|
2015-06-25 03:08:22 +08:00
|
|
|
Sanitize.clean(blurb)
|
|
|
|
end
|
2013-05-24 02:26:51 +08:00
|
|
|
end
|
|
|
|
|
2014-02-17 11:34:14 +08:00
|
|
|
end
|