mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 00:20:04 -06:00
a901ec1ce9
Removes the side effect of attempting to connect to memcached when the session module is imported, which caused user visible warnings and/or SELinux AVC denials. https://fedorahosted.org/freeipa/ticket/5988 Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
33 lines
917 B
Python
33 lines
917 B
Python
#
|
|
# Copyright (C) 2015 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
from ipalib import Command
|
|
from ipalib.request import context
|
|
from ipalib.plugable import Registry
|
|
from ipaserver.session import get_session_mgr
|
|
|
|
register = Registry()
|
|
|
|
|
|
@register()
|
|
class session_logout(Command):
|
|
'''
|
|
RPC command used to log the current user out of their session.
|
|
'''
|
|
NO_CLI = True
|
|
|
|
def execute(self, *args, **options):
|
|
session_data = getattr(context, 'session_data', None)
|
|
if session_data is None:
|
|
self.debug('session logout command: no session_data found')
|
|
else:
|
|
session_id = session_data.get('session_id')
|
|
self.debug('session logout command: session_id=%s', session_id)
|
|
|
|
# Notifiy registered listeners
|
|
session_mgr = get_session_mgr()
|
|
session_mgr.auth_mgr.logout(session_data)
|
|
|
|
return dict(result=None)
|