2011-03-28 10:11:19 +08:00
|
|
|
import hashlib
|
2012-09-21 03:03:24 +08:00
|
|
|
import logging
|
2007-10-20 16:31:05 +08:00
|
|
|
import re
|
|
|
|
|
2015-01-28 20:35:27 +08:00
|
|
|
from django import http
|
2005-07-13 09:25:57 +08:00
|
|
|
from django.conf import settings
|
2013-01-02 05:28:48 +08:00
|
|
|
from django.core import urlresolvers
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.core.mail import mail_managers
|
2013-05-18 18:37:22 +08:00
|
|
|
from django.utils.encoding import force_text
|
2012-09-21 03:03:24 +08:00
|
|
|
|
|
|
|
logger = logging.getLogger('django.request')
|
2010-10-04 23:12:39 +08:00
|
|
|
|
|
|
|
|
2006-06-08 13:00:13 +08:00
|
|
|
class CommonMiddleware(object):
|
2005-07-13 09:25:57 +08:00
|
|
|
"""
|
|
|
|
"Common" middleware for taking care of some basic operations:
|
|
|
|
|
|
|
|
- Forbids access to User-Agents in settings.DISALLOWED_USER_AGENTS
|
|
|
|
|
2005-11-07 05:55:57 +08:00
|
|
|
- URL rewriting: Based on the APPEND_SLASH and PREPEND_WWW settings,
|
2007-06-17 15:21:09 +08:00
|
|
|
this middleware appends missing slashes and/or prepends missing
|
|
|
|
"www."s.
|
2005-07-13 09:25:57 +08:00
|
|
|
|
2007-12-03 07:25:55 +08:00
|
|
|
- If APPEND_SLASH is set and the initial URL doesn't end with a
|
|
|
|
slash, and it is not found in urlpatterns, a new URL is formed by
|
|
|
|
appending a slash at the end. If this new URL is found in
|
|
|
|
urlpatterns, then an HTTP-redirect is returned to this new URL;
|
2008-08-02 13:56:57 +08:00
|
|
|
otherwise the initial URL is processed as usual.
|
2007-12-03 07:25:55 +08:00
|
|
|
|
2014-11-05 04:19:10 +08:00
|
|
|
This behavior can be customized by subclassing CommonMiddleware and
|
|
|
|
overriding the response_redirect_class attribute.
|
|
|
|
|
2005-11-07 05:55:57 +08:00
|
|
|
- ETags: If the USE_ETAGS setting is set, ETags will be calculated from
|
2005-07-13 09:25:57 +08:00
|
|
|
the entire page content and Not Modified responses will be returned
|
|
|
|
appropriately.
|
|
|
|
"""
|
|
|
|
|
2014-11-05 04:19:10 +08:00
|
|
|
response_redirect_class = http.HttpResponsePermanentRedirect
|
|
|
|
|
2005-07-13 09:25:57 +08:00
|
|
|
def process_request(self, request):
|
|
|
|
"""
|
|
|
|
Check for denied User-Agents and rewrite the URL based on
|
|
|
|
settings.APPEND_SLASH and settings.PREPEND_WWW
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Check for denied User-Agents
|
2007-04-26 21:30:48 +08:00
|
|
|
if 'HTTP_USER_AGENT' in request.META:
|
2005-07-13 09:25:57 +08:00
|
|
|
for user_agent_regex in settings.DISALLOWED_USER_AGENTS:
|
|
|
|
if user_agent_regex.search(request.META['HTTP_USER_AGENT']):
|
2012-02-10 02:58:36 +08:00
|
|
|
logger.warning('Forbidden (User agent): %s', request.path,
|
2010-10-04 23:12:39 +08:00
|
|
|
extra={
|
|
|
|
'status_code': 403,
|
|
|
|
'request': request
|
|
|
|
}
|
|
|
|
)
|
2006-05-02 09:31:56 +08:00
|
|
|
return http.HttpResponseForbidden('<h1>Forbidden</h1>')
|
2005-07-13 09:25:57 +08:00
|
|
|
|
2007-12-03 07:25:55 +08:00
|
|
|
# Check for a redirect based on settings.APPEND_SLASH
|
|
|
|
# and settings.PREPEND_WWW
|
2007-09-16 01:46:03 +08:00
|
|
|
host = request.get_host()
|
2015-03-23 03:04:31 +08:00
|
|
|
old_url = [host, request.get_full_path()]
|
2005-07-13 09:25:57 +08:00
|
|
|
new_url = old_url[:]
|
2007-12-03 07:25:55 +08:00
|
|
|
|
|
|
|
if (settings.PREPEND_WWW and old_url[0] and
|
|
|
|
not old_url[0].startswith('www.')):
|
2005-07-13 09:25:57 +08:00
|
|
|
new_url[0] = 'www.' + old_url[0]
|
2007-12-03 07:25:55 +08:00
|
|
|
|
|
|
|
# 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('/')):
|
2010-03-08 04:03:04 +08:00
|
|
|
urlconf = getattr(request, 'urlconf', None)
|
2012-03-02 19:07:36 +08:00
|
|
|
if (not urlresolvers.is_valid_path(request.path_info, urlconf) and
|
|
|
|
urlresolvers.is_valid_path("%s/" % request.path_info, urlconf)):
|
2015-03-23 03:04:31 +08:00
|
|
|
new_url[1] = request.get_full_path(force_append_slash=True)
|
2015-01-13 21:42:21 +08:00
|
|
|
if settings.DEBUG and request.method in ('POST', 'PUT', 'PATCH'):
|
2011-03-26 11:30:48 +08:00
|
|
|
raise RuntimeError((""
|
2015-01-13 21:42:21 +08:00
|
|
|
"You called this URL via %(method)s, but the URL doesn't end "
|
2007-12-03 07:25:55 +08:00
|
|
|
"in a slash and you have APPEND_SLASH set. Django can't "
|
2015-01-13 21:42:21 +08:00
|
|
|
"redirect to the slash URL while maintaining %(method)s data. "
|
|
|
|
"Change your form to point to %(url)s (note the trailing "
|
2007-12-03 07:25:55 +08:00
|
|
|
"slash), or set APPEND_SLASH=False in your Django "
|
2015-01-13 21:42:21 +08:00
|
|
|
"settings.") % {'method': request.method, 'url': ''.join(new_url)})
|
2007-12-03 07:25:55 +08:00
|
|
|
|
2008-10-07 16:22:50 +08:00
|
|
|
if new_url == old_url:
|
|
|
|
# No redirects required.
|
|
|
|
return
|
2015-03-14 06:40:14 +08:00
|
|
|
if new_url[0] != old_url[0]:
|
2008-10-07 16:22:50 +08:00
|
|
|
newurl = "%s://%s%s" % (
|
2013-10-09 02:30:29 +08:00
|
|
|
request.scheme,
|
2015-03-23 03:04:31 +08:00
|
|
|
new_url[0], new_url[1])
|
2008-10-07 16:22:50 +08:00
|
|
|
else:
|
2015-03-23 03:04:31 +08:00
|
|
|
newurl = new_url[1]
|
2014-11-05 04:19:10 +08:00
|
|
|
return self.response_redirect_class(newurl)
|
2005-07-13 09:25:57 +08:00
|
|
|
|
|
|
|
def process_response(self, request, response):
|
2013-01-02 05:28:48 +08:00
|
|
|
"""
|
|
|
|
Calculate the ETag, if needed.
|
|
|
|
"""
|
2005-07-13 09:25:57 +08:00
|
|
|
if settings.USE_ETAGS:
|
2007-06-17 15:21:09 +08:00
|
|
|
if response.has_header('ETag'):
|
|
|
|
etag = response['ETag']
|
2012-10-20 23:40:14 +08:00
|
|
|
elif response.streaming:
|
|
|
|
etag = None
|
2007-06-17 15:21:09 +08:00
|
|
|
else:
|
2011-03-28 10:11:19 +08:00
|
|
|
etag = '"%s"' % hashlib.md5(response.content).hexdigest()
|
2012-10-20 23:40:14 +08:00
|
|
|
if etag is not None:
|
|
|
|
if (200 <= response.status_code < 300
|
2013-11-26 17:43:46 +08:00
|
|
|
and request.META.get('HTTP_IF_NONE_MATCH') == etag):
|
2012-10-20 23:40:14 +08:00
|
|
|
cookies = response.cookies
|
|
|
|
response = http.HttpResponseNotModified()
|
|
|
|
response.cookies = cookies
|
|
|
|
else:
|
|
|
|
response['ETag'] = etag
|
2005-07-13 09:25:57 +08:00
|
|
|
|
|
|
|
return response
|
|
|
|
|
2006-09-27 02:49:28 +08:00
|
|
|
|
2013-01-02 05:28:48 +08:00
|
|
|
class BrokenLinkEmailsMiddleware(object):
|
|
|
|
|
|
|
|
def process_response(self, request, response):
|
|
|
|
"""
|
|
|
|
Send broken link emails for relevant 404 NOT FOUND responses.
|
|
|
|
"""
|
|
|
|
if response.status_code == 404 and not settings.DEBUG:
|
|
|
|
domain = request.get_host()
|
|
|
|
path = request.get_full_path()
|
2013-05-18 18:37:22 +08:00
|
|
|
referer = force_text(request.META.get('HTTP_REFERER', ''), errors='replace')
|
2013-05-24 23:55:50 +08:00
|
|
|
|
|
|
|
if not self.is_ignorable_request(request, path, domain, referer):
|
2015-04-21 20:51:43 +08:00
|
|
|
ua = force_text(request.META.get('HTTP_USER_AGENT', '<none>'), errors='replace')
|
2013-01-02 05:28:48 +08:00
|
|
|
ip = request.META.get('REMOTE_ADDR', '<none>')
|
|
|
|
mail_managers(
|
2013-05-24 23:55:50 +08:00
|
|
|
"Broken %slink on %s" % (
|
|
|
|
('INTERNAL ' if self.is_internal_request(domain, referer) else ''),
|
|
|
|
domain
|
|
|
|
),
|
|
|
|
"Referrer: %s\nRequested URL: %s\nUser agent: %s\n"
|
|
|
|
"IP address: %s\n" % (referer, path, ua, ip),
|
2013-01-02 05:28:48 +08:00
|
|
|
fail_silently=True)
|
|
|
|
return response
|
|
|
|
|
|
|
|
def is_internal_request(self, domain, referer):
|
|
|
|
"""
|
|
|
|
Returns True if the referring URL is the same domain as the current request.
|
|
|
|
"""
|
|
|
|
# Different subdomains are treated as different domains.
|
2013-05-24 23:55:50 +08:00
|
|
|
return bool(re.match("^https?://%s/" % re.escape(domain), referer))
|
2013-01-02 05:28:48 +08:00
|
|
|
|
2013-05-24 23:55:50 +08:00
|
|
|
def is_ignorable_request(self, request, uri, domain, referer):
|
2013-01-02 05:28:48 +08:00
|
|
|
"""
|
2013-05-24 23:55:50 +08:00
|
|
|
Returns True if the given request *shouldn't* notify the site managers.
|
2013-01-02 05:28:48 +08:00
|
|
|
"""
|
2013-05-24 23:55:50 +08:00
|
|
|
# '?' in referer is identified as search engine source
|
|
|
|
if (not referer or
|
|
|
|
(not self.is_internal_request(domain, referer) and '?' in referer)):
|
|
|
|
return True
|
2013-01-02 05:28:48 +08:00
|
|
|
return any(pattern.search(uri) for pattern in settings.IGNORABLE_404_URLS)
|