summaryrefslogtreecommitdiff
path: root/app/finders/autocomplete/routes_finder.rb
blob: b3f2693b273b23467856a96a2572f9c95b59d381 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# frozen_string_literal: true

module Autocomplete
  # Finder that returns a list of routes that match on the `path` attribute.
  class RoutesFinder
    attr_reader :current_user, :search

    LIMIT = 20

    def initialize(current_user, params = {})
      @current_user = current_user
      @search = params[:search]
    end

    def execute
      return [] if @search.blank?

      Route
        .for_routable(routables)
        .sort_by_path_length
        .fuzzy_search(@search, [:path])
        .limit(LIMIT) # rubocop: disable CodeReuse/ActiveRecord
    end

    private

    def routables
      raise NotImplementedError
    end

    class NamespacesOnly < self
      def routables
        return Namespace.all if current_user.admin?

        current_user.namespaces
      end
    end

    class ProjectsOnly < self
      def routables
        return Project.all if current_user.admin?

        current_user.projects
      end
    end
  end
end