2017-04-18 21:29:14 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-19 13:57:30 +00:00
|
|
|
class Rack::Attack
|
2016-10-22 18:38:47 +01:00
|
|
|
# Rate limits for the API
|
2017-03-14 14:59:21 +00:00
|
|
|
throttle('api', limit: 300, period: 5.minutes) do |req|
|
2017-04-18 21:29:14 +01:00
|
|
|
req.ip if req.path =~ /\A\/api\/v/
|
|
|
|
end
|
|
|
|
|
|
|
|
# Rate limit logins
|
|
|
|
throttle('login', limit: 5, period: 5.minutes) do |req|
|
|
|
|
req.ip if req.path == '/auth/sign_in' && req.post?
|
|
|
|
end
|
|
|
|
|
|
|
|
# Rate limit sign-ups
|
|
|
|
throttle('register', limit: 5, period: 5.minutes) do |req|
|
|
|
|
req.ip if req.path == '/auth' && req.post?
|
|
|
|
end
|
|
|
|
|
|
|
|
# Rate limit forgotten passwords
|
|
|
|
throttle('reminder', limit: 5, period: 5.minutes) do |req|
|
|
|
|
req.ip if req.path == '/auth/password' && req.post?
|
2016-09-24 12:53:54 +01:00
|
|
|
end
|
|
|
|
|
2016-10-22 18:38:47 +01:00
|
|
|
self.throttled_response = lambda do |env|
|
|
|
|
now = Time.now.utc
|
|
|
|
match_data = env['rack.attack.match_data']
|
|
|
|
|
|
|
|
headers = {
|
|
|
|
'X-RateLimit-Limit' => match_data[:limit].to_s,
|
|
|
|
'X-RateLimit-Remaining' => '0',
|
2017-03-14 14:59:21 +00:00
|
|
|
'X-RateLimit-Reset' => (now + (match_data[:period] - now.to_i % match_data[:period])).iso8601(6),
|
2016-10-22 18:38:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
[429, headers, [{ error: 'Throttled' }.to_json]]
|
2016-03-25 13:12:24 +00:00
|
|
|
end
|
2016-03-19 13:57:30 +00:00
|
|
|
end
|