亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

在Python的Tornado框架中實現簡單的在線代理的教程

系統 1523 0

實現代理的方式很多種,流行的web服務器也大都有代理的功能,比如http://www.tornadoweb.cn用的就是nginx的代理功能做的tornadoweb官網的鏡像。

最近,我在開發一個移動運用(以下簡稱APP)的后臺程序(Server),該運用需要調用到另一平臺產品(Platform)的API。對于這個系統來說,可選的一種實現方式方式是APP同時跟Server&Platform兩者交互;另一種則在Server端封裝掉Platform的API,APP只和Server交互。顯然后一種方式的系統架構會清晰些,APP編程時也就相對簡單。那么如何在Server端封裝Platform的API呢,我首先考慮到的就是用代理的方式來實現。碰巧最近Tornado郵件群組里有人在討論using Tornado as a proxy,貼主提到的運用場景跟我這碰到的場景非常的相似,我把原帖的代碼做了些整理和簡化,源代碼如下:

            
# -*- coding: utf-8 -*-
#
# Copyright(c) 2011 Felinx Lee & http://feilong.me/
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
 
import logging
 
import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.web
import tornado.httpclient
from tornado.web import HTTPError, asynchronous
from tornado.httpclient import HTTPRequest
from tornado.options import define, options
try:
  from tornado.curl_httpclient import CurlAsyncHTTPClient as AsyncHTTPClient
except ImportError:
  from tornado.simple_httpclient import SimpleAsyncHTTPClient as AsyncHTTPClient
 
define("port", default=8888, help="run on the given port", type=int)
define("api_protocol", default="http")
define("api_host", default="feilong.me")
define("api_port", default="80")
define("debug", default=True, type=bool)
 
class ProxyHandler(tornado.web.RequestHandler):
  @asynchronous
  def get(self):
    # enable API GET request when debugging
    if options.debug:
      return self.post()
    else:
      raise HTTPError(405)
 
  @asynchronous
  def post(self):
    protocol = options.api_protocol
    host = options.api_host
    port = options.api_port
 
    # port suffix
    port = "" if port == "80" else ":%s" % port
 
    uri = self.request.uri
    url = "%s://%s%s%s" % (protocol, host, port, uri)
 
    # update host to destination host
    headers = dict(self.request.headers)
    headers["Host"] = host
 
    try:
      AsyncHTTPClient().fetch(
        HTTPRequest(url=url,
              method="POST",
              body=self.request.body,
              headers=headers,
              follow_redirects=False),
        self._on_proxy)
    except tornado.httpclient.HTTPError, x:
      if hasattr(x, "response") and x.response:
        self._on_proxy(x.response)
      else:
        logging.error("Tornado signalled HTTPError %s", x)
 
  def _on_proxy(self, response):
    if response.error and not isinstance(response.error,
                       tornado.httpclient.HTTPError):
      raise HTTPError(500)
    else:
      self.set_status(response.code)
      for header in ("Date", "Cache-Control", "Server", "Content-Type", "Location"):
        v = response.headers.get(header)
        if v:
          self.set_header(header, v)
      if response.body:
        self.write(response.body)
      self.finish()
 
def main():
  tornado.options.parse_command_line()
  application = tornado.web.Application([
    (r"/.*", ProxyHandler),
  ])
  http_server = tornado.httpserver.HTTPServer(application)
  http_server.listen(options.port)
  tornado.ioloop.IOLoop.instance().start()
 
if __name__ == "__main__":
  main()


          

運行上面的代碼后,訪問 http://localhost:8888/ 將會完整顯示飛龍博客的首頁,即代理訪問了http://feilong.me/的內容。

我考慮用程序的方式來做代理而不是直接用Nginx來做代理,其中一點是考慮到用程序可以很容易的控制Platform的哪些API是需要代理的,而哪些是要屏蔽掉的,還有哪些可能是要重寫的(比如Server的login可能不能直接代理Platform的login,但卻要調用到Platform的login API)。

以上這段代碼只是做了簡單的頁面內容代理,并沒有對頁面進行進一步的解析處理,比如鏈接替換等,這些就交個有興趣的朋友去開發了。基于以上這段代碼,將其擴展一下,是完全可以實現一個完整的在線代理程序的。

這段代碼我已放到了我的實驗項目里,見https://bitbucket.org/felinx/labs,我將會放更多類似于這樣的實驗性質的小項目到這個repository里來,有興趣的朋友可以關注一下。

轉載請注明出處:http://feilong.me/2011/09/tornado-as-a-proxy


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 99热播 | 999精品久久久中文字幕蜜桃 | 国产精品久久久久久搜索 | 国产亚洲区| 日本视频一区二区三区 | 国产精品综合久成人 | 色片免费 | 欧美一级毛片日本 | 精品国产成人系列 | 九天玄帝诀王凡小说免费阅读 | 亚洲黄网视频 | 久久久久久久91精品免费观看 | 日本中文在线观看 | 久久国产高清一区二区三区 | 国产99在线视频 | 国产精品亚洲精品一区二区三区 | 国产一级视频久久 | 特级片毛片 | 日韩精品久久不卡中文字幕 | 美女日日日 | 亚洲国产国产综合一区首页 | 久久久久欧美激情 | 伊人影视频 | 日韩亚射吧 | 久草综合视频在线 | 91精品国产高清久久久久 | 亚洲男人天堂视频 | 搡的我好爽视频在线观看 | 波多野结衣高清在线播放 | 欧美成人三级一区二区在线观看 | 日本黄页免费 | 国产在线一91区免费国产91 | 久久这里有精品视频任我鲁 | 久久综合亚洲 | 亚洲综合色自拍一区 | 免费爱爱视频网站 | 日韩中文字幕精品视频在线 | 玖玖国产 | 亚洲狠狠97婷婷综合久久久久 | 欧美日韩国产欧美 | 夜夜做夜夜爽 |