Class: WorkItems::CreateAndLinkService

Inherits:
Object
  • Object
show all
Defined in:
app/services/work_items/create_and_link_service.rb

Overview

Create and link operations are not run inside a transaction in this class because CreateFromTaskService also creates a transaction. This class should always be run inside a transaction as we could end up with new work items that were never associated with other work items as expected.

Instance Method Summary collapse

Constructor Details

#initialize(project:, perform_spam_check: true, current_user: nil, params: {}, link_params: {}) ⇒ CreateAndLinkService

Returns a new instance of CreateAndLinkService.



9
10
11
12
13
14
15
# File 'app/services/work_items/create_and_link_service.rb', line 9

def initialize(project:, perform_spam_check: true, current_user: nil, params: {}, link_params: {})
  @project = project
  @current_user = current_user
  @params = params
  @link_params = link_params
  @perform_spam_check = perform_spam_check
end

Instance Method Details

#executeObject



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'app/services/work_items/create_and_link_service.rb', line 17

def execute
  create_result = CreateService.new(
    container: @project,
    current_user: @current_user,
    params: @params.merge(title: @params[:title].strip).reverse_merge(confidential: confidential_parent),
    perform_spam_check: @perform_spam_check
  ).execute
  return create_result if create_result.error?

  work_item = create_result[:work_item]
  return ::ServiceResponse.success(payload: payload(work_item)) if @link_params.blank?

  result = WorkItems::ParentLinks::CreateService.new(
    @link_params[:parent_work_item],
    @current_user,
    { target_issuable: work_item }
  ).execute

  if result[:status] == :success
    ::ServiceResponse.success(payload: payload(work_item))
  else
    ::ServiceResponse.error(message: result[:message], http_status: 404)
  end
end