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

base_update_service.rb « lists « boards « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: faf58e405fc7136965fa4f9d1daded6b8e226a0b (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
# frozen_string_literal: true

module Boards
  module Lists
    class BaseUpdateService < Boards::BaseService
      def execute(list)
        if execute_by_params(list)
          success(list: list)
        else
          error(list.errors.messages, 422)
        end
      end

      private

      def execute_by_params(list)
        update_preferences_result = update_preferences(list) if can_read?(list)
        update_position_result = update_position(list) if can_admin?(list)

        update_preferences_result || update_position_result
      end

      def update_preferences(list)
        return unless preferences?

        list.update_preferences_for(current_user, preferences)
      end

      def update_position(list)
        return unless position?

        move_service = Boards::Lists::MoveService.new(parent, current_user, params)

        move_service.execute(list)
      end

      def preferences
        { collapsed: Gitlab::Utils.to_boolean(params[:collapsed]) }
      end

      def preferences?
        params.has_key?(:collapsed)
      end

      def position?
        params.has_key?(:position)
      end

      def can_read?(list)
        raise NotImplementedError
      end

      def can_admin?(list)
        raise NotImplementedError
      end
    end
  end
end