gitlab-org--gitlab-foss/lib/gitlab/github_import/branch_formatter.rb

38 lines
666 B
Ruby
Raw Normal View History

2016-05-09 22:45:37 +00:00
module Gitlab
module GithubImport
class BranchFormatter < BaseFormatter
delegate :repo, :sha, :ref, to: :raw_data
def exists?
branch_exists? && commit_exists?
2016-05-09 22:45:37 +00:00
end
def valid?
sha.present? && ref.present?
2016-05-09 22:45:37 +00:00
end
def user
2017-03-22 17:45:35 +00:00
raw_data.user&.login || 'unknown'
end
2017-03-26 01:16:27 +00:00
def short_sha
Commit.truncate_sha(sha)
end
private
def branch_exists?
project.repository.branch_exists?(ref)
end
def commit_exists?
project.repository.branch_names_contains(sha).include?(ref)
end
2016-05-09 22:45:37 +00:00
def short_id
sha.to_s[0..7]
end
end
end
end