log a previously logged in user when switched to no_auth mode

This commit is contained in:
Rodney Ewing 2013-05-17 10:50:46 -07:00
parent d93cd2684b
commit c9dec8b3cc
2 changed files with 10 additions and 1 deletions

View File

@ -37,7 +37,7 @@ from mediagoblin.init import (get_jinja_loader, get_staticdirector,
setup_storage)
from mediagoblin.tools.pluginapi import PluginManager, hook_transform
from mediagoblin.tools.crypto import setup_crypto
from mediagoblin.auth.tools import check_auth_enabled
from mediagoblin.auth.tools import check_auth_enabled, no_auth_logout
_log = logging.getLogger(__name__)
@ -192,6 +192,9 @@ class MediaGoblinApp(object):
mg_request.setup_user_in_request(request)
# Log user out if in no_auth mode
no_auth_logout(request)
request.controller_name = None
try:
found_rule, url_values = map_adapter.match(return_rule=True)

View File

@ -76,3 +76,9 @@ def check_auth_enabled():
return False
else:
return True
def no_auth_logout(request):
"""Log out the user if in no_auth mode"""
if not mg_globals.app.auth:
request.session.delete()