44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
from enum import Enum
|
|
|
|
from PySide6.QtGui import QColor
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Constants
|
|
# ---------------------------------------------------------------------------
|
|
|
|
NO_STAFF = True
|
|
NO_WHITELIST = False
|
|
|
|
REDIRECT_URI = "http://localhost:5000/callback"
|
|
SCOPES = ["identify"]
|
|
CLIENT_ID = "1240007913175781508"
|
|
AUTENTICATION_SUCCESS_MESSAGE = """
|
|
<html>
|
|
<head>
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
|
<meta content="utf-8" http-equiv="encoding">
|
|
</head>
|
|
<body>
|
|
<h1>Authentication réussie</h1>
|
|
<p>Vous pouvez maintenant fermer cette fenêtre et revenir au launcher de La Tanière.</p>
|
|
</body>
|
|
</html>
|
|
""".encode('utf-8')
|
|
# ---------------------------------------------------------------------------
|
|
# ENUMS
|
|
# ---------------------------------------------------------------------------
|
|
class Resources(Enum):
|
|
MP3 = ":/assets/the-beat-of-nature.mp3"
|
|
FONT = ":/assets/Avocado-Cake-Demo.otf"
|
|
|
|
class Urls(Enum):
|
|
DISCORD = "https://discord.gg/A7eanmSkp2"
|
|
INTRANET = "https://la-taniere.fun/connexion/"
|
|
API_URL = 'https://prod.la-taniere.fun:30121/'
|
|
|
|
class Glow(Enum):
|
|
COLOR = QColor(255, 140, 0, 255)
|
|
BLUR_BASE = 15
|
|
BLUR_PEAK = 70
|
|
ANIM_DURATION = 1200
|