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

release_builder.rb « hook_data « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b15c260f4a85904ceb1775b1e891fa36b4926039 (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
# frozen_string_literal: true

module Gitlab
  module HookData
    class ReleaseBuilder < BaseBuilder
      def self.safe_hook_attributes
        %i[
          id
          created_at
          description
          name
          released_at
          tag
        ].freeze
      end

      alias_method :release, :object

      def build(action)
        attrs = {
          object_kind: object_kind,
          project: release.project.hook_attrs,
          description: absolute_image_urls(release.description),
          url: Gitlab::UrlBuilder.build(release),
          action: action,
          assets: {
              count: release.assets_count,
              links: release.links.map(&:hook_attrs),
              sources: release.sources.map(&:hook_attrs)
          },
          commit: release.commit.hook_attrs
        }

        release.attributes.with_indifferent_access.slice(*self.class.safe_hook_attributes)
          .merge!(attrs)
      end

      private

      def object_kind
        release.class.name.underscore
      end
    end
  end
end