2015-08-11 08:33:31 -04:00
|
|
|
require 'securerandom'
|
|
|
|
|
2014-07-29 05:11:16 -04:00
|
|
|
# Compare 2 branches for one repo or between repositories
|
2016-03-03 12:38:44 -05:00
|
|
|
# and return Gitlab::Git::Compare object that responds to commits and diffs
|
2014-07-29 05:11:16 -04:00
|
|
|
class CompareService
|
2016-07-06 12:51:02 -04:00
|
|
|
def execute(source_project, source_branch, target_project, target_branch)
|
2015-09-18 15:02:01 -04:00
|
|
|
source_commit = source_project.commit(source_branch)
|
|
|
|
return unless source_commit
|
|
|
|
|
|
|
|
source_sha = source_commit.sha
|
2015-08-11 08:33:31 -04:00
|
|
|
|
|
|
|
# If compare with other project we need to fetch ref first
|
|
|
|
unless target_project == source_project
|
|
|
|
random_string = SecureRandom.hex
|
|
|
|
|
|
|
|
target_project.repository.fetch_ref(
|
|
|
|
source_project.repository.path_to_repo,
|
|
|
|
"refs/heads/#{source_branch}",
|
|
|
|
"refs/tmp/#{random_string}/head"
|
2015-07-15 10:45:38 -04:00
|
|
|
)
|
2015-08-11 04:28:42 -04:00
|
|
|
end
|
2015-08-11 08:33:31 -04:00
|
|
|
|
2016-07-27 07:09:52 -04:00
|
|
|
raw_compare = Gitlab::Git::Compare.new(
|
2016-03-03 12:38:44 -05:00
|
|
|
target_project.repository.raw_repository,
|
|
|
|
target_branch,
|
2016-07-27 07:09:52 -04:00
|
|
|
source_sha
|
2015-08-11 08:33:31 -04:00
|
|
|
)
|
2016-07-27 07:09:52 -04:00
|
|
|
|
|
|
|
Compare.new(raw_compare, target_project)
|
2014-07-29 05:11:16 -04:00
|
|
|
end
|
|
|
|
end
|