2018-07-05 06:18:17 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-08-11 08:33:31 -04:00
|
|
|
require 'securerandom'
|
|
|
|
|
2017-11-24 06:58:05 -05:00
|
|
|
# Compare 2 refs for one repo or between repositories
|
2019-04-14 10:26:03 -04:00
|
|
|
# and return Compare object that responds to commits and diffs
|
2014-07-29 05:11:16 -04:00
|
|
|
class CompareService
|
2017-11-24 06:58:05 -05:00
|
|
|
attr_reader :start_project, :start_ref_name
|
2015-09-18 15:02:01 -04:00
|
|
|
|
2017-11-24 06:58:05 -05:00
|
|
|
def initialize(new_start_project, new_start_ref_name)
|
2017-01-06 10:29:13 -05:00
|
|
|
@start_project = new_start_project
|
2017-11-24 06:58:05 -05:00
|
|
|
@start_ref_name = new_start_ref_name
|
2016-12-08 04:57:52 -05:00
|
|
|
end
|
2015-08-11 08:33:31 -04:00
|
|
|
|
2018-03-07 20:29:12 -05:00
|
|
|
def execute(target_project, target_ref, base_sha: nil, straight: false)
|
2017-11-24 06:58:05 -05:00
|
|
|
raw_compare = target_project.repository.compare_source_branch(target_ref, start_project.repository, start_ref_name, straight: straight)
|
2017-01-04 12:52:21 -05:00
|
|
|
|
2019-04-14 10:26:03 -04:00
|
|
|
return unless raw_compare && raw_compare.base && raw_compare.head
|
2018-03-07 20:29:12 -05:00
|
|
|
|
|
|
|
Compare.new(raw_compare,
|
2020-01-30 16:08:47 -05:00
|
|
|
start_project,
|
2018-03-07 20:29:12 -05:00
|
|
|
base_sha: base_sha,
|
|
|
|
straight: straight)
|
2014-07-29 05:11:16 -04:00
|
|
|
end
|
|
|
|
end
|