summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/session.py
blob: b03b6b41032ab7f00ff9b75e23b5f998353a7ea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# Copyright (C) 2015  FreeIPA Contributors see COPYING for license
#

from ipalib import api, Command
from ipalib.request import context
from ipalib.plugable import Registry

if api.env.in_server:
    from ipalib.session import 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.auth_mgr.logout(session_data)

        return dict(result=None)