Sha256: e1ea1033ec78a0b587ab4d2252395afaa990e45709813e4a89f09e9305426598

Contents?: true

Size: 1.65 KB

Versions: 13

Compression:

Stored size: 1.65 KB

Contents

require_relative 'base_decorator'
require 'pact_broker/api/decorators/webhook_request_decorator'
require 'pact_broker/api/decorators/timestamps'
require 'pact_broker/domain/webhook_request'
require 'pact_broker/api/decorators/basic_pacticipant_decorator'

module PactBroker
  module Api
    module Decorators
      class WebhookDecorator < BaseDecorator

        property :request, :class => PactBroker::Domain::WebhookRequest, :extend => WebhookRequestDecorator

        include Timestamps

        property :consumer, :extend => PactBroker::Api::Decorators::BasicPacticipantDecorator, :embedded => true, writeable: false
        property :provider, :extend => PactBroker::Api::Decorators::BasicPacticipantDecorator, :embedded => true, writeable: false

        link :self do | options |
          {
            title: represented.description,
            href: webhook_url(represented.uuid, options[:base_url])
          }

        end

        link :'pb:execute' do | options |
          {
            title: "Test the execution of the webhook by sending a POST request to this URL",
            href: webhook_execution_url(represented, options[:base_url])
          }
        end

        link :'pb:pact-webhooks' do | options |
          {
            title: "All webhooks for the pact between #{represented.consumer.name} and #{represented.provider.name}",
            href: webhooks_for_pact_url(represented.consumer, represented.provider, options[:base_url])
          }
        end

        link :'pb:webhooks' do | options |
          {
            title: "All webhooks",
            href: webhooks_url(options[:base_url])
          }
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
pact_broker-2.12.0 lib/pact_broker/api/decorators/webhook_decorator.rb
pact_broker-2.11.0 lib/pact_broker/api/decorators/webhook_decorator.rb
pact_broker-2.10.0 lib/pact_broker/api/decorators/webhook_decorator.rb
pact_broker-2.9.0 lib/pact_broker/api/decorators/webhook_decorator.rb
pact_broker-2.9.0.beta.5 lib/pact_broker/api/decorators/webhook_decorator.rb
pact_broker-2.8.0.beta.5 lib/pact_broker/api/decorators/webhook_decorator.rb
pact_broker-2.8.0.beta.4 lib/pact_broker/api/decorators/webhook_decorator.rb
pact_broker-2.7.0.beta.3 lib/pact_broker/api/decorators/webhook_decorator.rb
pact_broker-2.7.0.beta.2 lib/pact_broker/api/decorators/webhook_decorator.rb
pact_broker-2.7.0.beta.1 lib/pact_broker/api/decorators/webhook_decorator.rb
pact_broker-2.6.0 lib/pact_broker/api/decorators/webhook_decorator.rb
pact_broker-2.5.1 lib/pact_broker/api/decorators/webhook_decorator.rb
pact_broker-2.5.0 lib/pact_broker/api/decorators/webhook_decorator.rb