2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
class NoteDiffFile < ApplicationRecord
|
2018-11-08 19:23:39 +05:30
|
|
|
include DiffFile
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
scope :referencing_sha, -> (oids, project_id:) do
|
|
|
|
joins(:diff_note).where(notes: { project_id: project_id, commit_id: oids })
|
|
|
|
end
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
delegate :original_position, :project, :resolved_at, to: :diff_note
|
2019-02-15 15:39:39 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
belongs_to :diff_note, inverse_of: :note_diff_file
|
|
|
|
|
|
|
|
validates :diff_note, presence: true
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
def raw_diff_file
|
|
|
|
raw_diff = Gitlab::Git::Diff.new(to_hash)
|
|
|
|
|
|
|
|
Gitlab::Diff::File.new(raw_diff,
|
|
|
|
repository: project.repository,
|
|
|
|
diff_refs: original_position.diff_refs,
|
|
|
|
unique_identifier: id)
|
|
|
|
end
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|