2017-09-15 13:31:32 -04:00
|
|
|
class Rack::Attack
|
|
|
|
def self.settings
|
|
|
|
Gitlab::CurrentSettings.current_application_settings
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.throttle_unauthenticated_options
|
|
|
|
limit_proc = proc { |req| settings.throttle_unauthenticated_requests_per_period }
|
|
|
|
period_proc = proc { |req| settings.throttle_unauthenticated_period_in_seconds.seconds }
|
|
|
|
{ limit: limit_proc, period: period_proc }
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.throttle_authenticated_api_options
|
|
|
|
limit_proc = proc { |req| settings.throttle_authenticated_api_requests_per_period }
|
|
|
|
period_proc = proc { |req| settings.throttle_authenticated_api_period_in_seconds.seconds }
|
|
|
|
{ limit: limit_proc, period: period_proc }
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.throttle_authenticated_web_options
|
|
|
|
limit_proc = proc { |req| settings.throttle_authenticated_web_requests_per_period }
|
|
|
|
period_proc = proc { |req| settings.throttle_authenticated_web_period_in_seconds.seconds }
|
|
|
|
{ limit: limit_proc, period: period_proc }
|
|
|
|
end
|
|
|
|
|
2017-10-12 20:49:22 -04:00
|
|
|
throttle('throttle_unauthenticated', throttle_unauthenticated_options) do |req|
|
|
|
|
settings.throttle_unauthenticated_enabled &&
|
|
|
|
req.unauthenticated? &&
|
|
|
|
req.ip
|
|
|
|
end
|
2017-09-15 13:31:32 -04:00
|
|
|
|
2017-10-12 20:49:22 -04:00
|
|
|
throttle('throttle_authenticated_api', throttle_authenticated_api_options) do |req|
|
|
|
|
settings.throttle_authenticated_api_enabled &&
|
|
|
|
req.api_request? &&
|
|
|
|
req.authenticated_user_id
|
2017-09-15 13:31:32 -04:00
|
|
|
end
|
|
|
|
|
2017-10-12 20:49:22 -04:00
|
|
|
throttle('throttle_authenticated_web', throttle_authenticated_web_options) do |req|
|
|
|
|
settings.throttle_authenticated_web_enabled &&
|
|
|
|
req.web_request? &&
|
|
|
|
req.authenticated_user_id
|
|
|
|
end
|
2017-09-15 13:31:32 -04:00
|
|
|
|
|
|
|
class Request
|
|
|
|
def unauthenticated?
|
|
|
|
!authenticated_user_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def authenticated_user_id
|
|
|
|
session_user_id || sessionless_user_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def api_request?
|
|
|
|
path.start_with?('/api')
|
|
|
|
end
|
|
|
|
|
|
|
|
def web_request?
|
|
|
|
!api_request?
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def session_user_id
|
|
|
|
Gitlab::Auth.find_session_user(self)&.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def sessionless_user_id
|
|
|
|
Gitlab::Auth.find_sessionless_user(self)&.id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|