Class: PactBroker::Api::Resources::Verifications

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

Instance Attribute Summary

Attributes inherited from BaseResource

#user

Instance Method Summary collapse

Methods inherited from BaseResource

#base_url, #charsets_provided, #consumer, #consumer_name, #contract_validation_errors?, #decorator_context, #encode, #find_pacticipant, #finish_request, #forbidden?, #handle_exception, #identifier_from_path, #initialize, #invalid_json?, #is_authorized?, #options, #pact_params, #pacticipant_name, #params, #params_with_string_keys, #provider, #provider_name, #request_body, #resource_url, #set_json_error_message, #set_json_validation_error_messages, #validation_errors?

Methods included from Logging

included, #log_error

Methods included from Authentication

#authenticated?

Methods included from PactBrokerUrls

#badge_url_for_latest_pact, #consumer_webhooks_url, #hal_browser_url, #label_url, #labels_url, #latest_pact_url, #latest_pacts_url, #latest_untagged_pact_url, #latest_verifications_for_consumer_version_url, #latest_version_url, #matrix_url_from_params, #new_verification_url, #pact_triggered_webhooks_url, #pact_url, #pact_url_from_params, #pact_version_url, #pact_versions_url, #pacticipant_url, #pacticipant_url_from_params, #pacticipants_url, #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

Methods included from Services

#badge_service, #certificate_service, #group_service, #index_service, #label_service, #matrix_service, #pact_service, #pacticipant_service, #tag_service, #verification_service, #version_service, #webhook_service

Constructor Details

This class inherits a constructor from PactBroker::Api::Resources::BaseResource

Instance Method Details

#allowed_methodsObject



21
22
23
# File 'lib/pact_broker/api/resources/verifications.rb', line 21

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

#content_types_acceptedObject



13
14
15
# File 'lib/pact_broker/api/resources/verifications.rb', line 13

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

#content_types_providedObject



17
18
19
# File 'lib/pact_broker/api/resources/verifications.rb', line 17

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

#create_pathObject



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

def create_path
  new_verification_url(pact, next_verification_number, base_url)
end

#from_jsonObject



49
50
51
52
53
# File 'lib/pact_broker/api/resources/verifications.rb', line 49

def from_json
  verification = verification_service.create(next_verification_number, params_with_string_keys, pact)
  response.body = decorator_for(verification).to_json(user_options: {base_url: base_url})
  true
end

#malformed_request?Boolean

Returns:

  • (Boolean)


33
34
35
36
37
38
39
40
41
42
43
# File 'lib/pact_broker/api/resources/verifications.rb', line 33

def malformed_request?
  if request.post?
    return true if invalid_json?
    errors = verification_service.errors(params)
    if !errors.empty?
      set_json_validation_error_messages(errors.messages)
      return true
    end
  end
  false
end

#post_is_create?Boolean

Returns:

  • (Boolean)


25
26
27
# File 'lib/pact_broker/api/resources/verifications.rb', line 25

def post_is_create?
  true
end

#resource_exists?Boolean

Returns:

  • (Boolean)


29
30
31
# File 'lib/pact_broker/api/resources/verifications.rb', line 29

def resource_exists?
  !!pact
end