debian-mirror-gitlab/lib/gitlab/data_builder/issuable.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.7 KiB
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module Gitlab
2022-07-16 23:28:13 +05:30
module DataBuilder
class Issuable
2018-03-17 18:26:18 +05:30
CHANGES_KEYS = %i[previous current].freeze
2022-07-16 23:28:13 +05:30
attr_reader :issuable
def initialize(issuable)
@issuable = issuable
end
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,
2022-06-21 17:19:12 +05:30
object_attributes: issuable_builder.new(issuable).build,
2022-08-13 15:12:31 +05:30
labels: issuable.labels_hook_attrs,
2018-03-17 18:26:18 +05:30
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
2022-08-27 11:52:29 +05:30
if issuable.allows_reviewers? && issuable.reviewers.any?
hook_data[:reviewers] = issuable.reviewers.map(&:hook_attrs)
end
2018-03-17 18:26:18 +05:30
hook_data
end
def safe_keys
2022-05-07 20:08:51 +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)
2022-06-21 17:19:12 +05:30
changes_hash.transform_values { |changes_array| Hash[CHANGES_KEYS.zip(changes_array)] }
2018-03-17 18:26:18 +05:30
end
end
end
end