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

requested_ref.rb « extracts_ref « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f20018b5ef494e29a38cd17b458c40a9d8ffc218 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# 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
      raw_commit = repository.find_tag(ref)&.dereferenced_target
      ::Commit.new(raw_commit, repository.container) if raw_commit
    end
    strong_memoize_attr :tag

    def branch
      raw_commit = repository.find_branch(ref)&.dereferenced_target
      ::Commit.new(raw_commit, repository.container) if raw_commit
    end
    strong_memoize_attr :branch
  end
end