summaryrefslogtreecommitdiff
path: root/app/services/boards/issues/move_service.rb
blob: 3ceab209f3feb1b0b4366c15d6f4e63aa536324d (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
module Boards
  module Issues
    class MoveService < Boards::BaseService
      def execute(issue)
        return false unless can?(current_user, :update_issue, issue)
        return false if issue_params.empty?

        update(issue)
      end

      private

      def board
        @board ||= parent.boards.find(params[:board_id])
      end

      def move_between_lists?
        moving_from_list.present? && moving_to_list.present? &&
          moving_from_list != moving_to_list
      end

      def moving_from_list
        @moving_from_list ||= board.lists.find_by(id: params[:from_list_id])
      end

      def moving_to_list
        @moving_to_list ||= board.lists.find_by(id: params[:to_list_id])
      end

      def update(issue)
        ::Issues::UpdateService.new(issue.project, current_user, issue_params).execute(issue)
      end

      def issue_params
        attrs = {}

        if move_between_lists?
          attrs.merge!(
            add_label_ids: add_label_ids,
            remove_label_ids: remove_label_ids,
            state_event: issue_state
          )
        end

        if move_between_ids
          attrs[:move_between_ids] = move_between_ids
          attrs[:board_group_id] =  board.group&.id
        end

        attrs
      end

      def issue_state
        return 'reopen' if moving_from_list.closed?
        return 'close'  if moving_to_list.closed?
      end

      def add_label_ids
        [moving_to_list.label_id].compact
      end

      def remove_label_ids
        label_ids =
          if moving_to_list.movable?
            moving_from_list.label_id
          elsif board.group_board?
            ::Label.on_group_boards(parent.id).pluck(:label_id)
          else
            ::Label.on_project_boards(parent.id).pluck(:label_id)
          end

        Array(label_ids).compact
      end

      def move_between_ids
        return unless params[:move_after_id] || params[:move_before_id]

        [params[:move_after_id], params[:move_before_id]]
      end
    end
  end
end