File size: 19,019 Bytes
3a750da 471cbf3 3a750da 471cbf3 3a750da 471cbf3 3a750da 471cbf3 3a750da 4fd51a6 471cbf3 3a750da 4fd51a6 471cbf3 3a750da 471cbf3 3a750da 4fd51a6 3a750da 471cbf3 3a750da 4fd51a6 3a750da 471cbf3 4fd51a6 3a750da 4fd51a6 3a750da 4fd51a6 3a750da 4fd51a6 3a750da 4fd51a6 3a750da 4fd51a6 3a750da 4fd51a6 3a750da 4fd51a6 3a750da 6193fd9 471cbf3 6193fd9 471cbf3 3a750da 4fd51a6 6193fd9 3a750da 4fd51a6 3a750da | 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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 | """
auth_token.py β Production auth with Supabase (real PostgreSQL cloud DB).
WHY SUPABASE:
- Free forever (500MB, unlimited users)
- Real PostgreSQL β works like any production website
- Data persists across ALL HF Space restarts permanently
- No file system dependency
SETUP (5 minutes, free):
1. Go to https://supabase.com β New Project (free)
2. After project creates, go to SQL Editor β run this once:
CREATE TABLE IF NOT EXISTS users (
username TEXT PRIMARY KEY,
email TEXT UNIQUE NOT NULL,
password TEXT NOT NULL,
token TEXT,
verified BOOLEAN DEFAULT TRUE,
created_at DOUBLE PRECISION,
last_login DOUBLE PRECISION
);
CREATE TABLE IF NOT EXISTS otps (
key TEXT PRIMARY KEY,
otp TEXT NOT NULL,
expires_at DOUBLE PRECISION NOT NULL
);
3. Go to Project Settings β API β copy:
- Project URL β SUPABASE_URL
- service_role key β SUPABASE_KEY
β οΈ MUST be the service_role key (under "Secret"), NOT the anon/public key.
The anon key is for browser clients and will cause RLS 401 errors.
4. Add to Space Secrets (Settings β Variables and Secrets):
SUPABASE_URL = https://xxxx.supabase.co
SUPABASE_KEY = eyJhb...your SERVICE ROLE key...
5. Restart Space β done. All signups persist forever.
FALLBACK: If Supabase not configured, falls back to /tmp SQLite
(works within a session but resets on container restart).
"""
import json, os, hashlib, secrets, time, random, sqlite3, urllib.request, urllib.error, urllib.parse
def _validate_env():
warnings = []
if not os.environ.get("SUPABASE_URL"):
warnings.append("SUPABASE_URL not set β falling back to SQLite (data lost on restart)")
if not os.environ.get("SUPABASE_KEY"):
warnings.append("SUPABASE_KEY not set β falling back to SQLite")
if not os.environ.get("GROQ_API_KEY"):
warnings.append("GROQ_API_KEY not set β AI plan generation will fail")
return warnings
STARTUP_WARNINGS = _validate_env()
# ββ CONFIG ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
BREVO_API_KEY = os.environ.get("BREVO_API_KEY", "")
EMAIL_SENDER = os.environ.get("EMAIL_SENDER", "")
SENDER_NAME = "FitPlan Pro"
SUPABASE_URL = os.environ.get("SUPABASE_URL", "").rstrip("/")
SUPABASE_KEY = os.environ.get("SUPABASE_KEY", "")
SQLITE_PATH = "/tmp/fitplan.db"
TMP_USERS = SQLITE_PATH
# ββ HELPERS βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def hash_password(pw, salt=None):
import hashlib, secrets as _sec
if salt is None:
salt = _sec.token_hex(16)
dk = hashlib.pbkdf2_hmac('sha256', pw.encode(), salt.encode(), 100_000)
return f"pbkdf2:{salt}:{dk.hex()}"
def verify_password(pw, stored):
import hashlib
if stored.startswith("pbkdf2:"):
_, salt, _ = stored.split(":", 2)
return hash_password(pw, salt) == stored
return hashlib.sha256(pw.encode()).hexdigest() == stored
def generate_token(): return secrets.token_hex(32)
def generate_otp(): return str(random.randint(100000, 999999))
def _hf_ready(): return bool(SUPABASE_URL) and bool(SUPABASE_KEY)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SUPABASE REST API
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _sb_headers():
return {
"apikey": SUPABASE_KEY,
"Authorization": f"Bearer {SUPABASE_KEY}",
"Content-Type": "application/json",
"Prefer": "return=representation",
}
def _sb_get(table, filters=""):
url = f"{SUPABASE_URL}/rest/v1/{table}?{filters}&select=*"
req = urllib.request.Request(url, headers=_sb_headers())
try:
with urllib.request.urlopen(req, timeout=8) as r:
return json.loads(r.read().decode())
except Exception:
return []
def _sb_upsert(table, row):
headers = {**_sb_headers(), "Prefer": "resolution=merge-duplicates,return=representation"}
payload = json.dumps(row).encode()
req = urllib.request.Request(
f"{SUPABASE_URL}/rest/v1/{table}",
data=payload, headers=headers, method="POST"
)
try:
with urllib.request.urlopen(req, timeout=10) as r:
return json.loads(r.read().decode())
except urllib.error.HTTPError as e:
raise RuntimeError(f"Supabase upsert error {e.code}: {e.read().decode()[:300]}")
def _sb_delete(table, filters):
url = f"{SUPABASE_URL}/rest/v1/{table}?{filters}"
req = urllib.request.Request(url, headers=_sb_headers(), method="DELETE")
try:
with urllib.request.urlopen(req, timeout=8):
return True
except Exception:
return False
def _sb_patch(table, filters, data):
headers = {**_sb_headers(), "Prefer": "return=representation"}
payload = json.dumps(data).encode()
url = f"{SUPABASE_URL}/rest/v1/{table}?{filters}"
req = urllib.request.Request(url, data=payload, headers=headers, method="PATCH")
try:
with urllib.request.urlopen(req, timeout=10) as r:
return json.loads(r.read().decode())
except urllib.error.HTTPError as e:
raise RuntimeError(f"Supabase patch error {e.code}: {e.read().decode()[:300]}")
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SQLITE FALLBACK
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_db_conn = None
def _db():
global _db_conn
if _db_conn is None:
_db_conn = sqlite3.connect(SQLITE_PATH, check_same_thread=False)
_db_conn.row_factory = sqlite3.Row
_db_conn.execute("""
CREATE TABLE IF NOT EXISTS users (
username TEXT PRIMARY KEY,
email TEXT UNIQUE NOT NULL,
password TEXT NOT NULL,
token TEXT,
verified INTEGER DEFAULT 1,
created_at REAL,
last_login REAL
)""")
_db_conn.execute("""
CREATE TABLE IF NOT EXISTS otps (
key TEXT PRIMARY KEY,
otp TEXT NOT NULL,
expires_at REAL NOT NULL
)""")
_db_conn.commit()
return _db_conn
# ββ Unified DB operations βββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _get_user(username_or_email):
inp = username_or_email.strip().lower()
if _hf_ready():
rows = _sb_get("users", f"username=eq.{urllib.parse.quote(inp)}")
if not rows:
rows = _sb_get("users", f"email=eq.{urllib.parse.quote(inp)}")
return rows[0] if rows else None
else:
c = _db().execute(
"SELECT * FROM users WHERE lower(username)=? OR lower(email)=?",
(inp, inp)
).fetchone()
return dict(c) if c else None
def _get_user_by_username(username):
u = username.strip()
if _hf_ready():
rows = _sb_get("users", f"username=eq.{urllib.parse.quote(u)}")
return rows[0] if rows else None
else:
c = _db().execute("SELECT * FROM users WHERE lower(username)=?",
(u.lower(),)).fetchone()
return dict(c) if c else None
def _get_user_by_email(email):
e = email.strip().lower()
if _hf_ready():
rows = _sb_get("users", f"email=eq.{urllib.parse.quote(e)}")
return rows[0] if rows else None
else:
c = _db().execute("SELECT * FROM users WHERE lower(email)=?",
(e,)).fetchone()
return dict(c) if c else None
def _upsert_user(user: dict):
if _hf_ready():
# Coerce verified to integer β Supabase INTEGER column rejects Python bools
user = dict(user)
user["verified"] = 1 if user.get("verified") else 0
_sb_upsert("users", user)
else:
db = _db()
db.execute("""
INSERT INTO users (username,email,password,token,verified,created_at,last_login)
VALUES (:username,:email,:password,:token,:verified,:created_at,:last_login)
ON CONFLICT(username) DO UPDATE SET
token=excluded.token, last_login=excluded.last_login,
password=excluded.password
""", {
"username": user["username"],
"email": user["email"],
"password": user["password"],
"token": user.get("token"),
"verified": 1,
"created_at": user.get("created_at", time.time()),
"last_login": user.get("last_login"),
})
db.commit()
def _update_user(username, data: dict):
if _hf_ready():
_sb_patch("users", f"username=eq.{urllib.parse.quote(username)}", data)
else:
cols = ", ".join(f"{k}=?" for k in data)
vals = list(data.values()) + [username.lower()]
_db().execute(f"UPDATE users SET {cols} WHERE lower(username)=?", vals)
_db().commit()
def _get_otp(key):
if _hf_ready():
rows = _sb_get("otps", f"key=eq.{urllib.parse.quote(key)}")
return rows[0] if rows else None
else:
c = _db().execute("SELECT * FROM otps WHERE key=?", (key,)).fetchone()
return dict(c) if c else None
def _upsert_otp(key, otp, expires_at):
if _hf_ready():
_sb_upsert("otps", {"key": key, "otp": otp, "expires_at": expires_at})
else:
_db().execute("""
INSERT INTO otps(key,otp,expires_at) VALUES(?,?,?)
ON CONFLICT(key) DO UPDATE SET otp=excluded.otp, expires_at=excluded.expires_at
""", (key, otp, expires_at))
_db().commit()
def _delete_otp(key):
if _hf_ready():
_sb_delete("otps", f"key=eq.{urllib.parse.quote(key)}")
else:
_db().execute("DELETE FROM otps WHERE key=?", (key,))
_db().commit()
def load_users():
try:
if _hf_ready():
rows = _sb_get("users", "select=username")
return {r["username"]: {} for r in rows}
else:
rows = _db().execute("SELECT username FROM users").fetchall()
return {r["username"]: {} for r in rows}
except Exception:
return {}
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# OTP (Brevo email)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def send_otp_email(to_email, otp, purpose="signup"):
if not BREVO_API_KEY:
return False, "BREVO_API_KEY not set in Space Secrets."
if not EMAIL_SENDER:
return False, "EMAIL_SENDER not set in Space Secrets."
html_body = """<!DOCTYPE html>
<html><body style="margin:0;padding:0;background:#0d0d1a;font-family:Arial,sans-serif;">
<table width="100%" cellpadding="0" cellspacing="0" style="padding:40px 0;">
<tr><td align="center">
<table width="460" cellpadding="0" cellspacing="0"
style="background:#1a1a2e;border-radius:12px;overflow:hidden;border:1px solid rgba(229,9,20,.3);">
<tr><td style="background:linear-gradient(135deg,#E50914,#8b0000);padding:28px 32px;text-align:center;">
<div style="font-size:24px;letter-spacing:4px;color:white;font-weight:900;">β‘ FITPLAN PRO</div>
<div style="color:rgba(255,255,255,.6);font-size:11px;letter-spacing:3px;margin-top:6px;">PERSONALIZED FITNESS</div>
</td></tr>
<tr><td style="padding:32px 36px;">
<p style="color:rgba(255,255,255,.75);font-size:15px;margin:0 0 24px;">Your verification code is:</p>
<div style="background:rgba(229,9,20,.1);border:2px solid rgba(229,9,20,.4);border-radius:8px;padding:24px;text-align:center;">
<span style="font-size:44px;font-weight:900;letter-spacing:16px;color:#E50914;">""" + otp + """</span>
</div>
<p style="color:rgba(255,255,255,.4);font-size:12px;margin:20px 0 0;line-height:1.7;">
Expires in <strong style="color:rgba(255,255,255,.6)">10 minutes</strong>.<br>
If you didn't request this, ignore this email.
</p>
<hr style="border:none;border-top:1px solid rgba(255,255,255,.08);margin:22px 0;">
<p style="color:rgba(255,255,255,.2);font-size:11px;text-align:center;margin:0;">FitPlan Pro β Build Your Legacy</p>
</td></tr>
</table></td></tr></table>
</body></html>"""
payload = json.dumps({
"sender": {"name": SENDER_NAME, "email": EMAIL_SENDER},
"to": [{"email": to_email}],
"subject": f"FitPlan Pro β Your code: {otp}",
"htmlContent": html_body,
}).encode("utf-8")
req = urllib.request.Request(
"https://api.brevo.com/v3/smtp/email", data=payload,
headers={"accept":"application/json","api-key":BREVO_API_KEY,
"content-type":"application/json"},
method="POST",
)
try:
with urllib.request.urlopen(req, timeout=15) as r:
return (True,"OTP sent!") if r.status in (200,201,202) \
else (False, f"Brevo status {r.status}")
except urllib.error.HTTPError as e:
return False, f"Brevo error {e.code}: {e.read().decode('utf-8','ignore')[:200]}"
except Exception as e:
return False, f"Email failed: {e}"
def store_otp(email, otp, purpose="signup"):
_upsert_otp(f"{purpose}:{email.lower().strip()}", otp, time.time()+600)
def verify_otp(email, otp_input, purpose="signup"):
key = f"{purpose}:{email.lower().strip()}"
rec = _get_otp(key)
if not rec:
return False, "Code not found. Please request a new one."
if time.time() > float(rec["expires_at"]):
_delete_otp(key)
return False, "Code expired. Please request a new one."
if rec["otp"] != otp_input.strip():
return False, "Incorrect code. Please try again."
_delete_otp(key)
return True, "Verified!"
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SIGNUP
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def initiate_signup(username, email, password):
username = username.strip()
email = email.strip().lower()
if _get_user_by_username(username):
return False, "Username already taken."
if _get_user_by_email(email):
return False, "Email already registered. Please sign in."
if len(password) < 6:
return False, "Password must be at least 6 characters."
if not BREVO_API_KEY or not EMAIL_SENDER:
token = generate_token()
_upsert_user({
"username": username,
"email": email,
"password": hash_password(password),
"token": token,
"verified": 1,
"created_at": time.time(),
"last_login": None,
})
return True, "__NO_OTP__"
otp = generate_otp()
ok, msg = send_otp_email(email, otp)
if not ok:
return False, msg
store_otp(email, otp)
return True, f"Code sent to {email}"
def complete_signup(username, email, password, otp_input):
ok, msg = verify_otp(email, otp_input)
if not ok:
return False, None, msg
token = generate_token()
_upsert_user({
"username": username.strip(),
"email": email.strip().lower(),
"password": hash_password(password),
"token": token,
"verified": 1,
"created_at": time.time(),
"last_login": None,
})
return True, token, "Account created! Please sign in."
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# LOGIN
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def login(username_or_email, password):
user = _get_user(username_or_email)
if not user:
return False, None, None, "Account not found. Please sign up first."
if not verify_password(password, user["password"]):
return False, None, None, "Incorrect password. Please try again."
if not user["password"].startswith("pbkdf2:"):
_update_user(user["username"], {"password": hash_password(password)})
token = generate_token()
real_username = user["username"]
_update_user(real_username, {"token": token, "last_login": time.time()})
return True, token, real_username, "Login successful!"
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# TOKEN / LOGOUT
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def verify_token(username, token):
user = _get_user_by_username(username)
return bool(user and user.get("token") == token)
def logout(username):
try:
_update_user(username.strip(), {"token": None})
return True
except Exception:
return False |