2015-07-08 17:30:24 +00:00
|
|
|
import abc
|
2020-12-18 17:58:38 +00:00
|
|
|
from enum import Enum
|
|
|
|
from typing import Any, Optional, Union
|
|
|
|
|
|
|
|
from aiohttp import web
|
2015-07-08 17:30:24 +00:00
|
|
|
|
|
|
|
# see http://plope.com/pyramid_auth_design_api_postmortem
|
|
|
|
|
|
|
|
|
|
|
|
class AbstractIdentityPolicy(metaclass=abc.ABCMeta):
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
2020-12-18 17:58:38 +00:00
|
|
|
async def identify(self, request: web.Request) -> Optional[str]:
|
2015-07-29 20:41:16 +00:00
|
|
|
"""Return the claimed identity of the user associated request or
|
2015-07-08 17:30:24 +00:00
|
|
|
``None`` if no identity can be found associated with the request."""
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
2020-12-18 17:58:38 +00:00
|
|
|
async def remember(self, request: web.Request, response: web.StreamResponse,
|
|
|
|
identity: str, **kwargs: Any) -> None:
|
2015-07-08 17:30:24 +00:00
|
|
|
"""Remember identity.
|
|
|
|
|
2015-07-29 20:41:16 +00:00
|
|
|
Modify response object by filling it's headers with remembered user.
|
2015-07-08 17:30:24 +00:00
|
|
|
|
|
|
|
An individual identity policy and its consumers can decide on
|
2015-11-05 20:59:21 +00:00
|
|
|
the composition and meaning of **kwargs.
|
2015-07-08 17:30:24 +00:00
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
2020-12-18 17:58:38 +00:00
|
|
|
async def forget(self, request: web.Request, response: web.StreamResponse) -> None:
|
2015-07-29 20:41:16 +00:00
|
|
|
""" Modify response which can be used to 'forget' the
|
2015-07-08 17:30:24 +00:00
|
|
|
current identity on subsequent requests."""
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class AbstractAuthorizationPolicy(metaclass=abc.ABCMeta):
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
2020-12-18 17:58:38 +00:00
|
|
|
async def permits(self, identity: str, permission: Union[str, Enum],
|
|
|
|
context: Any = None) -> bool:
|
2015-11-06 14:45:20 +00:00
|
|
|
"""Check user permissions.
|
|
|
|
|
|
|
|
Return True if the identity is allowed the permission in the
|
|
|
|
current context, else return False.
|
|
|
|
"""
|
2015-07-08 17:30:24 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
2020-12-18 17:58:38 +00:00
|
|
|
async def authorized_userid(self, identity: str) -> Optional[str]:
|
2015-11-06 14:45:20 +00:00
|
|
|
"""Retrieve authorized user id.
|
|
|
|
|
|
|
|
Return the user_id of the user identified by the identity
|
|
|
|
or 'None' if no user exists related to the identity.
|
|
|
|
"""
|
2015-07-08 17:30:24 +00:00
|
|
|
pass
|