24 lines
585 B
Ruby
24 lines
585 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SearchService < BaseService
|
|
def call(query, limit, resolve = false)
|
|
return if query.blank? || query.start_with?('#')
|
|
|
|
username, domain = query.gsub(/\A@/, '').split('@')
|
|
|
|
results = if domain.nil?
|
|
Account.search_for(username)
|
|
else
|
|
Account.search_for("#{username} #{domain}")
|
|
end
|
|
|
|
results = results.limit(limit)
|
|
|
|
if resolve && results.empty? && !domain.nil?
|
|
results = [FollowRemoteAccountService.new.call("#{username}@#{domain}")]
|
|
end
|
|
|
|
results
|
|
end
|
|
end
|