Class: PactBroker::Api::Resources::Pacticipant

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

Constant Summary

Constants included from Logging

Logging::LOG_DIR, Logging::LOG_FILE_NAME

Instance Method Summary collapse

Methods inherited from BaseResource

#base_url, #charsets_provided, #consumer_name, #contract_validation_errors?, #decorator_context, #encode, #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



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

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

#content_types_acceptedObject



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

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

#content_types_providedObject



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

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

#delete_resourceObject



47
48
49
50
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 47

def delete_resource
  pacticipant_service.delete pacticipant_name
  true
end

#from_jsonObject



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

def from_json
  if pacticipant
    @pacticipant = pacticipant_service.update params.merge(name: pacticipant_name)
  else
    @pacticipant = pacticipant_service.create params.merge(name: pacticipant_name)
    response.headers["Location"] = pacticipant_url(base_url, pacticipant)
  end
  response.body = to_json
end

#known_methodsObject



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

def known_methods
  super + ['PATCH']
end

#resource_exists?Boolean

Returns:

  • (Boolean)


43
44
45
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 43

def resource_exists?
  pacticipant
end

#to_jsonObject



52
53
54
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 52

def to_json
  PactBroker::Api::Decorators::PacticipantDecorator.new(pacticipant).to_json(base_url: base_url)
end