module ActionDispatch::Http::Cache::Request
Constants
- HTTP_IF_MODIFIED_SINCE
- HTTP_IF_NONE_MATCH
Public Instance Methods
# File actionpack/lib/action_dispatch/http/cache.rb, line 28
def etag_matches?(etag)
if etag
validators = if_none_match_etags
validators.include?(etag) || validators.include?("*")
end
end # File actionpack/lib/action_dispatch/http/cache.rb, line 38 def fresh?(response) last_modified = if_modified_since etag = if_none_match return false unless last_modified || etag success = true success &&= not_modified?(response.last_modified) if last_modified success &&= etag_matches?(response.etag) if etag success end
Check response freshness (Last-Modified and ETag) against request If-Modified-Since and If-None-Match conditions. If both headers are supplied, both must match, or the request is not considered fresh.
# File actionpack/lib/action_dispatch/http/cache.rb, line 10
def if_modified_since
if since = get_header(HTTP_IF_MODIFIED_SINCE)
Time.rfc2822(since) rescue nil
end
end # File actionpack/lib/action_dispatch/http/cache.rb, line 16 def if_none_match get_header HTTP_IF_NONE_MATCH end
# File actionpack/lib/action_dispatch/http/cache.rb, line 20 def if_none_match_etags if_none_match ? if_none_match.split(/\s*,\s*/) : [] end
# File actionpack/lib/action_dispatch/http/cache.rb, line 24 def not_modified?(modified_at) if_modified_since && modified_at && if_modified_since >= modified_at end
© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.