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
|
|
|
|
allowed = if project.protected_branch?(ref)
|
|
|
|
can?(current_user, :push_code_to_protected_branches, project)
|
|
|
|
else
|
|
|
|
can?(current_user, :push_code, project)
|
|
|
|
end
|
|
|
|
|
|
|
|
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)
|
|
|
|
created_successfully = 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],
|
2014-01-16 12:31:12 -05:00
|
|
|
params[:encoding]
|
2013-11-05 05:21:11 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
if created_successfully
|
|
|
|
success
|
|
|
|
else
|
2013-12-16 03:57:50 -05:00
|
|
|
error("Your changes could not be committed, because the file has been changed")
|
2013-11-05 05:21:11 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|