mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-10 13:03:11 +00:00
27 lines
946 B
Python
27 lines
946 B
Python
"""GraphQL API for SelfPrivacy."""
|
|
|
|
# pylint: disable=too-few-public-methods
|
|
import typing
|
|
from strawberry.permission import BasePermission
|
|
from strawberry.types import Info
|
|
|
|
from selfprivacy_api.actions.api_tokens import is_token_valid
|
|
|
|
|
|
class IsAuthenticated(BasePermission):
|
|
"""Is authenticated permission"""
|
|
|
|
message = "You must be authenticated to access this resource."
|
|
|
|
def has_permission(self, source: typing.Any, info: Info, **kwargs) -> bool:
|
|
token = info.context["request"].headers.get("Authorization")
|
|
if token is None:
|
|
token = info.context["request"].query_params.get("token")
|
|
if token is None:
|
|
connection_params = info.context.get("connection_params")
|
|
if connection_params is not None:
|
|
token = connection_params.get("Authorization")
|
|
if token is None:
|
|
return False
|
|
return is_token_valid(token.replace("Bearer ", ""))
|