summaryrefslogtreecommitdiff
path: root/lib/gitlab/hook_data/issuable_builder.rb
blob: e817c6af94a4b1d4e3fa21ce6914380e23545054 (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
module Gitlab
  module HookData
    class IssuableBuilder
      attr_accessor :issuable

      def initialize(issuable)
        @issuable = issuable
      end

      def build(user: nil, changes: {})
        hook_data = {
          object_kind: issuable.class.name.underscore,
          user: user.hook_attrs,
          project: issuable.project.hook_attrs,
          object_attributes: issuable.hook_attrs,
          labels: issuable.labels.map(&:hook_attrs),
          changes: changes.slice(*safe_keys),
          # DEPRECATED
          repository: issuable.project.hook_attrs.slice(:name, :url, :description, :homepage)
        }

        if issuable.is_a?(Issue)
          hook_data[:assignees] = issuable.assignees.map(&:hook_attrs) if issuable.assignees.any?
        else
          hook_data[:assignee] = issuable.assignee.hook_attrs if issuable.assignee
        end

        hook_data
      end

      def safe_keys
        issuable.class.safe_hook_attributes + issuable.class.safe_hook_relations
      end
    end
  end
end