2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
module Gitlab
|
|
|
|
module HookData
|
2018-11-18 11:00:15 +05:30
|
|
|
class IssuableBuilder < BaseBuilder
|
2018-03-17 18:26:18 +05:30
|
|
|
CHANGES_KEYS = %i[previous current].freeze
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
alias_method :issuable, :object
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
def build(user: nil, changes: {})
|
|
|
|
hook_data = {
|
2018-04-05 14:03:07 +05:30
|
|
|
object_kind: object_kind,
|
|
|
|
event_type: event_type,
|
2018-03-17 18:26:18 +05:30
|
|
|
user: user.hook_attrs,
|
|
|
|
project: issuable.project.hook_attrs,
|
|
|
|
object_attributes: issuable.hook_attrs,
|
|
|
|
labels: issuable.labels.map(&:hook_attrs),
|
|
|
|
changes: final_changes(changes.slice(*safe_keys)),
|
|
|
|
# DEPRECATED
|
|
|
|
repository: issuable.project.hook_attrs.slice(:name, :url, :description, :homepage)
|
|
|
|
}
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
hook_data[:assignees] = issuable.assignees.map(&:hook_attrs) if issuable.assignees.any?
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
hook_data
|
|
|
|
end
|
|
|
|
|
|
|
|
def safe_keys
|
2018-11-20 20:47:30 +05:30
|
|
|
issuable_builder.safe_hook_attributes + issuable_builder::SAFE_HOOK_RELATIONS
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-04-05 14:03:07 +05:30
|
|
|
def object_kind
|
|
|
|
issuable.class.name.underscore
|
|
|
|
end
|
|
|
|
|
|
|
|
def event_type
|
|
|
|
if issuable.try(:confidential?)
|
|
|
|
"confidential_#{object_kind}"
|
|
|
|
else
|
|
|
|
object_kind
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def issuable_builder
|
|
|
|
case issuable
|
|
|
|
when Issue
|
|
|
|
Gitlab::HookData::IssueBuilder
|
|
|
|
when MergeRequest
|
|
|
|
Gitlab::HookData::MergeRequestBuilder
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def final_changes(changes_hash)
|
|
|
|
changes_hash.reduce({}) do |hash, (key, changes_array)|
|
|
|
|
hash[key] = Hash[CHANGES_KEYS.zip(changes_array)]
|
|
|
|
hash
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|