constants.py 1.6 KB

1234567891011121314151617181920212223242526272829303132
  1. from enum import Enum
  2. class MESSAGES(str, Enum):
  3. DEFAULT = lambda msg="": f"{msg if msg else ''}"
  4. class ERROR_MESSAGES(str, Enum):
  5. def __str__(self) -> str:
  6. return super().__str__()
  7. DEFAULT = lambda err="": f"Something went wrong :/\n{err if err else ''}"
  8. ENV_VAR_NOT_FOUND = "Required environment variable not found. Terminating now."
  9. CREATE_USER_ERROR = "Oops! Something went wrong while creating your account. Please try again later. If the issue persists, contact support for assistance."
  10. DELETE_USER_ERROR = "Oops! Something went wrong. We encountered an issue while trying to delete the user. Please give it another shot."
  11. EMAIL_TAKEN = "Uh-oh! This email is already registered. Sign in with your existing account or choose another email to start anew."
  12. USERNAME_TAKEN = (
  13. "Uh-oh! This username is already registered. Please choose another username."
  14. )
  15. INVALID_TOKEN = (
  16. "Your session has expired or the token is invalid. Please sign in again."
  17. )
  18. INVALID_CRED = "The email or password provided is incorrect. Please check for typos and try logging in again."
  19. UNAUTHORIZED = "401 Unauthorized"
  20. ACCESS_PROHIBITED = "You do not have permission to access this resource. Please contact your administrator for assistance."
  21. ACTION_PROHIBITED = (
  22. "The requested action has been restricted as a security measure."
  23. )
  24. NOT_FOUND = "We could not find what you're looking for :/"
  25. USER_NOT_FOUND = "We could not find what you're looking for :/"
  26. MALICIOUS = "Unusual activities detected, please try again in a few minutes."