Class: Rack::ETag
- Inherits:
 - 
      Object
      
        
- Object
 - Rack::ETag
 
 
- Defined in:
 - lib/rack/etag.rb
 
Overview
Automatically sets the ETag header on all String bodies.
The ETag header is skipped if ETag or Last-Modified headers are sent or if a sendfile body (body.responds_to :to_path) is given (since such cases should be handled by apache/nginx).
On initialization, you can pass two parameters: a Cache-Control directive used when Etag is absent and a directive when it is present. The first defaults to nil, while the second defaults to “max-age=0, private, must-revalidate”
Constant Summary collapse
Instance Method Summary collapse
- #call(env) ⇒ Object
 - 
  
    
      #initialize(app, no_cache_control = nil, cache_control = DEFAULT_CACHE_CONTROL)  ⇒ ETag 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ETag.
 
Constructor Details
#initialize(app, no_cache_control = nil, cache_control = DEFAULT_CACHE_CONTROL) ⇒ ETag
Returns a new instance of ETag.
      20 21 22 23 24  | 
    
      # File 'lib/rack/etag.rb', line 20 def initialize(app, no_cache_control = nil, cache_control = DEFAULT_CACHE_CONTROL) @app = app @cache_control = cache_control @no_cache_control = no_cache_control end  | 
  
Instance Method Details
#call(env) ⇒ Object
      26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49  | 
    
      # File 'lib/rack/etag.rb', line 26 def call(env) status, headers, body = @app.call(env) headers = Utils::HeaderHash[headers] if etag_status?(status) && etag_body?(body) && !skip_caching?(headers) original_body = body digest, new_body = digest_body(body) body = Rack::BodyProxy.new(new_body) do original_body.close if original_body.respond_to?(:close) end headers[ETAG_STRING] = %(W/"#{digest}") if digest end unless headers[CACHE_CONTROL] if digest headers[CACHE_CONTROL] = @cache_control if @cache_control else headers[CACHE_CONTROL] = @no_cache_control if @no_cache_control end end [status, headers, body] end  |