summaryrefslogtreecommitdiff
path: root/lib/gitlab/request_context.rb
blob: f6d289476c5c711362e1bfd8adc2b0218e628b32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

module Gitlab
  class RequestContext
    class << self
      def client_ip
        Gitlab::SafeRequestStore[:client_ip]
      end
    end

    def initialize(app)
      @app = app
    end

    def call(env)
      # 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)

      Gitlab::SafeRequestStore[:client_ip] = req.ip

      @app.call(env)
    end
  end
end