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

ref_matcher.rb « gitlab « lib « ruby - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0bb2163a6e05f259fe0a08344b6f89fbd3c3075 (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
39
40
41
# frozen_string_literal: true

module GitLab
  class RefMatcher
    def initialize(ref_name_or_pattern)
      @ref_name_or_pattern = ref_name_or_pattern
    end

    # Checks if the protected ref matches the given ref name.
    def matches?(ref_name)
      return false if @ref_name_or_pattern.blank?

      exact_match?(ref_name) || wildcard_match?(ref_name)
    end

    private

    # Checks if this protected ref contains a wildcard
    def wildcard?
      @ref_name_or_pattern&.include?('*')
    end

    def exact_match?(ref_name)
      @ref_name_or_pattern == ref_name
    end

    def wildcard_match?(ref_name)
      return false unless wildcard?

      ref_name.match(wildcard_regex).present?
    end

    def wildcard_regex
      @wildcard_regex ||= begin
                            split = @ref_name_or_pattern.split('*', -1) # Use -1 to correctly handle trailing '*'
                            quoted_segments = split.map { |segment| Regexp.quote(segment) }
                            /\A#{quoted_segments.join('.*?')}\z/
                          end
    end
  end
end