2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Suggestions
|
|
|
|
class ApplyService < ::BaseService
|
2020-06-23 00:09:42 +05:30
|
|
|
def initialize(current_user, *suggestions)
|
2019-02-15 15:39:39 +05:30
|
|
|
@current_user = current_user
|
2020-06-23 00:09:42 +05:30
|
|
|
@suggestion_set = Gitlab::Suggestions::SuggestionSet.new(suggestions)
|
2019-02-15 15:39:39 +05:30
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
def execute
|
|
|
|
if suggestion_set.valid?
|
|
|
|
result
|
|
|
|
else
|
|
|
|
error(suggestion_set.error_message)
|
2019-02-15 15:39:39 +05:30
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
2019-02-15 15:39:39 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
private
|
2019-07-07 11:18:12 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
attr_reader :current_user, :suggestion_set
|
2019-02-15 15:39:39 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
def result
|
|
|
|
multi_service.execute.tap do |result|
|
|
|
|
update_suggestions(result)
|
2019-02-15 15:39:39 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
def update_suggestions(result)
|
|
|
|
return unless result[:status] == :success
|
2019-02-15 15:39:39 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
Suggestion.id_in(suggestion_set.suggestions)
|
|
|
|
.update_all(commit_id: result[:result], applied: true)
|
2019-02-15 15:39:39 +05:30
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
def multi_service
|
|
|
|
params = {
|
2019-02-15 15:39:39 +05:30
|
|
|
commit_message: commit_message,
|
2020-06-23 00:09:42 +05:30
|
|
|
branch_name: suggestion_set.branch,
|
|
|
|
start_branch: suggestion_set.branch,
|
|
|
|
actions: suggestion_set.actions
|
2019-02-15 15:39:39 +05:30
|
|
|
}
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
::Files::MultiService.new(suggestion_set.project, current_user, params)
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
def commit_message
|
|
|
|
Gitlab::Suggestions::CommitMessage.new(current_user, suggestion_set).message
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
2019-02-15 15:39:39 +05:30
|
|
|
end
|
|
|
|
end
|