Module: ActionDispatch::Http::Cache::Request

Included in:
Request
Defined in:
lib/action_dispatch/http/cache.rb

Constant Summary collapse

HTTP_IF_MODIFIED_SINCE =
'HTTP_IF_MODIFIED_SINCE'.freeze
HTTP_IF_NONE_MATCH =
'HTTP_IF_NONE_MATCH'.freeze

Instance Method Summary collapse

Instance Method Details

#etag_matches?(etag) ⇒ Boolean

Returns:

  • (Boolean)


27
28
29
30
31
32
# File 'lib/action_dispatch/http/cache.rb', line 27

def etag_matches?(etag)
  if etag
    validators = if_none_match_etags
    validators.include?(etag) || validators.include?('*')
  end
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.

Returns:

  • (Boolean)


37
38
39
40
41
42
43
44
45
46
47
# File 'lib/action_dispatch/http/cache.rb', line 37

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_sinceObject



9
10
11
12
13
# File 'lib/action_dispatch/http/cache.rb', line 9

def if_modified_since
  if since = get_header(HTTP_IF_MODIFIED_SINCE)
    Time.rfc2822(since) rescue nil
  end
end

#if_none_matchObject



15
16
17
# File 'lib/action_dispatch/http/cache.rb', line 15

def if_none_match
  get_header HTTP_IF_NONE_MATCH
end

#if_none_match_etagsObject



19
20
21
# File 'lib/action_dispatch/http/cache.rb', line 19

def if_none_match_etags
  if_none_match ? if_none_match.split(/\s*,\s*/) : []
end

#not_modified?(modified_at) ⇒ Boolean

Returns:

  • (Boolean)


23
24
25
# File 'lib/action_dispatch/http/cache.rb', line 23

def not_modified?(modified_at)
  if_modified_since && modified_at && if_modified_since >= modified_at
end