Sha256: 985ab12c0c174221185fad315ee486cd198bdf288c78e45835a39ce7ff24d960
Contents?: true
Size: 1.26 KB
Versions: 1
Compression:
Stored size: 1.26 KB
Contents
require 'forwardable' module ServiceContract module Avro class Endpoint < AbstractEndpoint extend Forwardable def_delegators :definition, :name, :response, :request def description [request_method, path].join(" ") end def doc definition.respond_to?(:doc) ? definition.doc : nil end def response_type Type.build(response) end def parameters request.fields.map{|field| Parameter.new(field) } end protected def request_method case name when "create" "POST" when "update" "PUT" when "destroy" "DELETE" else "GET" end end def path case name when "index", "create" protocol.path when "show", "destroy", "update" File.join(protocol.path, ":id") else if member? File.join(protocol.path, ":id", name) else File.join(protocol.path, name) end end end # seems kinda hacky def member? first_field_type = request.fields.first.type first_field_type.complex? && first_field_type.name == protocol.main_type end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
service_contract-0.0.8 | lib/service_contract/avro/endpoint.rb |