Sha256: 38ab1cc956315c1cd78e7a39c0d6a3702f3221c10764cf686e8532aaf722227c
Contents?: true
Size: 772 Bytes
Versions: 4
Compression:
Stored size: 772 Bytes
Contents
require 'json-schema' module Fitting class Request def initialize(env_request, tomogram) @method = env_request.request_method @path = env_request.env['PATH_INFO'] || env_request.fullpath @body = env_request.env['action_dispatch.request.request_parameters'] @schema = tomogram.find_request(method: @method, path: @path) self end def route "#{@schema.method}\t#{@schema.path}" end def real_method_with_path "#{@method}\t#{@path}" end def schemas_of_possible_responses(status:) return nil unless @schema @schema.find_responses(status: status).map do |response| response['body'] end end def within_prefix?(prefix) @path.start_with?(prefix) end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fitting-2.1.3 | lib/fitting/request.rb |
fitting-2.1.2 | lib/fitting/request.rb |
fitting-2.1.1 | lib/fitting/request.rb |
fitting-2.1.0 | lib/fitting/request.rb |