Class: PactBroker::Api::Resources::LatestPact

Inherits:
BaseResource
  • Object
show all
Defined in:
lib/pact_broker/api/resources/latest_pact.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



15
16
17
# File 'lib/pact_broker/api/resources/latest_pact.rb', line 15

def allowed_methods
  ["GET"]
end

#content_types_providedObject



10
11
12
13
# File 'lib/pact_broker/api/resources/latest_pact.rb', line 10

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

#pactObject



32
33
34
# File 'lib/pact_broker/api/resources/latest_pact.rb', line 32

def pact
  @pact ||= pact_service.find_latest_pact(identifier_from_path)
end

#resource_exists?Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/pact_broker/api/resources/latest_pact.rb', line 19

def resource_exists?
  pact
end

#to_htmlObject



28
29
30
# File 'lib/pact_broker/api/resources/latest_pact.rb', line 28

def to_html
  PactBroker.configuration.html_pact_renderer.call(pact)
end

#to_jsonObject



23
24
25
26
# File 'lib/pact_broker/api/resources/latest_pact.rb', line 23

def to_json
  response.headers['X-Pact-Consumer-Version'] = pact.consumer_version_number
  PactBroker::Api::Decorators::PactDecorator.new(pact).to_json(base_url: base_url)
end