Created
March 1, 2011 16:00
-
-
Save sprite2005/849339 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Rack::Proxy | |
def initialize(app, &block) | |
self.class.send(:define_method, :uri_for, &block) | |
@app = app | |
end | |
def call(env) | |
req = Rack::Request.new(env) | |
method = req.request_method.downcase | |
method[0..0] = method[0..0].upcase | |
return @app.call(env) unless uri = uri_for(req) | |
sub_request = Net::HTTP.const_get(method).new("#{uri.path}#{"?" if uri.query}#{uri.query}") | |
if sub_request.request_body_permitted? and req.body | |
sub_request.body_stream = req.body | |
sub_request.content_length = req.content_length | |
sub_request.content_type = req.content_type | |
end | |
sub_request["X-Forwarded-For"] = (req.env["X-Forwarded-For"].to_s.split(/, +/) + [req.env['REMOTE_ADDR']]).join(", ") | |
sub_request["X-Requested-With"] = req.env['HTTP_X_REQUESTED_WITH'] if req.env['HTTP_X_REQUESTED_WITH'] | |
sub_request["Accept-Encoding"] = req.accept_encoding | |
sub_request["Referer"] = req.referer | |
sub_request["User-Agent"] = req.env['HTTP_USER_AGENT'] | |
sub_request.basic_auth *uri.userinfo.split(':') if (uri.userinfo && uri.userinfo.index(':')) | |
sub_response = Net::HTTP.start(uri.host, uri.port) do |http| | |
http.request(sub_request) | |
end | |
headers = {} | |
sub_response.each_header do |k,v| | |
headers[k] = v unless k.to_s =~ /cookie|content-length|transfer-encoding/i | |
end | |
sub_response.body.gsub!('if (top!=self)top.location=location;', '') # Don't break out of iframe! | |
[sub_response.code.to_i, headers, [sub_response.read_body]] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment