2021-04-28 08:10:09 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Security
|
|
|
|
module CiConfiguration
|
|
|
|
class BaseCreateService
|
|
|
|
attr_reader :branch_name, :current_user, :project
|
|
|
|
|
|
|
|
def initialize(project, current_user)
|
|
|
|
@project = project
|
|
|
|
@current_user = current_user
|
|
|
|
@branch_name = project.repository.next_branch(next_branch)
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
|
|
|
project.repository.add_branch(current_user, branch_name, project.default_branch)
|
|
|
|
|
|
|
|
attributes_for_commit = attributes
|
|
|
|
|
|
|
|
result = ::Files::MultiService.new(project, current_user, attributes_for_commit).execute
|
|
|
|
|
|
|
|
return ServiceResponse.error(message: result[:message]) unless result[:status] == :success
|
|
|
|
|
|
|
|
track_event(attributes_for_commit)
|
|
|
|
ServiceResponse.success(payload: { branch: branch_name, success_path: successful_change_path })
|
|
|
|
rescue Gitlab::Git::PreReceiveError => e
|
|
|
|
ServiceResponse.error(message: e.message)
|
|
|
|
rescue StandardError
|
2021-10-07 17:11:49 -04:00
|
|
|
remove_branch_on_exception
|
2021-04-28 08:10:09 -04:00
|
|
|
raise
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def attributes
|
|
|
|
{
|
|
|
|
commit_message: message,
|
|
|
|
branch_name: branch_name,
|
|
|
|
start_branch: branch_name,
|
|
|
|
actions: [action]
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def existing_gitlab_ci_content
|
2022-03-08 16:55:36 -05:00
|
|
|
@gitlab_ci_yml ||= project.ci_config_for(project.repository.root_ref_sha)
|
2021-04-28 08:10:09 -04:00
|
|
|
YAML.safe_load(@gitlab_ci_yml) if @gitlab_ci_yml
|
|
|
|
end
|
|
|
|
|
|
|
|
def successful_change_path
|
|
|
|
merge_request_params = { source_branch: branch_name, description: description }
|
|
|
|
Gitlab::Routing.url_helpers.project_new_merge_request_url(project, merge_request: merge_request_params)
|
|
|
|
end
|
|
|
|
|
2021-10-07 17:11:49 -04:00
|
|
|
def remove_branch_on_exception
|
|
|
|
project.repository.rm_branch(current_user, branch_name) if project.repository.branch_exists?(branch_name)
|
|
|
|
end
|
|
|
|
|
2021-04-28 08:10:09 -04:00
|
|
|
def track_event(attributes_for_commit)
|
|
|
|
action = attributes_for_commit[:actions].first
|
|
|
|
|
|
|
|
Gitlab::Tracking.event(
|
|
|
|
self.class.to_s, action[:action], label: action[:default_values_overwritten].to_s
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|