2018-07-16 12:31:01 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-11-19 09:14:06 -05:00
|
|
|
module Files
|
2017-04-19 20:37:44 -04:00
|
|
|
class DeleteService < Files::BaseService
|
|
|
|
def create_commit!
|
2017-02-15 18:28:29 -05:00
|
|
|
repository.delete_file(
|
2016-11-14 15:02:10 -05:00
|
|
|
current_user,
|
|
|
|
@file_path,
|
2016-12-08 04:08:25 -05:00
|
|
|
message: @commit_message,
|
2017-04-19 20:37:44 -04:00
|
|
|
branch_name: @branch_name,
|
2016-11-14 15:02:10 -05:00
|
|
|
author_email: @author_email,
|
|
|
|
author_name: @author_name,
|
2017-01-06 10:29:13 -05:00
|
|
|
start_project: @start_project,
|
|
|
|
start_branch_name: @start_branch)
|
2013-11-19 09:14:06 -05:00
|
|
|
end
|
2017-12-20 10:57:27 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def validate!
|
|
|
|
super
|
|
|
|
|
|
|
|
if file_has_changed?(@file_path, @last_commit_sha)
|
2019-04-15 08:25:48 -04:00
|
|
|
raise FileChangedError, _("You are attempting to delete a file that has been previously updated.")
|
2017-12-20 10:57:27 -05:00
|
|
|
end
|
|
|
|
end
|
2013-11-19 09:14:06 -05:00
|
|
|
end
|
|
|
|
end
|