constants.py 1012 B

123456789101112131415161718192021222324
  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. INVALID_TOKEN = (
  10. "Your session has expired or the token is invalid. Please sign in again."
  11. )
  12. INVALID_CRED = "The email or password provided is incorrect. Please check for typos and try logging in again."
  13. UNAUTHORIZED = "401 Unauthorized"
  14. ACCESS_PROHIBITED = "You do not have permission to access this resource. Please contact your administrator for assistance."
  15. ACTION_PROHIBITED = (
  16. "The requested action has been restricted as a security measure."
  17. )
  18. USER_NOT_FOUND = "We could not find what you're looking for :/"
  19. MALICIOUS = "Unusual activities detected, please try again in a few minutes."