1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_dispatch/middleware/params_parser.rb

64 lines
2 KiB
Ruby
Raw Normal View History

2009-12-22 18:11:21 -05:00
require 'action_dispatch/http/request'
2009-04-22 19:48:58 -04:00
module ActionDispatch
2015-08-15 14:41:19 -04:00
# ActionDispatch::ParamsParser works for all the requests having any Content-Length
# (like POST). It takes raw data from the request and puts it through the parser
# that is picked based on Content-Type header.
#
# In case of any error while parsing data ParamsParser::ParseError is raised.
class ParamsParser
2015-08-15 14:41:19 -04:00
# Raised when raw data from the request cannot be parsed by the parser
# defined for request's content mime type.
class ParseError < StandardError
attr_reader :original_exception
def initialize(message, original_exception)
super(message)
@original_exception = original_exception
end
end
DEFAULT_PARSERS = {
Mime::JSON => lambda { |raw_post|
data = ActiveSupport::JSON.decode(raw_post)
data = {:_json => data} unless data.is_a?(Hash)
Request::Utils.normalize_encode_params(data)
}
}
2015-08-15 14:41:19 -04:00
# Create a new +ParamsParser+ middleware instance.
#
# The +parsers+ argument can take Hash of parsers where key is identifying
# content mime type, and value is a lambda that is going to process data.
def initialize(app, parsers = {})
@app, @parsers = app, DEFAULT_PARSERS.merge(parsers)
end
def call(env)
request = Request.new(env)
request.request_parameters = parse_formatted_parameters(request, @parsers)
@app.call(env)
end
private
def parse_formatted_parameters(request, parsers)
return if request.content_length.zero?
strategy = parsers.fetch(request.content_mime_type) { return nil }
strategy.call(request.raw_post)
rescue => e # JSON or Ruby code block errors
logger(request).debug "Error occurred while parsing request parameters.\nContents:\n\n#{request.raw_post}"
raise ParseError.new(e.message, e)
end
def logger(request)
request.logger || ActiveSupport::Logger.new($stderr)
end
end
end