2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RefMatcher
|
|
|
|
def initialize(ref_name_or_pattern)
|
|
|
|
@ref_name_or_pattern = ref_name_or_pattern
|
|
|
|
end
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
# Returns all branches/tags (among the given list of refs [`Gitlab::Git::Branch`] or their names [`String`])
|
2018-11-20 20:47:30 +05:30
|
|
|
# that match the current protected ref.
|
|
|
|
def matching(refs)
|
2022-03-02 08:16:31 +05:30
|
|
|
refs.select { |ref| ref.is_a?(String) ? matches?(ref) : matches?(ref.name) }
|
2018-11-20 20:47:30 +05:30
|
|
|
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
|
|
|
|
|
|
|
|
# Checks if this protected ref contains a wildcard
|
|
|
|
def wildcard?
|
|
|
|
@ref_name_or_pattern && @ref_name_or_pattern.include?('*')
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def exact_match?(ref_name)
|
|
|
|
@ref_name_or_pattern == ref_name
|
|
|
|
end
|
|
|
|
|
|
|
|
def wildcard_match?(ref_name)
|
|
|
|
return false unless wildcard?
|
|
|
|
|
|
|
|
wildcard_regex === ref_name
|
|
|
|
end
|
|
|
|
|
|
|
|
def wildcard_regex
|
|
|
|
@wildcard_regex ||= begin
|
|
|
|
name = @ref_name_or_pattern.gsub('*', 'STAR_DONT_ESCAPE')
|
|
|
|
quoted_name = Regexp.quote(name)
|
|
|
|
regex_string = quoted_name.gsub('STAR_DONT_ESCAPE', '.*?')
|
|
|
|
/\A#{regex_string}\z/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|