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
21
22
# File 'lib/rack/attack/cache.rb', line 17

def count(unprefixed_key, period)
  epoch_time = Time.now.to_i
  expires_in = period - (epoch_time % period)
  key = "#{prefix}:#{(epoch_time/period).to_i}:#{unprefixed_key}"
  do_count(key, expires_in)
end

#read(unprefixed_key) ⇒ Object



24
25
26
# File 'lib/rack/attack/cache.rb', line 24

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

#write(unprefixed_key, value, expires_in) ⇒ Object



28
29
30
# File 'lib/rack/attack/cache.rb', line 28

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