gitlab-org--gitlab-foss/lib/gitlab/git/ref.rb

46 lines
1.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-01-04 18:43:06 +00:00
module Gitlab
module Git
class Ref
include Gitlab::EncodingHelper
include Gitlab::Git::RuggedImpl::Ref
2017-01-04 18:43:06 +00:00
# Branch or tag name
# without "refs/tags|heads" prefix
attr_reader :name
# Target sha.
# Usually it is commit sha but in case
# when tag reference on other tag it can be tag sha
attr_reader :target
# Dereferenced target
# Commit object to which the Ref points to
attr_reader :dereferenced_target
# Extract branch name from full ref path
#
# Ex.
# Ref.extract_branch_name('refs/heads/master') #=> 'master'
def self.extract_branch_name(str)
2018-01-27 05:35:53 +00:00
str.gsub(%r{\Arefs/heads/}, '')
2017-01-04 18:43:06 +00:00
end
def initialize(repository, name, target, dereferenced_target)
2017-07-14 13:32:01 +00:00
@name = Gitlab::Git.ref_name(name)
@dereferenced_target = dereferenced_target
2017-01-04 18:43:06 +00:00
@target = if target.respond_to?(:oid)
target.oid
elsif target.respond_to?(:name)
target.name
elsif target.is_a? String
target
else
nil
end
end
end
end
end