Class: Rack::Attack::Track

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, options = {}, block) ⇒ Track

Returns a new instance of Track.



6
7
8
9
10
11
12
13
14
# File 'lib/rack/attack/track.rb', line 6

def initialize(name, options = {}, block)
  options[:type] = :track

  if options[:limit] && options[:period]
    @filter = Throttle.new(name, options, block)
  else
    @filter = Check.new(name, options, block)
  end
end

Instance Attribute Details

#filterObject (readonly)

Returns the value of attribute filter.



4
5
6
# File 'lib/rack/attack/track.rb', line 4

def filter
  @filter
end

Instance Method Details

#matched_by?(request) ⇒ Boolean

Returns:

  • (Boolean)


16
17
18
# File 'lib/rack/attack/track.rb', line 16

def matched_by?(request)
  filter.matched_by?(request)
end