Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_and_link_service.rb « work_items « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 534d220a846e13cf05acb8494a91d5719dee39eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true

module WorkItems
  # 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.
  class CreateAndLinkService
    def initialize(project:, current_user: nil, params: {}, spam_params:, link_params: {})
      @create_service = CreateService.new(
        project: project,
        current_user: current_user,
        params: params,
        spam_params: spam_params
      )
      @project = project
      @current_user = current_user
      @link_params = link_params
    end

    def execute
      create_result = @create_service.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 = IssueLinks::CreateService.new(work_item, @current_user, @link_params).execute

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

    private

    def payload(work_item)
      { work_item: work_item }
    end
  end
end