BigW Consortium Gitlab

webpack_proxy.rb 746 Bytes
Newer Older
1 2 3
# This Rack middleware is intended to proxy the webpack assets directory to the
# webpack-dev-server.  It is only intended for use in development.

4
# :nocov:
5 6 7 8 9 10 11
module Gitlab
  module Middleware
    class WebpackProxy < Rack::Proxy
      def initialize(app = nil, opts = {})
        @proxy_host = opts.fetch(:proxy_host, 'localhost')
        @proxy_port = opts.fetch(:proxy_port, 3808)
        @proxy_path = opts[:proxy_path] if opts[:proxy_path]
12

Mike Greiling committed
13
        super(app, backend: "http://#{@proxy_host}:#{@proxy_port}", **opts)
14 15 16
      end

      def perform_request(env)
17 18 19 20
        if @proxy_path && env['PATH_INFO'].start_with?("/#{@proxy_path}")
          super(env)
        else
          @app.call(env)
21 22 23 24 25
        end
      end
    end
  end
end
26
# :nocov: