2023-11-19 01:47:12 +01:00
from enum import Enum
class MESSAGES ( str , Enum ) :
DEFAULT = lambda msg = " " : f " { msg if msg else ' ' } "
class ERROR_MESSAGES ( str , Enum ) :
2023-11-21 01:22:43 +01:00
def __str__ ( self ) - > str :
return super ( ) . __str__ ( )
2023-11-19 01:47:12 +01:00
DEFAULT = lambda err = " " : f " Something went wrong :/ \n { err if err else ' ' } "
2023-11-21 03:28:28 +01:00
ENV_VAR_NOT_FOUND = " Required environment variable not found. Terminating now. "
2023-12-27 21:06:22 +01:00
CREATE_USER_ERROR = " Oops! Something went wrong while creating your account. Please try again later. If the issue persists, contact support for assistance. "
2023-12-29 08:02:49 +01:00
DELETE_USER_ERROR = " Oops! Something went wrong. We encountered an issue while trying to delete the user. Please give it another shot. "
2023-12-26 06:44:28 +01:00
EMAIL_TAKEN = " Uh-oh! This email is already registered. Sign in with your existing account or choose another email to start anew. "
USERNAME_TAKEN = (
" Uh-oh! This username is already registered. Please choose another username. "
)
2023-11-19 06:41:43 +01:00
INVALID_TOKEN = (
" Your session has expired or the token is invalid. Please sign in again. "
)
INVALID_CRED = " The email or password provided is incorrect. Please check for typos and try logging in again. "
2024-01-03 01:22:48 +01:00
INVALID_EMAIL_FORMAT = " The email format you entered is invalid. Please double-check and make sure you ' re using a valid email address (e.g., yourname@example.com). "
2023-12-29 09:26:47 +01:00
INVALID_PASSWORD = (
" The password provided is incorrect. Please check for typos and try again. "
)
2023-11-19 01:47:12 +01:00
UNAUTHORIZED = " 401 Unauthorized "
2023-11-19 06:41:43 +01:00
ACCESS_PROHIBITED = " You do not have permission to access this resource. Please contact your administrator for assistance. "
2023-11-19 09:13:59 +01:00
ACTION_PROHIBITED = (
" The requested action has been restricted as a security measure. "
)
2023-12-26 22:21:47 +01:00
NOT_FOUND = " We could not find what you ' re looking for :/ "
2023-11-19 01:47:12 +01:00
USER_NOT_FOUND = " We could not find what you ' re looking for :/ "
2023-12-29 08:02:49 +01:00
2023-11-19 01:47:12 +01:00
MALICIOUS = " Unusual activities detected, please try again in a few minutes. "