Class: PactBroker::Api::Resources::Pacticipants

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



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

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

#content_types_acceptedObject



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

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

#content_types_providedObject



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

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

#create_pathObject



39
40
41
# File 'lib/pact_broker/api/resources/pacticipants.rb', line 39

def create_path
  "/pacticpants/#{url_encode(params[:name])}"
end

#decorator_for(model) ⇒ Object



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

def decorator_for model
  PactBroker::Api::Decorators::PacticipantDecorator.new(model)
end

#from_jsonObject



34
35
36
37
# File 'lib/pact_broker/api/resources/pacticipants.rb', line 34

def from_json
  created_model = pacticipant_service.create params
  response.body = decorator_for(created_model).to_json(decorator_context)
end

#generate_json(pacticipants) ⇒ Object



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

def generate_json pacticipants
  PactBroker::Api::Decorators::PacticipantCollectionDecorator.new(pacticipants).to_json(base_url: base_url)
end

#malformed_request?Boolean

Returns:

  • (Boolean)


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

def malformed_request?
  if request.post?
    return invalid_json? || validation_errors?(new_model)
  end
  false
end

#new_modelObject



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

def new_model
  @new_model ||= decorator_for(PactBroker::Domain::Pacticipant.new).from_json(request.body.to_s)
end

#post_is_create?Boolean

Returns:

  • (Boolean)


30
31
32
# File 'lib/pact_broker/api/resources/pacticipants.rb', line 30

def post_is_create?
  true
end

#to_jsonObject



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

def to_json
  generate_json(pacticipant_service.find_all_pacticipants)
end