summaryrefslogtreecommitdiff
path: root/app/finders/container_repositories_finder.rb
blob: eb91d7f825b2598da6cebca9bb6954136c6b7d1a (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

class ContainerRepositoriesFinder
  # id: group or project id
  # container_type: :group or :project
  def initialize(id:, container_type:)
    @id = id
    @type = container_type.to_sym
  end

  def execute
    if project_type?
      project.container_repositories
    else
      group.container_repositories
    end
  end

  private

  attr_reader :id, :type

  def project_type?
    type == :project
  end

  def project
    Project.find(id)
  end

  def group
    Group.find(id)
  end
end