Sha256: 362625bca4b6b869f0b7330e1b04d7686dfe25fc0abf58e7bb585efab44736c7
Contents?: true
Size: 1.51 KB
Versions: 17
Compression:
Stored size: 1.51 KB
Contents
require 'pact_broker/api/resources/base_resource' require 'pact_broker/api/decorators/pacticipant_decorator' require 'pact_broker/domain/pacticipant' module PactBroker module Api module Resources class Pacticipants < BaseResource def content_types_provided [["application/hal+json", :to_json]] end def content_types_accepted [["application/json", :from_json]] end def allowed_methods ["GET", "POST"] end def malformed_request? if request.post? return invalid_json? || validation_errors?(new_model) end false end def post_is_create? true end def from_json created_model = pacticipant_service.create params response.body = decorator_for(created_model).to_json(decorator_context) end def create_path "/pacticpants/#{url_encode(params[:name])}" end def to_json generate_json(pacticipant_service.find_all_pacticipants) end def generate_json pacticipants PactBroker::Api::Decorators::PacticipantCollectionDecorator.new(pacticipants).to_json(base_url: base_url) end def decorator_for model PactBroker::Api::Decorators::PacticipantDecorator.new(model) end def new_model @new_model ||= decorator_for(PactBroker::Domain::Pacticipant.new).from_json(request.body.to_s) end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems