2007-05-18 02:24:50 -04:00
|
|
|
require 'stringio'
|
|
|
|
|
2010-11-02 06:47:32 -04:00
|
|
|
require 'active_support/inflector'
|
2009-12-12 19:41:26 -05:00
|
|
|
require 'action_dispatch/http/headers'
|
2011-06-29 09:38:09 -04:00
|
|
|
require 'action_controller/metal/exceptions'
|
2013-01-09 18:33:32 -05:00
|
|
|
require 'rack/request'
|
|
|
|
require 'action_dispatch/http/cache'
|
|
|
|
require 'action_dispatch/http/mime_negotiation'
|
|
|
|
require 'action_dispatch/http/parameters'
|
|
|
|
require 'action_dispatch/http/filter_parameters'
|
|
|
|
require 'action_dispatch/http/upload'
|
|
|
|
require 'action_dispatch/http/url'
|
|
|
|
require 'active_support/core_ext/array/conversions'
|
2007-11-28 21:08:51 -05:00
|
|
|
|
2009-01-27 19:54:01 -05:00
|
|
|
module ActionDispatch
|
2009-01-09 12:15:38 -05:00
|
|
|
class Request < Rack::Request
|
2010-01-16 07:17:03 -05:00
|
|
|
include ActionDispatch::Http::Cache::Request
|
|
|
|
include ActionDispatch::Http::MimeNegotiation
|
|
|
|
include ActionDispatch::Http::Parameters
|
2010-01-21 05:39:57 -05:00
|
|
|
include ActionDispatch::Http::FilterParameters
|
2010-01-16 07:17:03 -05:00
|
|
|
include ActionDispatch::Http::Upload
|
|
|
|
include ActionDispatch::Http::URL
|
2008-12-22 19:15:08 -05:00
|
|
|
|
2012-05-13 15:29:43 -04:00
|
|
|
autoload :Session, 'action_dispatch/request/session'
|
|
|
|
|
2012-02-28 20:43:03 -05:00
|
|
|
LOCALHOST = Regexp.union [/^127\.0\.0\.\d{1,3}$/, /^::1$/, /^0:0:0:0:0:0:0:1(%.*)?$/]
|
|
|
|
|
2011-05-04 20:56:56 -04:00
|
|
|
ENV_METHODS = %w[ AUTH_TYPE GATEWAY_INTERFACE
|
2008-12-22 19:15:08 -05:00
|
|
|
PATH_TRANSLATED REMOTE_HOST
|
2009-01-09 12:15:38 -05:00
|
|
|
REMOTE_IDENT REMOTE_USER REMOTE_ADDR
|
2008-12-22 19:15:08 -05:00
|
|
|
SERVER_NAME SERVER_PROTOCOL
|
|
|
|
|
|
|
|
HTTP_ACCEPT HTTP_ACCEPT_CHARSET HTTP_ACCEPT_ENCODING
|
|
|
|
HTTP_ACCEPT_LANGUAGE HTTP_CACHE_CONTROL HTTP_FROM
|
2011-05-04 20:56:56 -04:00
|
|
|
HTTP_NEGOTIATE HTTP_PRAGMA ].freeze
|
2011-05-24 17:38:59 -04:00
|
|
|
|
2011-05-04 20:56:56 -04:00
|
|
|
ENV_METHODS.each do |env|
|
2010-01-16 07:17:03 -05:00
|
|
|
class_eval <<-METHOD, __FILE__, __LINE__ + 1
|
2011-07-28 15:43:58 -04:00
|
|
|
def #{env.sub(/^HTTP_/n, '').downcase} # def accept_charset
|
|
|
|
@env["#{env}"] # @env["HTTP_ACCEPT_CHARSET"]
|
|
|
|
end # end
|
2010-01-16 07:17:03 -05:00
|
|
|
METHOD
|
2008-12-22 19:15:08 -05:00
|
|
|
end
|
|
|
|
|
2012-08-09 14:21:58 -04:00
|
|
|
def initialize(env)
|
|
|
|
super
|
|
|
|
@method = nil
|
|
|
|
@request_method = nil
|
|
|
|
@remote_ip = nil
|
|
|
|
@original_fullpath = nil
|
|
|
|
@fullpath = nil
|
|
|
|
@ip = nil
|
|
|
|
@uuid = nil
|
|
|
|
end
|
|
|
|
|
2008-12-22 19:15:08 -05:00
|
|
|
def key?(key)
|
|
|
|
@env.key?(key)
|
|
|
|
end
|
|
|
|
|
2010-11-02 06:47:32 -04:00
|
|
|
# List of HTTP request methods from the following RFCs:
|
|
|
|
# Hypertext Transfer Protocol -- HTTP/1.1 (http://www.ietf.org/rfc/rfc2616.txt)
|
|
|
|
# HTTP Extensions for Distributed Authoring -- WEBDAV (http://www.ietf.org/rfc/rfc2518.txt)
|
|
|
|
# Versioning Extensions to WebDAV (http://www.ietf.org/rfc/rfc3253.txt)
|
|
|
|
# Ordered Collections Protocol (WebDAV) (http://www.ietf.org/rfc/rfc3648.txt)
|
|
|
|
# Web Distributed Authoring and Versioning (WebDAV) Access Control Protocol (http://www.ietf.org/rfc/rfc3744.txt)
|
|
|
|
# Web Distributed Authoring and Versioning (WebDAV) SEARCH (http://www.ietf.org/rfc/rfc5323.txt)
|
|
|
|
# PATCH Method for HTTP (http://www.ietf.org/rfc/rfc5789.txt)
|
|
|
|
RFC2616 = %w(OPTIONS GET HEAD POST PUT DELETE TRACE CONNECT)
|
|
|
|
RFC2518 = %w(PROPFIND PROPPATCH MKCOL COPY MOVE LOCK UNLOCK)
|
|
|
|
RFC3253 = %w(VERSION-CONTROL REPORT CHECKOUT CHECKIN UNCHECKOUT MKWORKSPACE UPDATE LABEL MERGE BASELINE-CONTROL MKACTIVITY)
|
|
|
|
RFC3648 = %w(ORDERPATCH)
|
|
|
|
RFC3744 = %w(ACL)
|
|
|
|
RFC5323 = %w(SEARCH)
|
|
|
|
RFC5789 = %w(PATCH)
|
|
|
|
|
|
|
|
HTTP_METHODS = RFC2616 + RFC2518 + RFC3253 + RFC3648 + RFC3744 + RFC5323 + RFC5789
|
2012-10-18 19:05:28 -04:00
|
|
|
|
|
|
|
HTTP_METHOD_LOOKUP = {}
|
|
|
|
|
|
|
|
# Populate the HTTP method lookup cache
|
|
|
|
HTTP_METHODS.each { |method|
|
|
|
|
HTTP_METHOD_LOOKUP[method] = method.underscore.to_sym
|
|
|
|
}
|
2008-08-08 02:43:12 -04:00
|
|
|
|
2010-04-03 23:23:23 -04:00
|
|
|
# Returns the HTTP \method that the application should see.
|
|
|
|
# In the case where the \method was overridden by a middleware
|
|
|
|
# (for instance, if a HEAD request was converted to a GET,
|
|
|
|
# or if a _method parameter was used to determine the \method
|
|
|
|
# the application should use), this \method returns the overridden
|
|
|
|
# value, not the original.
|
2007-11-28 21:08:51 -05:00
|
|
|
def request_method
|
2010-09-29 19:09:58 -04:00
|
|
|
@request_method ||= check_method(env["REQUEST_METHOD"])
|
2010-04-03 23:23:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Returns a symbol form of the #request_method
|
|
|
|
def request_method_symbol
|
|
|
|
HTTP_METHOD_LOOKUP[request_method]
|
2007-11-28 21:08:51 -05:00
|
|
|
end
|
|
|
|
|
2010-04-03 23:23:23 -04:00
|
|
|
# Returns the original value of the environment's REQUEST_METHOD,
|
|
|
|
# even if it was overridden by middleware. See #request_method for
|
|
|
|
# more information.
|
2004-11-23 20:04:44 -05:00
|
|
|
def method
|
2010-09-29 19:09:58 -04:00
|
|
|
@method ||= check_method(env["rack.methodoverride.original_method"] || env['REQUEST_METHOD'])
|
2010-04-03 23:23:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Returns a symbol form of the #method
|
|
|
|
def method_symbol
|
|
|
|
HTTP_METHOD_LOOKUP[method]
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2010-04-03 23:23:23 -04:00
|
|
|
# Is this a GET (or HEAD) request?
|
2011-11-28 15:46:09 -05:00
|
|
|
# Equivalent to <tt>request.request_method_symbol == :get</tt>.
|
2004-11-23 20:04:44 -05:00
|
|
|
def get?
|
2010-04-03 23:23:23 -04:00
|
|
|
HTTP_METHOD_LOOKUP[request_method] == :get
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2010-04-03 23:23:23 -04:00
|
|
|
# Is this a POST request?
|
2011-11-28 15:46:09 -05:00
|
|
|
# Equivalent to <tt>request.request_method_symbol == :post</tt>.
|
2004-11-23 20:04:44 -05:00
|
|
|
def post?
|
2010-04-03 23:23:23 -04:00
|
|
|
HTTP_METHOD_LOOKUP[request_method] == :post
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2011-05-06 17:03:55 -04:00
|
|
|
# Is this a PATCH request?
|
|
|
|
# Equivalent to <tt>request.request_method == :patch</tt>.
|
|
|
|
def patch?
|
|
|
|
HTTP_METHOD_LOOKUP[request_method] == :patch
|
|
|
|
end
|
|
|
|
|
2010-04-03 23:23:23 -04:00
|
|
|
# Is this a PUT request?
|
2011-11-28 15:46:09 -05:00
|
|
|
# Equivalent to <tt>request.request_method_symbol == :put</tt>.
|
2004-11-23 20:04:44 -05:00
|
|
|
def put?
|
2010-04-03 23:23:23 -04:00
|
|
|
HTTP_METHOD_LOOKUP[request_method] == :put
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2010-04-03 23:23:23 -04:00
|
|
|
# Is this a DELETE request?
|
2011-11-28 15:46:09 -05:00
|
|
|
# Equivalent to <tt>request.request_method_symbol == :delete</tt>.
|
2004-11-23 20:04:44 -05:00
|
|
|
def delete?
|
2010-04-03 23:23:23 -04:00
|
|
|
HTTP_METHOD_LOOKUP[request_method] == :delete
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2010-04-03 23:23:23 -04:00
|
|
|
# Is this a HEAD request?
|
2012-07-23 12:50:48 -04:00
|
|
|
# Equivalent to <tt>request.request_method_symbol == :head</tt>.
|
2004-12-07 05:50:26 -05:00
|
|
|
def head?
|
2012-07-23 12:50:48 -04:00
|
|
|
HTTP_METHOD_LOOKUP[request_method] == :head
|
2004-12-07 05:50:26 -05:00
|
|
|
end
|
2005-05-14 04:36:19 -04:00
|
|
|
|
2008-07-16 08:00:36 -04:00
|
|
|
# Provides access to the request's HTTP headers, for example:
|
2008-09-03 12:58:47 -04:00
|
|
|
#
|
|
|
|
# request.headers["Content-Type"] # => "text/plain"
|
2007-02-17 13:16:44 -05:00
|
|
|
def headers
|
2009-01-27 19:54:01 -05:00
|
|
|
Http::Headers.new(@env)
|
2007-02-17 13:16:44 -05:00
|
|
|
end
|
|
|
|
|
2011-12-20 14:34:04 -05:00
|
|
|
def original_fullpath
|
|
|
|
@original_fullpath ||= (env["ORIGINAL_FULLPATH"] || fullpath)
|
|
|
|
end
|
|
|
|
|
2013-03-13 06:21:47 -04:00
|
|
|
# Returns the +String+ full path including params of the last URL requested.
|
|
|
|
#
|
|
|
|
# app.get "/articles"
|
2013-03-13 18:20:23 -04:00
|
|
|
# app.request.fullpath # => "/articles"
|
2013-03-13 06:21:47 -04:00
|
|
|
#
|
|
|
|
# app.get "/articles?page=2"
|
2013-03-13 18:20:23 -04:00
|
|
|
# app.request.fullpath # => "/articles?page=2"
|
2010-06-04 12:47:25 -04:00
|
|
|
def fullpath
|
|
|
|
@fullpath ||= super
|
|
|
|
end
|
|
|
|
|
2013-03-13 06:21:47 -04:00
|
|
|
# Returns the original request URL as a +String+
|
|
|
|
#
|
|
|
|
# app.get "/articles?page=2"
|
|
|
|
# app.request.original_url
|
|
|
|
# # => "http://www.example.com/articles?page=2"
|
2011-12-20 14:34:04 -05:00
|
|
|
def original_url
|
|
|
|
base_url + original_fullpath
|
|
|
|
end
|
|
|
|
|
2013-03-13 06:21:47 -04:00
|
|
|
# The +String+ MIME type of the request
|
|
|
|
#
|
|
|
|
# app.get "/articles"
|
2013-03-13 18:27:49 -04:00
|
|
|
# app.request.media_type
|
2013-03-13 06:21:47 -04:00
|
|
|
# # => "application/x-www-form-urlencoded"
|
2009-04-25 14:56:37 -04:00
|
|
|
def media_type
|
2010-03-28 16:40:38 -04:00
|
|
|
content_mime_type.to_s
|
2009-04-25 14:56:37 -04:00
|
|
|
end
|
|
|
|
|
2010-01-16 07:17:03 -05:00
|
|
|
# Returns the content length of the request as an integer.
|
|
|
|
def content_length
|
|
|
|
super.to_i
|
2008-06-27 14:24:21 -04:00
|
|
|
end
|
|
|
|
|
2010-09-11 18:57:45 -04:00
|
|
|
# Returns true if the "X-Requested-With" header contains "XMLHttpRequest"
|
|
|
|
# (case-insensitive). All major JavaScript libraries send this header with
|
|
|
|
# every Ajax request.
|
2005-05-22 03:43:05 -04:00
|
|
|
def xml_http_request?
|
2012-03-24 19:17:16 -04:00
|
|
|
@env['HTTP_X_REQUESTED_WITH'] =~ /XMLHttpRequest/i
|
2005-05-22 03:43:05 -04:00
|
|
|
end
|
2009-07-28 15:29:29 -04:00
|
|
|
alias :xhr? :xml_http_request?
|
2005-05-22 03:43:05 -04:00
|
|
|
|
2010-06-04 12:47:25 -04:00
|
|
|
def ip
|
|
|
|
@ip ||= super
|
|
|
|
end
|
|
|
|
|
2011-11-12 02:22:49 -05:00
|
|
|
# Originating IP address, usually set by the RemoteIp middleware.
|
2004-11-23 20:04:44 -05:00
|
|
|
def remote_ip
|
2010-06-04 12:47:25 -04:00
|
|
|
@remote_ip ||= (@env["action_dispatch.remote_ip"] || ip).to_s
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2011-10-19 13:59:33 -04:00
|
|
|
# Returns the unique request id, which is based off either the X-Request-Id header that can
|
|
|
|
# be generated by a firewall, load balancer, or web server or by the RequestId middleware
|
|
|
|
# (which sets the action_dispatch.request_id environment variable).
|
|
|
|
#
|
|
|
|
# This unique ID is useful for tracing a request from end-to-end as part of logging or debugging.
|
|
|
|
# This relies on the rack variable set by the ActionDispatch::RequestId middleware.
|
|
|
|
def uuid
|
|
|
|
@uuid ||= env["action_dispatch.request_id"]
|
|
|
|
end
|
|
|
|
|
2007-03-04 15:32:38 -05:00
|
|
|
# Returns the lowercase name of the HTTP server software.
|
|
|
|
def server_software
|
|
|
|
(@env['SERVER_SOFTWARE'] && /^([a-zA-Z]+)/ =~ @env['SERVER_SOFTWARE']) ? $1.downcase : nil
|
|
|
|
end
|
|
|
|
|
2008-09-03 12:58:47 -04:00
|
|
|
# Read the request \body. This is useful for web services that need to
|
2007-05-23 15:09:37 -04:00
|
|
|
# work with raw requests directly.
|
2007-03-04 15:32:38 -05:00
|
|
|
def raw_post
|
2009-01-17 21:29:50 -05:00
|
|
|
unless @env.include? 'RAW_POST_DATA'
|
2012-12-11 16:46:13 -05:00
|
|
|
raw_post_body = body
|
|
|
|
@env['RAW_POST_DATA'] = raw_post_body.read(@env['CONTENT_LENGTH'].to_i)
|
|
|
|
raw_post_body.rewind if raw_post_body.respond_to?(:rewind)
|
2009-01-17 21:29:50 -05:00
|
|
|
end
|
|
|
|
@env['RAW_POST_DATA']
|
2004-12-18 13:01:28 -05:00
|
|
|
end
|
|
|
|
|
2009-01-17 21:29:50 -05:00
|
|
|
# The request body is an IO input stream. If the RAW_POST_DATA environment
|
|
|
|
# variable is already set, wrap it in a StringIO.
|
2008-08-08 02:43:12 -04:00
|
|
|
def body
|
2009-01-17 21:29:50 -05:00
|
|
|
if raw_post = @env['RAW_POST_DATA']
|
2011-12-25 06:34:58 -05:00
|
|
|
raw_post.force_encoding(Encoding::BINARY)
|
2009-01-17 21:29:50 -05:00
|
|
|
StringIO.new(raw_post)
|
|
|
|
else
|
|
|
|
@env['rack.input']
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def form_data?
|
2010-03-28 16:40:38 -04:00
|
|
|
FORM_DATA_MEDIA_TYPES.include?(content_mime_type.to_s)
|
2008-08-08 02:43:12 -04:00
|
|
|
end
|
2005-06-24 10:43:15 -04:00
|
|
|
|
2008-08-08 02:43:12 -04:00
|
|
|
def body_stream #:nodoc:
|
2008-12-22 19:15:08 -05:00
|
|
|
@env['rack.input']
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2010-06-25 03:36:26 -04:00
|
|
|
# TODO This should be broken apart into AD::Request::Session and probably
|
|
|
|
# be included by the session middleware.
|
2009-04-26 15:33:57 -04:00
|
|
|
def reset_session
|
2012-08-31 14:36:05 -04:00
|
|
|
if session && session.respond_to?(:destroy)
|
|
|
|
session.destroy
|
|
|
|
else
|
|
|
|
self.session = {}
|
|
|
|
end
|
2010-06-25 03:36:26 -04:00
|
|
|
@env['action_dispatch.request.flash_hash'] = nil
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2006-02-09 15:05:11 -05:00
|
|
|
def session=(session) #:nodoc:
|
2012-05-03 17:28:11 -04:00
|
|
|
Session.set @env, session
|
2006-02-09 15:05:11 -05:00
|
|
|
end
|
|
|
|
|
2008-12-22 19:15:08 -05:00
|
|
|
def session_options=(options)
|
2012-05-03 17:28:11 -04:00
|
|
|
Session::Options.set @env, options
|
2008-12-22 19:15:08 -05:00
|
|
|
end
|
|
|
|
|
2010-01-16 07:17:03 -05:00
|
|
|
# Override Rack's GET method to support indifferent access
|
|
|
|
def GET
|
2012-03-26 23:54:24 -04:00
|
|
|
@env["action_dispatch.request.query_parameters"] ||= (normalize_encode_params(super) || {})
|
2012-10-25 14:25:29 -04:00
|
|
|
rescue TypeError => e
|
2012-10-25 14:34:37 -04:00
|
|
|
raise ActionController::BadRequest.new(:query, e)
|
2010-01-16 07:17:03 -05:00
|
|
|
end
|
|
|
|
alias :query_parameters :GET
|
|
|
|
|
|
|
|
# Override Rack's POST method to support indifferent access
|
|
|
|
def POST
|
2012-03-26 23:54:24 -04:00
|
|
|
@env["action_dispatch.request.request_parameters"] ||= (normalize_encode_params(super) || {})
|
2012-10-25 14:25:29 -04:00
|
|
|
rescue TypeError => e
|
2012-10-25 14:34:37 -04:00
|
|
|
raise ActionController::BadRequest.new(:request, e)
|
2010-01-16 07:17:03 -05:00
|
|
|
end
|
|
|
|
alias :request_parameters :POST
|
|
|
|
|
2009-12-20 21:30:50 -05:00
|
|
|
# Returns the authorization header regardless of whether it was specified directly or through one of the
|
|
|
|
# proxy alternatives.
|
|
|
|
def authorization
|
|
|
|
@env['HTTP_AUTHORIZATION'] ||
|
|
|
|
@env['X-HTTP_AUTHORIZATION'] ||
|
|
|
|
@env['X_HTTP_AUTHORIZATION'] ||
|
|
|
|
@env['REDIRECT_X_HTTP_AUTHORIZATION']
|
|
|
|
end
|
2010-08-13 16:34:20 -04:00
|
|
|
|
|
|
|
# True if the request came from localhost, 127.0.0.1.
|
|
|
|
def local?
|
2012-02-28 20:43:03 -05:00
|
|
|
LOCALHOST =~ remote_addr && LOCALHOST =~ remote_ip
|
2010-08-13 16:34:20 -04:00
|
|
|
end
|
2010-09-29 19:09:58 -04:00
|
|
|
|
2012-05-30 18:13:03 -04:00
|
|
|
# Remove nils from the params hash
|
|
|
|
def deep_munge(hash)
|
2013-01-04 15:02:22 -05:00
|
|
|
hash.each do |k, v|
|
2012-05-30 18:13:03 -04:00
|
|
|
case v
|
|
|
|
when Array
|
|
|
|
v.grep(Hash) { |x| deep_munge(x) }
|
2012-06-10 23:44:54 -04:00
|
|
|
v.compact!
|
2013-01-04 15:02:22 -05:00
|
|
|
hash[k] = nil if v.empty?
|
2012-05-30 18:13:03 -04:00
|
|
|
when Hash
|
|
|
|
deep_munge(v)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
hash
|
|
|
|
end
|
|
|
|
|
2013-01-04 15:02:22 -05:00
|
|
|
protected
|
|
|
|
|
2012-05-30 18:13:03 -04:00
|
|
|
def parse_query(qs)
|
|
|
|
deep_munge(super)
|
|
|
|
end
|
|
|
|
|
2010-09-29 19:09:58 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def check_method(name)
|
|
|
|
HTTP_METHOD_LOOKUP[name] || raise(ActionController::UnknownHttpMethod, "#{name}, accepted HTTP methods are #{HTTP_METHODS.to_sentence(:locale => :en)}")
|
|
|
|
name
|
|
|
|
end
|
2007-10-06 07:40:13 -04:00
|
|
|
end
|
2007-10-02 01:32:14 -04:00
|
|
|
end
|