Module supertokens_python.recipe.thirdpartyemailpassword.api.email_password_api_impementation

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

from supertokens_python.recipe.emailpassword.interfaces import APIInterface, APIOptions
from supertokens_python.recipe.emailpassword.types import FormField
from supertokens_python.recipe.thirdpartyemailpassword.interfaces import APIInterface as ThirdPartyEmailPasswordAPIInterface, \
    SignInUpAPIInput, SignInUpPostEmailPasswordOkResponse, SignUpPostEmailPasswordEmailAlreadyExistsErrorResponse, \
    SignInUpPostEmailPasswordWrongCredentialsErrorResponse


def get_interface_impl(
        api_implementation: ThirdPartyEmailPasswordAPIInterface) -> APIInterface:
    implementation = APIInterface()

    if api_implementation.disable_email_exists_get:
        implementation.disable_email_exists_get = True
    if api_implementation.disable_generate_password_reset_token_post:
        implementation.disable_generate_password_reset_token_post = True
    if api_implementation.disable_password_reset_post:
        implementation.disable_password_reset_post = True
    if api_implementation.disable_sign_in_up_post:
        implementation.disable_sign_in_post = True
        implementation.disable_sign_up_post = True

    implementation.email_exists_get = api_implementation.email_exists_get
    implementation.generate_password_reset_token_post = api_implementation.generate_password_reset_token_post
    implementation.password_reset_post = api_implementation.password_reset_post

    if not api_implementation.disable_sign_in_up_post:
        async def sign_up_post(form_fields: List[FormField], api_options: APIOptions):

            result = await api_implementation.sign_in_up_post(
                SignInUpAPIInput('emailpassword', form_fields=form_fields, is_sign_in=False,
                                 options=api_options))

            if result.is_ok:
                return SignInUpPostEmailPasswordOkResponse(result.user, True)

            elif result.status == 'EMAIL_ALREADY_EXISTS_ERROR':
                return SignUpPostEmailPasswordEmailAlreadyExistsErrorResponse()
            else:
                raise Exception('Should never come here')

        async def sign_in_post(form_fields: List[FormField], api_options: APIOptions):

            result = await api_implementation.sign_in_up_post(
                SignInUpAPIInput('emailpassword', form_fields=form_fields, is_sign_in=True,
                                 options=api_options))

            if result.is_ok:
                return SignInUpPostEmailPasswordOkResponse(result.user, False)

            elif result.status == 'WRONG_CREDENTIALS_ERROR':
                return SignInUpPostEmailPasswordWrongCredentialsErrorResponse()
            else:
                raise Exception('Should never come here')

        implementation.sign_up_post = sign_up_post
        implementation.sign_in_post = sign_in_post

    return implementation

Functions

def get_interface_impl(api_implementation: ThirdPartyEmailPasswordAPIInterface) ‑> APIInterface
Expand source code
def get_interface_impl(
        api_implementation: ThirdPartyEmailPasswordAPIInterface) -> APIInterface:
    implementation = APIInterface()

    if api_implementation.disable_email_exists_get:
        implementation.disable_email_exists_get = True
    if api_implementation.disable_generate_password_reset_token_post:
        implementation.disable_generate_password_reset_token_post = True
    if api_implementation.disable_password_reset_post:
        implementation.disable_password_reset_post = True
    if api_implementation.disable_sign_in_up_post:
        implementation.disable_sign_in_post = True
        implementation.disable_sign_up_post = True

    implementation.email_exists_get = api_implementation.email_exists_get
    implementation.generate_password_reset_token_post = api_implementation.generate_password_reset_token_post
    implementation.password_reset_post = api_implementation.password_reset_post

    if not api_implementation.disable_sign_in_up_post:
        async def sign_up_post(form_fields: List[FormField], api_options: APIOptions):

            result = await api_implementation.sign_in_up_post(
                SignInUpAPIInput('emailpassword', form_fields=form_fields, is_sign_in=False,
                                 options=api_options))

            if result.is_ok:
                return SignInUpPostEmailPasswordOkResponse(result.user, True)

            elif result.status == 'EMAIL_ALREADY_EXISTS_ERROR':
                return SignUpPostEmailPasswordEmailAlreadyExistsErrorResponse()
            else:
                raise Exception('Should never come here')

        async def sign_in_post(form_fields: List[FormField], api_options: APIOptions):

            result = await api_implementation.sign_in_up_post(
                SignInUpAPIInput('emailpassword', form_fields=form_fields, is_sign_in=True,
                                 options=api_options))

            if result.is_ok:
                return SignInUpPostEmailPasswordOkResponse(result.user, False)

            elif result.status == 'WRONG_CREDENTIALS_ERROR':
                return SignInUpPostEmailPasswordWrongCredentialsErrorResponse()
            else:
                raise Exception('Should never come here')

        implementation.sign_up_post = sign_up_post
        implementation.sign_in_post = sign_in_post

    return implementation