Class: Rack::ConditionalGet
- Inherits:
-
Object
- Object
- Rack::ConditionalGet
- Defined in:
- lib/rack/conditionalget.rb
Overview
Middleware that enables conditional GET using If-None-Match and If-Modified-Since. The application should set either or both of the Last-Modified or Etag response headers according to RFC 2616. When either of the conditions is met, the response body is set to be zero length and the response status is set to 304 Not Modified.
Applications that defer response body generation until the body’s each message is received will avoid response body generation completely when a conditional GET matches.
Adapted from Michael Klishin’s Merb implementation: github.com/wycats/merb-core/tree/master/lib/merb-core/rack/middleware/conditional_get.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app) ⇒ ConditionalGet
constructor
A new instance of ConditionalGet.
Constructor Details
#initialize(app) ⇒ ConditionalGet
Returns a new instance of ConditionalGet.
18 19 20 |
# File 'lib/rack/conditionalget.rb', line 18 def initialize(app) @app = app end |
Instance Method Details
#call(env) ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/rack/conditionalget.rb', line 22 def call(env) return @app.call(env) unless %w[GET HEAD].include?(env['REQUEST_METHOD']) status, headers, body = @app.call(env) headers = Utils::HeaderHash.new(headers) if etag_matches?(env, headers) || modified_since?(env, headers) status = 304 headers.delete('Content-Type') headers.delete('Content-Length') body = [] end [status, headers, body] end |