zoukankan      html  css  js  c++  java
  • Suffer Less By Using Django Dev Server as a Proxy

    Suffer Less By Using Django Dev Server as a Proxy - Irrational Exuberance

    Suffer Less By Using Django Dev Server as a Proxy



    When doing web development, you'll occasionally run into a situation where you are developing a new user interface or otherwise redesigning a website, but either cannot or don't want to tear out the existing pieces you are replacing. Maybe the tyrannical IT department has to approve all reboots for the development server, or your new project is a quick prototype down a different line of thought and you don't want to devote time to replacing the current system before the prototype proves its value.

    As it often does, Django steps in as a handy tool in this situation. With some minimal customization you can use the Django development server to serve certain urls patterns and transparently proxy the remainder to another server.

    Why?

    1. For development, the Django development server is a real boon. It isn't quick, but it's quick enough, and its automatic reboots on code changes really speeds up development.

    2. You can transparently develop above an existing platform. This is especially true when building JavaScript heavy applications relying upon a RESTful api (because you are implementing new functionality on the client-side, and with your thoughtfully designed api you won't need to make changes to the server-side of the application).

      In particular, this approach allows you to use XMLHttpRequest-based
      Ajax functionality cross-domain without your browser slapping your hand and saying no. This works because you're requesting the URL locally,
      the proxy is fetching it from the remote host, and finally it is being returned to the requester it as if it all occurred locally.

      This also means that
      when you do integrate your new UI/feature into the existing application, you won't need to change any of the urls.

    3. Don't need admin access (or ability/know-how to build) the
      main server. You don't have to wait for the server to reboot,
      caches to clear, or settings to reset.

    How?

    Using Django as a proxy is quite simple. First you'll need to install Django and Httplib2:

    curl http://www.djangoproject.com/download/1.0/tarball/ > Django-1.0.tar.gz
    tar xzvf Django-1.0.tar.gz
    cd Django-1.0
    sudo python setup.py install
    sudo easy_install httplib2
    

    Next put together a standard settings.py file. If you're just developing a new appearance or interface using static files, then your settings might look as simple as this:

    import os
    ROOT_PATH = os.path.dirname(__file__)
    # Change this to the domain where you
    # want requests to be proxied to.
    PROXY_DOMAIN = "127.0.0.1:5678"
    DEBUG = True
    TEMPLATE_DEBUG = DEBUG
    ADMINS = ()
    MANAGERS = ADMINS
    TIME_ZONE = 'America/Chicago'
    LANGUAGE_CODE = 'en-us'
    SITE_ID = 1
    USE_I18N = True
    MEDIA_ROOT = os.path.join(ROOT_PATH, 'ui')
    MEDIA_URL = 'http://127.0.0.1:8000/media/'
    ADMIN_MEDIA_PREFIX = '/admin_media/'
    SECRET_KEY = 'etcetcetc'
    TEMPLATE_LOADERS = ()
    MIDDLEWARE_CLASSES = ('django.middleware.common.CommonMiddleware',)
    ROOT_URLCONF = 'proxy_server.urls'
    TEMPLATE_DIRS = ()
    INSTALLED_APPS = ()
    

    Then you also need to edit the project's urls.py, which is where the magic happens.

    import httplib2
    from urllib import urlencode
    from django.conf.urls.defaults import *
    from django.conf import settings
    from django.http import HttpResponse
    
    PROXY_FORMAT = u"http://%s/%s" % (settings.PROXY_DOMAIN, u"%s")
    
    def proxy(request, url):
        conn = httplib2.Http()
        # optionally provide authentication for server
        #conn.add_credentials('admin','admin-password')
        if request.method == "GET":
            url_ending = "%s?%s" % (url, urlencode(request.GET))
            url = PROXY_FORMAT % url_ending
            resp, content = conn.request(url, request.method)
            return HttpResponse(content)
        elif request.method == "POST":
            url = PROXY_FORMAT % url
            data = urlencode(request.POST)
            resp, content = conn.request(url, request.method, data)
            return HttpResponse(content)
    
    urlpatterns = patterns('',
        (r'^media/(?P<path>.*)
    

    , 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT }), (r'^(?P<url>.*) , proxy), )

    You may have to change urls around a bit for your specific circumstances, but that's basically it.

    Let me know if there any questions or problems. As mentioned, this is definitely a development solution, as all solutions involving the Django dev server are, and especially as all solutions with the Django dev server serving media are.

    Take it with a few grains of salt. Or a lemon. Or a shot of tequila. Preferably not in that order.

  • 相关阅读:
    [转]zookeeper-端口说明
    ACM-ICPC(9/26)
    ACM-ICPC(9/25)
    Linux的文件权限与目录配置
    Uva 11468 AC自动机或运算
    Uva 11922 Splay
    HDU 6214 最小割边
    Uva 10559 消除方块
    HDU 6194 后缀数组
    Uva 11491 暴力贪心
  • 原文地址:https://www.cnblogs.com/lexus/p/2475924.html
Copyright © 2011-2022 走看看