summaryrefslogtreecommitdiff
path: root/app/services/compare_service.rb
blob: fcbfe68f1a3ec50b7a179eff261c8842b580b2d8 (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
require 'securerandom'

# Compare 2 branches for one repo or between repositories
# and return Gitlab::Git::Compare object that responds to commits and diffs
class CompareService
  attr_reader :source_project, :source_branch

  def initialize(new_source_project, source_branch_name)
    @source_project = new_source_project
    @source_branch = new_source_project.commit(source_branch_name)
  end

  def execute(target_project, target_branch, straight: false)
    source_sha = source_branch.try(:sha)

    return unless source_sha

    # If compare with other project we need to fetch ref first
    if target_project == source_project
      compare(source_sha, target_project, target_branch, straight)
    else
      target_project.repository.with_tmp_ref(
        source_project.repository, source_branch) do
        compare(source_sha, target_project, target_branch, straight)
      end
    end
  end

  private

  def compare(source_sha, target_project, target_branch, straight)
    raw_compare = Gitlab::Git::Compare.new(
      target_project.repository.raw_repository,
      target_branch,
      source_sha,
      straight
    )

    Compare.new(raw_compare, target_project, straight: straight)
  end
end