2015-07-08 17:30:24 +00:00
|
|
|
import asyncio
|
2015-08-05 10:32:49 +00:00
|
|
|
from aiohttp import web
|
2015-07-08 17:30:24 +00:00
|
|
|
from aiohttp_security.abc import (AbstractIdentityPolicy,
|
|
|
|
AbstractAuthorizationPolicy)
|
|
|
|
|
|
|
|
IDENTITY_KEY = 'aiohttp_security_identity_policy'
|
|
|
|
AUTZ_KEY = 'aiohttp_security_autz_policy'
|
|
|
|
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
2015-07-29 20:41:16 +00:00
|
|
|
def remember(request, response, identity, **kwargs):
|
2015-10-29 08:31:24 +00:00
|
|
|
"""Remember identity into response.
|
|
|
|
|
2015-10-29 13:34:38 +00:00
|
|
|
The action is performed by identity_policy.remember()
|
|
|
|
|
|
|
|
Usually the idenity is stored in user cookies homehow but may be
|
|
|
|
pushed into custom header also.
|
2015-10-29 08:31:24 +00:00
|
|
|
"""
|
|
|
|
assert isinstance(identity, str), identity
|
2015-11-20 11:39:10 +00:00
|
|
|
assert identity
|
2015-08-05 10:32:49 +00:00
|
|
|
identity_policy = request.app.get(IDENTITY_KEY)
|
|
|
|
if identity_policy is None:
|
|
|
|
text = ("Security subsystem is not initialized, "
|
|
|
|
"call aiohttp_security.setup(...) first")
|
|
|
|
# in order to see meaningful exception message both: on console
|
|
|
|
# output and rendered page we add same message to *reason* and
|
|
|
|
# *text* arguments.
|
|
|
|
raise web.HTTPInternalServerError(reason=text, text=text)
|
2015-07-29 20:41:16 +00:00
|
|
|
yield from identity_policy.remember(request, response, identity, **kwargs)
|
2015-07-08 17:30:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
2015-07-29 20:41:16 +00:00
|
|
|
def forget(request, response):
|
2015-11-02 20:29:11 +00:00
|
|
|
"""Forget previously remembered identity.
|
2015-11-02 20:28:10 +00:00
|
|
|
|
2015-10-29 13:34:38 +00:00
|
|
|
Usually it clears cookie or server-side storage to forget user
|
|
|
|
session.
|
|
|
|
"""
|
2015-08-05 10:32:49 +00:00
|
|
|
identity_policy = request.app.get(IDENTITY_KEY)
|
|
|
|
if identity_policy is None:
|
|
|
|
text = ("Security subsystem is not initialized, "
|
|
|
|
"call aiohttp_security.setup(...) first")
|
|
|
|
# in order to see meaningful exception message both: on console
|
|
|
|
# output and rendered page we add same message to *reason* and
|
|
|
|
# *text* arguments.
|
|
|
|
raise web.HTTPInternalServerError(reason=text, text=text)
|
2015-07-29 20:41:16 +00:00
|
|
|
yield from identity_policy.forget(request, response)
|
2015-07-08 17:30:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def authorized_userid(request):
|
2015-08-04 18:19:01 +00:00
|
|
|
identity_policy = request.app.get(IDENTITY_KEY)
|
|
|
|
autz_policy = request.app.get(AUTZ_KEY)
|
|
|
|
if identity_policy is None or autz_policy is None:
|
|
|
|
return None
|
2015-07-08 17:30:24 +00:00
|
|
|
identity = yield from identity_policy.identify(request)
|
2015-11-20 11:39:10 +00:00
|
|
|
if identity is None:
|
|
|
|
return None # non-registered user has None user_id
|
2015-07-08 17:30:24 +00:00
|
|
|
user_id = yield from autz_policy.authorized_userid(identity)
|
|
|
|
return user_id
|
|
|
|
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def permits(request, permission, context=None):
|
2015-11-10 23:30:41 +00:00
|
|
|
assert isinstance(permission, str), permission
|
2015-11-20 11:39:10 +00:00
|
|
|
assert permission
|
2015-08-04 18:19:01 +00:00
|
|
|
identity_policy = request.app.get(IDENTITY_KEY)
|
|
|
|
autz_policy = request.app.get(AUTZ_KEY)
|
|
|
|
if identity_policy is None or autz_policy is None:
|
|
|
|
return True
|
2015-07-08 17:30:24 +00:00
|
|
|
identity = yield from identity_policy.identify(request)
|
2015-11-20 11:39:10 +00:00
|
|
|
# non-registered user still may has some permissions
|
2015-07-08 17:30:24 +00:00
|
|
|
access = yield from autz_policy.permits(identity, permission, context)
|
|
|
|
return access
|
|
|
|
|
|
|
|
|
2015-09-06 05:12:18 +00:00
|
|
|
def setup(app, identity_policy, autz_policy):
|
2015-07-08 17:30:24 +00:00
|
|
|
assert isinstance(identity_policy, AbstractIdentityPolicy), identity_policy
|
2015-09-06 05:12:18 +00:00
|
|
|
assert isinstance(autz_policy, AbstractAuthorizationPolicy), autz_policy
|
2015-07-08 17:30:24 +00:00
|
|
|
|
|
|
|
app[IDENTITY_KEY] = identity_policy
|
2015-09-06 05:12:18 +00:00
|
|
|
app[AUTZ_KEY] = autz_policy
|