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

config.rb « controller_with_feature_category « concerns « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 624691ee4f65b4d9242c553032fd52c5d9d58427 (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
# frozen_string_literal: true

module ControllerWithFeatureCategory
  class Config
    attr_reader :category

    def initialize(category, only, except, if_proc, unless_proc)
      @category = category.to_sym
      @only, @except = only&.map(&:to_s), except&.map(&:to_s)
      @if_proc, @unless_proc = if_proc, unless_proc
    end

    def matches?(action)
      included?(action) && !excluded?(action) &&
        if_proc?(action) && !unless_proc?(action)
    end

    private

    attr_reader :only, :except, :if_proc, :unless_proc

    def if_proc?(action)
      if_proc.nil? || if_proc.call(action)
    end

    def unless_proc?(action)
      unless_proc.present? && unless_proc.call(action)
    end

    def included?(action)
      only.nil? || only.include?(action)
    end

    def excluded?(action)
      except.present? && except.include?(action)
    end
  end
end