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 typing import Dict, List, Optional, Union, Any
from supertokens_python import Supertokens
from supertokens_python.async_to_sync_wrapper import sync
from supertokens_python.interfaces import (
CreateUserIdMappingOkResult,
DeleteUserIdMappingOkResult,
GetUserIdMappingOkResult,
UnknownMappingError,
UnknownSupertokensUserIDError,
UpdateOrDeleteUserIdMappingInfoOkResult,
UserIdMappingAlreadyExistsError,
UserIDTypes,
)
from supertokens_python.types import AccountInfo, User
def get_users_oldest_first(
tenant_id: str,
limit: Union[int, None] = None,
pagination_token: Union[str, None] = None,
include_recipe_ids: Union[None, List[str]] = None,
query: Union[None, Dict[str, str]] = None,
user_context: Optional[Dict[str, Any]] = None,
):
from supertokens_python.asyncio import get_users_oldest_first
return sync(
get_users_oldest_first(
tenant_id,
limit,
pagination_token,
include_recipe_ids,
query,
user_context,
)
)
def get_users_newest_first(
tenant_id: str,
limit: Union[int, None] = None,
pagination_token: Union[str, None] = None,
include_recipe_ids: Union[None, List[str]] = None,
query: Union[None, Dict[str, str]] = None,
user_context: Optional[Dict[str, Any]] = None,
):
from supertokens_python.asyncio import get_users_newest_first
return sync(
get_users_newest_first(
tenant_id,
limit,
pagination_token,
include_recipe_ids,
query,
user_context,
)
)
def get_user_count(
include_recipe_ids: Union[None, List[str]] = None,
tenant_id: Optional[str] = None,
user_context: Optional[Dict[str, Any]] = None,
) -> int:
return sync(
Supertokens.get_instance().get_user_count(
include_recipe_ids, tenant_id, user_context
)
)
def delete_user(
user_id: str,
remove_all_linked_accounts: bool = True,
user_context: Optional[Dict[str, Any]] = None,
) -> None:
from supertokens_python.asyncio import delete_user
return sync(delete_user(user_id, remove_all_linked_accounts, user_context))
def get_user(
user_id: str, user_context: Optional[Dict[str, Any]] = None
) -> Optional[User]:
from supertokens_python.asyncio import get_user as async_get_user
return sync(async_get_user(user_id, user_context))
def create_user_id_mapping(
supertokens_user_id: str,
external_user_id: str,
external_user_id_info: Optional[str] = None,
force: Optional[bool] = None,
user_context: Optional[Dict[str, Any]] = None,
) -> Union[
CreateUserIdMappingOkResult,
UnknownSupertokensUserIDError,
UserIdMappingAlreadyExistsError,
]:
return sync(
Supertokens.get_instance().create_user_id_mapping(
supertokens_user_id,
external_user_id,
external_user_id_info,
force=force,
user_context=user_context,
)
)
def get_user_id_mapping(
user_id: str,
user_id_type: Optional[UserIDTypes] = None,
user_context: Optional[Dict[str, Any]] = None,
) -> Union[GetUserIdMappingOkResult, UnknownMappingError]:
return sync(
Supertokens.get_instance().get_user_id_mapping(
user_id, user_id_type, user_context
)
)
def delete_user_id_mapping(
user_id: str,
user_id_type: Optional[UserIDTypes] = None,
force: Optional[bool] = None,
user_context: Optional[Dict[str, Any]] = None,
) -> DeleteUserIdMappingOkResult:
return sync(
Supertokens.get_instance().delete_user_id_mapping(
user_id, user_id_type, force=force, user_context=user_context
)
)
def update_or_delete_user_id_mapping_info(
user_id: str,
user_id_type: Optional[UserIDTypes] = None,
external_user_id_info: Optional[str] = None,
user_context: Optional[Dict[str, Any]] = None,
) -> Union[UpdateOrDeleteUserIdMappingInfoOkResult, UnknownMappingError]:
return sync(
Supertokens.get_instance().update_or_delete_user_id_mapping_info(
user_id, user_id_type, external_user_id_info, user_context
)
)
def list_users_by_account_info(
tenant_id: str,
account_info: AccountInfo,
do_union_of_account_info: bool = False,
user_context: Optional[Dict[str, Any]] = None,
) -> List[User]:
from supertokens_python.asyncio import (
list_users_by_account_info as async_list_users_by_account_info,
)
return sync(
async_list_users_by_account_info(
tenant_id, account_info, do_union_of_account_info, user_context
)
)