Class: PactBroker::Api::Resources::Pact

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

Constant Summary

Constants included from Logging

Logging::LOG_DIR, Logging::LOG_FILE_NAME

Instance Method Summary collapse

Methods included from PacticipantResourceMethods

#potential_duplicate_pacticipants?

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, #validation_errors?

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, #previous_distinct_diff_url, #previous_distinct_pact_version_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, #version_service, #webhook_service

Instance Method Details

#allowed_methodsObject



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

def allowed_methods
  ["GET", "PUT", "DELETE"]
end

#content_types_acceptedObject



22
23
24
# File 'lib/pact_broker/api/resources/pact.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.rb', line 18

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

#delete_resourceObject



55
56
57
58
# File 'lib/pact_broker/api/resources/pact.rb', line 55

def delete_resource
  pact_service.delete(pact_params)
  true
end

#from_jsonObject



44
45
46
47
48
49
# File 'lib/pact_broker/api/resources/pact.rb', line 44

def from_json
  response_code = pact ? 200 : 201
  @pact = pact_service.create_or_update_pact(pact_params)
  response.body = to_json
  response_code
end

#malformed_request?Boolean

Returns:

  • (Boolean)


30
31
32
33
34
35
36
37
38
# File 'lib/pact_broker/api/resources/pact.rb', line 30

def malformed_request?
  if request.put?
    return invalid_json? ||
      contract_validation_errors?(Contracts::PutPactParamsContract.new(pact_params)) ||
      potential_duplicate_pacticipants?(pact_params.pacticipant_names)
  else
    false
  end
end

#resource_exists?Boolean

Returns:

  • (Boolean)


40
41
42
# File 'lib/pact_broker/api/resources/pact.rb', line 40

def resource_exists?
  pact
end

#to_jsonObject



51
52
53
# File 'lib/pact_broker/api/resources/pact.rb', line 51

def to_json
  PactBroker::Api::Decorators::PactDecorator.new(pact).to_json(base_url: base_url)
end