Module supertokens_python.recipe.thirdpartyemailpassword.api.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, List, Union
from supertokens_python.recipe.emailpassword.api.implementation import \
APIImplementation as EmailPasswordImplementation
from supertokens_python.recipe.emailpassword.interfaces import (
APIOptions as EmailPasswordApiOptions,
SignInPostOkResult, SignUpPostOkResult)
from supertokens_python.recipe.emailpassword.interfaces import (
EmailExistsGetOkResult, GeneratePasswordResetTokenPostOkResult,
PasswordResetPostInvalidTokenResponse, PasswordResetPostOkResult,
SignInPostWrongCredentialsError,
SignUpPostEmailAlreadyExistsError)
from supertokens_python.recipe.emailpassword.types import FormField
from supertokens_python.recipe.thirdparty.api.implementation import \
APIImplementation as ThirdPartyImplementation
from supertokens_python.recipe.thirdparty.interfaces import (
APIOptions as ThirdPartyApiOptions,
SignInUpPostOkResult)
from supertokens_python.recipe.thirdparty.interfaces import (
AuthorisationUrlGetOkResult,
SignInUpPostNoEmailGivenByProviderResponse, SignInUpPostFieldError)
from supertokens_python.recipe.thirdparty.provider import Provider
from supertokens_python.recipe.thirdpartyemailpassword.interfaces import \
APIInterface
from ..interfaces import (
ThirdPartySignInUpPostOkResult, EmailPasswordSignInPostOkResult, EmailPasswordSignUpPostOkResult)
from ..types import User
from .emailpassword_api_impementation import \
get_interface_impl as get_ep_interface_impl
from .thirdparty_api_implementation import \
get_interface_impl as get_tp_interface_impl
class APIImplementation(APIInterface):
def __init__(self):
super().__init__()
emailpassword_implementation = EmailPasswordImplementation()
self.ep_email_exists_get = emailpassword_implementation.email_exists_get
self.ep_generate_password_reset_token_post = emailpassword_implementation.generate_password_reset_token_post
self.ep_password_reset_post = emailpassword_implementation.password_reset_post
self.ep_sign_in_post = emailpassword_implementation.sign_in_post
self.ep_sign_up_post = emailpassword_implementation.sign_up_post
derived_ep = get_ep_interface_impl(self)
emailpassword_implementation.email_exists_get = derived_ep.email_exists_get
emailpassword_implementation.generate_password_reset_token_post = derived_ep.generate_password_reset_token_post
emailpassword_implementation.password_reset_post = derived_ep.password_reset_post
emailpassword_implementation.sign_in_post = derived_ep.sign_in_post
emailpassword_implementation.sign_up_post = derived_ep.sign_up_post
thirdparty_implementation = ThirdPartyImplementation()
self.tp_authorisation_url_get = thirdparty_implementation.authorisation_url_get
self.tp_sign_in_up_post = thirdparty_implementation.sign_in_up_post
self.tp_apple_redirect_handler_post = thirdparty_implementation.apple_redirect_handler_post
derived_tp = get_tp_interface_impl(self)
thirdparty_implementation.authorisation_url_get = derived_tp.authorisation_url_get
thirdparty_implementation.sign_in_up_post = derived_tp.sign_in_up_post
thirdparty_implementation.apple_redirect_handler_post = derived_tp.apple_redirect_handler_post
async def emailpassword_email_exists_get(self, email: str, api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> EmailExistsGetOkResult:
return await self.ep_email_exists_get(email, api_options, user_context)
async def generate_password_reset_token_post(self, form_fields: List[FormField],
api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> GeneratePasswordResetTokenPostOkResult:
return await self.ep_generate_password_reset_token_post(form_fields, api_options, user_context)
async def password_reset_post(self, form_fields: List[FormField], token: str,
api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> Union[PasswordResetPostOkResult, PasswordResetPostInvalidTokenResponse]:
return await self.ep_password_reset_post(form_fields, token, api_options, user_context)
async def thirdparty_sign_in_up_post(self, provider: Provider, code: str, redirect_uri: str, client_id: Union[str, None], auth_code_response: Union[Dict[str, Any], None],
api_options: ThirdPartyApiOptions, user_context: Dict[str, Any]) -> Union[ThirdPartySignInUpPostOkResult, SignInUpPostNoEmailGivenByProviderResponse, SignInUpPostFieldError]:
result = await self.tp_sign_in_up_post(provider, code, redirect_uri, client_id, auth_code_response, api_options, user_context)
if isinstance(result, SignInUpPostOkResult):
return ThirdPartySignInUpPostOkResult(
User(result.user.user_id, result.user.email, result.user.time_joined, result.user.third_party_info),
result.created_new_user,
result.auth_code_response,
result.session)
return result
async def emailpassword_sign_in_post(self, form_fields: List[FormField],
api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> Union[EmailPasswordSignInPostOkResult, SignInPostWrongCredentialsError]:
result = await self.ep_sign_in_post(form_fields, api_options, user_context)
if isinstance(result, SignInPostOkResult):
return EmailPasswordSignInPostOkResult(
User(result.user.user_id, result.user.email, result.user.time_joined, None),
result.session)
return result
async def emailpassword_sign_up_post(self, form_fields: List[FormField],
api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> Union[EmailPasswordSignUpPostOkResult, SignUpPostEmailAlreadyExistsError]:
result = await self.ep_sign_up_post(form_fields, api_options, user_context)
if isinstance(result, SignUpPostOkResult):
return EmailPasswordSignUpPostOkResult(
User(result.user.user_id, result.user.email, result.user.time_joined, None),
result.session)
return result
async def authorisation_url_get(self, provider: Provider, api_options: ThirdPartyApiOptions, user_context: Dict[str, Any]) -> AuthorisationUrlGetOkResult:
return await self.tp_authorisation_url_get(provider, api_options, user_context)
async def apple_redirect_handler_post(self, code: str, state: str, api_options: ThirdPartyApiOptions, user_context: Dict[str, Any]):
return await self.tp_apple_redirect_handler_post(code, state, api_options, user_context)
Classes
class APIImplementation
-
Helper class that provides a standard way to create an ABC using inheritance.
Expand source code
class APIImplementation(APIInterface): def __init__(self): super().__init__() emailpassword_implementation = EmailPasswordImplementation() self.ep_email_exists_get = emailpassword_implementation.email_exists_get self.ep_generate_password_reset_token_post = emailpassword_implementation.generate_password_reset_token_post self.ep_password_reset_post = emailpassword_implementation.password_reset_post self.ep_sign_in_post = emailpassword_implementation.sign_in_post self.ep_sign_up_post = emailpassword_implementation.sign_up_post derived_ep = get_ep_interface_impl(self) emailpassword_implementation.email_exists_get = derived_ep.email_exists_get emailpassword_implementation.generate_password_reset_token_post = derived_ep.generate_password_reset_token_post emailpassword_implementation.password_reset_post = derived_ep.password_reset_post emailpassword_implementation.sign_in_post = derived_ep.sign_in_post emailpassword_implementation.sign_up_post = derived_ep.sign_up_post thirdparty_implementation = ThirdPartyImplementation() self.tp_authorisation_url_get = thirdparty_implementation.authorisation_url_get self.tp_sign_in_up_post = thirdparty_implementation.sign_in_up_post self.tp_apple_redirect_handler_post = thirdparty_implementation.apple_redirect_handler_post derived_tp = get_tp_interface_impl(self) thirdparty_implementation.authorisation_url_get = derived_tp.authorisation_url_get thirdparty_implementation.sign_in_up_post = derived_tp.sign_in_up_post thirdparty_implementation.apple_redirect_handler_post = derived_tp.apple_redirect_handler_post async def emailpassword_email_exists_get(self, email: str, api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> EmailExistsGetOkResult: return await self.ep_email_exists_get(email, api_options, user_context) async def generate_password_reset_token_post(self, form_fields: List[FormField], api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> GeneratePasswordResetTokenPostOkResult: return await self.ep_generate_password_reset_token_post(form_fields, api_options, user_context) async def password_reset_post(self, form_fields: List[FormField], token: str, api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> Union[PasswordResetPostOkResult, PasswordResetPostInvalidTokenResponse]: return await self.ep_password_reset_post(form_fields, token, api_options, user_context) async def thirdparty_sign_in_up_post(self, provider: Provider, code: str, redirect_uri: str, client_id: Union[str, None], auth_code_response: Union[Dict[str, Any], None], api_options: ThirdPartyApiOptions, user_context: Dict[str, Any]) -> Union[ThirdPartySignInUpPostOkResult, SignInUpPostNoEmailGivenByProviderResponse, SignInUpPostFieldError]: result = await self.tp_sign_in_up_post(provider, code, redirect_uri, client_id, auth_code_response, api_options, user_context) if isinstance(result, SignInUpPostOkResult): return ThirdPartySignInUpPostOkResult( User(result.user.user_id, result.user.email, result.user.time_joined, result.user.third_party_info), result.created_new_user, result.auth_code_response, result.session) return result async def emailpassword_sign_in_post(self, form_fields: List[FormField], api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> Union[EmailPasswordSignInPostOkResult, SignInPostWrongCredentialsError]: result = await self.ep_sign_in_post(form_fields, api_options, user_context) if isinstance(result, SignInPostOkResult): return EmailPasswordSignInPostOkResult( User(result.user.user_id, result.user.email, result.user.time_joined, None), result.session) return result async def emailpassword_sign_up_post(self, form_fields: List[FormField], api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> Union[EmailPasswordSignUpPostOkResult, SignUpPostEmailAlreadyExistsError]: result = await self.ep_sign_up_post(form_fields, api_options, user_context) if isinstance(result, SignUpPostOkResult): return EmailPasswordSignUpPostOkResult( User(result.user.user_id, result.user.email, result.user.time_joined, None), result.session) return result async def authorisation_url_get(self, provider: Provider, api_options: ThirdPartyApiOptions, user_context: Dict[str, Any]) -> AuthorisationUrlGetOkResult: return await self.tp_authorisation_url_get(provider, api_options, user_context) async def apple_redirect_handler_post(self, code: str, state: str, api_options: ThirdPartyApiOptions, user_context: Dict[str, Any]): return await self.tp_apple_redirect_handler_post(code, state, api_options, user_context)
Ancestors
- APIInterface
- abc.ABC
Methods
async def apple_redirect_handler_post(self, code: str, state: str, api_options: ThirdPartyApiOptions, user_context: Dict[str, Any])
-
Expand source code
async def apple_redirect_handler_post(self, code: str, state: str, api_options: ThirdPartyApiOptions, user_context: Dict[str, Any]): return await self.tp_apple_redirect_handler_post(code, state, api_options, user_context)
-
Expand source code
async def authorisation_url_get(self, provider: Provider, api_options: ThirdPartyApiOptions, user_context: Dict[str, Any]) -> AuthorisationUrlGetOkResult: return await self.tp_authorisation_url_get(provider, api_options, user_context)
async def emailpassword_email_exists_get(self, email: str, api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) ‑> EmailExistsGetOkResult
-
Expand source code
async def emailpassword_email_exists_get(self, email: str, api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> EmailExistsGetOkResult: return await self.ep_email_exists_get(email, api_options, user_context)
async def emailpassword_sign_in_post(self, form_fields: List[FormField], api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) ‑> Union[EmailPasswordSignInPostOkResult, SignInPostWrongCredentialsError]
-
Expand source code
async def emailpassword_sign_in_post(self, form_fields: List[FormField], api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> Union[EmailPasswordSignInPostOkResult, SignInPostWrongCredentialsError]: result = await self.ep_sign_in_post(form_fields, api_options, user_context) if isinstance(result, SignInPostOkResult): return EmailPasswordSignInPostOkResult( User(result.user.user_id, result.user.email, result.user.time_joined, None), result.session) return result
async def emailpassword_sign_up_post(self, form_fields: List[FormField], api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) ‑> Union[EmailPasswordSignUpPostOkResult, SignUpPostEmailAlreadyExistsError]
-
Expand source code
async def emailpassword_sign_up_post(self, form_fields: List[FormField], api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> Union[EmailPasswordSignUpPostOkResult, SignUpPostEmailAlreadyExistsError]: result = await self.ep_sign_up_post(form_fields, api_options, user_context) if isinstance(result, SignUpPostOkResult): return EmailPasswordSignUpPostOkResult( User(result.user.user_id, result.user.email, result.user.time_joined, None), result.session) return result
async def generate_password_reset_token_post(self, form_fields: List[FormField], api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) ‑> GeneratePasswordResetTokenPostOkResult
-
Expand source code
async def generate_password_reset_token_post(self, form_fields: List[FormField], api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> GeneratePasswordResetTokenPostOkResult: return await self.ep_generate_password_reset_token_post(form_fields, api_options, user_context)
async def password_reset_post(self, form_fields: List[FormField], token: str, api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) ‑> Union[PasswordResetPostOkResult, PasswordResetPostInvalidTokenResponse]
-
Expand source code
async def password_reset_post(self, form_fields: List[FormField], token: str, api_options: EmailPasswordApiOptions, user_context: Dict[str, Any]) -> Union[PasswordResetPostOkResult, PasswordResetPostInvalidTokenResponse]: return await self.ep_password_reset_post(form_fields, token, api_options, user_context)
async def thirdparty_sign_in_up_post(self, provider: Provider, code: str, redirect_uri: str, client_id: Union[str, None], auth_code_response: Union[Dict[str, Any], None], api_options: ThirdPartyApiOptions, user_context: Dict[str, Any]) ‑> Union[ThirdPartySignInUpPostOkResult, SignInUpPostNoEmailGivenByProviderResponse, SignInUpPostFieldError]
-
Expand source code
async def thirdparty_sign_in_up_post(self, provider: Provider, code: str, redirect_uri: str, client_id: Union[str, None], auth_code_response: Union[Dict[str, Any], None], api_options: ThirdPartyApiOptions, user_context: Dict[str, Any]) -> Union[ThirdPartySignInUpPostOkResult, SignInUpPostNoEmailGivenByProviderResponse, SignInUpPostFieldError]: result = await self.tp_sign_in_up_post(provider, code, redirect_uri, client_id, auth_code_response, api_options, user_context) if isinstance(result, SignInUpPostOkResult): return ThirdPartySignInUpPostOkResult( User(result.user.user_id, result.user.email, result.user.time_joined, result.user.third_party_info), result.created_new_user, result.auth_code_response, result.session) return result