Welcome to mirror list, hosted at ThFree Co, Russian Federation.

clusters_finder.rb « finders « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cce493b73e5babbd32793f87db2135011556112 (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
# frozen_string_literal: true

class ClustersFinder
  def initialize(clusterable, user, scope)
    @clusterable = clusterable
    @user = user
    @scope = scope || :active
  end

  def execute
    clusters = clusterable.clusters
    filter_by_scope(clusters)
  end

  private

  attr_reader :clusterable, :user, :scope

  def filter_by_scope(clusters)
    case scope.to_sym
    when :all
      clusters
    when :inactive
      clusters.disabled
    when :active
      clusters.enabled
    else
      raise "Invalid scope #{scope}"
    end
  end
end