Class: PactBroker::Domain::Webhook
- Inherits:
-
Object
- Object
- PactBroker::Domain::Webhook
- Defined in:
- lib/pact_broker/domain/webhook.rb
Constant Summary
Constants included from Logging
Logging::LOG_DIR, Logging::LOG_FILE_NAME
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#consumer ⇒ Object
Returns the value of attribute consumer.
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#events ⇒ Object
Returns the value of attribute events.
-
#provider ⇒ Object
Returns the value of attribute provider.
-
#request ⇒ Object
Returns the value of attribute request.
-
#updated_at ⇒ Object
Returns the value of attribute updated_at.
-
#uuid ⇒ Object
Returns the value of attribute uuid.
Instance Method Summary collapse
- #consumer_name ⇒ Object
- #description ⇒ Object
- #execute(pact, options) ⇒ Object
-
#initialize(attributes = {}) ⇒ Webhook
constructor
A new instance of Webhook.
- #provider_name ⇒ Object
- #request_description ⇒ Object
- #to_s ⇒ Object
Methods included from Logging
included, #log_error, #logger, #logger=
Methods included from Messages
#message, #potential_duplicate_pacticipant_message, #validation_message
Constructor Details
#initialize(attributes = {}) ⇒ Webhook
Returns a new instance of Webhook.
16 17 18 19 20 21 22 23 24 25 |
# File 'lib/pact_broker/domain/webhook.rb', line 16 def initialize attributes = {} @attributes = attributes @uuid = attributes[:uuid] @request = attributes[:request] @consumer = attributes[:consumer] @provider = attributes[:provider] @events = attributes[:events] @created_at = attributes[:created_at] @updated_at = attributes[:updated_at] end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
14 15 16 |
# File 'lib/pact_broker/domain/webhook.rb', line 14 def attributes @attributes end |
#consumer ⇒ Object
Returns the value of attribute consumer.
13 14 15 |
# File 'lib/pact_broker/domain/webhook.rb', line 13 def consumer @consumer end |
#created_at ⇒ Object
Returns the value of attribute created_at.
13 14 15 |
# File 'lib/pact_broker/domain/webhook.rb', line 13 def created_at @created_at end |
#events ⇒ Object
Returns the value of attribute events.
13 14 15 |
# File 'lib/pact_broker/domain/webhook.rb', line 13 def events @events end |
#provider ⇒ Object
Returns the value of attribute provider.
13 14 15 |
# File 'lib/pact_broker/domain/webhook.rb', line 13 def provider @provider end |
#request ⇒ Object
Returns the value of attribute request.
13 14 15 |
# File 'lib/pact_broker/domain/webhook.rb', line 13 def request @request end |
#updated_at ⇒ Object
Returns the value of attribute updated_at.
13 14 15 |
# File 'lib/pact_broker/domain/webhook.rb', line 13 def updated_at @updated_at end |
#uuid ⇒ Object
Returns the value of attribute uuid.
13 14 15 |
# File 'lib/pact_broker/domain/webhook.rb', line 13 def uuid @uuid end |
Instance Method Details
#consumer_name ⇒ Object
44 45 46 |
# File 'lib/pact_broker/domain/webhook.rb', line 44 def consumer_name consumer && consumer.name end |
#description ⇒ Object
27 28 29 |
# File 'lib/pact_broker/domain/webhook.rb', line 27 def description "A webhook for the pact between #{consumer.name} and #{provider.name}" end |
#execute(pact, options) ⇒ Object
35 36 37 38 |
# File 'lib/pact_broker/domain/webhook.rb', line 35 def execute pact, logger.info "Executing #{self}" request.execute pact, end |
#provider_name ⇒ Object
48 49 50 |
# File 'lib/pact_broker/domain/webhook.rb', line 48 def provider_name provider && provider.name end |
#request_description ⇒ Object
31 32 33 |
# File 'lib/pact_broker/domain/webhook.rb', line 31 def request_description request && request.description end |
#to_s ⇒ Object
40 41 42 |
# File 'lib/pact_broker/domain/webhook.rb', line 40 def to_s "webhook for consumer=#{consumer_name} provider=#{provider_name} uuid=#{uuid} request=#{request}" end |