summaryrefslogtreecommitdiff
path: root/lib/gitlab/legacy_github_import/branch_formatter.rb
blob: 1177751457fba11449bb02946f688147495e724e (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
# frozen_string_literal: true

module Gitlab
  module LegacyGithubImport
    class BranchFormatter < BaseFormatter
      delegate :repo, :sha, :ref, to: :raw_data

      def exists?
        branch_exists? && commit_exists?
      end

      def valid?
        sha.present? && ref.present?
      end

      def user
        raw_data.user&.login || 'unknown'
      end

      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

      def short_id
        sha.to_s[0..7]
      end
    end
  end
end