2016-08-30 17:38:59 +00:00
|
|
|
"""Identity policy for storing info directly into HTTP cookie.
|
2015-11-19 13:25:10 +00:00
|
|
|
|
|
|
|
Use mostly for demonstration purposes, SessionIdentityPolicy is much
|
|
|
|
more handy.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2015-07-08 17:30:24 +00:00
|
|
|
import asyncio
|
|
|
|
|
|
|
|
from .abc import AbstractIdentityPolicy
|
|
|
|
|
|
|
|
|
2015-07-29 20:41:16 +00:00
|
|
|
sentinel = object()
|
|
|
|
|
|
|
|
|
2015-07-08 17:30:24 +00:00
|
|
|
class CookiesIdentityPolicy(AbstractIdentityPolicy):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self._cookie_name = 'AIOHTTP_SECURITY'
|
|
|
|
self._max_age = 30 * 24 * 3600
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def identify(self, request):
|
|
|
|
identity = request.cookies.get(self._cookie_name)
|
|
|
|
return identity
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
2015-07-29 20:41:16 +00:00
|
|
|
def remember(self, request, response, identity, max_age=sentinel,
|
|
|
|
**kwargs):
|
|
|
|
if max_age is sentinel:
|
|
|
|
max_age = self._max_age
|
2015-07-29 20:58:55 +00:00
|
|
|
response.set_cookie(self._cookie_name, identity,
|
|
|
|
max_age=max_age, **kwargs)
|
2015-07-08 17:30:24 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
2015-07-29 20:41:16 +00:00
|
|
|
def forget(self, request, response):
|
|
|
|
response.del_cookie(self._cookie_name)
|