summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/build/rules/rule/clause/changes.rb
blob: cbecce571639596b3c9a985b082b8c8bef28aaf4 (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
# frozen_string_literal: true

module Gitlab
  module Ci
    module Build
      class Rules::Rule::Clause::Changes < Rules::Rule::Clause
        def initialize(globs)
          @globs = Array(globs)
        end

        def satisfied_by?(pipeline, context)
          return true if pipeline.modified_paths.nil?

          expanded_globs = expand_globs(pipeline, context)
          pipeline.modified_paths.any? do |path|
            expanded_globs.any? do |glob|
              File.fnmatch?(glob, path, File::FNM_PATHNAME | File::FNM_DOTMATCH | File::FNM_EXTGLOB)
            end
          end
        end

        def expand_globs(pipeline, context)
          return @globs unless ::Feature.enabled?(:ci_variable_expansion_in_rules_changes, pipeline.project, default_enabled: true)
          return @globs unless context

          @globs.map do |glob|
            ExpandVariables.expand_existing(glob, context.variables)
          end
        end
      end
    end
  end
end