BigW Consortium Gitlab

merge_request_diff_commit.rb 1012 Bytes
Newer Older
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
class MergeRequestDiffCommit < ActiveRecord::Base
  include ShaAttribute

  belongs_to :merge_request_diff

  sha_attribute :sha
  alias_attribute :id, :sha

  def self.create_bulk(merge_request_diff_id, commits)
    sha_attribute = Gitlab::Database::ShaAttribute.new

    rows = commits.map.with_index do |commit, index|
      # See #parent_ids.
      commit_hash = commit.to_hash.except(:parent_ids)
      sha = commit_hash.delete(:id)

      commit_hash.merge(
        merge_request_diff_id: merge_request_diff_id,
        relative_order: index,
        sha: sha_attribute.type_cast_for_database(sha)
      )
    end

    Gitlab::Database.bulk_insert(self.table_name, rows)
  end

  def to_hash
    Gitlab::Git::Commit::SERIALIZE_KEYS.each_with_object({}) do |key, hash|
      hash[key] = public_send(key)
    end
  end

  # We don't save these, because they would need a table or a serialised
  # field. They aren't used anywhere, so just pretend the commit has no parents.
  def parent_ids
    []
  end
end