2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-12 08:33:21 -05:00
|
|
|
class SearchService < BaseService
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-26 09:21:36 -05:00
|
|
|
def call(query, account, limit, options = {})
|
2018-04-16 11:19:04 -04:00
|
|
|
@query = query.strip
|
2018-02-09 17:04:47 -05:00
|
|
|
@account = account
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-26 09:21:36 -05:00
|
|
|
@options = options
|
|
|
|
@limit = limit.to_i
|
|
|
|
@offset = options[:type].blank? ? 0 : options[:offset].to_i
|
|
|
|
@resolve = options[:resolve] || false
|
2016-11-12 08:33:21 -05:00
|
|
|
|
2017-05-05 11:26:04 -04:00
|
|
|
default_results.tap do |results|
|
|
|
|
if url_query?
|
2018-01-22 08:24:22 -05:00
|
|
|
results.merge!(url_resource_results) unless url_resource.nil?
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-26 09:21:36 -05:00
|
|
|
elsif @query.present?
|
2018-02-09 17:04:47 -05:00
|
|
|
results[:accounts] = perform_accounts_search! if account_searchable?
|
|
|
|
results[:statuses] = perform_statuses_search! if full_text_searchable?
|
|
|
|
results[:hashtags] = perform_hashtags_search! if hashtag_searchable?
|
2017-05-05 11:26:04 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-03-31 16:44:12 -04:00
|
|
|
|
2018-02-09 17:04:47 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def perform_accounts_search!
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-26 09:21:36 -05:00
|
|
|
AccountSearchService.new.call(
|
|
|
|
@query,
|
|
|
|
@account,
|
|
|
|
limit: @limit,
|
|
|
|
resolve: @resolve,
|
|
|
|
offset: @offset
|
|
|
|
)
|
2018-02-09 17:04:47 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def perform_statuses_search!
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-26 09:21:36 -05:00
|
|
|
definition = StatusesIndex.filter(term: { searchable_by: @account.id })
|
|
|
|
.query(multi_match: { type: 'most_fields', query: @query, operator: 'and', fields: %w(text text.stemmed) })
|
|
|
|
|
|
|
|
if @options[:account_id].present?
|
|
|
|
definition = definition.filter(term: { account_id: @options[:account_id] })
|
|
|
|
end
|
|
|
|
|
|
|
|
if @options[:min_id].present? || @options[:max_id].present?
|
|
|
|
range = {}
|
|
|
|
range[:gt] = @options[:min_id].to_i if @options[:min_id].present?
|
|
|
|
range[:lt] = @options[:max_id].to_i if @options[:max_id].present?
|
|
|
|
definition = definition.filter(range: { id: range })
|
|
|
|
end
|
|
|
|
|
|
|
|
results = definition.limit(@limit).offset(@offset).objects.compact
|
|
|
|
account_ids = results.map(&:account_id)
|
|
|
|
account_domains = results.map(&:account_domain)
|
|
|
|
preloaded_relations = relations_map_for_account(@account, account_ids, account_domains)
|
2018-02-09 17:04:47 -05:00
|
|
|
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-26 09:21:36 -05:00
|
|
|
results.reject { |status| StatusFilter.new(status, @account, preloaded_relations).filtered? }
|
2018-12-30 13:00:29 -05:00
|
|
|
rescue Faraday::ConnectionFailed
|
|
|
|
[]
|
2018-02-09 17:04:47 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def perform_hashtags_search!
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-26 09:21:36 -05:00
|
|
|
Tag.search_for(
|
|
|
|
@query.gsub(/\A#/, ''),
|
|
|
|
@limit,
|
|
|
|
@offset
|
|
|
|
)
|
2018-02-09 17:04:47 -05:00
|
|
|
end
|
|
|
|
|
2017-05-05 11:26:04 -04:00
|
|
|
def default_results
|
|
|
|
{ accounts: [], hashtags: [], statuses: [] }
|
|
|
|
end
|
2016-11-12 08:33:21 -05:00
|
|
|
|
2017-05-05 11:26:04 -04:00
|
|
|
def url_query?
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-26 09:21:36 -05:00
|
|
|
@options[:type].blank? && @query =~ /\Ahttps?:\/\//
|
2017-05-05 11:26:04 -04:00
|
|
|
end
|
|
|
|
|
2018-01-22 08:24:22 -05:00
|
|
|
def url_resource_results
|
|
|
|
{ url_resource_symbol => [url_resource] }
|
2017-05-05 11:26:04 -04:00
|
|
|
end
|
|
|
|
|
2018-01-22 08:24:22 -05:00
|
|
|
def url_resource
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-26 09:21:36 -05:00
|
|
|
@_url_resource ||= ResolveURLService.new.call(@query, on_behalf_of: @account)
|
2017-05-05 11:26:04 -04:00
|
|
|
end
|
2016-11-12 08:33:21 -05:00
|
|
|
|
2018-01-22 08:24:22 -05:00
|
|
|
def url_resource_symbol
|
|
|
|
url_resource.class.name.downcase.pluralize.to_sym
|
2016-11-12 08:33:21 -05:00
|
|
|
end
|
2018-02-09 17:04:47 -05:00
|
|
|
|
|
|
|
def full_text_searchable?
|
|
|
|
return false unless Chewy.enabled?
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-26 09:21:36 -05:00
|
|
|
|
|
|
|
statuses_search? && !@account.nil? && !((@query.start_with?('#') || @query.include?('@')) && !@query.include?(' '))
|
2018-02-09 17:04:47 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def account_searchable?
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-26 09:21:36 -05:00
|
|
|
account_search? && !(@query.include?('@') && @query.include?(' '))
|
2018-02-09 17:04:47 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def hashtag_searchable?
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-26 09:21:36 -05:00
|
|
|
hashtag_search? && !@query.include?('@')
|
|
|
|
end
|
|
|
|
|
|
|
|
def account_search?
|
|
|
|
@options[:type].blank? || @options[:type] == 'accounts'
|
|
|
|
end
|
|
|
|
|
|
|
|
def hashtag_search?
|
|
|
|
@options[:type].blank? || @options[:type] == 'hashtags'
|
|
|
|
end
|
|
|
|
|
|
|
|
def statuses_search?
|
|
|
|
@options[:type].blank? || @options[:type] == 'statuses'
|
|
|
|
end
|
|
|
|
|
|
|
|
def relations_map_for_account(account, account_ids, domains)
|
|
|
|
{
|
|
|
|
blocking: Account.blocking_map(account_ids, account.id),
|
|
|
|
blocked_by: Account.blocked_by_map(account_ids, account.id),
|
|
|
|
muting: Account.muting_map(account_ids, account.id),
|
|
|
|
following: Account.following_map(account_ids, account.id),
|
|
|
|
domain_blocking_by_domain: Account.domain_blocking_map_by_domain(domains, account.id),
|
|
|
|
}
|
2018-02-09 17:04:47 -05:00
|
|
|
end
|
2016-11-12 08:33:21 -05:00
|
|
|
end
|