Methods
Constants
| HTTP_IF_MODIFIED_SINCE | = | "HTTP_IF_MODIFIED_SINCE" |
| HTTP_IF_NONE_MATCH | = | "HTTP_IF_NONE_MATCH" |
Instance Public methods
etag_matches?(etag) Link
Source: show
# 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
fresh?(response) Link
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.
Source: show
# 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
if_modified_since() Link
Source: show
# 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