support unix socket request
This commit is contained in:
parent
848d5e6714
commit
b5a297e875
|
@ -1,8 +1,8 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
require 'faraday'
|
|
||||||
require 'roda/proxy/version'
|
require 'roda/proxy/version'
|
||||||
|
require 'net_http_unix'
|
||||||
|
|
||||||
# :nodoc:
|
# :nodoc:
|
||||||
class Roda
|
class Roda
|
||||||
# :nodoc:
|
# :nodoc:
|
||||||
|
@ -35,8 +35,11 @@ class Roda
|
||||||
# rewritten to be the destination host. The response headers, body and
|
# rewritten to be the destination host. The response headers, body and
|
||||||
# status are returned to the client.
|
# status are returned to the client.
|
||||||
def proxy
|
def proxy
|
||||||
method = Faraday.method(env['REQUEST_METHOD'].downcase.to_sym)
|
client = NetX::HTTPUnix.new(_sock_url)
|
||||||
f_response = method.call(_proxy_url) { |req| _proxy_request(req) }
|
request_class = Net::HTTP.const_get(:"#{env['REQUEST_METHOD'].to_s.downcase.capitalize}")
|
||||||
|
req = request_class.new(_proxy_url.to_s, _proxy_headers)
|
||||||
|
|
||||||
|
f_response = client.request(req)
|
||||||
# p f_response
|
# p f_response
|
||||||
_respond(f_response)
|
_respond(f_response)
|
||||||
end
|
end
|
||||||
|
@ -63,12 +66,13 @@ class Roda
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
|
def _sock_url
|
||||||
|
roda_class.opts[:proxy_to]
|
||||||
|
end
|
||||||
def _proxy_url
|
def _proxy_url
|
||||||
@_proxy_url ||= URI(roda_class.opts[:proxy_to])
|
uri = URI("#{roda_class.opts[:proxy_path]}#{env['PATH_INFO'][1..-1]}")
|
||||||
.then { |uri| uri.path = roda_class.opts[:proxy_path]; uri } # prefix
|
uri.query = env['QUERY_STRING']
|
||||||
.then { |uri| uri.path += env['PATH_INFO'][1..-1]; uri } # path
|
uri
|
||||||
.then { |uri| uri.query = env['QUERY_STRING']; uri }
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def _proxy_headers
|
def _proxy_headers
|
||||||
|
@ -82,15 +86,11 @@ class Roda
|
||||||
.join('-')
|
.join('-')
|
||||||
end
|
end
|
||||||
.merge({
|
.merge({
|
||||||
'Host' => "#{_proxy_url.host}:#{_proxy_url.port}",
|
'Host' => "localhost",
|
||||||
'Via' => _via_header_string
|
'Via' => _via_header_string
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
def _proxy_request(req)
|
|
||||||
req.headers = _proxy_headers
|
|
||||||
end
|
|
||||||
|
|
||||||
def _respond(proxied_response)
|
def _respond(proxied_response)
|
||||||
response.status = proxied_response.status
|
response.status = proxied_response.status
|
||||||
proxied_response
|
proxied_response
|
||||||
|
|
|
@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
||||||
spec.description = 'A very simple reverse proxy for Roda'
|
spec.description = 'A very simple reverse proxy for Roda'
|
||||||
spec.homepage = 'https://github.com/BillyRuffian/roda-proxy'
|
spec.homepage = 'https://github.com/BillyRuffian/roda-proxy'
|
||||||
spec.license = 'MIT'
|
spec.license = 'MIT'
|
||||||
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
|
spec.required_ruby_version = Gem::Requirement.new('>= 2.1.0')
|
||||||
|
|
||||||
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
||||||
|
|
||||||
|
@ -29,7 +29,6 @@ Gem::Specification.new do |spec|
|
||||||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
||||||
spec.require_paths = ['lib']
|
spec.require_paths = ['lib']
|
||||||
|
|
||||||
spec.add_dependency 'faraday', '~> 1.0'
|
|
||||||
spec.add_dependency 'roda', '~> 3.0'
|
spec.add_dependency 'roda', '~> 3.0'
|
||||||
|
|
||||||
spec.add_development_dependency 'rerun', '~> 0.13'
|
spec.add_development_dependency 'rerun', '~> 0.13'
|
||||||
|
|
Loading…
Reference in New Issue