throttle API get and write endpoints (#7167)

This commit is contained in:
Molly Struve 2020-04-08 18:17:51 -05:00 committed by GitHub
parent f088a672de
commit b652147e7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 55 additions and 6 deletions

View file

@ -4,4 +4,16 @@ class Rack::Attack
request.env["HTTP_FASTLY_CLIENT_IP"].to_s
end
end
throttle("api_throttle", limit: 3, period: 1) do |request|
if request.path.starts_with?("/api/") && request.get? && request.env["HTTP_FASTLY_CLIENT_IP"].present?
request.env["HTTP_FASTLY_CLIENT_IP"].to_s
end
end
throttle("api_write_throttle", limit: 1, period: 1) do |request|
if request.path.starts_with?("/api/") && (request.put? || request.post? || request.delete?)
request.env["HTTP_API_KEY"]
end
end
end

View file

@ -1,13 +1,13 @@
require "rails_helper"
describe Rack::Attack, type: :request, throttle: true do
describe "search_throttle" do
before do
redis_url = "redis://localhost:6379"
cache_db = ActiveSupport::Cache::RedisStore.new(redis_url)
allow(Rails).to receive(:cache) { cache_db }
end
before do
redis_url = "redis://localhost:6379"
cache_db = ActiveSupport::Cache::RedisStore.new(redis_url)
allow(Rails).to receive(:cache) { cache_db }
end
describe "search_throttle" do
it "throttles /search endpoints based on IP" do
Timecop.freeze do
allow(Search::User).to receive(:search_documents).and_return({})
@ -23,4 +23,41 @@ describe Rack::Attack, type: :request, throttle: true do
end
end
end
describe "api_throttle" do
it "throttles api get endpoints based on IP" do
Timecop.freeze do
valid_responses = Array.new(3).map do
get api_articles_path, headers: { "HTTP_FASTLY_CLIENT_IP" => "5.6.7.8" }
end
throttled_response = get api_articles_path, headers: { "HTTP_FASTLY_CLIENT_IP" => "5.6.7.8" }
new_ip_response = get api_articles_path, headers: { "HTTP_FASTLY_CLIENT_IP" => "1.1.1.1" }
valid_responses.each { |r| expect(r).not_to eq(429) }
expect(throttled_response).to eq(429)
expect(new_ip_response).not_to eq(429)
end
end
end
describe "api_write_throttle" do
let(:api_secret) { create(:api_secret) }
let(:another_api_secret) { create(:api_secret) }
it "throttles api write endpoints based on api-key" do
headers = { "api-key" => api_secret.secret, "content-type" => "application/json" }
dif_headers = { "api-key" => another_api_secret.secret, "content-type" => "application/json" }
params = { body_markdown: "", title: Faker::Book.title }
Timecop.freeze do
valid_response = post api_articles_path, params: { article: params }.to_json, headers: headers
throttled_response = post api_articles_path, params: { article: params }.to_json, headers: headers
new_api_response = post api_articles_path, params: { article: params }.to_json, headers: dif_headers
expect(valid_response).not_to eq(429)
expect(throttled_response).to eq(429)
expect(new_api_response).not_to eq(429)
end
end
end
end