Skip to content
Snippets Groups Projects
Commit 2db75f8d authored by Douwe Maan's avatar Douwe Maan
Browse files

Make methods private that don't need to be public

parent 228d2a4c
No related branches found
No related tags found
No related merge requests found
Loading
@@ -65,42 +65,36 @@ class MergeRequestDiff < ActiveRecord::Base
Loading
@@ -65,42 +65,36 @@ class MergeRequestDiff < ActiveRecord::Base
def base_commit def base_commit
return unless self.base_commit_sha return unless self.base_commit_sha
   
merge_request.target_project.commit(self.base_commit_sha) project.commit(self.base_commit_sha)
end end
   
def start_commit def start_commit
return unless self.start_commit_sha return unless self.start_commit_sha
   
merge_request.target_project.commit(self.start_commit_sha) project.commit(self.start_commit_sha)
end end
   
def head_commit def head_commit
return last_commit unless self.head_commit_sha return last_commit unless self.head_commit_sha
   
merge_request.target_project.commit(self.head_commit_sha) project.commit(self.head_commit_sha)
end end
   
def dump_commits(commits) def compare
commits.map(&:to_hash) @compare ||=
end begin
# Update ref for merge request
def load_commits(array) merge_request.fetch_ref
array.map { |hash| Commit.new(Gitlab::Git::Commit.new(hash), merge_request.source_project) }
end
   
def dump_diffs(diffs) Gitlab::Git::Compare.new(
if diffs.respond_to?(:map) self.repository.raw_repository,
diffs.map(&:to_hash) self.target_branch_sha,
end self.source_branch_sha
)
end
end end
   
def load_diffs(raw, options) private
if raw.respond_to?(:each)
Gitlab::Git::DiffCollection.new(raw, options)
else
Gitlab::Git::DiffCollection.new([])
end
end
   
# Collect array of Git::Commit objects # Collect array of Git::Commit objects
# between target and source branches # between target and source branches
Loading
@@ -114,6 +108,14 @@ class MergeRequestDiff < ActiveRecord::Base
Loading
@@ -114,6 +108,14 @@ class MergeRequestDiff < ActiveRecord::Base
commits commits
end end
   
def dump_commits(commits)
commits.map(&:to_hash)
end
def load_commits(array)
array.map { |hash| Commit.new(Gitlab::Git::Commit.new(hash), merge_request.source_project) }
end
# Reload all commits related to current merge request from repo # Reload all commits related to current merge request from repo
# and save it as array of hashes in st_commits db field # and save it as array of hashes in st_commits db field
def reload_commits def reload_commits
Loading
@@ -128,6 +130,26 @@ class MergeRequestDiff < ActiveRecord::Base
Loading
@@ -128,6 +130,26 @@ class MergeRequestDiff < ActiveRecord::Base
update_columns_serialized(new_attributes) update_columns_serialized(new_attributes)
end end
   
# Collect array of Git::Diff objects
# between target and source branches
def unmerged_diffs
compare.diffs(Commit.max_diff_options)
end
def dump_diffs(diffs)
if diffs.respond_to?(:map)
diffs.map(&:to_hash)
end
end
def load_diffs(raw, options)
if raw.respond_to?(:each)
Gitlab::Git::DiffCollection.new(raw, options)
else
Gitlab::Git::DiffCollection.new([])
end
end
# Reload diffs between branches related to current merge request from repo # Reload diffs between branches related to current merge request from repo
# and save it as array of hashes in st_diffs db field # and save it as array of hashes in st_diffs db field
def reload_diffs def reload_diffs
Loading
@@ -164,42 +186,24 @@ class MergeRequestDiff < ActiveRecord::Base
Loading
@@ -164,42 +186,24 @@ class MergeRequestDiff < ActiveRecord::Base
keep_around_commits keep_around_commits
end end
   
# Collect array of Git::Diff objects def project
# between target and source branches merge_request.target_project
def unmerged_diffs
compare.diffs(Commit.max_diff_options)
end end
   
def repository def repository
merge_request.target_project.repository project.repository
end end
   
def branch_base_commit def branch_base_commit
return unless self.source_branch_sha && self.target_branch_sha return unless self.source_branch_sha && self.target_branch_sha
   
merge_request.target_project.merge_base_commit(self.source_branch_sha, self.target_branch_sha) project.merge_base_commit(self.source_branch_sha, self.target_branch_sha)
end end
   
def branch_base_sha def branch_base_sha
branch_base_commit.try(:sha) branch_base_commit.try(:sha)
end end
   
def compare
@compare ||=
begin
# Update ref for merge request
merge_request.fetch_ref
Gitlab::Git::Compare.new(
self.repository.raw_repository,
self.target_branch_sha,
self.source_branch_sha
)
end
end
private
# #
# #save or #update_attributes providing changes on serialized attributes do a lot of # #save or #update_attributes providing changes on serialized attributes do a lot of
# serialization and deserialization calls resulting in bad performance. # serialization and deserialization calls resulting in bad performance.
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment