Sha256: de757ac0812f71b0961beba2a3bb8dcf7d826790205a730f1c2d4d2ec588e886

Contents?: true

Size: 1.65 KB

Versions: 3

Compression:

Stored size: 1.65 KB

Contents

require "pact_broker/api/decorators/pact_decorator"

module PactBroker
  module Api
    module Decorators
      # Make a different content type for adding extra information for the UI, as
      # some pact parsing tools blow up when there are unexpected keys :|

      class ExtendedPactDecorator < PactDecorator
        class TagDecorator < BaseDecorator
          property :name
          property :latest, getter: ->(_) { true }

          link :self do | options |
            {
              title: "Tag",
              name: represented.name,
              href: tag_url(options[:base_url], represented)
            }
          end

          link "pb:latest-pact" do | opts |
            {
              name: "The latest pact with the tag #{represented.name}",
              href: latest_tagged_pact_url(represented.pact, represented.name, opts[:base_url])
            }
          end
        end

        property :content_hash, as: :contract
        collection :head_tags, exec_context: :decorator, as: :tags, embedded: true, extend: TagDecorator

        # TODO rather than remove the contract keys that we added in the super class,
        # it would be better to inherit from a shared super class
        def to_hash(*)
          keys_to_remove = represented.content_hash.keys
          super.each_with_object({}) do | (key, value), new_hash |
            new_hash[key] = value unless keys_to_remove.include?(key)
          end
        end

        def head_tags
          represented.head_tag_names.collect do | tag_name |
            OpenStruct.new(name: tag_name, pact: represented, version: represented.consumer_version)
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pact_broker-2.107.1 lib/pact_broker/api/decorators/extended_pact_decorator.rb
pact_broker-2.107.0 lib/pact_broker/api/decorators/extended_pact_decorator.rb
pact_broker-2.107.0.beta.1 lib/pact_broker/api/decorators/extended_pact_decorator.rb