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

base_service.rb « tasks_to_be_done « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5648ad10c43a9489f612730ae4e06571aacb240 (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
44
45
46
47
48
49
50
51
52
53
54
55
# frozen_string_literal: true

module TasksToBeDone
  class BaseService < ::IssuableBaseService
    LABEL_PREFIX = 'tasks to be done'

    def initialize(project:, current_user:, assignee_ids: [])
      params = {
        assignee_ids: assignee_ids,
        title: title,
        description: description,
        add_labels: label_name
      }
      super(project: project, current_user: current_user, params: params)
    end

    def execute
      if (issue = existing_task_issue)
        update_service = Issues::UpdateService.new(project: project, current_user: current_user, params: { add_assignee_ids: params[:assignee_ids] })
        update_service.execute(issue)
      else
        build_service = Issues::BuildService.new(project: project, current_user: current_user, params: params)
        create(build_service.execute)
      end
    end

    private

    def existing_task_issue
      IssuesFinder.new(
        current_user,
        project_id: project.id,
        state: 'opened',
        non_archived: true,
        label_name: label_name
      ).execute.last
    end

    def title
      raise NotImplementedError
    end

    def description
      raise NotImplementedError
    end

    def label_suffix
      raise NotImplementedError
    end

    def label_name
      "#{LABEL_PREFIX}:#{label_suffix}"
    end
  end
end