constants.py 1012 Bytes
Newer Older
1
2
3
4
5
6
7
8
from enum import Enum


class MESSAGES(str, Enum):
    DEFAULT = lambda msg="": f"{msg if msg else ''}"


class ERROR_MESSAGES(str, Enum):
Timothy J. Baek's avatar
Timothy J. Baek committed
9
10
11
    def __str__(self) -> str:
        return super().__str__()

12
    DEFAULT = lambda err="": f"Something went wrong :/\n{err if err else ''}"
Timothy J. Baek's avatar
Timothy J. Baek committed
13
    ENV_VAR_NOT_FOUND = "Required environment variable not found. Terminating now."
Timothy J. Baek's avatar
Timothy J. Baek committed
14
15
16
17
    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."
18
    UNAUTHORIZED = "401 Unauthorized"
Timothy J. Baek's avatar
Timothy J. Baek committed
19
    ACCESS_PROHIBITED = "You do not have permission to access this resource. Please contact your administrator for assistance."
Timothy J. Baek's avatar
Timothy J. Baek committed
20
21
22
    ACTION_PROHIBITED = (
        "The requested action has been restricted as a security measure."
    )
23
24
    USER_NOT_FOUND = "We could not find what you're looking for :/"
    MALICIOUS = "Unusual activities detected, please try again in a few minutes."