Commit 58031cad authored by tiagonbotelho's avatar tiagonbotelho

refactors to pass values as arguments through options

parent 7503dc7f
...@@ -731,29 +731,30 @@ class Repository ...@@ -731,29 +731,30 @@ class Repository
end end
end end
def update_file(user, path, previous_path, content, message, branch, update) # previous_path, message, update
def update_file(user, path, content, branch, options={})
commit_with_hooks(user, branch) do |ref| commit_with_hooks(user, branch) do |ref|
committer = user_to_committer(user) committer = user_to_committer(user)
options = {} commit_options = {}
options[:committer] = committer commit_options[:committer] = committer
options[:author] = committer commit_options[:author] = committer
options[:commit] = { commit_options[:commit] = {
message: message, message: options[:message],
branch: ref, branch: ref
} }
options[:file] = { commit_options[:file] = {
content: content, content: content,
path: path, path: path,
update: update update: options[:update]
} }
if previous_path if options[:previous_path]
options[:file].merge!(previous_path: previous_path) commit_options[:file].merge!(previous_path: options[:previous_path])
Gitlab::Git::Blob.rename(raw_repository, options) Gitlab::Git::Blob.rename(raw_repository, commit_options)
else else
Gitlab::Git::Blob.commit(raw_repository, options) Gitlab::Git::Blob.commit(raw_repository, commit_options)
end end
end end
end end
......
...@@ -3,8 +3,9 @@ require_relative "base_service" ...@@ -3,8 +3,9 @@ require_relative "base_service"
module Files module Files
class UpdateService < Files::BaseService class UpdateService < Files::BaseService
def commit def commit
repository.update_file(current_user, @file_path, @file_content,
repository.update_file(current_user, @file_path, @previous_path, @file_content, @commit_message, @target_branch, true) @target_branch, previous_path: @previous_path,
message: @commit_message, update: true)
end end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment