Git Product home page Git Product logo

Comments (3)

iresharma avatar iresharma commented on September 15, 2024

Can you give us some insights on what functions and apis you are overriding ?

from supertokens-python.

mulac avatar mulac commented on September 15, 2024

I am overriding emailpassword_sign_up and thirdparty_sign_in_up to implement a white list, very similar to what is described at https://supertokens.com/docs/thirdpartyemailpassword/common-customizations/disable-sign-up/thirdparty-changes

def functions_override(recipe: RecipeInterface):
    original_emailpassword_sign_in_up = recipe.emailpassword_sign_up
    original_thirdparty_sign_in_up = recipe.thirdparty_sign_in_up

    async def emailpassword_sign_up(
        email: str, 
        password: str, 
        user_context: Dict[str, Any]
    ) -> Union[EmailPasswordSignUpOkResult, EmailPasswordSignUpEmailAlreadyExistsError]:
        existing_users = await get_users_by_email(email, user_context)
        if existing_users or email_whitelisted(email):
            return await original_emailpassword_sign_in_up(email, password, user_context)
        raise WhitelistException(email)

    async def thirdparty_sign_in_up(
        third_party_id: str, 
        third_party_user_id: str, 
        email: str,
        user_context: Dict[str, Any],
    ) -> ThirdPartySignInUpOkResult:
        existing_users = await get_users_by_email(email, user_context)
        if existing_users or email_whitelisted(email):
            return await original_thirdparty_sign_in_up(third_party_id, third_party_user_id, email, user_context)
        raise WhitelistException(email)

    recipe.emailpassword_sign_up = emailpassword_sign_up
    recipe.thirdparty_sign_in_up = thirdparty_sign_in_up
    return recipe


def apis_override(auth_api: APIInterface):
    auth_api.emailpassword_sign_up_post = WhitelistException.handle(auth_api.emailpassword_sign_up_post)
    auth_api.thirdparty_sign_in_up_post = WhitelistException.handle(auth_api.thirdparty_sign_in_up_post)
    return auth_api

from supertokens-python.

rishabhpoddar avatar rishabhpoddar commented on September 15, 2024

This should have been fixed in version >= 0.12.8.

Closing this issue for now, but feel free to reopen in case it persistss

from supertokens-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.