summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/diff_for_path.rb
blob: 026d8b2e1e0f691e21cdce694f535a8b8a603071 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module DiffForPath
  extend ActiveSupport::Concern

  def render_diff_for_path(diffs, diff_refs, project)
    diff_file = safe_diff_files(diffs, diff_refs: diff_refs, repository: project.repository).find do |diff|
      diff.old_path == params[:old_path] && diff.new_path == params[:new_path]
    end

    return render_404 unless diff_file

    diff_commit = commit_for_diff(diff_file)
    blob = diff_file.blob(diff_commit)

    locals = {
      diff_file: diff_file,
      diff_commit: diff_commit,
      diff_refs: diff_refs,
      blob: blob,
      project: project
    }

    render json: { html: view_to_html_string('projects/diffs/_content', locals) }
  end
end