about summary refs log tree commit diff
path: root/app/services/search_service.rb
blob: 04de8a1347cfc2f7dfd6b4d2eef05509d495e1a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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('@')

    if domain.nil?
      exact_match = Account.find_local(username)
      results     = Account.search_for(username)
    else
      exact_match = Account.find_remote(username, domain)
      results     = Account.search_for("#{username} #{domain}")
    end

    results = results.limit(limit).to_a
    results = [exact_match] + results.reject { |a| a.id == exact_match.id } if exact_match

    if resolve && !exact_match && !domain.nil?
      results = [FollowRemoteAccountService.new.call("#{username}@#{domain}")]
    end

    results
  end
end