Sha256: e9044d105b2b73e42e404428f1ae341e56ea63c1a72e5b38250f4744c3e46463

Contents?: true

Size: 1.27 KB

Versions: 12

Compression:

Stored size: 1.27 KB

Contents

require 'pact_broker/domain/webhook_request'
require 'pact_broker/messages'
require 'pact_broker/logging'
require 'pact_broker/api/contracts/webhook_contract'

module PactBroker

  module Domain

    class Webhook

      include Messages
      include Logging

      attr_accessor :uuid, :consumer, :provider, :request, :created_at, :updated_at
      attr_reader :attributes

      def initialize attributes = {}
        @attributes = attributes
        @uuid = attributes[:uuid]
        @request = attributes[:request]
        @consumer = attributes[:consumer]
        @provider = attributes[:provider]
        @created_at = attributes[:created_at]
        @updated_at = attributes[:updated_at]
      end

      def description
        "A webhook for the pact between #{consumer.name} and #{provider.name}"
      end

      def request_description
        request && request.description
      end

      #TODO retries
      def execute
        logger.info "Executing #{self}"
        request.execute
      end

      def to_s
        "webhook for consumer=#{consumer_name} provider=#{provider_name} uuid=#{uuid} request=#{request}"
      end

      def consumer_name
        consumer && consumer.name
      end

      def provider_name
        provider && provider.name
      end
    end

  end

end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
pact_broker-2.0.0.beta.6 lib/pact_broker/domain/webhook.rb
pact_broker-2.0.0.beta.5 lib/pact_broker/domain/webhook.rb
pact_broker-1.18.0.beta.1 lib/pact_broker/domain/webhook.rb
pact_broker-1.17.2 lib/pact_broker/domain/webhook.rb
pact_broker-1.17.1 lib/pact_broker/domain/webhook.rb
pact_broker-2.0.0.beta.4 lib/pact_broker/domain/webhook.rb
pact_broker-2.0.0.beta.3 lib/pact_broker/domain/webhook.rb
pact_broker-2.0.0.beta.2 lib/pact_broker/domain/webhook.rb
pact_broker-2.0.0.beta.1 lib/pact_broker/domain/webhook.rb
pact_broker-1.17.0 lib/pact_broker/domain/webhook.rb
pact_broker-1.16.0 lib/pact_broker/domain/webhook.rb
pact_broker-1.15.0 lib/pact_broker/domain/webhook.rb