2014-01-16 13:36:51 -05:00
|
|
|
require_relative "base_service"
|
2013-12-10 07:15:08 -05:00
|
|
|
|
2013-11-05 05:21:11 -05:00
|
|
|
module Files
|
2014-01-16 12:03:42 -05:00
|
|
|
class UpdateService < BaseService
|
2013-11-05 05:21:11 -05:00
|
|
|
def execute
|
2015-03-24 09:10:55 -04:00
|
|
|
allowed = ::Gitlab::GitAccess.new(current_user, project).can_push_to_branch?(ref)
|
2013-11-05 05:21:11 -05:00
|
|
|
|
|
|
|
unless allowed
|
|
|
|
return error("You are not allowed to push into this branch")
|
|
|
|
end
|
|
|
|
|
|
|
|
unless repository.branch_names.include?(ref)
|
|
|
|
return error("You can only create files if you are on top of a branch")
|
|
|
|
end
|
|
|
|
|
2014-02-05 04:39:55 -05:00
|
|
|
blob = repository.blob_at_branch(ref, path)
|
2013-11-05 05:21:11 -05:00
|
|
|
|
|
|
|
unless blob
|
|
|
|
return error("You can only edit text files")
|
|
|
|
end
|
|
|
|
|
2014-01-16 11:10:35 -05:00
|
|
|
edit_file_action = Gitlab::Satellite::EditFileAction.new(current_user, project, ref, path)
|
2015-02-22 18:01:49 -05:00
|
|
|
edit_file_action.commit!(
|
2013-11-05 05:21:11 -05:00
|
|
|
params[:content],
|
2014-01-16 11:10:35 -05:00
|
|
|
params[:commit_message],
|
2015-02-14 11:18:05 -05:00
|
|
|
params[:encoding],
|
|
|
|
params[:new_branch]
|
2013-11-05 05:21:11 -05:00
|
|
|
)
|
|
|
|
|
2015-02-22 18:01:49 -05:00
|
|
|
success
|
|
|
|
rescue Gitlab::Satellite::CheckoutFailed => ex
|
|
|
|
error("Your changes could not be committed because ref '#{ref}' could not be checked out", 400)
|
|
|
|
rescue Gitlab::Satellite::CommitFailed => ex
|
|
|
|
error("Your changes could not be committed. Maybe there was nothing to commit?", 409)
|
|
|
|
rescue Gitlab::Satellite::PushFailed => ex
|
|
|
|
error("Your changes could not be committed. Maybe the file was changed by another process?", 409)
|
2013-11-05 05:21:11 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|