File size: 5,991 Bytes
34e2fc8 d605a16 34e2fc8 d605a16 264a63c d605a16 34e2fc8 d605a16 34e2fc8 d605a16 34e2fc8 d605a16 34e2fc8 d605a16 34e2fc8 d605a16 34e2fc8 d605a16 34e2fc8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | import json
import os
import time
from urllib.parse import urlencode
import requests as req
from itsdangerous import URLSafeTimedSerializer, SignatureExpired, BadSignature
from errors import get_logger
log = get_logger("auth")
SECRET_KEY = os.environ.get("SECRET_KEY", "generai-fallback-secret-change-in-prod")
GOOGLE_CLIENT_ID = os.environ.get("GOOGLE_CLIENT_ID", "")
GOOGLE_CLIENT_SECRET = os.environ.get("GOOGLE_CLIENT_SECRET", "")
BASE_URL = "https://amogaddy-generai.hf.space"
REDIRECT_URI = f"{BASE_URL}/auth/callback"
COOKIE_NAME = "generai_session"
DEFAULT_CREDITS = 10_000
UNLIMITED_CREDITS = 999_999_999
USERS_FILE = "./database/users.json"
# Email del proprietario/admin β crediti illimitati. Configurabile via Secret ADMIN_EMAILS
# (lista separata da virgole). Default: account dell'owner del progetto.
ADMIN_EMAILS = {
e.strip().lower()
for e in os.environ.get("ADMIN_EMAILS", "btpfab1@gmail.com,amogaddyofficial@gmail.com").split(",")
if e.strip()
}
def is_admin_email(email: str) -> bool:
return (email or "").strip().lower() in ADMIN_EMAILS
_signer = URLSafeTimedSerializer(SECRET_KEY)
# ββ UserDB βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class UserDB:
def __init__(self):
os.makedirs("./database", exist_ok=True)
self._data: dict = {}
self._load()
def _load(self):
if os.path.exists(USERS_FILE):
try:
with open(USERS_FILE) as f:
self._data = json.load(f)
except Exception:
self._data = {}
def _save(self):
try:
with open(USERS_FILE, "w") as f:
json.dump(self._data, f, indent=2)
except Exception as e:
log.warning("Salvataggio users.json fallito: %s", e)
def get_or_create(self, gid: str, email: str, name: str, picture: str) -> dict:
starting_credits = UNLIMITED_CREDITS if is_admin_email(email) else DEFAULT_CREDITS
if gid not in self._data:
self._data[gid] = {
"id": gid,
"email": email,
"name": name,
"picture": picture,
"credits": starting_credits,
"created_at": time.time(),
}
log.info("Nuovo utente: %s (%s) β %d crediti", name, email, starting_credits)
else:
self._data[gid].update({"name": name, "picture": picture, "email": email})
if is_admin_email(email):
self._data[gid]["credits"] = UNLIMITED_CREDITS
self._save()
return dict(self._data[gid])
def get(self, gid: str) -> dict | None:
u = self._data.get(gid)
return dict(u) if u else None
def use_credits(self, gid: str, n: int = 1) -> bool:
u = self._data.get(gid)
if not u:
return False
if is_admin_email(u.get("email", "")):
return True
if u.get("credits", 0) < n:
return False
u["credits"] -= n
self._save()
return True
def remaining(self, gid: str) -> int:
u = self._data.get(gid)
if not u:
return 0
if is_admin_email(u.get("email", "")):
return UNLIMITED_CREDITS
return int(u.get("credits", 0))
def add_credits(self, gid: str, n: int):
u = self._data.get(gid)
if u:
u["credits"] = u.get("credits", 0) + n
self._save()
def count(self) -> int:
return len(self._data)
_user_db: UserDB | None = None
def get_user_db() -> UserDB:
global _user_db
if _user_db is None:
_user_db = UserDB()
return _user_db
# ββ Session ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def create_session(gid: str) -> str:
return _signer.dumps(gid, salt="session-v1")
def verify_session(token: str) -> str | None:
try:
return _signer.loads(token, salt="session-v1", max_age=86400 * 30)
except (SignatureExpired, BadSignature):
return None
def get_current_user(request) -> dict | None:
token = request.cookies.get(COOKIE_NAME)
if not token:
return None
gid = verify_session(token)
if not gid:
return None
return get_user_db().get(gid)
# ββ Google OAuth βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def google_login_url() -> str:
if not GOOGLE_CLIENT_ID:
return ""
params = {
"client_id": GOOGLE_CLIENT_ID,
"redirect_uri": REDIRECT_URI,
"response_type": "code",
"scope": "openid email profile",
"access_type": "online",
"prompt": "select_account",
}
return "https://accounts.google.com/o/oauth2/v2/auth?" + urlencode(params)
def exchange_code(code: str) -> dict:
try:
r = req.post("https://oauth2.googleapis.com/token", data={
"client_id": GOOGLE_CLIENT_ID,
"client_secret": GOOGLE_CLIENT_SECRET,
"code": code,
"grant_type": "authorization_code",
"redirect_uri": REDIRECT_URI,
}, timeout=10)
return r.json()
except Exception as e:
log.warning("Token exchange fallito: %s", e)
return {}
def get_google_userinfo(access_token: str) -> dict:
try:
r = req.get("https://www.googleapis.com/oauth2/v3/userinfo",
headers={"Authorization": f"Bearer {access_token}"}, timeout=10)
return r.json()
except Exception as e:
log.warning("Userinfo fallita: %s", e)
return {}
|