2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
class MergeRequestDiffCommit < ApplicationRecord
|
2020-03-13 15:44:24 +05:30
|
|
|
include BulkInsertSafe
|
2017-09-10 17:25:29 +05:30
|
|
|
include ShaAttribute
|
2020-03-13 15:44:24 +05:30
|
|
|
include CachedCommit
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
belongs_to :merge_request_diff
|
|
|
|
|
|
|
|
sha_attribute :sha
|
|
|
|
alias_attribute :id, :sha
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
# Deprecated; use `bulk_insert!` from `BulkInsertSafe` mixin instead.
|
|
|
|
# cf. https://gitlab.com/gitlab-org/gitlab/issues/207989 for progress
|
2017-09-10 17:25:29 +05:30
|
|
|
def self.create_bulk(merge_request_diff_id, commits)
|
|
|
|
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,
|
2020-03-13 15:44:24 +05:30
|
|
|
sha: Gitlab::Database::ShaAttribute.serialize(sha), # rubocop:disable Cop/ActiveRecordSerialize
|
2018-03-17 18:26:18 +05:30
|
|
|
authored_date: Gitlab::Database.sanitize_timestamp(commit_hash[:authored_date]),
|
|
|
|
committed_date: Gitlab::Database.sanitize_timestamp(commit_hash[:committed_date])
|
2017-09-10 17:25:29 +05:30
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
Gitlab::Database.bulk_insert(self.table_name, rows) # rubocop:disable Gitlab/BulkInsert
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|