2017-03-21 18:32:27 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AccountSearchService < 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 06:21:36 -08:00
|
|
|
attr_reader :query, :limit, :offset, :options, :account
|
2017-04-14 18:17:07 -07: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 06:21:36 -08:00
|
|
|
def call(query, account = nil, options = {})
|
2017-12-10 10:35:46 -08:00
|
|
|
@query = query.strip
|
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 06:21:36 -08:00
|
|
|
@limit = options[:limit].to_i
|
|
|
|
@offset = options[:offset].to_i
|
2017-12-05 14:02:27 -08:00
|
|
|
@options = options
|
2017-04-14 18:17:07 -07:00
|
|
|
@account = account
|
|
|
|
|
2019-04-06 19:59:13 -07:00
|
|
|
search_service_results
|
2017-04-14 18:17:07 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2017-03-21 18:32:27 -07:00
|
|
|
|
2017-04-14 18:17:07 -07:00
|
|
|
def search_service_results
|
2017-04-24 19:44:43 -07:00
|
|
|
return [] if query_blank_or_hashtag? || limit < 1
|
2017-03-21 18:32:27 -07:00
|
|
|
|
2017-04-14 18:17:07 -07:00
|
|
|
if resolving_non_matching_remote_account?
|
2018-01-22 05:25:09 -08:00
|
|
|
[ResolveAccountService.new.call("#{query_username}@#{query_domain}")].compact
|
2017-03-21 18:32:27 -07:00
|
|
|
else
|
2017-04-24 19:44:43 -07:00
|
|
|
search_results_and_exact_match.compact.uniq.slice(0, limit)
|
2017-03-21 18:32:27 -07:00
|
|
|
end
|
2017-04-14 18:17:07 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def resolving_non_matching_remote_account?
|
2017-12-05 14:02:27 -08:00
|
|
|
options[:resolve] && !exact_match && !domain_is_local?
|
2017-04-14 18:17:07 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def search_results_and_exact_match
|
2017-04-24 19:44:43 -07:00
|
|
|
exact = [exact_match]
|
|
|
|
return exact if !exact[0].nil? && limit == 1
|
|
|
|
exact + search_results.to_a
|
2017-04-14 18:17:07 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def query_blank_or_hashtag?
|
|
|
|
query.blank? || query.start_with?('#')
|
|
|
|
end
|
|
|
|
|
|
|
|
def split_query_string
|
|
|
|
@_split_query_string ||= query.gsub(/\A@/, '').split('@')
|
|
|
|
end
|
|
|
|
|
|
|
|
def query_username
|
2017-04-17 10:57:02 -07:00
|
|
|
@_query_username ||= split_query_string.first || ''
|
2017-04-14 18:17:07 -07:00
|
|
|
end
|
2017-03-21 18:32:27 -07:00
|
|
|
|
2017-04-14 18:17:07 -07:00
|
|
|
def query_domain
|
|
|
|
@_query_domain ||= query_without_split? ? nil : split_query_string.last
|
|
|
|
end
|
|
|
|
|
|
|
|
def query_without_split?
|
|
|
|
split_query_string.size == 1
|
|
|
|
end
|
|
|
|
|
|
|
|
def domain_is_local?
|
|
|
|
@_domain_is_local ||= TagManager.instance.local_domain?(query_domain)
|
|
|
|
end
|
|
|
|
|
2017-12-06 02:44:23 -08:00
|
|
|
def search_from
|
|
|
|
options[:following] && account ? account.following : Account
|
|
|
|
end
|
|
|
|
|
2017-04-14 18:17:07 -07:00
|
|
|
def exact_match
|
2017-05-26 15:55:08 -07:00
|
|
|
@_exact_match ||= begin
|
|
|
|
if domain_is_local?
|
2018-04-23 12:27:18 -07:00
|
|
|
search_from.without_suspended.find_local(query_username)
|
2017-05-26 15:55:08 -07:00
|
|
|
else
|
2018-04-23 12:27:18 -07:00
|
|
|
search_from.without_suspended.find_remote(query_username, query_domain)
|
2017-05-26 15:55:08 -07:00
|
|
|
end
|
|
|
|
end
|
2017-04-14 18:17:07 -07:00
|
|
|
end
|
2017-03-21 18:32:27 -07:00
|
|
|
|
2017-04-14 18:17:07 -07:00
|
|
|
def search_results
|
2017-04-29 15:23:45 -07:00
|
|
|
@_search_results ||= begin
|
|
|
|
if account
|
|
|
|
advanced_search_results
|
|
|
|
else
|
|
|
|
simple_search_results
|
|
|
|
end
|
2017-03-21 18:32:27 -07:00
|
|
|
end
|
2017-04-14 18:17:07 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def advanced_search_results
|
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 06:21:36 -08:00
|
|
|
Account.advanced_search_for(terms_for_query, account, limit, options[:following], offset)
|
2017-04-14 18:17:07 -07:00
|
|
|
end
|
2017-03-21 18:32:27 -07:00
|
|
|
|
2017-04-14 18:17:07 -07:00
|
|
|
def simple_search_results
|
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 06:21:36 -08:00
|
|
|
Account.search_for(terms_for_query, limit, offset)
|
2017-04-14 18:17:07 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def terms_for_query
|
|
|
|
if domain_is_local?
|
|
|
|
query_username
|
|
|
|
else
|
|
|
|
"#{query_username} #{query_domain}"
|
|
|
|
end
|
2017-03-21 18:32:27 -07:00
|
|
|
end
|
|
|
|
end
|