normalize client ip

This commit is contained in:
Pete Matsyburka
2024-06-03 08:57:14 +03:00
parent c35dfea154
commit 98c04eac15
2 changed files with 18 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# frozen_string_literal: true
class NormalizeClientIpMiddleware
def initialize(app)
@app = app
end
def call(env)
if env['HTTP_CLIENT_IP'].present? && env['HTTP_X_CLIENT_IP'].present? &&
env['HTTP_CLIENT_IP'].starts_with?("#{env['HTTP_X_CLIENT_IP']}:")
env['HTTP_CLIENT_IP'] = env['HTTP_X_CLIENT_IP']
end
@app.call(env)
end
end