Gracefully handle keystone token expiration.

This commit is contained in:
Mark Gius 2011-07-21 14:53:53 -07:00
parent 3134df038c
commit 712a3ae30e

View File

@ -20,10 +20,30 @@
import logging
from django import shortcuts
from django.contrib import messages
from openstackx.api import exceptions as api_exceptions
LOG = logging.getLogger('openstack_dashboard')
class DashboardLogUnhandledExceptionsMiddleware(object):
def process_exception(self, request, exception):
if isinstance(exception, api_exceptions.NotFound):
try:
exception.message.index('reauthenticate')
# clear the errors
for message in messages.get_messages(request):
LOG.debug('Discarded message - %s: "%s"'
% (message.tags, message.message))
messages.info(request, 'Your session has timed out.'
' Please log back in.')
LOG.info('User "%s" auth token expired, redirecting to logout'
% request.user.username)
return shortcuts.redirect('auth_logout')
except ValueError:
pass
LOG.critical('Unhandled Exception in of type "%s" in dashboard.'
% type(exception), exc_info=True)