2007-12-02 10:22:19 +08:00
|
|
|
import sys
|
|
|
|
|
|
|
|
from django import http
|
2006-05-02 09:31:56 +08:00
|
|
|
from django.core import signals
|
2008-07-21 15:57:10 +08:00
|
|
|
from django.utils.encoding import force_unicode
|
2009-03-19 00:55:59 +08:00
|
|
|
from django.utils.importlib import import_module
|
2005-07-23 02:34:38 +08:00
|
|
|
|
2006-06-08 13:00:13 +08:00
|
|
|
class BaseHandler(object):
|
2007-11-11 11:55:44 +08:00
|
|
|
# Changes that are always applied to a response (in this order).
|
2008-07-07 09:45:19 +08:00
|
|
|
response_fixes = [
|
|
|
|
http.fix_location_header,
|
|
|
|
http.conditional_content_removal,
|
|
|
|
http.fix_IE_for_attach,
|
|
|
|
http.fix_IE_for_vary,
|
|
|
|
]
|
2007-11-11 11:55:44 +08:00
|
|
|
|
2005-07-23 02:34:38 +08:00
|
|
|
def __init__(self):
|
2005-10-15 10:20:35 +08:00
|
|
|
self._request_middleware = self._view_middleware = self._response_middleware = self._exception_middleware = None
|
2005-07-23 02:34:38 +08:00
|
|
|
|
|
|
|
def load_middleware(self):
|
|
|
|
"""
|
|
|
|
Populate middleware lists from settings.MIDDLEWARE_CLASSES.
|
|
|
|
|
|
|
|
Must be called after the environment is fixed (see __call__).
|
|
|
|
"""
|
|
|
|
from django.conf import settings
|
|
|
|
from django.core import exceptions
|
|
|
|
self._view_middleware = []
|
|
|
|
self._response_middleware = []
|
2005-10-15 10:20:35 +08:00
|
|
|
self._exception_middleware = []
|
2009-03-12 15:27:47 +08:00
|
|
|
|
|
|
|
request_middleware = []
|
2005-07-23 02:34:38 +08:00
|
|
|
for middleware_path in settings.MIDDLEWARE_CLASSES:
|
2005-11-23 03:41:09 +08:00
|
|
|
try:
|
|
|
|
dot = middleware_path.rindex('.')
|
|
|
|
except ValueError:
|
2010-01-11 02:36:20 +08:00
|
|
|
raise exceptions.ImproperlyConfigured('%s isn\'t a middleware module' % middleware_path)
|
2005-07-23 02:34:38 +08:00
|
|
|
mw_module, mw_classname = middleware_path[:dot], middleware_path[dot+1:]
|
|
|
|
try:
|
2009-03-19 00:55:59 +08:00
|
|
|
mod = import_module(mw_module)
|
2005-07-23 02:34:38 +08:00
|
|
|
except ImportError, e:
|
2010-01-11 02:36:20 +08:00
|
|
|
raise exceptions.ImproperlyConfigured('Error importing middleware %s: "%s"' % (mw_module, e))
|
2005-07-23 02:34:38 +08:00
|
|
|
try:
|
|
|
|
mw_class = getattr(mod, mw_classname)
|
|
|
|
except AttributeError:
|
2010-01-11 02:36:20 +08:00
|
|
|
raise exceptions.ImproperlyConfigured('Middleware module "%s" does not define a "%s" class' % (mw_module, mw_classname))
|
2005-07-23 02:34:38 +08:00
|
|
|
|
|
|
|
try:
|
|
|
|
mw_instance = mw_class()
|
|
|
|
except exceptions.MiddlewareNotUsed:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if hasattr(mw_instance, 'process_request'):
|
2009-03-12 15:57:35 +08:00
|
|
|
request_middleware.append(mw_instance.process_request)
|
2005-07-23 02:34:38 +08:00
|
|
|
if hasattr(mw_instance, 'process_view'):
|
|
|
|
self._view_middleware.append(mw_instance.process_view)
|
|
|
|
if hasattr(mw_instance, 'process_response'):
|
|
|
|
self._response_middleware.insert(0, mw_instance.process_response)
|
2005-10-15 10:20:35 +08:00
|
|
|
if hasattr(mw_instance, 'process_exception'):
|
|
|
|
self._exception_middleware.insert(0, mw_instance.process_exception)
|
2005-07-23 02:34:38 +08:00
|
|
|
|
2009-03-12 15:27:47 +08:00
|
|
|
# We only assign to this when initialization is complete as it is used
|
|
|
|
# as a flag for initialization being complete.
|
|
|
|
self._request_middleware = request_middleware
|
|
|
|
|
2006-09-28 09:56:02 +08:00
|
|
|
def get_response(self, request):
|
2005-07-23 02:34:38 +08:00
|
|
|
"Returns an HttpResponse object for the given HttpRequest"
|
2006-05-02 09:31:56 +08:00
|
|
|
from django.core import exceptions, urlresolvers
|
|
|
|
from django.conf import settings
|
2005-10-25 09:51:57 +08:00
|
|
|
|
2010-01-11 01:35:01 +08:00
|
|
|
try:
|
|
|
|
try:
|
2010-03-13 00:45:29 +08:00
|
|
|
# Setup default url resolver for this thread.
|
|
|
|
urlconf = settings.ROOT_URLCONF
|
|
|
|
urlresolvers.set_urlconf(urlconf)
|
|
|
|
resolver = urlresolvers.RegexURLResolver(r'^/', urlconf)
|
2006-12-26 22:40:33 +08:00
|
|
|
|
2010-01-11 01:35:01 +08:00
|
|
|
# Apply request middleware
|
|
|
|
for middleware_method in self._request_middleware:
|
|
|
|
response = middleware_method(request)
|
|
|
|
if response:
|
|
|
|
return response
|
2009-11-16 09:58:00 +08:00
|
|
|
|
2010-03-13 00:45:29 +08:00
|
|
|
if hasattr(request, "urlconf"):
|
|
|
|
# Reset url resolver with a custom urlconf.
|
|
|
|
urlconf = request.urlconf
|
|
|
|
urlresolvers.set_urlconf(urlconf)
|
|
|
|
resolver = urlresolvers.RegexURLResolver(r'^/', urlconf)
|
2010-01-11 02:48:08 +08:00
|
|
|
|
2009-11-16 09:58:00 +08:00
|
|
|
callback, callback_args, callback_kwargs = resolver.resolve(
|
|
|
|
request.path_info)
|
|
|
|
|
|
|
|
# Apply view middleware
|
|
|
|
for middleware_method in self._view_middleware:
|
|
|
|
response = middleware_method(request, callback, callback_args, callback_kwargs)
|
2005-10-15 10:20:35 +08:00
|
|
|
if response:
|
|
|
|
return response
|
2005-08-18 08:14:15 +08:00
|
|
|
|
2006-11-29 06:58:10 +08:00
|
|
|
try:
|
2009-11-16 09:58:00 +08:00
|
|
|
response = callback(request, *callback_args, **callback_kwargs)
|
|
|
|
except Exception, e:
|
|
|
|
# If the view raised an exception, run it through exception
|
|
|
|
# middleware, and if the exception middleware returns a
|
|
|
|
# response, use that. Otherwise, reraise the exception.
|
|
|
|
for middleware_method in self._exception_middleware:
|
|
|
|
response = middleware_method(request, e)
|
|
|
|
if response:
|
|
|
|
return response
|
|
|
|
raise
|
|
|
|
|
|
|
|
# Complain if the view returned None (a common error).
|
|
|
|
if response is None:
|
2008-08-22 21:59:41 +08:00
|
|
|
try:
|
2009-11-16 09:58:00 +08:00
|
|
|
view_name = callback.func_name # If it's a function
|
|
|
|
except AttributeError:
|
|
|
|
view_name = callback.__class__.__name__ + '.__call__' # If it's a class
|
2010-01-11 02:36:20 +08:00
|
|
|
raise ValueError("The view %s.%s didn't return an HttpResponse object." % (callback.__module__, view_name))
|
2009-11-16 09:58:00 +08:00
|
|
|
|
|
|
|
return response
|
|
|
|
except http.Http404, e:
|
|
|
|
if settings.DEBUG:
|
|
|
|
from django.views import debug
|
|
|
|
return debug.technical_404_response(request, e)
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
callback, param_dict = resolver.resolve404()
|
|
|
|
return callback(request, **param_dict)
|
|
|
|
except:
|
|
|
|
try:
|
|
|
|
return self.handle_uncaught_exception(request, resolver, sys.exc_info())
|
|
|
|
finally:
|
|
|
|
receivers = signals.got_request_exception.send(sender=self.__class__, request=request)
|
|
|
|
except exceptions.PermissionDenied:
|
|
|
|
return http.HttpResponseForbidden('<h1>Permission denied</h1>')
|
|
|
|
except SystemExit:
|
|
|
|
# Allow sys.exit() to actually exit. See tickets #1023 and #4701
|
|
|
|
raise
|
|
|
|
except: # Handle everything else, including SuspiciousOperation, etc.
|
|
|
|
# Get the exception info now, in case another exception is thrown later.
|
|
|
|
receivers = signals.got_request_exception.send(sender=self.__class__, request=request)
|
2010-06-04 02:50:04 +08:00
|
|
|
return self.handle_uncaught_exception(request, resolver, sys.exc_info())
|
2009-11-16 09:58:00 +08:00
|
|
|
finally:
|
|
|
|
# Reset URLconf for this thread on the way out for complete
|
|
|
|
# isolation of request.urlconf
|
|
|
|
urlresolvers.set_urlconf(None)
|
2008-07-16 03:17:49 +08:00
|
|
|
|
|
|
|
def handle_uncaught_exception(self, request, resolver, exc_info):
|
|
|
|
"""
|
|
|
|
Processing for any otherwise uncaught exceptions (those that will
|
|
|
|
generate HTTP 500 responses). Can be overridden by subclasses who want
|
|
|
|
customised 500 handling.
|
|
|
|
|
|
|
|
Be *very* careful when overriding this because the error could be
|
|
|
|
caused by anything, so assuming something like the database is always
|
|
|
|
available would be an error.
|
|
|
|
"""
|
|
|
|
from django.conf import settings
|
|
|
|
from django.core.mail import mail_admins
|
|
|
|
|
2008-07-20 02:49:49 +08:00
|
|
|
if settings.DEBUG_PROPAGATE_EXCEPTIONS:
|
|
|
|
raise
|
|
|
|
|
2008-07-16 03:17:49 +08:00
|
|
|
if settings.DEBUG:
|
|
|
|
from django.views import debug
|
|
|
|
return debug.technical_500_response(request, *exc_info)
|
|
|
|
|
|
|
|
# When DEBUG is False, send an error message to the admins.
|
|
|
|
subject = 'Error (%s IP): %s' % ((request.META.get('REMOTE_ADDR') in settings.INTERNAL_IPS and 'internal' or 'EXTERNAL'), request.path)
|
|
|
|
try:
|
|
|
|
request_repr = repr(request)
|
|
|
|
except:
|
|
|
|
request_repr = "Request repr() unavailable"
|
|
|
|
message = "%s\n\n%s" % (self._get_traceback(exc_info), request_repr)
|
|
|
|
mail_admins(subject, message, fail_silently=True)
|
2010-03-26 23:08:24 +08:00
|
|
|
# If Http500 handler is not installed, re-raise last exception
|
|
|
|
if resolver.urlconf_module is None:
|
|
|
|
raise exc_info[1], None, exc_info[2]
|
2008-07-16 03:17:49 +08:00
|
|
|
# Return an HttpResponse that displays a friendly error message.
|
|
|
|
callback, param_dict = resolver.resolve500()
|
|
|
|
return callback(request, **param_dict)
|
2005-07-23 02:34:38 +08:00
|
|
|
|
2006-04-11 11:29:01 +08:00
|
|
|
def _get_traceback(self, exc_info=None):
|
2005-07-23 02:34:38 +08:00
|
|
|
"Helper function to return the traceback as a string"
|
2006-04-11 11:29:01 +08:00
|
|
|
import traceback
|
|
|
|
return '\n'.join(traceback.format_exception(*(exc_info or sys.exc_info())))
|
2007-09-14 13:28:00 +08:00
|
|
|
|
2007-11-11 11:55:44 +08:00
|
|
|
def apply_response_fixes(self, request, response):
|
|
|
|
"""
|
|
|
|
Applies each of the functions in self.response_fixes to the request and
|
|
|
|
response, modifying the response in the process. Returns the new
|
|
|
|
response.
|
|
|
|
"""
|
|
|
|
for func in self.response_fixes:
|
|
|
|
response = func(request, response)
|
|
|
|
return response
|
2007-09-14 13:28:00 +08:00
|
|
|
|
2008-07-21 15:57:10 +08:00
|
|
|
def get_script_name(environ):
|
|
|
|
"""
|
|
|
|
Returns the equivalent of the HTTP request's SCRIPT_NAME environment
|
|
|
|
variable. If Apache mod_rewrite has been used, returns what would have been
|
|
|
|
the script name prior to any rewriting (so it's the script name as seen
|
|
|
|
from the client's perspective), unless DJANGO_USE_POST_REWRITE is set (to
|
|
|
|
anything).
|
|
|
|
"""
|
|
|
|
from django.conf import settings
|
|
|
|
if settings.FORCE_SCRIPT_NAME is not None:
|
|
|
|
return force_unicode(settings.FORCE_SCRIPT_NAME)
|
|
|
|
|
|
|
|
# If Apache's mod_rewrite had a whack at the URL, Apache set either
|
|
|
|
# SCRIPT_URL or REDIRECT_URL to the full resource URL before applying any
|
|
|
|
# rewrites. Unfortunately not every webserver (lighttpd!) passes this
|
|
|
|
# information through all the time, so FORCE_SCRIPT_NAME, above, is still
|
|
|
|
# needed.
|
|
|
|
script_url = environ.get('SCRIPT_URL', u'')
|
|
|
|
if not script_url:
|
|
|
|
script_url = environ.get('REDIRECT_URL', u'')
|
|
|
|
if script_url:
|
|
|
|
return force_unicode(script_url[:-len(environ.get('PATH_INFO', ''))])
|
|
|
|
return force_unicode(environ.get('SCRIPT_NAME', u''))
|
|
|
|
|