Sha256: 7a4468577889f8db3671c21c41ab2b0cc64528c305f4f54fe170a98ef59b7dcc

Contents?: true

Size: 1.25 KB

Versions: 16

Compression:

Stored size: 1.25 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

      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

16 entries across 16 versions & 1 rubygems

Version Path
pact_broker-2.4.2 lib/pact_broker/domain/webhook.rb
pact_broker-2.4.1 lib/pact_broker/domain/webhook.rb
pact_broker-2.4.0 lib/pact_broker/domain/webhook.rb
pact_broker-2.3.0 lib/pact_broker/domain/webhook.rb
pact_broker-2.2.0 lib/pact_broker/domain/webhook.rb
pact_broker-2.1.1 lib/pact_broker/domain/webhook.rb
pact_broker-2.1.0 lib/pact_broker/domain/webhook.rb
pact_broker-2.0.5 lib/pact_broker/domain/webhook.rb
pact_broker-2.0.4 lib/pact_broker/domain/webhook.rb
pact_broker-2.0.3 lib/pact_broker/domain/webhook.rb
pact_broker-2.0.2 lib/pact_broker/domain/webhook.rb
pact_broker-2.0.1 lib/pact_broker/domain/webhook.rb
pact_broker-2.0.0 lib/pact_broker/domain/webhook.rb
pact_broker-2.0.0.beta.8 lib/pact_broker/domain/webhook.rb
pact_broker-2.0.0.beta.7 lib/pact_broker/domain/webhook.rb
pact_broker-1.18.0 lib/pact_broker/domain/webhook.rb