Login

add port from settings file to an url

Author:
sebnapi
Posted:
June 22, 2012
Language:
Python
Version:
1.4
Score:
0 (after 0 ratings)

I'm working on a Project where on certain places I need absolute URL's, in development mode I need the port 8000 added to any absolute url.

This piece of work, took me some time to figure out. Couldn't find something similiar on the net, it's based on Code from the Python urlparse module.

You can change the "settings.PORT" part to "settings.DEBUG == True" if you like, and so on.

META: replace parameters in URL, edit parameters in URL, edit URL, urlparse

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
def with_port(url_str):
    """ Adds to an URL the port from the settings
        useful for development

        >>> with_port("http://localhost/ddd")
        'http://localhost:8000/ddd'
        >>> with_port("localhost/ddd")
        'localhost/ddd'
    """
    try:
        port = settings.PORT
    except AttributeError:
        port = None
    if port == 80:
        port = None
    url_split = urlsplit(url_str)
    if port:
        if not url_split.port and url_split.netloc:
            scheme, netloc, url, query, fragment = url_split
            netloc += ":%s" % port
            url_split = SplitResult(scheme, netloc, url, query, fragment)
    return url_split.geturl()

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months, 1 week ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 2 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 1 week ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months ago
  5. Help text hyperlinks by sa2812 11 months, 3 weeks ago

Comments

Please login first before commenting.