Module supertokens_python.recipe.thirdpartyemailpassword.recipeimplementation.email_password_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, Union
from supertokens_python.recipe.emailpassword.interfaces import (
CreateResetPasswordResult, RecipeInterface, ResetPasswordUsingTokenResult,
SignInResult, SignUpResult, UpdateEmailOrPasswordResult)
from supertokens_python.recipe.emailpassword.types import User
from supertokens_python.recipe.thirdpartyemailpassword.interfaces import \
RecipeInterface as ThirdPartyEmailPasswordRecipeInterface
class RecipeImplementation(RecipeInterface):
def __init__(
self, recipe_implementation: ThirdPartyEmailPasswordRecipeInterface):
super().__init__()
self.recipe_implementation = recipe_implementation
async def get_user_by_id(self, user_id: str, user_context: Dict[str, Any]) -> Union[User, None]:
user = await self.recipe_implementation.get_user_by_id(user_id, user_context)
if user is None or user.third_party_info is not None:
return None
return User(user_id=user.user_id, email=user.email, time_joined=user.time_joined)
async def get_user_by_email(self, email: str, user_context: Dict[str, Any]) -> Union[User, None]:
users = await self.recipe_implementation.get_users_by_email(email, user_context)
for user in users:
if user.third_party_info is None:
return User(user_id=user.user_id, email=user.email, time_joined=user.time_joined)
return None
async def create_reset_password_token(self, user_id: str, user_context: Dict[str, Any]) -> CreateResetPasswordResult:
return await self.recipe_implementation.create_reset_password_token(user_id, user_context)
async def reset_password_using_token(self, token: str, new_password: str, user_context: Dict[str, Any]) -> ResetPasswordUsingTokenResult:
return await self.recipe_implementation.reset_password_using_token(token, new_password, user_context)
async def sign_in(self, email: str, password: str, user_context: Dict[str, Any]) -> SignInResult:
return await self.recipe_implementation.emailpassword_sign_in(email, password, user_context)
async def sign_up(self, email: str, password: str, user_context: Dict[str, Any]) -> SignUpResult:
return await self.recipe_implementation.emailpassword_sign_up(email, password, user_context)
async def update_email_or_password(self, user_id: str, email: Union[str, None],
password: Union[str, None], user_context: Dict[str, Any]) -> UpdateEmailOrPasswordResult:
return await self.recipe_implementation.update_email_or_password(user_id, email, password, user_context)
Classes
class RecipeImplementation (recipe_implementation: ThirdPartyEmailPasswordRecipeInterface)
-
Helper class that provides a standard way to create an ABC using inheritance.
Expand source code
class RecipeImplementation(RecipeInterface): def __init__( self, recipe_implementation: ThirdPartyEmailPasswordRecipeInterface): super().__init__() self.recipe_implementation = recipe_implementation async def get_user_by_id(self, user_id: str, user_context: Dict[str, Any]) -> Union[User, None]: user = await self.recipe_implementation.get_user_by_id(user_id, user_context) if user is None or user.third_party_info is not None: return None return User(user_id=user.user_id, email=user.email, time_joined=user.time_joined) async def get_user_by_email(self, email: str, user_context: Dict[str, Any]) -> Union[User, None]: users = await self.recipe_implementation.get_users_by_email(email, user_context) for user in users: if user.third_party_info is None: return User(user_id=user.user_id, email=user.email, time_joined=user.time_joined) return None async def create_reset_password_token(self, user_id: str, user_context: Dict[str, Any]) -> CreateResetPasswordResult: return await self.recipe_implementation.create_reset_password_token(user_id, user_context) async def reset_password_using_token(self, token: str, new_password: str, user_context: Dict[str, Any]) -> ResetPasswordUsingTokenResult: return await self.recipe_implementation.reset_password_using_token(token, new_password, user_context) async def sign_in(self, email: str, password: str, user_context: Dict[str, Any]) -> SignInResult: return await self.recipe_implementation.emailpassword_sign_in(email, password, user_context) async def sign_up(self, email: str, password: str, user_context: Dict[str, Any]) -> SignUpResult: return await self.recipe_implementation.emailpassword_sign_up(email, password, user_context) async def update_email_or_password(self, user_id: str, email: Union[str, None], password: Union[str, None], user_context: Dict[str, Any]) -> UpdateEmailOrPasswordResult: return await self.recipe_implementation.update_email_or_password(user_id, email, password, user_context)
Ancestors
- RecipeInterface
- abc.ABC
Methods
async def create_reset_password_token(self, user_id: str, user_context: Dict[str, Any]) ‑> CreateResetPasswordResult
-
Expand source code
async def create_reset_password_token(self, user_id: str, user_context: Dict[str, Any]) -> CreateResetPasswordResult: return await self.recipe_implementation.create_reset_password_token(user_id, user_context)
async def get_user_by_email(self, email: str, user_context: Dict[str, Any]) ‑> Optional[User]
-
Expand source code
async def get_user_by_email(self, email: str, user_context: Dict[str, Any]) -> Union[User, None]: users = await self.recipe_implementation.get_users_by_email(email, user_context) for user in users: if user.third_party_info is None: return User(user_id=user.user_id, email=user.email, time_joined=user.time_joined) return None
async def get_user_by_id(self, user_id: str, user_context: Dict[str, Any]) ‑> Optional[User]
-
Expand source code
async def get_user_by_id(self, user_id: str, user_context: Dict[str, Any]) -> Union[User, None]: user = await self.recipe_implementation.get_user_by_id(user_id, user_context) if user is None or user.third_party_info is not None: return None return User(user_id=user.user_id, email=user.email, time_joined=user.time_joined)
async def reset_password_using_token(self, token: str, new_password: str, user_context: Dict[str, Any]) ‑> ResetPasswordUsingTokenResult
-
Expand source code
async def reset_password_using_token(self, token: str, new_password: str, user_context: Dict[str, Any]) -> ResetPasswordUsingTokenResult: return await self.recipe_implementation.reset_password_using_token(token, new_password, user_context)
async def sign_in(self, email: str, password: str, user_context: Dict[str, Any]) ‑> SignInResult
-
Expand source code
async def sign_in(self, email: str, password: str, user_context: Dict[str, Any]) -> SignInResult: return await self.recipe_implementation.emailpassword_sign_in(email, password, user_context)
async def sign_up(self, email: str, password: str, user_context: Dict[str, Any]) ‑> SignUpResult
-
Expand source code
async def sign_up(self, email: str, password: str, user_context: Dict[str, Any]) -> SignUpResult: return await self.recipe_implementation.emailpassword_sign_up(email, password, user_context)
async def update_email_or_password(self, user_id: str, email: Union[str, None], password: Union[str, None], user_context: Dict[str, Any]) ‑> UpdateEmailOrPasswordResult
-
Expand source code
async def update_email_or_password(self, user_id: str, email: Union[str, None], password: Union[str, None], user_context: Dict[str, Any]) -> UpdateEmailOrPasswordResult: return await self.recipe_implementation.update_email_or_password(user_id, email, password, user_context)