mirror of
https://github.com/samsonjs/rack-attack.git
synced 2026-03-25 09:25:49 +00:00
86 lines
1.9 KiB
Ruby
86 lines
1.9 KiB
Ruby
require 'rack'
|
|
module Rack::Attack
|
|
require 'rack/attack/cache'
|
|
require 'rack/attack/throttle'
|
|
require 'rack/attack/whitelist'
|
|
require 'rack/attack/blacklist'
|
|
|
|
class << self
|
|
|
|
attr_accessor :cache, :notifier, :blacklisted_response, :throttled_response
|
|
|
|
def whitelist(name, &block)
|
|
self.whitelists[name] = Whitelist.new(name, block)
|
|
end
|
|
|
|
def blacklist(name, &block)
|
|
self.blacklists[name] = Blacklist.new(name, block)
|
|
end
|
|
|
|
def throttle(name, options, &block)
|
|
self.throttles[name] = Throttle.new(name, options, block)
|
|
end
|
|
|
|
def whitelists; @whitelists ||= {}; end
|
|
def blacklists; @blacklists ||= {}; end
|
|
def throttles; @throttles ||= {}; end
|
|
|
|
def new(app)
|
|
@app = app
|
|
|
|
# Set defaults
|
|
@cache ||= Cache.new
|
|
@notifier ||= ActiveSupport::Notifications if defined?(ActiveSupport::Notifications)
|
|
@blacklisted_response ||= lambda {|env| [503, {}, ['Blocked']] }
|
|
@throttled_response ||= lambda {|env|
|
|
retry_after = env['rack.attack.match_data'][:period] rescue nil
|
|
[503, {'Retry-After' => retry_after.to_s}, ['Retry later']]
|
|
}
|
|
|
|
self
|
|
end
|
|
|
|
def call(env)
|
|
req = Rack::Request.new(env)
|
|
|
|
if whitelisted?(req)
|
|
return @app.call(env)
|
|
end
|
|
|
|
if blacklisted?(req)
|
|
blacklisted_response[env]
|
|
elsif throttled?(req)
|
|
throttled_response[env]
|
|
else
|
|
@app.call(env)
|
|
end
|
|
end
|
|
|
|
def whitelisted?(req)
|
|
whitelists.any? do |name, whitelist|
|
|
whitelist[req]
|
|
end
|
|
end
|
|
|
|
def blacklisted?(req)
|
|
blacklists.any? do |name, blacklist|
|
|
blacklist[req]
|
|
end
|
|
end
|
|
|
|
def throttled?(req)
|
|
throttles.any? do |name, throttle|
|
|
throttle[req]
|
|
end
|
|
end
|
|
|
|
def instrument(req)
|
|
notifier.instrument('rack.attack', req) if notifier
|
|
end
|
|
|
|
def clear!
|
|
@whitelists, @blacklists, @throttles = {}, {}, {}
|
|
end
|
|
|
|
end
|
|
end
|