summaryrefslogtreecommitdiff
path: root/app/finders/autocomplete/project_finder.rb
blob: 6e51ae4c70dbfd8ae5c3b7c7e2e701576755a776 (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
# frozen_string_literal: true

module Autocomplete
  # Finder for retrieving a project to use for autocomplete data sources.
  class ProjectFinder
    attr_reader :current_user, :project_id

    # current_user - The currently logged in user, if any.
    # params - A Hash containing parameters to use for finding the project.
    #
    # The following parameters are supported:
    #
    # * project_id: The ID of the project to find.
    def initialize(current_user = nil, params = {})
      @current_user = current_user
      @project_id = params[:project_id]
    end

    # Attempts to find a Project based on the current project ID.
    def execute
      return if project_id.blank?

      project = Project.find(project_id)

      # This removes the need for using `return render_404` and similar patterns
      # in controllers that use this finder.
      unless Ability.allowed?(current_user, :read_project, project)
        raise ActiveRecord::RecordNotFound, "Could not find a Project with ID #{project_id}"
      end

      project
    end
  end
end