Module supertokens_python.recipe.dashboard.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 Any, Dict

from supertokens_python.framework import BaseRequest
from .interfaces import (
    RecipeInterface,
)
from supertokens_python.constants import DASHBOARD_VERSION
from .utils import DashboardConfig


class RecipeImplementation(RecipeInterface):
    async def get_dashboard_bundle_location(self, user_context: Dict[str, Any]) -> str:
        return f"https://cdn.jsdelivr.net/gh/supertokens/dashboard@v{DASHBOARD_VERSION}/build/"

    async def should_allow_access(
        self,
        request: BaseRequest,
        config: DashboardConfig,
        user_context: Dict[str, Any],
    ) -> bool:
        api_key_header_value = request.get_header("authorization")

        # We receive the api key as `Bearer API_KEY`, this retrieves just the key
        api_key = api_key_header_value.split(" ")[1] if api_key_header_value else None

        if api_key is None:
            return False

        return api_key == config.api_key

Classes

class RecipeImplementation

Helper class that provides a standard way to create an ABC using inheritance.

Expand source code
class RecipeImplementation(RecipeInterface):
    async def get_dashboard_bundle_location(self, user_context: Dict[str, Any]) -> str:
        return f"https://cdn.jsdelivr.net/gh/supertokens/dashboard@v{DASHBOARD_VERSION}/build/"

    async def should_allow_access(
        self,
        request: BaseRequest,
        config: DashboardConfig,
        user_context: Dict[str, Any],
    ) -> bool:
        api_key_header_value = request.get_header("authorization")

        # We receive the api key as `Bearer API_KEY`, this retrieves just the key
        api_key = api_key_header_value.split(" ")[1] if api_key_header_value else None

        if api_key is None:
            return False

        return api_key == config.api_key

Ancestors

Methods

async def get_dashboard_bundle_location(self, user_context: Dict[str, Any]) ‑> str
Expand source code
async def get_dashboard_bundle_location(self, user_context: Dict[str, Any]) -> str:
    return f"https://cdn.jsdelivr.net/gh/supertokens/dashboard@v{DASHBOARD_VERSION}/build/"
async def should_allow_access(self, request: BaseRequest, config: DashboardConfig, user_context: Dict[str, Any]) ‑> bool
Expand source code
async def should_allow_access(
    self,
    request: BaseRequest,
    config: DashboardConfig,
    user_context: Dict[str, Any],
) -> bool:
    api_key_header_value = request.get_header("authorization")

    # We receive the api key as `Bearer API_KEY`, this retrieves just the key
    api_key = api_key_header_value.split(" ")[1] if api_key_header_value else None

    if api_key is None:
        return False

    return api_key == config.api_key