Module: ActionDispatch::Http::Cache::Request
- Included in:
- Request
- Defined in:
- lib/action_dispatch/http/cache.rb
Instance Method Summary collapse
- #etag_matches?(etag) ⇒ Boolean
-
#fresh?(response) ⇒ Boolean
Check response freshness (Last-Modified and ETag) against request If-Modified-Since and If-None-Match conditions.
- #if_modified_since ⇒ Object
- #if_none_match ⇒ Object
- #not_modified?(modified_at) ⇒ Boolean
Instance Method Details
#etag_matches?(etag) ⇒ Boolean
21 22 23 |
# File 'lib/action_dispatch/http/cache.rb', line 21 def etag_matches?(etag) if_none_match && if_none_match == etag end |
#fresh?(response) ⇒ Boolean
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.
28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/action_dispatch/http/cache.rb', line 28 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 ⇒ Object
7 8 9 10 11 |
# File 'lib/action_dispatch/http/cache.rb', line 7 def if_modified_since if since = env['HTTP_IF_MODIFIED_SINCE'] Time.rfc2822(since) rescue nil end end |
#if_none_match ⇒ Object
13 14 15 |
# File 'lib/action_dispatch/http/cache.rb', line 13 def if_none_match env['HTTP_IF_NONE_MATCH'] end |
#not_modified?(modified_at) ⇒ Boolean
17 18 19 |
# File 'lib/action_dispatch/http/cache.rb', line 17 def not_modified?(modified_at) if_modified_since && modified_at && if_modified_since >= modified_at end |