2019-09-04 21:01:54 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
#
|
2017-08-17 22:00:37 +05:30
|
|
|
# Adds logging for all Rack Attack blocks and throttling events.
|
|
|
|
|
|
|
|
ActiveSupport::Notifications.subscribe('rack.attack') do |name, start, finish, request_id, req|
|
|
|
|
if [:throttle, :blacklist].include? req.env['rack.attack.match_type']
|
2019-09-30 21:07:59 +05:30
|
|
|
rack_attack_info = {
|
2019-09-04 21:01:54 +05:30
|
|
|
message: 'Rack_Attack',
|
|
|
|
env: req.env['rack.attack.match_type'],
|
|
|
|
ip: req.ip,
|
|
|
|
request_method: req.request_method,
|
|
|
|
fullpath: req.fullpath
|
2019-09-30 21:07:59 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if %w(throttle_authenticated_api throttle_authenticated_web).include? req.env['rack.attack.matched']
|
|
|
|
user_id = req.env['rack.attack.match_discriminator']
|
|
|
|
user = User.find_by(id: user_id)
|
|
|
|
|
|
|
|
rack_attack_info[:user_id] = user_id
|
|
|
|
rack_attack_info[:username] = user.username unless user.nil?
|
|
|
|
end
|
|
|
|
|
|
|
|
Gitlab::AuthLogger.error(rack_attack_info)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|