debian-mirror-gitlab/app/services/compare_service.rb

33 lines
961 B
Ruby
Raw Normal View History

2015-09-25 12:07:36 +05:30
require 'securerandom'
2014-09-02 18:07:02 +05:30
# Compare 2 branches for one repo or between repositories
2016-06-02 11:05:42 +05:30
# and return Gitlab::Git::Compare object that responds to commits and diffs
2014-09-02 18:07:02 +05:30
class CompareService
2016-11-03 12:29:30 +05:30
def execute(source_project, source_branch, target_project, target_branch, straight: false)
2015-09-25 12:07:36 +05:30
source_commit = source_project.commit(source_branch)
return unless source_commit
source_sha = source_commit.sha
# 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"
2014-09-02 18:07:02 +05:30
)
end
2015-09-25 12:07:36 +05:30
2016-09-13 17:45:13 +05:30
raw_compare = Gitlab::Git::Compare.new(
2016-06-02 11:05:42 +05:30
target_project.repository.raw_repository,
target_branch,
2016-11-03 12:29:30 +05:30
source_sha,
straight
2015-09-25 12:07:36 +05:30
)
2016-09-13 17:45:13 +05:30
2016-11-03 12:29:30 +05:30
Compare.new(raw_compare, target_project, straight: straight)
2014-09-02 18:07:02 +05:30
end
end