aiohttp-security/aiohttp_security/session_identity.py

41 lines
1.1 KiB
Python
Raw Normal View History

2015-11-19 13:25:10 +00:00
"""Identity policy for storing info into aiohttp_session session.
aiohttp_session.setup() should be called on application initialization
to configure aiohttp_session properly.
2015-11-19 13:25:10 +00:00
"""
import asyncio
2017-01-23 02:10:35 +00:00
try:
from aiohttp_session import get_session
has_aiohttp_session = True
except ImportError:
has_aiohttp_session = False
2015-11-19 13:25:10 +00:00
from .abc import AbstractIdentityPolicy
class SessionIdentityPolicy(AbstractIdentityPolicy):
def __init__(self, session_key='AIOHTTP_SECURITY'):
self._session_key = session_key
2017-01-23 02:10:35 +00:00
if not has_aiohttp_session:
raise ImportError(
'SessionIdentityPolicy requires aiohttp_session')
2015-11-19 13:25:10 +00:00
@asyncio.coroutine
def identify(self, request):
session = yield from get_session(request)
return session.get(self._session_key)
@asyncio.coroutine
def remember(self, request, response, identity, **kwargs):
session = yield from get_session(request)
session[self._session_key] = identity
@asyncio.coroutine
def forget(self, request, response):
session = yield from get_session(request)
session.pop(self._session_key, None)