Class: PactBroker::Api::Resources::Index

Inherits:
BaseResource
  • Object
show all
Defined in:
lib/pact_broker/api/resources/index.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, #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, #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/index.rb', line 14

def allowed_methods
  ["GET"]
end

#content_types_providedObject



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

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

#to_jsonObject



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/pact_broker/api/resources/index.rb', line 18

def to_json
  {
    _links: {
      'pb:self' =>
      {
        href: base_url,
        title: 'The Pact Broker index page',
        templated: false
      },
      'pb:latest-pacts' =>
      {
        href: base_url + '/pacts/latest',
        title: 'Retrieve latest pacts',
        templated: false
      },
      'pb:pacticipants' =>
      {
        href: base_url + '/pacticipants',
        title: 'Retrieve pacticipants',
        templated: false
      },
      'pb:webhooks' =>
      {
        href: base_url + '/webhooks',
        title: 'Webhooks',
        templated: false
      },'curies' =>
      [{
        name: 'pb',
        href: base_url + '/doc/{rel}',
        templated: true
      }]
    }
  }.to_json
end