mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
51 lines
1.9 KiB
Ruby
51 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class MergeRequestContextCommit < ApplicationRecord
|
|
include CachedCommit
|
|
include ShaAttribute
|
|
|
|
belongs_to :merge_request
|
|
has_many :diff_files, class_name: 'MergeRequestContextCommitDiffFile'
|
|
|
|
sha_attribute :sha
|
|
|
|
validates :sha, presence: true
|
|
validates :sha, uniqueness: { message: 'has already been added' }
|
|
|
|
attribute :trailers, ::Gitlab::Database::Type::IndifferentJsonb.new
|
|
validates :trailers, json_schema: { filename: 'git_trailers' }
|
|
|
|
validates :merge_request_id, presence: true
|
|
|
|
# Sort by committed date in descending order to ensure latest commits comes on the top
|
|
scope :order_by_committed_date_desc, -> { order('committed_date DESC') }
|
|
|
|
# delete all MergeRequestContextCommit & MergeRequestContextCommitDiffFile for given merge_request & commit SHAs
|
|
def self.delete_bulk(merge_request, commits)
|
|
commit_ids = commits.map(&:sha)
|
|
merge_request.merge_request_context_commits.where(sha: commit_ids).delete_all
|
|
end
|
|
|
|
# create MergeRequestContextCommit by given commit sha and it's diff file record
|
|
def self.bulk_insert(rows, **args)
|
|
# Remove the new extended_trailers attribute as this shouldn't be
|
|
# inserted into the database. This will be removed once the old
|
|
# format of the trailers attribute is deprecated.
|
|
rows = rows.map do |row|
|
|
row.except(:extended_trailers).to_hash
|
|
end
|
|
|
|
ApplicationRecord.legacy_bulk_insert('merge_request_context_commits', rows, **args) # rubocop:disable Gitlab/BulkInsert
|
|
end
|
|
|
|
def to_commit
|
|
# Here we are storing the commit sha because to_hash removes the sha parameter and we lose
|
|
# the reference, this happens because we are storing the ID in db and the Commit class replaces
|
|
# id with sha and removes it, so in our case it will be some incremented integer which is not
|
|
# what we want
|
|
commit_hash = attributes.except('id').to_hash
|
|
commit_hash['id'] = sha
|
|
Commit.from_hash(commit_hash, merge_request.target_project)
|
|
end
|
|
end
|