lib/dox/entities/example.rb in dox-1.0.0.alpha vs lib/dox/entities/example.rb in dox-1.0.0

- old
+ new

@@ -1,39 +1,72 @@ module Dox module Entities class Example + extend Forwardable - attr_reader :desc, :request, :response + def_delegator :response, :status, :response_status + def_delegator :response, :content_type, :response_content_type + def_delegator :response, :body, :response_body + def_delegator :request, :content_type, :request_content_type + def_delegator :request, :method, :request_method def initialize(details, request, response) @desc = details[:description] @request = request @response = response end def request_parameters - request.parameters.except(*request.path_parameters.keys.map(&:to_s)).except(*request.query_parameters.keys.map(&:to_s)) + request.parameters + .except(*request.path_parameters.keys.map(&:to_s)) + .except(*request.query_parameters.keys.map(&:to_s)) end - def request_content_type - request.content_type - end - def request_identifier @desc end - def response_status - response.status + def response_headers + @response_headers ||= filter_headers(response) end - def response_content_type - response.content_type + def request_headers + @request_headers ||= filter_headers(request) end - def response_body - response.body + # Rails 4 includes the body params in the request_fullpath + def request_fullpath + if request.query_parameters.present? + "#{request_path}?#{request_url_query_parameters}" + else + request_path + end end + private + + # Rails 5.0.2 returns "" for request.path + def request_path + request.path.presence || request.fullpath.split("?")[0] + end + + attr_reader :desc, :request, :response + + def filter_headers(obj) + headers_whitelist.map do |header| + header_val = obj.headers[header] + next if header_val.blank? + + [header, header_val] + end.compact + end + + def headers_whitelist + @headers_whitelist ||= Dox.full_headers_whitelist + end + + def request_url_query_parameters + CGI.unescape(request.query_parameters.to_query) + end end end end