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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
# frozen_string_literal: true
module ExtractsRef
class RequestedRef
include Gitlab::Utils::StrongMemoize
SYMBOLIC_REF_PREFIX = %r{((refs/)?(heads|tags)/)+}
def initialize(repository, ref_type:, ref:)
@ref_type = ref_type
@ref = ref
@repository = repository
end
attr_reader :repository, :ref_type, :ref
def find
case ref_type
when 'tags'
{ ref_type: ref_type, commit: tag }
when 'heads'
{ ref_type: ref_type, commit: branch }
else
commit_without_ref_type
end
end
private
def commit_without_ref_type
if commit.nil?
{ ref_type: nil, commit: nil }
elsif commit.id == ref
# ref is probably complete 40 character sha
{ ref_type: nil, commit: commit }
elsif tag.present?
{ ref_type: 'tags', commit: tag, ambiguous: branch.present? }
elsif branch.present?
{ ref_type: 'heads', commit: branch }
else
{ ref_type: nil, commit: commit, ambiguous: ref.match?(SYMBOLIC_REF_PREFIX) }
end
end
def commit
repository.commit(ref)
end
strong_memoize_attr :commit
def tag
return unless repository.tag_exists?(ref)
raw_commit = repository.find_tag(ref)&.dereferenced_target
::Commit.new(raw_commit, repository.container) if raw_commit
end
strong_memoize_attr :tag
def branch
return unless repository.branch_exists?(ref)
raw_commit = repository.find_branch(ref)&.dereferenced_target
::Commit.new(raw_commit, repository.container) if raw_commit
end
strong_memoize_attr :branch
end
end
|