BigW Consortium Gitlab

merge_request_diff.rb 9.43 KB
Newer Older
1
class MergeRequestDiff < ActiveRecord::Base
2
  include Sortable
3
  include Importable
4
  include Gitlab::EncodingHelper
5

6
  # Prevent store of diff if commits amount more then 500
7
  COMMITS_SAFE_SIZE = 100
8

9
  # Valid types of serialized diffs allowed by Gitlab::Git::Diff
10
  VALID_CLASSES = [Hash, Rugged::Patch, Rugged::Diff::Delta].freeze
11

12 13
  belongs_to :merge_request

14 15
  serialize :st_commits # rubocop:disable Cop/ActiverecordSerialize
  serialize :st_diffs # rubocop:disable Cop/ActiverecordSerialize
16

17 18
  state_machine :state, initial: :empty do
    state :collected
19 20 21
    state :overflow
    # Deprecated states: these are no longer used but these values may still occur
    # in the database.
22 23 24 25 26 27
    state :timeout
    state :overflow_commits_safe_size
    state :overflow_diff_files_limit
    state :overflow_diff_lines_limit
  end

28
  scope :viewable, -> { without_state(:empty) }
29

30 31
  # All diff information is collected from repository after object is created.
  # It allows you to override variables like head_commit_sha before getting diff.
32
  after_create :save_git_content, unless: :importing?
33

Douwe Maan committed
34
  def self.find_by_diff_refs(diff_refs)
Douwe Maan committed
35
    find_by(start_commit_sha: diff_refs.start_sha, head_commit_sha: diff_refs.head_sha, base_commit_sha: diff_refs.base_sha)
Douwe Maan committed
36 37
  end

38 39 40 41
  def self.select_without_diff
    select(column_names - ['st_diffs'])
  end

42 43 44 45
  def st_commits
    super || []
  end

46 47 48
  # Collect information about commits and diff from repository
  # and save it to the database as serialized data
  def save_git_content
49
    ensure_commits_sha
50
    save_commits
51
    reload_commits
52
    save_diffs
53 54 55 56
    keep_around_commits
  end

  def ensure_commits_sha
57
    merge_request.fetch_ref
58
    self.start_commit_sha ||= merge_request.target_branch_sha
59
    self.head_commit_sha  ||= merge_request.source_branch_sha
60
    self.base_commit_sha  ||= find_base_sha
61 62 63 64 65 66 67 68 69 70 71
    save
  end

  # Override head_commit_sha to keep compatibility with merge request diff
  # created before version 8.4 that does not store head_commit_sha in separate db field.
  def head_commit_sha
    if persisted? && super.nil?
      last_commit.try(:sha)
    else
      super
    end
72 73
  end

74 75 76 77 78 79 80
  # This method will rely on repository branch sha
  # in case start_commit_sha is nil. Its necesarry for old merge request diff
  # created before version 8.4 to work
  def safe_start_commit_sha
    start_commit_sha || merge_request.target_branch_sha
  end

81
  def size
82
    real_size.presence || raw_diffs.size
83 84
  end

85
  def raw_diffs(options = {})
86
    if options[:ignore_whitespace_change]
87
      @diffs_no_whitespace ||=
88 89 90
        Gitlab::Git::Compare.new(
          repository.raw_repository,
          safe_start_commit_sha,
91
          head_commit_sha).diffs(options)
92
    else
93 94
      @raw_diffs ||= {}
      @raw_diffs[options] ||= load_diffs(st_diffs, options)
95
    end
96 97
  end

98
  def commits
99
    @commits ||= load_commits(st_commits)
100 101
  end

102 103 104 105 106
  def reload_commits
    @commits = nil
    commits
  end

107 108 109 110
  def last_commit
    commits.first
  end

111 112 113 114
  def first_commit
    commits.last
  end

115
  def base_commit
116
    return unless base_commit_sha
117

118
    project.commit(base_commit_sha)
119 120
  end

121
  def start_commit
122
    return unless start_commit_sha
123

124
    project.commit(start_commit_sha)
125 126 127
  end

  def head_commit
128
    return unless head_commit_sha
129

130
    project.commit(head_commit_sha)
131 132
  end

133
  def commits_sha
134
    st_commits.map { |commit| commit[:id] }
135 136
  end

Douwe Maan committed
137
  def diff_refs=(new_diff_refs)
138 139 140
    self.base_commit_sha = new_diff_refs&.base_sha
    self.start_commit_sha = new_diff_refs&.start_sha
    self.head_commit_sha = new_diff_refs&.head_sha
Douwe Maan committed
141 142
  end

143
  def diff_refs
144
    return unless start_commit_sha || base_commit_sha
145 146 147 148 149 150 151 152

    Gitlab::Diff::DiffRefs.new(
      base_sha:  base_commit_sha,
      start_sha: start_commit_sha,
      head_sha:  head_commit_sha
    )
  end

153 154
  # MRs created before 8.4 don't store their true diff refs (start and base),
  # but we need to get a commit SHA for the "View file @ ..." link by a file,
155 156
  # so we use an approximation of the diff refs if we can't get the actual one.
  #
157 158 159
  # These will not be the actual diff refs if the target branch was merged into
  # the source branch after the merge request was created, but it is good enough
  # for the specific purpose of linking to a commit.
160
  #
161 162 163
  # It is not good enough for highlighting diffs, so we can't simply pass
  # these as `diff_refs.`
  def fallback_diff_refs
164 165 166
    real_refs = diff_refs
    return real_refs if real_refs

167 168 169 170 171 172 173 174 175
    likely_base_commit_sha = (first_commit&.parent || first_commit)&.sha

    Gitlab::Diff::DiffRefs.new(
      base_sha:  likely_base_commit_sha,
      start_sha: safe_start_commit_sha,
      head_sha:  head_commit_sha
    )
  end

176 177 178 179
  def diff_refs_by_sha?
    base_commit_sha? && head_commit_sha? && start_commit_sha?
  end

180 181 182 183 184 185 186
  def diffs(diff_options = nil)
    Gitlab::Diff::FileCollection::MergeRequestDiff.new(self, diff_options: diff_options)
  end

  def project
    merge_request.target_project
  end
187

188 189
  def compare
    @compare ||=
190 191 192 193 194
      Gitlab::Git::Compare.new(
        repository.raw_repository,
        safe_start_commit_sha,
        head_commit_sha
      )
195 196
  end

197 198 199 200
  def latest?
    self == merge_request.merge_request_diff
  end

201
  def compare_with(sha)
202
    # When compare merge request versions we want diff A..B instead of A...B
203
    # so we handle cases when user does squash and rebase of the commits between versions.
204
    # For this reason we set straight to true by default.
205
    CompareService.new(project, head_commit_sha).execute(project, sha, straight: true)
206 207
  end

208 209 210 211
  def commits_count
    st_commits.count
  end

212 213 214 215 216 217 218 219 220 221
  def utf8_st_diffs
    return [] if st_diffs.blank?

    st_diffs.map do |diff|
      diff.each do |k, v|
        diff[k] = encode_utf8(v) if v.respond_to?(:encoding)
      end
    end
  end

222 223
  private

224 225 226 227 228 229 230 231 232
  # Old GitLab implementations may have generated diffs as ["--broken-diff"].
  # Avoid an error 500 by ignoring bad elements. See:
  # https://gitlab.com/gitlab-org/gitlab-ce/issues/20776
  def valid_raw_diff?(raw)
    return false unless raw.respond_to?(:each)

    raw.any? { |element| VALID_CLASSES.include?(element.class) }
  end

233 234 235 236 237 238 239 240
  def dump_commits(commits)
    commits.map(&:to_hash)
  end

  def load_commits(array)
    array.map { |hash| Commit.new(Gitlab::Git::Commit.new(hash), merge_request.source_project) }
  end

241
  # Load all commits related to current merge request diff from repo
242
  # and save it as array of hashes in st_commits db field
243
  def save_commits
244 245
    new_attributes = {}

246
    commits = compare.commits
247

248 249 250
    if commits.present?
      commits = Commit.decorate(commits, merge_request.source_project).reverse
      new_attributes[:st_commits] = dump_commits(commits)
251 252
    end

253
    update_columns_serialized(new_attributes)
254 255
  end

256 257 258 259 260 261 262
  def dump_diffs(diffs)
    if diffs.respond_to?(:map)
      diffs.map(&:to_hash)
    end
  end

  def load_diffs(raw, options)
263
    if valid_raw_diff?(raw)
264
      if paths = options[:paths]
265
        raw = raw.select do |diff|
266
          paths.include?(diff[:old_path]) || paths.include?(diff[:new_path])
267 268 269
        end
      end

270 271 272 273 274 275
      Gitlab::Git::DiffCollection.new(raw, options)
    else
      Gitlab::Git::DiffCollection.new([])
    end
  end

276
  # Load diffs between branches related to current merge request diff from repo
277
  # and save it as array of hashes in st_diffs db field
278
  def save_diffs
279
    new_attributes = {}
280 281

    if commits.size.zero?
282
      new_attributes[:state] = :empty
283
    else
284
      diff_collection = compare.diffs(Commit.max_diff_options)
285
      new_attributes[:real_size] = diff_collection.real_size
286

287 288
      if diff_collection.any?
        new_diffs = dump_diffs(diff_collection)
289
        new_attributes[:state] = :collected
290
      end
291 292 293 294 295 296 297 298 299

      new_attributes[:st_diffs] = new_diffs || []

      # Set our state to 'overflow' to make the #empty? and #collected?
      # methods (generated by StateMachine) return false.
      #
      # This attribution has to come at the end of the method so 'overflow'
      # state does not get overridden by 'collected'.
      new_attributes[:state] = :overflow if diff_collection.overflow?
300
    end
301

302
    update_columns_serialized(new_attributes)
303 304 305
  end

  def repository
306
    project.repository
307
  end
308

309 310
  def find_base_sha
    return unless head_commit_sha && start_commit_sha
311

312
    project.merge_base_commit(head_commit_sha, start_commit_sha).try(:sha)
313 314
  end

315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
  #
  # #save or #update_attributes providing changes on serialized attributes do a lot of
  # serialization and deserialization calls resulting in bad performance.
  # Using #update_columns solves the problem with just one YAML.dump per serialized attribute that we provide.
  # As a tradeoff we need to reload the current instance to properly manage time objects on those serialized
  # attributes. So to keep the same behaviour as the attribute assignment we reload the instance.
  # The difference is in the usage of
  # #write_attribute= (#update_attributes) and #raw_write_attribute= (#update_columns)
  #
  # Ex:
  #
  #   new_attributes[:st_commits].first.slice(:committed_date)
  #   => {:committed_date=>2014-02-27 11:01:38 +0200}
  #   YAML.load(YAML.dump(new_attributes[:st_commits].first.slice(:committed_date)))
  #   => {:committed_date=>2014-02-27 10:01:38 +0100}
  #
  def update_columns_serialized(new_attributes)
    return unless new_attributes.any?

    update_columns(new_attributes.merge(updated_at: current_time_from_proper_timezone))
    reload
  end
337

338
  def keep_around_commits
339 340 341 342 343
    [repository, merge_request.source_project.repository].each do |repo|
      repo.keep_around(start_commit_sha)
      repo.keep_around(head_commit_sha)
      repo.keep_around(base_commit_sha)
    end
344
  end
345
end