Module supertokens_python.recipe.dashboard
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 List, Optional
from supertokens_python.supertokens import RecipeInit
from .recipe import DashboardRecipe
from .utils import DashboardOverrideConfig, InputOverrideConfig
def init(
api_key: Optional[str] = None,
admins: Optional[List[str]] = None,
override: Optional[DashboardOverrideConfig] = None,
) -> RecipeInit:
return DashboardRecipe.init(
api_key,
admins,
override,
)
__all__ = [
"DashboardOverrideConfig",
"DashboardRecipe",
"InputOverrideConfig", # deprecated, use DashboardOverrideConfig instead
"init",
]
Sub-modules
supertokens_python.recipe.dashboard.apisupertokens_python.recipe.dashboard.constantssupertokens_python.recipe.dashboard.exceptionssupertokens_python.recipe.dashboard.interfacessupertokens_python.recipe.dashboard.recipesupertokens_python.recipe.dashboard.recipe_implementationsupertokens_python.recipe.dashboard.utils
Functions
def init(api_key: Optional[str] = None, admins: Optional[List[str]] = None, override: Optional[BaseOverrideConfig[RecipeInterface, APIInterface]] = None) ‑> RecipeInit
Classes
class DashboardOverrideConfig (**data: Any)-
Base class for input override config with API overrides.
Create a new model by parsing and validating input data from keyword arguments.
Raises [
ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.selfis explicitly positional-only to allowselfas a field name.Ancestors
- BaseOverrideConfig
- BaseOverrideConfigWithoutAPI
- CamelCaseBaseModel
- APIResponse
- abc.ABC
- pydantic.main.BaseModel
- typing.Generic
Class variables
var model_config-
The type of the None singleton.
class InputOverrideConfig (**data: Any)-
Base class for input override config with API overrides.
Create a new model by parsing and validating input data from keyword arguments.
Raises [
ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.selfis explicitly positional-only to allowselfas a field name.Ancestors
- BaseOverrideConfig
- BaseOverrideConfigWithoutAPI
- CamelCaseBaseModel
- APIResponse
- abc.ABC
- pydantic.main.BaseModel
- typing.Generic
Inherited members
class DashboardRecipe (recipe_id: str, app_info: AppInfo, config: DashboardConfig)-
Helper class that provides a standard way to create an ABC using inheritance.
Expand source code
class DashboardRecipe(RecipeModule): recipe_id = "dashboard" __instance = None def __init__( self, recipe_id: str, app_info: AppInfo, config: DashboardConfig, ): super().__init__(recipe_id, app_info) self.config = validate_and_normalise_user_input( config=config, ) recipe_implementation = RecipeImplementation() self.recipe_implementation = self.config.override.functions( recipe_implementation ) api_implementation = APIImplementation() self.api_implementation = self.config.override.apis(api_implementation) def is_error_from_this_recipe_based_on_instance(self, err: Exception) -> bool: return isinstance(err, SuperTokensError) and ( isinstance(err, SuperTokensDashboardError) ) def get_apis_handled(self) -> List[APIHandled]: return [ APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base("/")), "get", DASHBOARD_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base("/roles")), "get", DASHBOARD_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base("/tenants")), "get", DASHBOARD_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(SIGN_IN_API)), "post", SIGN_IN_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(VALIDATE_KEY_API)), "post", VALIDATE_KEY_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(SIGN_OUT_API)), "post", SIGN_OUT_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USERS_LIST_GET_API)), "get", USERS_LIST_GET_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USERS_COUNT_API)), "get", USERS_COUNT_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USER_API)), "get", USER_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USER_API)), "post", USER_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USER_API)), "put", USER_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USER_API)), "delete", USER_API, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(USER_EMAIL_VERIFY_API) ), "get", USER_EMAIL_VERIFY_API, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(USER_EMAIL_VERIFY_API) ), "put", USER_EMAIL_VERIFY_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USER_METADATA_API)), "get", USER_METADATA_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USER_METADATA_API)), "put", USER_METADATA_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USER_SESSION_API)), "get", USER_SESSION_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USER_SESSION_API)), "post", USER_SESSION_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USER_PASSWORD_API)), "put", USER_PASSWORD_API, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(USER_EMAIL_VERIFY_TOKEN_API) ), "post", USER_EMAIL_VERIFY_TOKEN_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(SEARCH_TAGS_API)), "get", SEARCH_TAGS_API, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(DASHBOARD_ANALYTICS_API) ), "post", DASHBOARD_ANALYTICS_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(TENANT_API)), "post", TENANT_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(TENANT_API)), "delete", TENANT_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(TENANT_API)), "get", TENANT_API, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(TENANT_THIRD_PARTY_CONFIG_API) ), "put", TENANT_THIRD_PARTY_CONFIG_API, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(TENANT_THIRD_PARTY_CONFIG_API) ), "delete", TENANT_THIRD_PARTY_CONFIG_API, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(TENANT_THIRD_PARTY_CONFIG_API) ), "get", TENANT_THIRD_PARTY_CONFIG_API, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(LIST_TENANTS_WITH_LOGIN_METHODS) ), "get", LIST_TENANTS_WITH_LOGIN_METHODS, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(UPDATE_TENANT_CORE_CONFIG_API) ), "put", UPDATE_TENANT_CORE_CONFIG_API, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(UPDATE_TENANT_FIRST_FACTOR_API) ), "put", UPDATE_TENANT_FIRST_FACTOR_API, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base( UPDATE_TENANT_REQUIRED_SECONDARY_FACTOR_API ) ), "put", UPDATE_TENANT_REQUIRED_SECONDARY_FACTOR_API, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(CREATE_EMAIL_PASSWORD_USER) ), "post", CREATE_EMAIL_PASSWORD_USER, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(CREATE_PASSWORDLESS_USER) ), "post", CREATE_PASSWORDLESS_USER, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(UNLINK_USER)), "get", UNLINK_USER, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(USERROLES_PERMISSIONS_API) ), "get", USERROLES_PERMISSIONS_API, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(USERROLES_PERMISSIONS_API) ), "put", USERROLES_PERMISSIONS_API, False, ), APIHandled( NormalisedURLPath( get_api_path_with_dashboard_base(USERROLES_REMOVE_PERMISSIONS_API) ), "put", USERROLES_REMOVE_PERMISSIONS_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USERROLES_LIST_API)), "get", USERROLES_LIST_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USERROLES_ROLE_API)), "put", USERROLES_ROLE_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USERROLES_ROLE_API)), "delete", USERROLES_ROLE_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USERROLES_ROLE_API)), "get", USERROLES_ROLE_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USERROLES_USER_API)), "get", USERROLES_USER_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USERROLES_USER_API)), "put", USERROLES_USER_API, False, ), APIHandled( NormalisedURLPath(get_api_path_with_dashboard_base(USERROLES_USER_API)), "delete", USERROLES_USER_API, False, ), ] async def handle_api_request( self, request_id: str, tenant_id: str, request: BaseRequest, path: NormalisedURLPath, method: str, response: BaseResponse, user_context: Dict[str, Any], ) -> Optional[BaseResponse]: api_options = APIOptions( request, response, self.recipe_id, self.config, self.recipe_implementation, self.get_app_info(), ) # For these APIs we dont need API key validation if request_id == DASHBOARD_API: return await handle_dashboard_api( self.api_implementation, api_options, user_context ) if request_id == VALIDATE_KEY_API: return await handle_validate_key_api( self.api_implementation, api_options, user_context ) if request_id == SIGN_IN_API: return await handle_emailpassword_signin_api( self.api_implementation, api_options, user_context ) # Do API key validation for the remaining APIs api_function: Optional[ Callable[ [APIInterface, str, APIOptions, Dict[str, Any]], Awaitable[APIResponse] ] ] = None if request_id == USERS_LIST_GET_API: api_function = handle_users_get_api elif request_id == USERS_COUNT_API: api_function = handle_users_count_get_api elif request_id == USER_API: if method == "get": api_function = handle_user_get if method == "delete": api_function = handle_user_delete if method == "put": api_function = handle_user_put elif request_id == USER_EMAIL_VERIFY_API: if method == "get": api_function = handle_user_email_verify_get if method == "put": api_function = handle_user_email_verify_put elif request_id == USER_METADATA_API: if method == "get": api_function = handle_metadata_get if method == "put": api_function = handle_metadata_put elif request_id == USER_SESSION_API: if method == "get": api_function = handle_sessions_get if method == "post": api_function = handle_user_sessions_post elif request_id == USER_PASSWORD_API: api_function = handle_user_password_put elif request_id == USER_EMAIL_VERIFY_TOKEN_API: api_function = handle_email_verify_token_post elif request_id == SIGN_OUT_API: api_function = handle_emailpassword_signout_api elif request_id == SEARCH_TAGS_API: api_function = handle_get_tags elif request_id == DASHBOARD_ANALYTICS_API: if method == "post": api_function = handle_analytics_post elif request_id == TENANT_API: if method == "post": api_function = create_tenant if method == "delete": api_function = delete_tenant_api if method == "get": api_function = get_tenant_info elif request_id == TENANT_THIRD_PARTY_CONFIG_API: if method == "put": api_function = handle_create_or_update_third_party_config if method == "delete": api_function = delete_third_party_config_api if method == "get": api_function = get_third_party_config elif request_id == LIST_TENANTS_WITH_LOGIN_METHODS: api_function = list_all_tenants_with_login_methods elif request_id == UPDATE_TENANT_CORE_CONFIG_API: api_function = update_tenant_core_config elif request_id == UPDATE_TENANT_FIRST_FACTOR_API: api_function = update_tenant_first_factor elif request_id == UPDATE_TENANT_REQUIRED_SECONDARY_FACTOR_API: api_function = update_tenant_secondary_factor elif request_id == CREATE_EMAIL_PASSWORD_USER: api_function = create_email_password_user elif request_id == CREATE_PASSWORDLESS_USER: api_function = create_passwordless_user elif request_id == UNLINK_USER: api_function = handle_user_unlink_get elif request_id == USERROLES_LIST_API: api_function = get_all_roles_api elif request_id == USERROLES_PERMISSIONS_API: api_function = get_permissions_for_role_api elif request_id == USERROLES_REMOVE_PERMISSIONS_API: api_function = remove_permissions_from_role_api elif request_id == USERROLES_ROLE_API: if method == "put": api_function = create_role_or_add_permissions_api if method == "delete": api_function = delete_role_api if method == "get": api_function = get_all_roles_api elif request_id == USERROLES_USER_API: if method == "get": api_function = get_roles_for_user_api if method == "put": api_function = add_role_to_user_api if method == "delete": api_function = remove_user_role_api if api_function is not None: return await api_key_protector( self.api_implementation, tenant_id, api_options, api_function, user_context, ) return None async def handle_error( self, request: BaseRequest, err: SuperTokensError, response: BaseResponse, user_context: Dict[str, Any], ) -> BaseResponse: raise err def get_all_cors_headers(self) -> List[str]: return [] @staticmethod def init( api_key: Optional[str], admins: Optional[List[str]] = None, override: Optional[DashboardOverrideConfig] = None, ): from supertokens_python.plugins import OverrideMap, apply_plugins config = DashboardConfig( api_key=api_key, admins=admins, override=override, ) def func(app_info: AppInfo, plugins: List[OverrideMap]): if DashboardRecipe.__instance is None: DashboardRecipe.__instance = DashboardRecipe( recipe_id=DashboardRecipe.recipe_id, app_info=app_info, config=apply_plugins( recipe_id=DashboardRecipe.recipe_id, config=config, plugins=plugins, ), ) return DashboardRecipe.__instance raise Exception( None, "Dashboard recipe has already been initialised. Please check your code for bugs.", ) return func @staticmethod def get_instance() -> DashboardRecipe: if DashboardRecipe.__instance is not None: return DashboardRecipe.__instance raise_general_exception( "Initialisation not done. Did you forget to call the SuperTokens.init function?" ) @staticmethod def reset(): if ("SUPERTOKENS_ENV" not in environ) or ( environ["SUPERTOKENS_ENV"] != "testing" ): raise_general_exception("calling testing function in non testing env") DashboardRecipe.__instance = NoneAncestors
- RecipeModule
- abc.ABC
Class variables
var recipe_id-
The type of the None singleton.
Static methods
def get_instance() ‑> DashboardRecipedef init(api_key: Optional[str], admins: Optional[List[str]] = None, override: Optional[BaseOverrideConfig[RecipeInterface, APIInterface]] = None)def reset()
Methods
def get_all_cors_headers(self) ‑> List[str]def get_apis_handled(self) ‑> List[APIHandled]async def handle_api_request(self, request_id: str, tenant_id: str, request: BaseRequest, path: NormalisedURLPath, method: str, response: BaseResponse, user_context: Dict[str, Any])async def handle_error(self, request: BaseRequest, err: SuperTokensError, response: BaseResponse, user_context: Dict[str, Any])def is_error_from_this_recipe_based_on_instance(self, err: Exception) ‑> bool
Inherited members