debian-mirror-gitlab/app/services/files/multi_service.rb

39 lines
983 B
Ruby
Raw Normal View History

2016-11-03 12:29:30 +05:30
module Files
class MultiService < Files::BaseService
2018-03-17 18:26:18 +05:30
UPDATE_FILE_ACTIONS = %w(update move delete).freeze
2017-08-17 22:00:37 +05:30
def create_commit!
2016-11-03 12:29:30 +05:30
repository.multi_action(
2018-03-17 18:26:18 +05:30
current_user,
2016-11-03 12:29:30 +05:30
message: @commit_message,
2017-08-17 22:00:37 +05:30
branch_name: @branch_name,
2016-11-03 12:29:30 +05:30
actions: params[:actions],
author_email: @author_email,
2017-08-17 22:00:37 +05:30
author_name: @author_name,
start_project: @start_project,
start_branch_name: @start_branch
2016-11-03 12:29:30 +05:30
)
2018-03-17 18:26:18 +05:30
rescue ArgumentError => e
raise_error(e)
2016-11-03 12:29:30 +05:30
end
private
2017-08-17 22:00:37 +05:30
def validate!
2016-11-03 12:29:30 +05:30
super
2018-03-17 18:26:18 +05:30
params[:actions].each { |action| validate_file_status!(action) }
2016-11-03 12:29:30 +05:30
end
2018-03-17 18:26:18 +05:30
def validate_file_status!(action)
return unless UPDATE_FILE_ACTIONS.include?(action[:action])
file_path = action[:previous_path] || action[:file_path]
if file_has_changed?(file_path, action[:last_commit_id])
raise_error("The file has changed since you started editing it: #{file_path}")
2016-11-03 12:29:30 +05:30
end
end
end
end