Skip to content

Commit

Permalink
[1.0.X] Fixed #9199 -- We were erroneously only prepending "www" to t…
Browse files Browse the repository at this point in the history
…he domain

if we also needed to append a slash (when PREPEND_WWW=True).

Based on a patch and tests from gonz. Thanks.

Backport of r9184 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9185 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
malcolmt committed Oct 7, 2008
1 parent 0604225 commit 66c77d0
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 23 deletions.
58 changes: 35 additions & 23 deletions django/middleware/common.py
Expand Up @@ -53,9 +53,8 @@ def process_request(self, request):
# Append a slash if APPEND_SLASH is set and the URL doesn't have a
# trailing slash and there is no pattern for the current path
if settings.APPEND_SLASH and (not old_url[1].endswith('/')):
try:
urlresolvers.resolve(request.path_info)
except urlresolvers.Resolver404:
if (not _is_valid_path(request.path_info) and
_is_valid_path("%s/" % request.path_info)):
new_url[1] = new_url[1] + '/'
if settings.DEBUG and request.method == 'POST':
raise RuntimeError, (""
Expand All @@ -66,24 +65,18 @@ def process_request(self, request):
"slash), or set APPEND_SLASH=False in your Django "
"settings.") % (new_url[0], new_url[1])

if new_url != old_url:
# Redirect if the target url exists
try:
urlresolvers.resolve("%s/" % request.path_info)
except urlresolvers.Resolver404:
pass
else:
if new_url[0]:
newurl = "%s://%s%s" % (
request.is_secure() and 'https' or 'http',
new_url[0], urlquote(new_url[1]))
else:
newurl = urlquote(new_url[1])
if request.GET:
newurl += '?' + request.META['QUERY_STRING']
return http.HttpResponsePermanentRedirect(newurl)

return None
if new_url == old_url:
# No redirects required.
return
if new_url[0]:
newurl = "%s://%s%s" % (
request.is_secure() and 'https' or 'http',
new_url[0], urlquote(new_url[1]))
else:
newurl = urlquote(new_url[1])
if request.GET:
newurl += '?' + request.META['QUERY_STRING']
return http.HttpResponsePermanentRedirect(newurl)

def process_response(self, request, response):
"Check for a flat page (for 404s) and calculate the Etag, if needed."
Expand Down Expand Up @@ -119,7 +112,9 @@ def process_response(self, request, response):
return response

def _is_ignorable_404(uri):
"Returns True if a 404 at the given URL *shouldn't* notify the site managers"
"""
Returns True if a 404 at the given URL *shouldn't* notify the site managers.
"""
for start in settings.IGNORABLE_404_STARTS:
if uri.startswith(start):
return True
Expand All @@ -129,6 +124,23 @@ def _is_ignorable_404(uri):
return False

def _is_internal_request(domain, referer):
"Return true if the referring URL is the same domain as the current request"
"""
Returns true if the referring URL is the same domain as the current request.
"""
# Different subdomains are treated as different domains.
return referer is not None and re.match("^https?://%s/" % re.escape(domain), referer)

def _is_valid_path(path):
"""
Returns True if the given path resolves against the default URL resolver,
False otherwise.
This is a convenience method to make working with "is this a match?" cases
easier, avoiding unnecessarily indented try...except blocks.
"""
try:
urlresolvers.resolve(path)
return True
except urlresolvers.Resolver404:
return False

28 changes: 28 additions & 0 deletions tests/regressiontests/middleware/tests.py
Expand Up @@ -89,3 +89,31 @@ def test_append_slash_quoted(self):
self.assertEquals(
r['Location'],
'http://testserver/middleware/needsquoting%23/')

def test_prepend_www(self):
settings.PREPEND_WWW = True
settings.APPEND_SLASH = False
request = self._get_request('path/')
r = CommonMiddleware().process_request(request)
self.assertEquals(r.status_code, 301)
self.assertEquals(
r['Location'],
'http://www.testserver/middleware/path/')

def test_prepend_www_append_slash_have_slash(self):
settings.PREPEND_WWW = True
settings.APPEND_SLASH = True
request = self._get_request('slash/')
r = CommonMiddleware().process_request(request)
self.assertEquals(r.status_code, 301)
self.assertEquals(r['Location'],
'http://www.testserver/middleware/slash/')

def test_prepend_www_append_slash_slashless(self):
settings.PREPEND_WWW = True
settings.APPEND_SLASH = True
request = self._get_request('slash')
r = CommonMiddleware().process_request(request)
self.assertEquals(r.status_code, 301)
self.assertEquals(r['Location'],
'http://www.testserver/middleware/slash/')

0 comments on commit 66c77d0

Please sign in to comment.