Sha256: 73d4099dbf947dde20ebd7794ffcb8278e67bbebe2e48e9afc37a03bfbda3ec3
Contents?: true
Size: 1.96 KB
Versions: 4
Compression:
Stored size: 1.96 KB
Contents
require 'pact_broker/api/resources/base_resource' require 'pact_broker/api/decorators/pacticipant_decorator' require 'pact_broker/domain/pacticipant' require 'pact_broker/hash_refinements' module PactBroker module Api module Resources class Pacticipants < BaseResource using PactBroker::HashRefinements def content_types_provided [["application/hal+json", :to_json]] end def content_types_accepted [["application/json", :from_json]] end def allowed_methods ["GET", "POST", "OPTIONS"] 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.symbolize_keys.snakecase_keys.slice(:name, :repository_url)) response.body = decorator_for(created_model).to_json(user_options: 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::DeprecatedPacticipantCollectionDecorator.new(pacticipants).to_json(decorator_options) 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 def policy_name :'pacticipants::pacticipants' end def policy_record request.post? ? nil : pacticipants end private def pacticipants @pacticipants ||= pacticipant_service.find_all_pacticipants end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems