summaryrefslogtreecommitdiff
path: root/app/controllers/projects/compare_controller.rb
blob: 5f3ee71444dd8f25e9026298ebc67b744fdbadde (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
require 'addressable/uri'

class Projects::CompareController < Projects::ApplicationController
  include DiffForPath
  include DiffHelper

  # Authorize
  before_action :require_non_empty_project
  before_action :authorize_download_code!
  before_action :define_ref_vars, only: [:index, :show, :diff_for_path]
  before_action :define_diff_vars, only: [:show, :diff_for_path]
  before_action :merge_request, only: [:index, :show]

  def index
  end

  def show
  end

  def diff_for_path
    return render_404 unless @compare

    render_diff_for_path(@diffs, @diff_refs, @project)
  end

  def create
    redirect_to namespace_project_compare_path(@project.namespace, @project,
                                               params[:from], params[:to])
  end

  private

  def define_ref_vars
    @start_ref = Addressable::URI.unescape(params[:from])
    @ref = @head_ref = Addressable::URI.unescape(params[:to])
  end

  def define_diff_vars
    @compare = CompareService.new.execute(@project, @head_ref, @project, @start_ref)

    if @compare
      @commits = Commit.decorate(@compare.commits, @project)

      @start_commit = @project.commit(@start_ref)
      @commit = @project.commit(@head_ref)
      @base_commit = @project.merge_base_commit(@start_ref, @head_ref)

      @diffs = @compare.diffs(diff_options)
      @diff_refs = Gitlab::Diff::DiffRefs.new(
        base_sha: @base_commit.try(:sha),
        start_sha: @start_commit.try(:sha),
        head_sha: @commit.try(:sha)
      )

      @diff_notes_disabled = true
      @grouped_diff_notes = {}
    end
  end

  def merge_request
    @merge_request ||= @project.merge_requests.opened.
      find_by(source_project: @project, source_branch: @head_ref, target_branch: @start_ref)
  end
end