Class: Rack::Attack::Cache

Inherits:
Object
  • Object
show all
Defined in:
lib/rack/attack/cache.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCache

Returns a new instance of Cache.



7
8
9
10
# File 'lib/rack/attack/cache.rb', line 7

def initialize
  self.store = ::Rails.cache if defined?(::Rails.cache)
  @prefix = 'rack::attack'
end

Instance Attribute Details

#prefixObject

Returns the value of attribute prefix.



5
6
7
# File 'lib/rack/attack/cache.rb', line 5

def prefix
  @prefix
end

#storeObject

Returns the value of attribute store.



12
13
14
# File 'lib/rack/attack/cache.rb', line 12

def store
  @store
end

Instance Method Details

#count(unprefixed_key, period) ⇒ Object



17
18
19
20
# File 'lib/rack/attack/cache.rb', line 17

def count(unprefixed_key, period)
  key, expires_in = key_and_expiry(unprefixed_key, period)
  do_count(key, expires_in)
end

#delete(unprefixed_key) ⇒ Object



35
36
37
# File 'lib/rack/attack/cache.rb', line 35

def delete(unprefixed_key)
  store.delete("#{prefix}:#{unprefixed_key}")
end

#read(unprefixed_key) ⇒ Object



22
23
24
# File 'lib/rack/attack/cache.rb', line 22

def read(unprefixed_key)
  store.read("#{prefix}:#{unprefixed_key}")
end

#reset_count(unprefixed_key, period) ⇒ Object



30
31
32
33
# File 'lib/rack/attack/cache.rb', line 30

def reset_count(unprefixed_key, period)
  key, _ = key_and_expiry(unprefixed_key, period)
  store.delete(key)
end

#write(unprefixed_key, value, expires_in) ⇒ Object



26
27
28
# File 'lib/rack/attack/cache.rb', line 26

def write(unprefixed_key, value, expires_in)
  store.write("#{prefix}:#{unprefixed_key}", value, :expires_in => expires_in)
end