Class: PactBroker::Api::Decorators::PactWebhooksStatusDecorator

Inherits:
BaseDecorator
  • Object
show all
Defined in:
lib/pact_broker/api/decorators/pact_webhooks_status_decorator.rb

Instance Method Summary collapse

Methods included from FormatDateTime

call, #format_date_time

Methods included from PactBrokerUrls

#badge_url_for_latest_pact, #build_webhook_metadata, #consumer_webhooks_url, #dashboard_url_for_integration, #group_url, #hal_browser_url, #integration_url, #label_url, #labels_url, #latest_pact_url, #latest_pacts_url, #latest_tagged_pact_url, #latest_untagged_pact_url, #latest_verification_for_pact_url, #latest_verifications_for_consumer_version_url, #latest_version_url, #matrix_url, #matrix_url_from_params, #new_verification_url, #pact_triggered_webhooks_url, #pact_url, #pact_url_from_params, #pact_version_url, #pact_version_url_with_metadata, #pact_versions_url, #pacticipant_url, #pacticipant_url_from_params, #pacticipants_url, #parse_webhook_metadata, #previous_distinct_diff_url, #previous_distinct_pact_version_url, #provider_webhooks_url, #tag_url, #tags_url, #templated_diff_url, #templated_label_url_for_pacticipant, #templated_tag_url_for_pacticipant, #triggered_webhook_logs_url, #url_encode, #verification_publication_url, #verification_triggered_webhooks_url, #verification_url, #verification_url_from_params, #version_url, #version_url_from_params, #versions_url, #webhook_execution_url, #webhook_url, #webhooks_for_consumer_and_provider_url, #webhooks_for_pact_url, #webhooks_status_url, #webhooks_url

Instance Method Details

#fake_consumer(context) ⇒ Object



88
89
90
# File 'lib/pact_broker/api/decorators/pact_webhooks_status_decorator.rb', line 88

def fake_consumer context
  OpenStruct.new(name: context[:consumer_name])
end

#fake_provider(context) ⇒ Object



92
93
94
# File 'lib/pact_broker/api/decorators/pact_webhooks_status_decorator.rb', line 92

def fake_provider context
  OpenStruct.new(name: context[:provider_name])
end

#pactObject



84
85
86
# File 'lib/pact_broker/api/decorators/pact_webhooks_status_decorator.rb', line 84

def pact
  represented.any? ? represented.first.pact_publication : nil
end

#summaryObject



73
74
75
76
77
78
# File 'lib/pact_broker/api/decorators/pact_webhooks_status_decorator.rb', line 73

def summary
  counts = represented.group_by(&:status).each_with_object({}) do | (status, triggered_webhooks), counts |
    counts[status] = triggered_webhooks.count
  end
  OpenStruct.new(counts)
end

#triggered_webhooks_with_error_logsObject



80
81
82
# File 'lib/pact_broker/api/decorators/pact_webhooks_status_decorator.rb', line 80

def triggered_webhooks_with_error_logs
  represented.select{|w| w.failure? || w.retrying? }
end