2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
module Gitlab
|
|
|
|
class RequestContext
|
|
|
|
class << self
|
|
|
|
def client_ip
|
2018-12-05 23:21:45 +05:30
|
|
|
Gitlab::SafeRequestStore[:client_ip]
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(app)
|
|
|
|
@app = app
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(env)
|
2019-05-03 19:53:19 +05:30
|
|
|
# We should be using ActionDispatch::Request instead of
|
|
|
|
# Rack::Request to be consistent with Rails, but due to a Rails
|
|
|
|
# bug described in
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab-ce/issues/58573#note_149799010
|
|
|
|
# hosts behind a load balancer will only see 127.0.0.1 for the
|
|
|
|
# load balancer's IP.
|
|
|
|
req = Rack::Request.new(env)
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
Gitlab::SafeRequestStore[:client_ip] = req.ip
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
@app.call(env)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|