Sha256: 7653c3c20f39caf1419d9e1dce4e1dfe39873afc6c167947a1c816b572f1a1bc

Contents?: true

Size: 1.66 KB

Versions: 12

Compression:

Stored size: 1.66 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(options = {})
          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

12 entries across 12 versions & 1 rubygems

Version Path
pact_broker-2.79.1 lib/pact_broker/api/decorators/extended_pact_decorator.rb
pact_broker-2.79.0 lib/pact_broker/api/decorators/extended_pact_decorator.rb
pact_broker-2.78.1 lib/pact_broker/api/decorators/extended_pact_decorator.rb
pact_broker-2.78.0 lib/pact_broker/api/decorators/extended_pact_decorator.rb
pact_broker-2.77.0 lib/pact_broker/api/decorators/extended_pact_decorator.rb
pact_broker-2.76.2 lib/pact_broker/api/decorators/extended_pact_decorator.rb
pact_broker-2.76.1 lib/pact_broker/api/decorators/extended_pact_decorator.rb
pact_broker-2.76.0 lib/pact_broker/api/decorators/extended_pact_decorator.rb
pact_broker-2.75.0 lib/pact_broker/api/decorators/extended_pact_decorator.rb
pact_broker-2.74.1 lib/pact_broker/api/decorators/extended_pact_decorator.rb
pact_broker-2.74.0 lib/pact_broker/api/decorators/extended_pact_decorator.rb
pact_broker-2.73.0 lib/pact_broker/api/decorators/extended_pact_decorator.rb