Created
November 11, 2012 16:01
-
-
Save libbkmz/4055340 to your computer and use it in GitHub Desktop.
Tornado proxy server
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
| #!/usr/bin/env python2 | |
| # -*- coding: utf-8 -*- | |
| from tornado import httpserver | |
| from tornado import httpclient | |
| from tornado import ioloop | |
| from tornado import web | |
| from tornado import options | |
| from tornado import httputil | |
| from tornado import curl_httpclient | |
| from tornado.options import define, options | |
| import gc | |
| gc.enable() | |
| import re | |
| response_pattern = re.compile("HTTP/1.[01] ([0-9]+) ([^\r]*)") | |
| fwd_headers = [ | |
| # 'content-length', | |
| # 'content-encoding', | |
| 'transfer-encoding', | |
| ] | |
| class Application(web.RequestHandler): | |
| def initialize(self): | |
| self.client = curl_httpclient.CurlAsyncHTTPClient(max_clients=32) | |
| @web.asynchronous | |
| def get(self): | |
| def header_callback(response): | |
| try: | |
| for k,v in httputil.HTTPHeaders.parse(response).iteritems(): | |
| if k.lower() in fwd_headers: | |
| continue | |
| self.set_header(k,v) | |
| except ValueError: | |
| status_code = re.match(response_pattern, response).group(1) | |
| self.set_status(int(status_code)) | |
| if response == "\r\n": | |
| try: | |
| if self._headers['Content-Encoding'] in ['gzip', 'deflate']: | |
| map(self.clear_header, ['Content-Length', 'Content-Encoding']) | |
| except KeyError: | |
| pass | |
| def body_callback(response): | |
| self.write(response) | |
| self.flush() | |
| def response_handler(response): | |
| self.finish() | |
| # checking, if not transparent proxy | |
| if not self.request.uri.startswith("http://"): | |
| self.request.uri = "http://" + self.request.host + self.request.uri | |
| self.client.fetch( | |
| httpclient.HTTPRequest( | |
| url=self.request.uri, | |
| method=self.request.method, | |
| headers=self.request.headers, | |
| body=self.request.body, | |
| follow_redirects=False, | |
| allow_nonstandard_methods=True, | |
| use_gzip=False, | |
| streaming_callback=body_callback, | |
| header_callback=header_callback, | |
| ), | |
| response_handler | |
| ) | |
| @web.asynchronous | |
| def post(self): | |
| return self.get() | |
| def on_finish(self): | |
| self.clear() | |
| gc.collect() | |
| def on_connection_close(self): | |
| self.clear() | |
| gc.collect(2) | |
| app = web.Application([ | |
| (r".*", Application), | |
| ]) | |
| options.parse_command_line() | |
| options.logging = 'debug' | |
| app.listen(8888) | |
| ioloop.IOLoop.instance().start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment