Module supertokens_python.recipe.openid.recipe_implementation
Expand source code
# Copyright (c) 2021, VRAI Labs and/or its affiliates. All rights reserved.
#
# This software is licensed under the Apache License, Version 2.0 (the
# "License") as published by the Apache Software Foundation.
#
# You may not use this file except in compliance with the License. You may
# obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from __future__ import annotations
from typing import TYPE_CHECKING, Any, Dict, Union, Optional
from supertokens_python.querier import Querier
if TYPE_CHECKING:
from .utils import OpenIdConfig
from .interfaces import CreateJwtOkResult, CreateJwtResultUnsupportedAlgorithm
from supertokens_python.supertokens import AppInfo
from supertokens_python.normalised_url_path import NormalisedURLPath
from supertokens_python.recipe.jwt.constants import GET_JWKS_API
from supertokens_python.recipe.jwt.interfaces import (
RecipeInterface as JWTRecipeInterface,
)
from .interfaces import (
GetJWKSResult,
GetOpenIdDiscoveryConfigurationResult,
RecipeInterface,
)
class RecipeImplementation(RecipeInterface):
async def get_open_id_discovery_configuration(
self, user_context: Dict[str, Any]
) -> GetOpenIdDiscoveryConfigurationResult:
issuer = (
self.config.issuer_domain.get_as_string_dangerous()
+ self.config.issuer_path.get_as_string_dangerous()
)
jwks_uri = (
self.config.issuer_domain.get_as_string_dangerous()
+ self.config.issuer_path.append(
NormalisedURLPath(GET_JWKS_API)
).get_as_string_dangerous()
)
return GetOpenIdDiscoveryConfigurationResult(issuer, jwks_uri)
def __init__(
self,
querier: Querier,
config: OpenIdConfig,
app_info: AppInfo,
jwt_recipe_implementation: JWTRecipeInterface,
):
super().__init__()
self.querier = querier
self.config = config
self.app_info = app_info
self.jwt_recipe_implementation = jwt_recipe_implementation
async def create_jwt(
self,
payload: Dict[str, Any],
validity_seconds: Optional[int],
use_static_signing_key: Optional[bool],
user_context: Dict[str, Any],
) -> Union[CreateJwtOkResult, CreateJwtResultUnsupportedAlgorithm]:
issuer = (
self.config.issuer_domain.get_as_string_dangerous()
+ self.config.issuer_path.get_as_string_dangerous()
)
payload = {"iss": issuer, **payload}
return await self.jwt_recipe_implementation.create_jwt(
payload, validity_seconds, use_static_signing_key, user_context
)
async def get_jwks(self, user_context: Dict[str, Any]) -> GetJWKSResult:
return await self.jwt_recipe_implementation.get_jwks(user_context)
Classes
class RecipeImplementation (querier: Querier, config: OpenIdConfig, app_info: AppInfo, jwt_recipe_implementation: JWTRecipeInterface)
-
Helper class that provides a standard way to create an ABC using inheritance.
Expand source code
class RecipeImplementation(RecipeInterface): async def get_open_id_discovery_configuration( self, user_context: Dict[str, Any] ) -> GetOpenIdDiscoveryConfigurationResult: issuer = ( self.config.issuer_domain.get_as_string_dangerous() + self.config.issuer_path.get_as_string_dangerous() ) jwks_uri = ( self.config.issuer_domain.get_as_string_dangerous() + self.config.issuer_path.append( NormalisedURLPath(GET_JWKS_API) ).get_as_string_dangerous() ) return GetOpenIdDiscoveryConfigurationResult(issuer, jwks_uri) def __init__( self, querier: Querier, config: OpenIdConfig, app_info: AppInfo, jwt_recipe_implementation: JWTRecipeInterface, ): super().__init__() self.querier = querier self.config = config self.app_info = app_info self.jwt_recipe_implementation = jwt_recipe_implementation async def create_jwt( self, payload: Dict[str, Any], validity_seconds: Optional[int], use_static_signing_key: Optional[bool], user_context: Dict[str, Any], ) -> Union[CreateJwtOkResult, CreateJwtResultUnsupportedAlgorithm]: issuer = ( self.config.issuer_domain.get_as_string_dangerous() + self.config.issuer_path.get_as_string_dangerous() ) payload = {"iss": issuer, **payload} return await self.jwt_recipe_implementation.create_jwt( payload, validity_seconds, use_static_signing_key, user_context ) async def get_jwks(self, user_context: Dict[str, Any]) -> GetJWKSResult: return await self.jwt_recipe_implementation.get_jwks(user_context)
Ancestors
- RecipeInterface
- abc.ABC
Methods
async def create_jwt(self, payload: Dict[str, Any], validity_seconds: Optional[int], use_static_signing_key: Optional[bool], user_context: Dict[str, Any]) ‑> Union[CreateJwtOkResult, CreateJwtResultUnsupportedAlgorithm]
-
Expand source code
async def create_jwt( self, payload: Dict[str, Any], validity_seconds: Optional[int], use_static_signing_key: Optional[bool], user_context: Dict[str, Any], ) -> Union[CreateJwtOkResult, CreateJwtResultUnsupportedAlgorithm]: issuer = ( self.config.issuer_domain.get_as_string_dangerous() + self.config.issuer_path.get_as_string_dangerous() ) payload = {"iss": issuer, **payload} return await self.jwt_recipe_implementation.create_jwt( payload, validity_seconds, use_static_signing_key, user_context )
async def get_jwks(self, user_context: Dict[str, Any]) ‑> GetJWKSResult
-
Expand source code
async def get_jwks(self, user_context: Dict[str, Any]) -> GetJWKSResult: return await self.jwt_recipe_implementation.get_jwks(user_context)
async def get_open_id_discovery_configuration(self, user_context: Dict[str, Any]) ‑> GetOpenIdDiscoveryConfigurationResult
-
Expand source code
async def get_open_id_discovery_configuration( self, user_context: Dict[str, Any] ) -> GetOpenIdDiscoveryConfigurationResult: issuer = ( self.config.issuer_domain.get_as_string_dangerous() + self.config.issuer_path.get_as_string_dangerous() ) jwks_uri = ( self.config.issuer_domain.get_as_string_dangerous() + self.config.issuer_path.append( NormalisedURLPath(GET_JWKS_API) ).get_as_string_dangerous() ) return GetOpenIdDiscoveryConfigurationResult(issuer, jwks_uri)