2016-11-12 13:33:21 +00:00
|
|
|
class SearchService < BaseService
|
2016-11-12 13:49:28 +00:00
|
|
|
def call(query, limit, resolve = false)
|
2016-11-12 13:33:21 +00:00
|
|
|
return if query.blank?
|
|
|
|
|
|
|
|
username, domain = query.split('@')
|
|
|
|
|
2016-11-12 13:49:28 +00:00
|
|
|
results = if domain.nil?
|
|
|
|
Account.search_for(username)
|
2016-11-12 13:33:21 +00:00
|
|
|
else
|
2016-11-12 13:49:28 +00:00
|
|
|
Account.search_for("#{username} #{domain}")
|
2016-11-12 13:33:21 +00:00
|
|
|
end
|
|
|
|
|
2016-11-12 13:49:28 +00:00
|
|
|
results = results.limit(limit).with_counters
|
2016-11-12 13:33:21 +00:00
|
|
|
|
2016-11-12 13:49:28 +00:00
|
|
|
if resolve && results.empty? && !domain.nil?
|
|
|
|
results = [FollowRemoteAccountService.new.call("#{username}@#{domain}")]
|
|
|
|
end
|
2016-11-12 13:33:21 +00:00
|
|
|
|
|
|
|
results
|
|
|
|
end
|
|
|
|
end
|