module JSONAPI::MimeTypes
Public Class Methods
install()
click to toggle source
# File lib/jsonapi/mime_types.rb, line 7 def self.install Mime::Type.register JSONAPI::MEDIA_TYPE, :api_json # :nocov: if Rails::VERSION::MAJOR >= 5 parsers = ActionDispatch::Request.parameter_parsers.merge( Mime::Type.lookup(JSONAPI::MEDIA_TYPE).symbol => parser ) ActionDispatch::Request.parameter_parsers = parsers else ActionDispatch::ParamsParser::DEFAULT_PARSERS[Mime::Type.lookup(JSONAPI::MEDIA_TYPE)] = parser end # :nocov: end
parser()
click to toggle source
# File lib/jsonapi/mime_types.rb, line 22 def self.parser lambda do |body| begin data = JSON.parse(body) if data.is_a?(Hash) data.with_indifferent_access else fail JSONAPI::Exceptions::InvalidRequestFormat.new end rescue JSON::ParserError => e { _parser_exception: JSONAPI::Exceptions::BadRequest.new(e.to_s) } rescue => e { _parser_exception: e } end end end