diff_note.rb 4.2 KB
Newer Older
1 2
# frozen_string_literal: true

D
Douwe Maan 已提交
3
# A note on merge request or commit diffs
4 5
#
# A note of this type can be resolvable.
D
Douwe Maan 已提交
6 7
class DiffNote < Note
  include NoteOnDiff
8
  include DiffPositionableNote
9
  include Gitlab::Utils::StrongMemoize
D
Douwe Maan 已提交
10

11 12 13
  def self.noteable_types
    %w(MergeRequest Commit)
  end
D
Douwe Maan 已提交
14

D
Douwe Maan 已提交
15 16
  validates :original_position, presence: true
  validates :position, presence: true
F
Felipe Artur 已提交
17
  validates :line_code, presence: true, line_code: true, if: :on_text?
18
  validates :noteable_type, inclusion: { in: noteable_types }
D
Douwe Maan 已提交
19 20
  validate :positions_complete
  validate :verify_supported
21
  validate :diff_refs_match_commit, if: :for_commit?
D
Douwe Maan 已提交
22

23
  before_validation :set_line_code, if: :on_text?
24
  after_save :keep_around_commits
25
  after_commit :create_diff_file, on: :create
D
Douwe Maan 已提交
26

27 28 29 30
  def discussion_class(*)
    DiffDiscussion
  end

31 32 33 34 35 36 37 38 39 40 41 42 43
  def create_diff_file
    return unless should_create_diff_file?

    diff_file = fetch_diff_file
    diff_line = diff_file.line_for_position(self.original_position)

    creation_params = diff_file.diff.to_hash
      .except(:too_large)
      .merge(diff: diff_file.diff_hunk(diff_line))

    create_note_diff_file(creation_params)
  end

D
Douwe Maan 已提交
44
  def diff_file
45 46 47 48 49
    strong_memoize(:diff_file) do
      enqueue_diff_file_creation_job if should_create_diff_file?

      fetch_diff_file
    end
D
Douwe Maan 已提交
50 51 52
  end

  def diff_line
53
    @diff_line ||= diff_file&.line_for_position(self.original_position)
D
Douwe Maan 已提交
54 55
  end

56
  def original_line_code
F
Felipe Artur 已提交
57 58
    return unless on_text?

59 60 61
    self.diff_file.line_code(self.diff_line)
  end

62 63 64
  def created_at_diff?(diff_refs)
    return false unless supported?
    return true if for_commit?
65

66
    self.original_position.diff_refs == diff_refs
67 68
  end

69 70 71 72
  def discussion_first_note?
    self == discussion.first_note
  end

73 74
  private

75 76 77 78 79 80 81 82 83 84
  def enqueue_diff_file_creation_job
    # Avoid enqueuing multiple file creation jobs at once for a note (i.e.
    # parallel calls to `DiffNote#diff_file`).
    lease = Gitlab::ExclusiveLease.new("note_diff_file_creation:#{id}", timeout: 1.hour.to_i)
    return unless lease.try_obtain

    CreateNoteDiffFileWorker.perform_async(id)
  end

  def should_create_diff_file?
85
    on_text? && note_diff_file.nil? && discussion_first_note?
86 87 88
  end

  def fetch_diff_file
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
    file =
      if note_diff_file
        diff = Gitlab::Git::Diff.new(note_diff_file.to_hash)
        Gitlab::Diff::File.new(diff,
                               repository: project.repository,
                               diff_refs: original_position.diff_refs)
      elsif created_at_diff?(noteable.diff_refs)
        # We're able to use the already persisted diffs (Postgres) if we're
        # presenting a "current version" of the MR discussion diff.
        # So no need to make an extra Gitaly diff request for it.
        # As an extra benefit, the returned `diff_file` already
        # has `highlighted_diff_lines` data set from Redis on
        # `Diff::FileCollection::MergeRequestDiff`.
        noteable.diffs(original_position.diff_options).diff_files.first
      else
        original_position.diff_file(self.project.repository)
      end

    # Since persisted diff files already have its content "unfolded"
    # there's no need to make it pass through the unfolding process.
    file&.unfold_diff_lines(position) unless note_diff_file

    file
112 113
  end

114
  def supported?
C
Connor Shea 已提交
115
    for_commit? || self.noteable.has_complete_diff_refs?
116 117 118 119 120 121
  end

  def set_line_code
    self.line_code = self.position.line_code(self.project.repository)
  end

D
Douwe Maan 已提交
122 123 124 125 126 127 128 129 130 131 132
  def verify_supported
    return if supported?

    errors.add(:noteable, "doesn't support new-style diff notes")
  end

  def positions_complete
    return if self.original_position.complete? && self.position.complete?

    errors.add(:position, "is invalid")
  end
133

134 135 136 137 138 139
  def diff_refs_match_commit
    return if self.original_position.diff_refs == self.commit.diff_refs

    errors.add(:commit_id, 'does not match the diff refs')
  end

140
  def keep_around_commits
141 142 143 144 145
    shas = [
      self.original_position.base_sha,
      self.original_position.start_sha,
      self.original_position.head_sha
    ]
146 147

    if self.position != self.original_position
148 149 150
      shas << self.position.base_sha
      shas << self.position.start_sha
      shas << self.position.head_sha
151
    end
152 153

    project.repository.keep_around(*shas)
154
  end
D
Douwe Maan 已提交
155
end