Class: PactBroker::Api::Resources::PactWebhooks

Inherits:
BaseResource
  • Object
show all
Defined in:
lib/pact_broker/api/resources/pact_webhooks.rb

Constant Summary

Constants included from Logging

Logging::LOG_DIR, Logging::LOG_FILE_NAME

Instance Method Summary collapse

Methods inherited from BaseResource

#base_url, #consumer_name, #contract_validation_errors?, #decorator_context, #handle_exception, #identifier_from_path, #invalid_json?, #params, #provider_name, #request_body, #resource_url, #set_json_error_message, #set_json_validation_error_messages

Methods included from Logging

included, #logger, #logger=

Methods included from PactBrokerUrls

#hal_browser_url, #latest_pact_url, #latest_pacts_url, #latest_version_url, #pact_url, #pact_url_from_params, #pact_versions_url, #pacticipant_url, #pacticipants_url, #tag_url, #tags_url, #url_encode, #version_url, #versions_url, #webhook_execution_url, #webhook_url, #webhooks_for_pact_url, #webhooks_url

Methods included from Services

#group_service, #pact_service, #pacticipant_service, #tag_service, #webhook_service

Instance Method Details

#allowed_methodsObject



14
15
16
# File 'lib/pact_broker/api/resources/pact_webhooks.rb', line 14

def allowed_methods
  ["POST", "GET"]
end

#content_types_acceptedObject



22
23
24
# File 'lib/pact_broker/api/resources/pact_webhooks.rb', line 22

def content_types_accepted
  [["application/json", :from_json]]
end

#content_types_providedObject



18
19
20
# File 'lib/pact_broker/api/resources/pact_webhooks.rb', line 18

def content_types_provided
  [["application/hal+json", :to_json]]
end

#create_pathObject



45
46
47
# File 'lib/pact_broker/api/resources/pact_webhooks.rb', line 45

def create_path
  webhook_url next_uuid, base_url
end

#from_jsonObject



53
54
55
56
# File 'lib/pact_broker/api/resources/pact_webhooks.rb', line 53

def from_json
  saved_webhook = webhook_service.create next_uuid, webhook, consumer, provider
  response.body = Decorators::WebhookDecorator.new(saved_webhook).to_json(base_url: base_url)
end

#malformed_request?Boolean

Returns:

  • (Boolean)


30
31
32
33
34
35
# File 'lib/pact_broker/api/resources/pact_webhooks.rb', line 30

def malformed_request?
  if request.post?
    return invalid_json? || validation_errors?(webhook)
  end
  false
end

#post_is_create?Boolean

Returns:

  • (Boolean)


49
50
51
# File 'lib/pact_broker/api/resources/pact_webhooks.rb', line 49

def post_is_create?
  true
end

#resource_exists?Boolean

Returns:

  • (Boolean)


26
27
28
# File 'lib/pact_broker/api/resources/pact_webhooks.rb', line 26

def resource_exists?
  consumer && provider
end

#to_jsonObject



58
59
60
# File 'lib/pact_broker/api/resources/pact_webhooks.rb', line 58

def to_json
  Decorators::WebhooksDecorator.new(webhooks).to_json(decorator_context(resource_title: 'Pact webhooks'))
end

#validation_errors?(webhook) ⇒ Boolean

Returns:

  • (Boolean)


37
38
39
40
41
42
43
# File 'lib/pact_broker/api/resources/pact_webhooks.rb', line 37

def validation_errors? webhook
  if (errors = webhook_service.errors(webhook)).any?
    response.headers['Content-Type'] = 'application/json'
    response.body = {errors: errors.full_messages }.to_json
  end
  errors.any?
end