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

rules.rb « external « config « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a788427172a0d75b01db158952e329cfe2139ff (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

module Gitlab
  module Ci
    class Config
      module External
        class Rules
          def initialize(rule_hashes)
            @rule_list = Build::Rules::Rule.fabricate_list(rule_hashes)
          end

          def evaluate(context)
            Result.new(@rule_list.nil? || match_rule(context))
          end

          private

          def match_rule(context)
            @rule_list.find { |rule| rule.matches?(nil, context) }
          end

          Result = Struct.new(:result) do
            def pass?
              !!result
            end
          end
        end
      end
    end
  end
end