41 lines
1.6 KiB
Ruby
41 lines
1.6 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' }
|
|
|
|
serialize :trailers, Serializers::Json # rubocop:disable Cop/ActiveRecordSerialize
|
|
validates :trailers, json_schema: { filename: 'git_trailers' }
|
|
|
|
# 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)
|
|
Gitlab::Database.main.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
|