Class: Rack::MethodOverride

Inherits:
Object show all
Defined in:
lib/vendor/rack-1.5.2/lib/rack/methodoverride.rb

Constant Summary collapse

HTTP_METHODS =
%w(GET HEAD PUT POST DELETE OPTIONS PATCH)
METHOD_OVERRIDE_PARAM_KEY =
"_method".freeze
HTTP_METHOD_OVERRIDE_HEADER =
"HTTP_X_HTTP_METHOD_OVERRIDE".freeze

Instance Method Summary collapse

Constructor Details

#initialize(app) ⇒ MethodOverride

Returns a new instance of MethodOverride.



8
9
10
# File 'lib/vendor/rack-1.5.2/lib/rack/methodoverride.rb', line 8

def initialize(app)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
# File 'lib/vendor/rack-1.5.2/lib/rack/methodoverride.rb', line 12

def call(env)
  if env["REQUEST_METHOD"] == "POST"
    method = method_override(env)
    if HTTP_METHODS.include?(method)
      env["rack.methodoverride.original_method"] = env["REQUEST_METHOD"]
      env["REQUEST_METHOD"] = method
    end
  end

  @app.call(env)
end

#method_override(env) ⇒ Object



24
25
26
27
28
29
# File 'lib/vendor/rack-1.5.2/lib/rack/methodoverride.rb', line 24

def method_override(env)
  req = Request.new(env)
  method = req.POST[METHOD_OVERRIDE_PARAM_KEY] ||
    env[HTTP_METHOD_OVERRIDE_HEADER]
  method.to_s.upcase
end