Mercurial > public > sg101
view wiki/signals.py @ 627:a4300639c6e7
Wiki integration. Create task to delete old cookie records.
Rework logic upon logout, as session will not be available. Set an
attribute on the request instead.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 12 Nov 2012 15:10:52 -0600 |
parents | a6bc1e2efa63 |
children | f4c043cf55ac |
line wrap: on
line source
"""Signal handlers for wiki integration. """ import logging from django.contrib.auth.signals import user_logged_in, user_logged_out from wiki.constants import SESSION_SET_FLAG, SESSION_SET_MEMBER logger = logging.getLogger(__name__) def login_callback(sender, request, user, **kwargs): """Signal callback function for a user logging in. Sets a flag for the middleware to create an external cookie. """ logger.info('User login: %s', user.username) request.session[SESSION_SET_FLAG] = True def logout_callback(sender, request, user, **kwargs): """Signal callback function for a user logging in. Sets a flag for the middleware to delete the external cookie. Since the user is about to logout, her session will be wiped out after this function returns. This forces us to set an attribute on the request object so that the response middleware can delete the wiki's cookie. """ logger.info('User logout: %s', user.username) # Remember what Redis set member to delete by adding an attribute to the # request object: request.wiki_delete_cookie = request.session.get(SESSION_SET_MEMBER) user_logged_in.connect(login_callback, dispatch_uid='wiki.signals.login') user_logged_out.connect(logout_callback, dispatch_uid='wiki.signals.logout')